1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pytedee_async",
version="0.2.17",
author="Josef Zweck",
author_email="24647999+zweckj@users.noreply.github.com",
description="A Tedee Lock Client package",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/zweckj/pytedee_async",
packages=setuptools.find_packages(),
install_requires=["aiohttp"],
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.9",
package_data={"pytedee_async": ["py.typed"]},
)
|