setup.py 938 B

123456789101112131415161718192021222324252627282930313233
  1. from distutils import util
  2. from setuptools import find_packages, setup
  3. main_ns = {}
  4. ver_path = util.convert_path("chillax/version.py")
  5. with open(ver_path) as ver_file:
  6. exec(ver_file.read(), main_ns)
  7. with open("README.md", "r") as fh:
  8. long_description = fh.read()
  9. setup(
  10. name="chillax",
  11. version=main_ns["__version__"],
  12. packages=find_packages(),
  13. python_requires=">=3.7",
  14. install_requires=[
  15. "chia>=2.0rc16",
  16. ],
  17. # metadata to display on PyPI
  18. author="Clemens-Alexander Brust",
  19. author_email="clemens-alexander.brust@uni-jena.de",
  20. description="Concept Hierarchies for Imprecise Label Learning and Annotation eXtrapolation",
  21. long_description=long_description,
  22. long_description_content_type="text/markdown",
  23. classifiers=[
  24. "Programming Language :: Python :: 3.7",
  25. "Programming Language :: Python :: 3.8",
  26. ],
  27. url="https://github.com/cvjena/chillax",
  28. )