Jan Dittberner
34f788e099
This commit reorganizes the package structure. The gvaldap.settings modules have been merged. The gvaldap.ldaptasks module has been move up one level to have task names without the gvaldap prefix. isort control instructions have been added to setup.cfg.
25 lines
499 B
INI
25 lines
499 B
INI
[pep8]
|
|
exclude = migrations
|
|
|
|
[flake8]
|
|
exclude = migrations
|
|
|
|
[coverage:run]
|
|
source = gvaldap,ldapentities,ldaptasks
|
|
branch = True
|
|
omit = */migrations/*,*/tests/*.py,*/tests.py,gvaldap.py
|
|
relative_files = True
|
|
|
|
[coverage:report]
|
|
show_missing = True
|
|
|
|
[coverage:html]
|
|
directory = ../coverage-report
|
|
|
|
[isort]
|
|
multi_line_output = 3
|
|
line_length = 88
|
|
known_django = django
|
|
known_third_party = celery,volatildap
|
|
include_trailing_comma = True
|
|
sections = FUTURE,STDLIB,THIRDPARTY,DJANGO,FIRSTPARTY,LOCALFOLDER
|