-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
34 lines (28 loc) · 1014 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
29
30
31
32
33
34
[tool.poetry]
name = "deye-controller"
version = "0.2.0"
description = "MODBUS Controller for DEYE inverters"
authors = ["githubDante <[email protected]>"]
readme = "README.rst"
packages = [{include = "deye_controller"}]
repository = 'https://github.com/githubDante/deye-controller'
license = "MIT"
keywords = ['deye', 'inverter', 'deye-intverter']
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries',
]
[tool.poetry.scripts]
deye-regtest = 'deye_controller.deye_reader:test_register'
deye-regwrite = 'deye_controller.deye_reader:test_write'
deye-read = 'deye_controller.deye_reader:read_from_inverter'
deye-scan = 'deye_controller.deye_reader:scan_for_loggers'
[tool.poetry.dependencies]
python = ">=3.8"
pysolarmanv5 = ">=3.0.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"