-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathsetup.cfg
More file actions
31 lines (25 loc) · 800 Bytes
/
setup.cfg
File metadata and controls
31 lines (25 loc) · 800 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.1
commit = True
tag = True
[bumpversion:file:setup.py]
search = version='{current_version}'
replace = version='{new_version}'
[bdist_wheel]
universal = 1
[flake8]
ignore = E111,E114,E121,E125,E128,W504
exclude = .git,__pycache__,*.pyc,*.pyo,.tox,.eggs,*.egg-info,.ropeproject,scratch
max-line-length = 100
doctests = True
import-order-style = smarkets
application-import-names = stethoscope
[pep8]
ignore = E111,E114,E121,E125,E128
max_line_length = 100
[pylama:pep8]
max_line_length = 100
[tool:pytest]
norecursedirs = .* *.egg *.egg-info instance stethoscope/static config node_modules htmlcov scratch tmp
addopts = --doctest-modules --ignore=stethoscope/api/resource.py --ignore=setup.py --ignore=docs/conf.py
doctest_optionflags = ALLOW_UNICODE ELLIPSIS