| 12345678910111213141516171819202122232425262728293031323334353637 |
- [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
- [egg_info]
- tag_build =
- tag_date = 0
|