This repository was archived by the owner on Apr 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (40 loc) · 1.43 KB
/
setup.py
File metadata and controls
42 lines (40 loc) · 1.43 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
41
42
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="PyNavienSmartControl",
version="1.0.0",
author="Brian Rudy",
author_email="brudy@praecogito.com",
description="A Python module and tools for getting information about and controlling your Navien tankless water heater, combi-boiler or boiler connected via NaviLink.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/rudybrian/PyNavienSmartControl",
project_urls={
"Bug Tracker": "https://github.com/rudybrian/PyNavienSmartControl/issues"
},
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Topic :: Internet",
"Topic :: System :: Hardware :: Hardware Drivers",
"Development Status :: 3 - Alpha",
],
package_dir={"": "python/shared"},
packages=setuptools.find_packages(where="python/shared"),
install_requires=[
"requests",
"socket",
"struct",
"collections",
"binascii",
"enum",
"json",
"argparse",
],
python_requires=">=2.7",
)