Setup
This commit is contained in:
23
setup.py
Normal file
23
setup.py
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
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.2.3',
|
||||||
|
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", "aiohttp"]
|
||||||
|
)
|
||||||
|
|
||||||
Reference in New Issue
Block a user