-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.cfg
68 lines (63 loc) · 1.75 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
[metadata]
name = vallox_websocket_api
version = attr: vallox_websocket_api.__version__
author = Jevgeni Kiski
author_email = [email protected]
description = Vallox WebSocket API
long_description = file: README.md
long_description_content_type = text/markdown
keywords = vallox api
url = https://github.com/yozik04/vallox_websocket_api
project_urls =
Bug Tracker = https://github.com/yozik04/vallox_websocket_api/issues
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
license = LGPL 3
[options]
zip_safe = True
include_package_data = True
packages = find:
python_requires = >=3.9.0, <4
install_requires =
websockets >= 9.1
construct >= 2.9.0, < 3.0.0
aiohttp >= 3.7.0, < 4.0.0
tests_require =
pytest
pytest-asyncio
[options.package_data]
* = *.json, *.md
vallox_websocket_api = py.typed
[options.packages.find]
exclude =
tests*
[flake8]
exclude = .venv,.git,.tox,docs,venv,bin,lib,deps,build
max-complexity = 25
doctests = True
# To work with Black
# E501: line too long
# W503: Line break occurred before a binary operator
# E203: Whitespace before ':'
# D202 No blank lines allowed after function docstring
# W504 line break after binary operator
# E128 continuation line under-indented for visual indent
ignore =
E501,
W503,
E203,
D202,
W504,
E128
noqa-require-code = True
[coverage:report]
show_missing = true