PhotosAPI_Client/setup.py

19 lines
607 B
Python
Raw Permalink Normal View History

2023-03-22 20:37:55 +02:00
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="PhotosAPI_Client",
2023-06-27 15:03:49 +03:00
version="0.5.0",
2023-03-23 13:44:02 +02:00
description="A client library for accessing Photos API",
2023-03-22 20:37:55 +02:00
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
python_requires=">=3.7, <4",
install_requires=["httpx >= 0.15.0, < 0.24.0", "attrs >= 21.3.0", "python-dateutil >= 2.8.0, < 3"],
2023-03-22 23:04:25 +02:00
package_data={"photosapi_client": ["py.typed"]},
2023-03-22 20:37:55 +02:00
)