Clemens-Alexander Brust 5 жил өмнө
parent
commit
9fd37959ca

+ 3 - 0
.gitignore

@@ -1,3 +1,6 @@
 venv/
 venv/
 __pycache__
 __pycache__
 .idea/
 .idea/
+*.egg-info
+test.json
+

+ 3 - 0
chillax/__init__.py

@@ -0,0 +1,3 @@
+from chillax.version import __version__
+
+__all__ = ["__version__"]

+ 1 - 0
chillax/version.py

@@ -0,0 +1 @@
+__version__ = "0.1a1"

+ 32 - 0
setup.py

@@ -0,0 +1,32 @@
+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.8",
+    install_requires=[
+        "chia>=2.0rc2",
+    ],
+    # 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.8",
+    ],
+    url="https://github.com/cvjena/chia",
+)