-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
71 lines (67 loc) · 918 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
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
[tool:pytest]
addopts =
--color=yes
--ignore=setup.py
--strict
--tb=native
python_files = test_*.py
markers =
online: mark test to need internet connection
slow: mark test to be slow
[flake8]
ignore = F401,E402,E203,W503
max-line-length = 120
exclude =
.git
__pycache__
docs/source/conf.py
build
dist
src
tests
rst-directives =
bibliography
autolink-skip
rst-roles =
doc
mod
py:attr
py:attribute
py:class
py:const
py:data
py:func
py:indicator
py:meth
py:mod
py:obj,
py:ref
ref
cite:cts
cite:p
cite:t
cite:ts
extend-ignore =
RST399
RST201
RST203
RST210
RST301
RST306
[pycodestyle]
count = False
exclude = docs/source/conf.py
ignore =
E226
E402
E501
max-line-length = 88
statistics = True
[pydocstyle]
convention = numpy
match = ((?!(test_|conftest|conf|locustfile)).)*\.py
[isort]
profile = black
py_version = 39
append_only = true
known_first_party = finch,_common,_utils