-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
42 lines (33 loc) · 889 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
[aliases]
test = pytest
[build_sphinx]
source-dir = docs
build-dir = docs/_build
all_files = 1
builder = html
[bumpversion]
current_version = 0.1.0
[bumpversion:file:CITATION.cff]
search = version: "{current_version}"
replace = version: "{new_version}"
[bumpversion:file:fairtally/__version__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
[bumpversion:file:setup.py]
search = version="{current_version}"
replace = version="{new_version}"
[coverage:run]
branch = True
source = fairtally
[metadata]
description-file = README.rst
[tool:isort]
lines_after_imports = 2
force_single_line = 1
no_lines_before = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
known_first_party = fairtally
src_paths = fairtally,tests,livetests
line_length = 120
[tool:pytest]
testpaths = tests
addopts = --cov --cov-report xml --cov-report term --cov-report html