forked from funtastix/pyrinnaitouch
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (37 loc) · 1.23 KB
/
setup.py
File metadata and controls
40 lines (37 loc) · 1.23 KB
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
35
36
37
38
39
40
"""Setup package"""
from setuptools import setup, find_packages # type: ignore
with open("README.md", "r") as fh: # pylint: disable=unspecified-encoding
LONG_DESCRIPTION = fh.read()
setup(
name="pyrinnaitouch",
packages=find_packages(exclude=["tests", "tests.*"]),
version="0.13.3b1",
license="mit",
description="A python interface to the Rinnai Touch Wifi controller",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author="Funtastix",
url="https://github.com/funtastix/pyrinnaitouch",
download_url="https://github.com/funtastix/pyrinnaitouch/archive/refs/tags/v0.13.2b1.tar.gz",
keywords=[
"Rinnai Touch",
"Brivis",
"IoT",
],
python_requires=">=3.9",
tests_require=["pytest"],
install_requires=[
"asyncio",
"async_timeout",
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Home Automation",
"Topic :: System :: Hardware",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)