1[bdist_wheel]
2universal = 1
3
4[flake8]
5ignore = E128,E731,W503,W504
6max-line-length = 512
7exclude = venv/
8
9[tool:pytest]
10norecursedirs = venv* .tox .eggs build dist django_extensions.egg-info django_extensions/mongodb
11addopts = --doctest-modules --doctest-ignore-import-errors --nomigrations
12
13[isort]
14combine_as_imports = true
15default_section = THIRDPARTY
16include_trailing_comma = true
17known_third_party = django
18known_first_party = django_extensions
19multi_line_output = 5
20line_length = 128
21
22[pycodestyle]
23count = False
24max-line-length = 512
25statistics = True
26ignore = D100,D101,D102,D103,D104,D105,D106,D107,D202,D203,D205,D210,D212,D400,D406,D407,D412,D413
27
28[egg_info]
29tag_build =
30tag_date = 0
31
32