diff --git a/setup.py b/setup.py new file mode 100644 index 0000000000000000000000000000000000000000..2e65a0c2b350581cb10c1dc33edbdea940ca5b9a --- /dev/null +++ b/setup.py @@ -0,0 +1,21 @@ +import setuptools + +with open ("README.md", "r") as fh: + long_description = fh.read() + +setuptools.setup( + name="catalogue-onb-labs", + version="2019.06", + author="ÖNB Labs Team", + author_email="labs@onb.ac.at", + description="Ex Libris Alma interfaces and MARC tools", + long_description=long_description, + long_description_content_type="text/markdown", + url="https://labs.onb.ac.at/gitlab/labs-team/catalogue", + packages=setuptools.find_packages(), + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + ], +)