forked from jmccrohan/pysolarmanv5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·30 lines (28 loc) · 878 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="pysolarmanv5",
version="2.4.0",
author="Jonathan McCrohan",
author_email="[email protected]",
description=(
"A Python library for interacting with Solarman (IGEN-Tech) "
"v5 based Solar Data Loggers"
),
long_description=long_description,
long_description_content_type="text/markdown",
license="BSD",
keywords="solarman igen-tech modbus solar inverter solarmanv5",
url="https://github.com/jmccrohan/pysolarmanv5",
classifiers=[
"Programming Language :: Python :: 3",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
],
packages=setuptools.find_packages(),
python_requires=">=3.8",
install_requires=[
"umodbus",
],
)