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 820 B

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
12345678910111213141516171819202122232425
  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.2b2",
  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. url="https://github.com/jajupmochi/graphkit-learn",
  15. packages=setuptools.find_packages(),
  16. classifiers=[
  17. "Programming Language :: Python :: 3",
  18. "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
  19. "Operating System :: OS Independent",
  20. ],
  21. install_requires=install_requires,
  22. )

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