forked from python-websockets/websockets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
37 lines (31 loc) · 829 Bytes
/
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
[bdist_wheel]
python-tag = py37.py38.py39.py310
[metadata]
license_file = LICENSE
project_urls =
Changelog = https://websockets.readthedocs.io/en/stable/project/changelog.html
Documentation = https://websockets.readthedocs.io/
Funding = https://tidelift.com/subscription/pkg/pypi-websockets?utm_source=pypi-websockets&utm_medium=referral&utm_campaign=readme
Tracker = https://github.com/aaugustin/websockets/issues
[flake8]
ignore = E203,E731,F403,F405,W503
max-line-length = 88
[isort]
profile = black
combine_as_imports = True
lines_after_imports = 2
[coverage:run]
branch = True
omit =
*/__main__.py
source =
websockets
tests
[coverage:paths]
source =
src/websockets
.tox/*/lib/python*/site-packages/websockets
[coverage:report]
exclude_lines =
if self.debug:
pragma: no cover