from distutils import util from setuptools import find_packages, setup main_ns = {} ver_path = util.convert_path("chillax/version.py") with open(ver_path) as ver_file: exec(ver_file.read(), main_ns) with open("README.md", "r") as fh: long_description = fh.read() setup( name="chillax", version=main_ns["__version__"], packages=find_packages(), python_requires=">=3.7", install_requires=[ "chia>=2.0rc16", ], # metadata to display on PyPI author="Clemens-Alexander Brust", author_email="clemens-alexander.brust@uni-jena.de", description="Concept Hierarchies for Imprecise Label Learning and Annotation eXtrapolation", long_description=long_description, long_description_content_type="text/markdown", classifiers=[ "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", ], url="https://github.com/cvjena/chillax", )