forked from octoenergy/timeserio
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
52 lines (45 loc) · 1.18 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
[tool:pytest]
addopts = -x -s -v --cov=./timeserio/ --cov-report html --cov-report term
norecursedirs = .git src .tox venv
doctest_optionflags = ELLIPSIS NORMALIZE_WHITESPACE IGNORE_EXCEPTION_DETAIL
[flake8]
exclude = .git,__pycache__,legacy,build,dist,.tox,venv,models,.venv,docs
max-complexity = 10
application-import-names=timeserio,tests
ignore = T484,T499,D100,D101,D102,D103,D104,D105,D107,D200,N803,N806,W504
[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|venv|\.)).*
[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
venv/*
.venv/*
[bdist_wheel]
universal = 1
[zest.releaser]
create-wheel = yes
release = yes
register = yes