-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
34 lines (32 loc) · 934 Bytes
/
setup.py
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
29
30
31
32
33
34
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="python-smarttub",
version="0.0.38",
author="Matt Zimmerman",
author_email="[email protected]",
description="API to query and control hot tubs using the SmartTub system",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/mdz/python-smarttub",
packages=["smarttub"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"aiohttp>=3.7.4,<4",
"inflection~=0.5",
"pyjwt~=2.4",
"python-dateutil~=2.8",
],
# Note: tests require python >=3.8
tests_require=[
"pytest",
"pytest-asyncio",
"aresponses",
],
python_requires=">=3.7",
)