blob: 0fe7a8ce7f22e542243587e9704af4f10dd70c48 (
plain)
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
|
[flake8]
ignore = E501, E203, W503, W504
exclude=./docs/conf.py
max-line-length=99
[metadata]
license_file = LICENSE.txt
provides_extra =
secure
socks
brotli
requires_dist =
pyOpenSSL>=0.14; extra == 'secure'
cryptography>=1.3.4; extra == 'secure'
idna>=2.0.0; extra == 'secure'
certifi; extra == 'secure'
PySocks>=1.5.6,<2.0,!=1.5.7; extra == 'socks'
brotli>=1.0.9; platform_python_implementation == 'CPython' and extra == 'brotli'
brotlicffi>=0.8.0; platform_python_implementation != 'CPython' and extra == 'brotli'
[tool:pytest]
xfail_strict = true
python_classes = Test *TestCase
[isort]
profile=black
|