setup.cfg 543 B

123456789101112131415161718192021
  1. [bdist_rpm]
  2. doc_files = docs extras AUTHORS INSTALL LICENSE README.rst
  3. install-script = scripts/rpm-install.sh
  4. [flake8]
  5. exclude=build,.git,./django/utils/lru_cache.py,./django/utils/six.py,./django/conf/app_template/*,./django/dispatch/weakref_backports.py,./tests/.env,./xmlrunner
  6. ignore=E123,E128,E402,E501,E731,W601
  7. max-line-length = 119
  8. [isort]
  9. combine_as_imports = true
  10. default_section = THIRDPARTY
  11. include_trailing_comma = true
  12. known_first_party = django
  13. multi_line_output = 5
  14. [metadata]
  15. license-file = LICENSE
  16. [wheel]
  17. universal = 1