setup.cfg 349 B

12345678910111213141516171819
  1. [bdist_wheel]
  2. universal = 1
  3. [flake8]
  4. ignore = E501,E303
  5. exclude = wagtail/project_template/*
  6. max-line-length = 120
  7. [isort]
  8. line_length=100
  9. multi_line_output=4
  10. skip=migrations
  11. add_imports=from __future__ import absolute_import,from __future__ import unicode_literals
  12. [pytest]
  13. django_find_project = false
  14. python_files=test_*.py
  15. testpaths=wagtail