APIClient/setup.py
2024-05-27 00:15:05 +02:00

24 lines
670 B
Python

import pathlib
from setuptools import find_packages, setup
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="GarbageAPI_Client",
version="0.1.0",
license="GPL3",
description="A client library for accessing GarbageReminder API",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
python_requires=">=3.8, <4",
install_requires=[
"httpx >= 0.20.0, < 0.28.0",
"attrs >= 21.3.0",
"python-dateutil >= 2.8.0, < 3",
],
package_data={"garbage_api_client": ["py.typed"]},
)