forked from kellerza/sunsynk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
60 lines (52 loc) · 1.32 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
[metadata]
name = sunsynk
version = attr: sunsynk.VERSION
description = Library to interface Sunsynk Hybrid Inverters
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/kellerza/sunsynk
author = Johann Kellerman
author_email = [email protected]
license = MIT
license_file = LICENSE
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
keywords = sunsynk, deye, inverter, modbus, asyncio
[options]
packages = find:
python_requires = >=3.8
include_package_data = True
tests_requires = file: requirements_test.txt
install_requires =
attrs>21
zip_safe = true
[options.extras_require]
umodbus =
async_modbus==0.2.1
umodbus==1.0.4
connio==0.2.0
pymodbus =
pymodbus==2.5.3
pyserial-asyncio
#tests = file: requirements_test.txt
[isort]
profile=black
[flake8]
extend-ignore = E203, E501, W503
[mypy]
disallow_untyped_defs = True
[pydocstyle]
match_dir=sunsynk
convention=google
[tool:pytest]
filterwarnings =
ignore:.+@coroutine.+deprecated.+
[pylint.FORMAT]
max-line-length = 121