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

5 years ago
123456789101112131415161718192021
  1. import setuptools
  2. with open("README.md", "r") as fh:
  3. long_description = fh.read()
  4. setuptools.setup(
  5. name="graphkit-learn",
  6. version="0.1b2",
  7. author="Linlin Jia",
  8. author_email="linlin.jia@insa-rouen.fr",
  9. description="A Python library for graph kernels based on linear patterns",
  10. long_description=long_description,
  11. long_description_content_type="text/markdown",
  12. url="https://github.com/jajupmochi/graphkit-learn",
  13. packages=setuptools.find_packages(),
  14. classifiers=[
  15. "Programming Language :: Python :: 3",
  16. "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
  17. "Operating System :: OS Independent",
  18. ],
  19. )

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