Updated setup and version

This commit is contained in:
2025-10-29 14:58:24 +01:00
parent 450d583421
commit a3b5299bf0

View File

@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
setup( setup(
name='rapt-cloud-api', name='rapt-cloud-api',
version='0.1.0', version='0.2.0',
author='Jesper Fussing Mørk', author='Jesper Fussing Mørk',
author_email='jfmo@moerks.dk', author_email='jfmo@moerks.dk',
description='Client Library for the rapt.io api', description='Client Library for the rapt.io api',
@@ -18,6 +18,6 @@ setup(
license='MIT', license='MIT',
package_dir={"": "src"}, package_dir={"": "src"},
packages=find_packages(where="src"), packages=find_packages(where="src"),
install_requires=["loguru", "pydantic", "requests"] install_requires=["loguru", "pydantic", "aiohttp"]
) )