setup.cfg 465 B

1234567891011121314151617181920
  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,project_template
  11. add_imports=from __future__ import absolute_import,from __future__ import unicode_literals
  12. known_first_party=wagtail
  13. known_third_party=willow,modelcluster,taggit,django,unidecode,bs4,pytz,PIL
  14. [pytest]
  15. django_find_project = false
  16. python_files=test_*.py
  17. testpaths=wagtail