setup.cfg 992 B

12345678910111213141516171819202122232425262728293031323334353637
  1. [flake8]
  2. ignore = E501, E203, W503, W504
  3. exclude = ./docs/conf.py,./src/urllib3/packages/*
  4. max-line-length = 99
  5. [bdist_wheel]
  6. universal = 1
  7. [metadata]
  8. license_file = LICENSE.txt
  9. provides-extra =
  10. secure
  11. socks
  12. brotli
  13. requires-dist =
  14. pyOpenSSL>=0.14; extra == 'secure'
  15. cryptography>=1.3.4; extra == 'secure'
  16. idna>=2.0.0; extra == 'secure'
  17. certifi; extra == 'secure'
  18. ipaddress; python_version=="2.7" and extra == 'secure'
  19. urllib3-secure-extra; extra == 'secure'
  20. PySocks>=1.5.6,<2.0,!=1.5.7; extra == 'socks'
  21. brotli>=1.0.9; (os_name != 'nt' or python_version >= '3') and platform_python_implementation == 'CPython' and extra == 'brotli'
  22. brotlicffi>=0.8.0; (os_name != 'nt' or python_version >= '3') and platform_python_implementation != 'CPython' and extra == 'brotli'
  23. brotlipy>=0.6.0; os_name == 'nt' and python_version < '3' and extra == 'brotli'
  24. [tool:pytest]
  25. xfail_strict = true
  26. python_classes = Test *TestCase
  27. [isort]
  28. profile = black
  29. [egg_info]
  30. tag_build =
  31. tag_date = 0