Browse Source

Update setup.py.

v0.1
jajupmochi 5 years ago
parent
commit
fda25e3f77
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      setup.py

+ 5
- 1
setup.py View File

@@ -3,9 +3,12 @@ import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()

with open('requirements.txt') as fp:
install_requires = fp.read()

setuptools.setup(
name="graphkit-learn",
version="0.1b2",
version="0.1",
author="Linlin Jia",
author_email="linlin.jia@insa-rouen.fr",
description="A Python library for graph kernels based on linear patterns",
@@ -18,4 +21,5 @@ setuptools.setup(
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
install_requires=install_requires,
)

Loading…
Cancel
Save