-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
setup.cfg
32 lines (28 loc) · 984 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
[flake8]
ignore = E501, E203, W503, W504
exclude=./docs/conf.py,./src/urllib3/packages/*
max-line-length=99
[bdist_wheel]
universal = 1
[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'
ipaddress; python_version=="2.7" and extra == 'secure'
urllib3-secure-extra; extra == 'secure'
PySocks>=1.5.6,<2.0,!=1.5.7; extra == 'socks'
brotli>=1.0.9; (os_name != 'nt' or python_version >= '3') and platform_python_implementation == 'CPython' and extra == 'brotli'
brotlicffi>=0.8.0; (os_name != 'nt' or python_version >= '3') and platform_python_implementation != 'CPython' and extra == 'brotli'
brotlipy>=0.6.0; os_name == 'nt' and python_version < '3' and extra == 'brotli'
[tool:pytest]
xfail_strict = true
python_classes = Test *TestCase
[isort]
profile=black