summaryrefslogtreecommitdiff
path: root/setup.cfg
blob: 359583476d1c0f6fc4f53c7ff41600275d101139 (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,./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'
    PySocks>=1.5.6,<2.0,!=1.5.7; extra == 'socks'
    brotlipy>=0.6.0; extra == 'brotli'

[tool:pytest]
xfail_strict = true
python_classes = Test *TestCase