import setuptools with open("README.md", "r") as fh: long_description = fh.read() with open("requirements.txt", "r") as req: requirements = req.read() setuptools.setup( name="ml", version="0.1", author="Kompetenzzentrum Wald und Holz 4.0", author_email="s3i@kwh40.de", description="fml40 reference implementation basic functions", long_description=long_description, long_description_content_type="text/markdown", url = "https://www.kwh40.de/", packages=setuptools.find_packages(), install_requires=[ "requests", "s3i==0.4" ], dependency_links=[ "https://git.rwth-aachen.de/kwh40/s3i/-/jobs/artifacts/master/raw/public/s3i-0.4-py3-none-any.whl?job=wheel" ], classifiers=[ "Programming Language :: Python :: 3", "License :: OSI Approved :: LGPL", "Operating System :: OS Independent", ] )