2
0

setup.cfg 673 B

12345678910111213141516171819202122
  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,tests/view_tests/tests/py3_test_debug.py,tests/template_tests/annotated_tag_function.py
  6. ignore = E123,E128,E305,E402,W503,E731,E741,E743,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. not_skip = __init__.py
  15. [metadata]
  16. license-file = LICENSE
  17. [wheel]
  18. universal = 1