-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathsetup.cfg
More file actions
32 lines (25 loc) · 778 Bytes
/
setup.cfg
File metadata and controls
32 lines (25 loc) · 778 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
32
[bumpversion]
current_version = 0.14.1
[bumpversion:file:howfairis/__version__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
[bumpversion:file:setup.py]
search = version="{current_version}"
replace = version="{new_version}"
[bumpversion:file:CITATION.cff]
search = version: "{current_version}"
replace = version: "{new_version}"
[metadata]
description-file = README.md
[aliases]
test = pytest
[tool:pytest]
testpaths = tests
addopts = --cov --cov-config=.coveragerc --cov-report html --cov-report term --cov-report xml
[tool:isort]
lines_after_imports = 2
force_single_line = 1
no_lines_before = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
known_first_party = howfairis
src_paths = howfairis,tests,livetests
line_length = 120