Version bump

This commit is contained in:
2025-10-30 09:16:46 +01:00
parent a3e414ad00
commit 122ecdc2ad
2 changed files with 1 additions and 24 deletions

View File

@@ -1,6 +1,6 @@
[project]
name = "rapt-cloud-api"
version = "0.2.2"
version = "0.2.3"
description = "Python bindings for the Rapt.io API"
readme = "README.md"
requires-python = ">=3.13"

View File

@@ -1,23 +0,0 @@
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.2',
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"]
)