-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.cfg
More file actions
31 lines (28 loc) · 725 Bytes
/
setup.cfg
File metadata and controls
31 lines (28 loc) · 725 Bytes
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
[bumpversion]
current_version = 0.1.35
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<release>\w+)\.(?P<build>\d+))?
serialize =
{major}.{minor}.{patch}-{release}.{build}
{major}.{minor}.{patch}
commit = False
tag = False
[bumpversion:file:modeldb/__init__.py]
[wheel]
universal = 1
[tool:pytest]
addopts = -v --ignore=setup.py --capture=sys --pep8
pep8maxlinelength = 120
pep8ignore =
E402 # module level import not at top of file
E241 # multiple spaces after ','
E226 # missing white space around arithmetic operator
E222 # multiple spaces after operator
E501 E303 W391 modelbd/thrift
norecursedirs =
.git
.venv
dist
build
filterwarnings =
error
ignore::DeprecationWarning