forked from ESSolutions/ESSArch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
34 lines (29 loc) · 776 Bytes
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[doc8]
ignore = D001
[flake8]
exclude = .git,__pycache__,node_modules,migrations,versioneer.py,ESSArch_Core/_version.py,docker/templates/config/local_essarch_settings.py
# W504 is mutually exclusive with W503
ignore = W504,B305,B017
max-line-length = 119
[isort]
combine_as_imports = true
default_section = THIRDPARTY
include_trailing_comma = true
known_first_party = ESSArch_Core
line_length = 79
multi_line_output = 3
skip=setup.py,migrations,node_modules
[coverage:run]
source = .
include = ESSArch_Core/*
branch = 1
[coverage:report]
include = ESSArch_Core/*
omit = */migrations/*,*/tests/*,ESSArch_Core/docs/conf.py
[versioneer]
VCS = git
style = pep440
versionfile_source = ESSArch_Core/_version.py
versionfile_build =
tag_prefix =
parentdir_prefix = ESSArch_Core-