-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpyproject.toml
28 lines (25 loc) · 971 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "sungrowinverter"
version = "0.2.3"
description = "Query Sungrow residential hybrid or string inverters for current state and statistics using ModBus TCP client"
authors = ["Mark Vandersteen <[email protected]>"]
license = "GNU General Public License"
readme = "README.md"
repository = "https://github.com/mvandersteen/SungrowInverter"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Networking",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
[tool.poetry.dependencies]
python = "^3.9"
pymodbus = ">=3.0.0"
pycryptodomex = ">=3.11.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"