You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

setup.py 1.0 kB

5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
1234567891011121314151617181920212223242526272829303132
  1. import setuptools
  2. with open("README.md", "r") as fh:
  3. long_description = fh.read()
  4. with open('requirements_pypi.txt') as fp:
  5. install_requires = fp.read()
  6. setuptools.setup(
  7. name="graphkit-learn",
  8. version="0.2.1",
  9. author="Linlin Jia",
  10. author_email="linlin.jia@insa-rouen.fr",
  11. description="A Python library for graph kernels, graph edit distances, and graph pre-images",
  12. long_description=long_description,
  13. long_description_content_type="text/markdown",
  14. project_urls={
  15. 'Documentation': 'https://graphkit-learn.readthedocs.io',
  16. 'Source': 'https://github.com/jajupmochi/graphkit-learn',
  17. 'Tracker': 'https://github.com/jajupmochi/graphkit-learn/issues',
  18. },
  19. url="https://github.com/jajupmochi/graphkit-learn",
  20. packages=setuptools.find_packages(),
  21. classifiers=[
  22. "Programming Language :: Python :: 3",
  23. "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
  24. "Operating System :: OS Independent",
  25. 'Intended Audience :: Science/Research',
  26. 'Intended Audience :: Developers',
  27. ],
  28. install_requires=install_requires,
  29. )

A Python package for graph kernels, graph edit distances and graph pre-image problem.