-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
84 lines (78 loc) · 2.1 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
73
74
75
76
77
78
79
80
81
82
83
84
[metadata]
name = growatt_monitor
version = attr: growatt_monitor.__version__
author = Constantin Zaharia
author_email = [email protected]
description = Growatt implementation for monitoring and notification
home_page = https://github.com/soulraven/growatt-monitor
url = https://github.com/soulraven/growatt-monitor
long_description = file: README.md
long_description_content_type = text/markdown
keywords = growatt protocol rs485 wifi
license = GPLv3
license_file = LICENSE
classifiers =
Intended Audience :: Developers
Topic :: Software Development :: Libraries
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Software Development :: Libraries :: Python Modules
projects_urls =
Source = https://github.com/soulraven/growatt-monitor
Issues = https://github.com/soulraven/growatt-monitor/issues
Discussions = https://github.com/soulraven/growatt-monitor/discussions
Documentation = https://soulraven.github.io/growatt-monitor/
Releases = https://soulraven.github.io/growatt-monitor/releases
[options]
include_package_data = True
python_requires = >= 3.10
packages = find:
test_suite = tests
install_requires =
roundbox
poetry
aiohttp
growattServer
influxdb_client
Jinja2
pyowm
requests
toml
urllib3
setup_requires =
black
isort
[options.extras_require]
docs =
mkdocs
mkdocs-material
mkdocs-coverage
mkdocs-literate-nav
mkdocs-gen-files
mkdocs-material-extensions
mkdocs-awesome-pages-plugin
mkdocs-autolinks-plugin
mkdocs-pagenav-generator
tests =
pytest
pytest-cookies
coverage =
coverage
pre-commit
[bdist_wheel]
universal = true
[sdist]
formats = zip, gztar
[flake8]
max-line-length = 88
exclude = .git, .eggs, __pycache__, tests/, docs/, build/, dist/
extend-ignore =
# See https://github.com/PyCQA/pycodestyle/issues/373
E203
doctests = True
[isort]
profile = black
py_version = 310