From a3b5299bf027c1b30a78852aafd9532f0741224d Mon Sep 17 00:00:00 2001 From: jfm Date: Wed, 29 Oct 2025 14:58:24 +0100 Subject: [PATCH] Updated setup and version --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index d5b8694..3cbf6e0 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh: setup( name='rapt-cloud-api', - version='0.1.0', + version='0.2.0', author='Jesper Fussing Mørk', author_email='jfmo@moerks.dk', description='Client Library for the rapt.io api', @@ -18,6 +18,6 @@ setup( license='MIT', package_dir={"": "src"}, packages=find_packages(where="src"), - install_requires=["loguru", "pydantic", "requests"] + install_requires=["loguru", "pydantic", "aiohttp"] )