-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.cfg
49 lines (42 loc) · 1.01 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
[tool:pytest]
addopts = -x -s -v
norecursedirs = .git src ai_platform .tox
[flake8]
exclude = .git,__pycache__,legacy,build,dist,.tox,models
max-complexity = 10
application-import-names=pyampd,tests
ignore = T484,T499,D100,D101,D102,D103,D104,D105,D107,D200,N803,N806
[mypy]
warn_incomplete_stub = False
incremental = True
check_untyped_defs = False
ignore_missing_imports = True
[pydocstyle]
add_ignore = D100,D101,D102,D103,D104,D105,D107,D200
match_dir = (?!(legacy|tmp|docs|ja_docs|tests|\.)).*
[yapf]
based_on_style = pep8
spaces_before_comment = 2
split_before_logical_operator = true
indent_width = 4
split_complex_comprehension = true
column_limit = 79
dedent_closing_brackets = true
spaces_around_power_operator = true
no_spaces_around_selected_binary_operators = false
split_penalty_import_names = 500
join_multiple_lines = true
[coverage:run]
omit =
tests/*
src/*
setup.py
.tox/*
dist/*
**/__init__.py
[bdist_wheel]
universal = 1
[zest.releaser]
create-wheel = yes
release = yes
register = yes