36 lines
586 B
INI
36 lines
586 B
INI
|
[bdist_wheel]
|
||
|
universal = 1
|
||
|
|
||
|
[flake8]
|
||
|
max-line-length = 140
|
||
|
exclude = tests/*,*/migrations/*,*/south_migrations/*
|
||
|
|
||
|
[tool:pytest]
|
||
|
norecursedirs =
|
||
|
.git
|
||
|
.tox
|
||
|
.env
|
||
|
dist
|
||
|
build
|
||
|
south_migrations
|
||
|
migrations
|
||
|
python_files =
|
||
|
test_*.py
|
||
|
*_test.py
|
||
|
tests.py
|
||
|
addopts =
|
||
|
-rxEfsw
|
||
|
--strict
|
||
|
--doctest-modules
|
||
|
--doctest-glob=\*.rst
|
||
|
--tb=short
|
||
|
|
||
|
[isort]
|
||
|
force_single_line = True
|
||
|
line_length = 120
|
||
|
known_first_party = qutescript
|
||
|
default_section = THIRDPARTY
|
||
|
forced_separate = test_qutescript
|
||
|
not_skip = __init__.py
|
||
|
skip = migrations, south_migrations
|