setup.py 885 B

1234567891011121314151617181920212223242526272829303132
  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.8",
  14. install_requires=[
  15. "chia>=2.0rc2",
  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.8",
  25. ],
  26. url="https://github.com/cvjena/chia",
  27. )