setup.cfg 599 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. [isort]
  2. skip =
  3. .tox,
  4. .scratch,
  5. _vendor,
  6. data
  7. multi_line_output = 5
  8. known_third_party =
  9. pip._vendor
  10. known_first_party =
  11. pip
  12. tests
  13. default_section = THIRDPARTY
  14. include_trailing_comma = true
  15. [flake8]
  16. exclude =
  17. .tox,
  18. .scratch,
  19. _vendor,
  20. data
  21. select = E,W,F
  22. [mypy]
  23. follow_imports = silent
  24. ignore_missing_imports = True
  25. strict_optional = False
  26. [mypy-pip/_vendor/*]
  27. follow_imports = skip
  28. ignore_errors = True
  29. [tool:pytest]
  30. addopts = --ignore src/pip/_vendor --ignore tests/tests_cache -r aR
  31. [bdist_wheel]
  32. universal = 1
  33. [metadata]
  34. license_file = LICENSE.txt