We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c1e8a7 commit fda25e3Copy full SHA for fda25e3
setup.py
@@ -3,9 +3,12 @@
3
with open("README.md", "r") as fh:
4
long_description = fh.read()
5
6
+with open('requirements.txt') as fp:
7
+ install_requires = fp.read()
8
+
9
setuptools.setup(
10
name="graphkit-learn",
- version="0.1b2",
11
+ version="0.1",
12
author="Linlin Jia",
13
author_email="[email protected]",
14
description="A Python library for graph kernels based on linear patterns",
@@ -18,4 +21,5 @@
18
21
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
19
22
"Operating System :: OS Independent",
20
23
],
24
+ install_requires=install_requires,
25
)
0 commit comments