2022-02-19 09:22:21 +00: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="{{ project_name }}",
|
|
|
|
version="{{ package_version }}",
|
|
|
|
description="{{ package_description }}",
|
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type="text/markdown",
|
|
|
|
packages=find_packages(),
|
|
|
|
python_requires=">=3.7, <4",
|
2023-01-13 18:21:38 +00:00
|
|
|
install_requires=["httpx >= 0.15.0, < 0.24.0", "attrs >= 21.3.0", "python-dateutil >= 2.8.0, < 3"],
|
2022-02-19 09:22:21 +00:00
|
|
|
package_data={"{{ package_name }}": ["py.typed"]},
|
|
|
|
)
|