forked from bohdan-s/SungrowClient
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 911 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 911 Bytes
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
import setuptools
exec(open('SungrowClient/version.py').read())
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="SungrowClient",
version=__version__,
author="Bohdan Flower",
author_email="github@bohdan.net",
description="A wrapper for talking to Sungrow Inverters via Modbus and HTTP API",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/bohdan-s/SungrowClient",
packages=setuptools.find_packages(),
install_requires=[
'pymodbus>=3.7.4,<3.10',
'SungrowModbusTcpClient>=0.1.5',
'SungrowModbusWebClient>=0.3.2',
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
python_requires='>=3.5.0',
)