forked from Ouranosinc/raven
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
73 lines (63 loc) · 1.15 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
[bumpversion]
current_version = 0.16.0
commit = True
tag = False
[bumpversion:file:raven/__version__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
[bumpversion:file:docs/source/conf.py]
parse = version|release = {current_version}
replace = {new_version}
[bumpversion:file:Dockerfile]
search = Version="{current_version}"
replace = Version="{new_version}"
[bumpversion:file:.cruft.json]
search = "version": "{current_version}",
replace = "version": "{new_version}",
[metadata]
description-file = README.rst
[isort]
profile = black
py_version = 38
append_only = true
[coverage:run]
relative_files = True
[aliases]
test = pytest
[tool:pytest]
collect_ignore =
setup.py
addopts =
--color=yes
--verbose
--strict-markers
--tb=native
--numprocesses=logical
--maxprocesses=4
--dist=worksteal
python_files = test_*.py
norecursedirs = src .git bin
markers =
online: mark test to need internet connection
slow: mark test to be slow
[flake8]
ignore =
C901
E203
E231
E266
E501
F401
F403
W503
W504
max-line-length = 88
max-complexity = 12
exclude =
.git,
__pycache__,
docs/source/conf.py,
build,
dist,
src,
.eggs,