diff --git a/pyproject.toml b/pyproject.toml index 0837fd3..4f720f2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" diff --git a/setup.py b/setup.py deleted file mode 100644 index c211555..0000000 --- a/setup.py +++ /dev/null @@ -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"] -) -