Skip to content

Commit dd368eb

Browse files
committed
[fix] fix potential ModuleNotFoundError
1 parent 426e387 commit dd368eb

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGE.txt

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
v0.0.4:
2+
* fix potential ModuleNotFoundError
3+
14
v0.0.3:
25
* add DKT
36

setup.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from setuptools import setup
1+
from setuptools import setup, find_packages
22

33
test_deps = [
44
'pytest>=4',
@@ -8,10 +8,11 @@
88

99
setup(
1010
name='EduKTM',
11-
version='0.0.3',
11+
version='0.0.4',
1212
extras_require={
1313
'test': test_deps,
1414
},
15+
packages=find_packages(),
1516
install_requires=[
1617
"torch",
1718
"tqdm",

0 commit comments

Comments
 (0)