summaryrefslogtreecommitdiff
path: root/setup.cfg
blob: 91c59cb6b31766ca7f8a3a3d6c0b566619478dcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[flake8]
exclude=./docs/conf.py,./urllib3/packages/*
max-line-length=99

[bdist_wheel]
universal = 1

[metadata]
license_file = LICENSE.txt
provides-extra =
    secure
    socks
requires-dist =
    pyOpenSSL>=0.14,<18.0.0; python_version=="2.6" and extra == 'secure'
    pyOpenSSL>=0.14; python_version=="2.7" and extra == 'secure'
    cryptography>=1.3.4; python_version<="2.7" and extra == 'secure'
    idna>=2.0.0; python_version<="2.7" and extra == 'secure'
    certifi; extra == 'secure'
    ipaddress; python_version<="2.7" and extra == 'secure'
    PySocks>=1.5.6,<2.0,!=1.5.7; extra == 'socks'