-
Notifications
You must be signed in to change notification settings - Fork 104
/
Copy pathsetup.cfg
72 lines (66 loc) · 1.65 KB
/
setup.cfg
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[metadata]
name = sunsynk
version = attr: sunsynk.VERSION
description = Library to interface Deye/Sunsynk Hybrid Inverters
long_description = file: README.md
long_description_content_type = text/markdown
url = https://kellerza.github.io/sunsynk/
author = Johann Kellerman
author_email = [email protected]
license = Apache-2.0
license_files = LICENSE
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
keywords = sunsynk, deye, inverter, modbus, asyncio
[options]
package_dir=
=src
packages=
sunsynk
sunsynk.definitions
ha_addon_sunsynk_multi
python_requires = >=3.9
include_package_data = True
install_requires =
attrs==24.3.0
cattrs==24.1.2
pyyaml==6.0.2
mqtt-entity==0.0.4
prettytable==3.12.0
jmespath==1.0.1
zip_safe = true
[options.extras_require]
umodbus =
async_modbus==0.2.2
umodbus==1.0.4
connio==0.2.0
pymodbus =
pymodbus[serial]==3.8.3
solarman =
pysolarmanv5==3.0.6
tests =
pytest
pytest-asyncio
pytest-cov
pytest-github-actions-annotate-failures
types-PyYAML
types-jmespath
pylint
aiohttp # Used for ESP
mypy
[pylint.FORMAT]
max-line-length = 121
[pylint]
ignore-paths = src/tests
disable =
too-few-public-methods, # for attrs data classes
duplicate-code, # sensors definitions trigger a false positive
too-many-instance-attributes, # for attrs data classes
[pylint.basic]
good-names = i, j, k, ex, Run, _, ss, cb, on, id