forked from frankhood/esignanywhere-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
103 lines (91 loc) · 1.64 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[wheel]
universal = 1
[flake8]
exclude =
__pycache__,
.git,
.mypy_cache,
.pytest_cache,
.tox,
.venv,
.vscode,
./node_modules/*,
*/migrations/*,
./docs/*,
ignore = E501,T499,W503,D104, D105, D101, D100, E203, E501, W503, F401, D103, F403, D102, B950, B008
max-line-length = 120
mypy_config = setup.cfg
select = B,C,D,E,F,I,W,T4,B9
[zest.releaser]
python-file-with-version = esignanywhere_python_client/__init__.py
[coverage:run]
branch = True
omit =
.tox/*
.venv/*
*/asgi.py
*/migrations/*
*/tests/*
*/wsgi.py
manage.py
source = .
[tool.black]
exclude =
__pycache__,
.git,
.mypy_cache,
.pytest_cache,
.tox,
.venv,
.vscode,
node_modules,
*/migrations/*,
*/node_modules/*,
[metadata]
license-file = LICENSE.md
[mypy]
ignore_missing_imports=True
exclude =
__pycache__,
.git,
.mypy_cache,
.pytest_cache,
.tox,
.venv,
.vscode,
node_modules,
*/migrations/*,
.fh_app_template/*,
*/node_modules/*,
*/docs/*,
[tool.isort]
line_length=120
combine_as_imports = true
default_section = "THIRDPARTY"
profile = "black"
skip =
__pycache__,
.git,
.mypy_cache,
.pytest_cache,
.tox,
.venv,
.vscode,
node_modules,
*/migrations/*,
.fh_app_template/*,
*/node_modules/*,
[mypy-*.migrations.*]
ignore_errors = True
[testenv:report]
commands = coverage report
deps = coverage~=5.3.0
[testenv:reporthtml]
commands = coverage html
deps = coverage~=5.3.0
[testenv:reportxml]
commands = coverage xml -o test-reports/coverage.xml
deps = coverage~=5.3.0
[tox:tox]
envlist = coverage
skipsdist = True