from setuptools import find_packages, setup with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read() setup( name='rapt-cloud-api', version='0.1.0', author='Jesper Fussing Mørk', author_email='jfmo@moerks.dk', description='Client Library for the rapt.io api', long_description=long_description, long_description_content_type="text/markdown", url='https://gitea.moerks.dk/jfm/rapt-cloud-api', project_urls={ "Bug Tracker": "https://gitea.moerks.dk/jfm/rapt-cloud-api/issues", }, license='MIT', package_dir={"": "src"}, packages=find_packages(where="src"), install_requires=["loguru", "pydantic", "requests"] )