setup.cfg 465 B

1234567891011121314151617181920
  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,.tox,./django/utils/six.py,./django/conf/app_template/*,./tests/.env
  6. ignore = 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. line_length = 79
  14. multi_line_output = 5
  15. not_skip = __init__.py
  16. [metadata]
  17. license-file = LICENSE