-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
35 lines (28 loc) · 686 Bytes
/
setup.cfg
File metadata and controls
35 lines (28 loc) · 686 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
33
34
35
[bumpversion]
current_version = v0.7.10
commit = False
tag = False
files = src/sdanalysis/version.py conda_recipe/meta.yaml
[metadata]
description-file = README.md
license_file = LICENSE
[mypy]
ignore_missing_imports = True
[tool:pytest]
addopts = -v --cov=sdanalysis --cov-config setup.cfg --durations=10
testpaths = test
log_level = DEBUG
[isort]
multi_line_output = 3
include_trailing_comma = True
combine_as_imports = True
force_grid_wrap = 0
line_length = 88
[coverage:run]
omit = src/sdanalysis/figures/interactive_config.py
[coverage:report]
omit = src/sdanalysis/figures/interactive_config.py
[flake8]
max-line-length = 80
select = C,E,F,W,B,B950
ignore = E501,W503,E203