Skip to content

Commit fda25e3

Browse files
committed
Update setup.py.
1 parent 6c1e8a7 commit fda25e3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,12 @@
33
with open("README.md", "r") as fh:
44
long_description = fh.read()
55

6+
with open('requirements.txt') as fp:
7+
install_requires = fp.read()
8+
69
setuptools.setup(
710
name="graphkit-learn",
8-
version="0.1b2",
11+
version="0.1",
912
author="Linlin Jia",
1013
author_email="[email protected]",
1114
description="A Python library for graph kernels based on linear patterns",
@@ -18,4 +21,5 @@
1821
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
1922
"Operating System :: OS Independent",
2023
],
24+
install_requires=install_requires,
2125
)

0 commit comments

Comments
 (0)