|
1234567891011121314151617181920212223242526272829303132 |
- import setuptools
-
- with open("README.md", "r") as fh:
- long_description = fh.read()
-
- with open('requirements_pypi.txt') as fp:
- install_requires = fp.read()
-
- setuptools.setup(
- name="graphkit-learn",
- version="0.2.1",
- author="Linlin Jia",
- author_email="linlin.jia@insa-rouen.fr",
- description="A Python library for graph kernels, graph edit distances, and graph pre-images",
- long_description=long_description,
- long_description_content_type="text/markdown",
- project_urls={
- 'Documentation': 'https://graphkit-learn.readthedocs.io',
- 'Source': 'https://github.com/jajupmochi/graphkit-learn',
- 'Tracker': 'https://github.com/jajupmochi/graphkit-learn/issues',
- },
- url="https://github.com/jajupmochi/graphkit-learn",
- packages=setuptools.find_packages(),
- classifiers=[
- "Programming Language :: Python :: 3",
- "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
- "Operating System :: OS Independent",
- 'Intended Audience :: Science/Research',
- 'Intended Audience :: Developers',
- ],
- install_requires=install_requires,
- )
|