-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
67 lines (53 loc) · 1.37 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[flake8]
# Base flake8 configuration:
# https://flake8.pycqa.org/en/latest/user/configuration.html
;format = wemake
show-source = True
statistics = False
doctests = True
# darglint configuration:
# https://github.com/terrencepreilly/darglint
strictness = long
docstring-style = numpy
# Plugins:
max-complexity = 9
max-line-length = 120
max-methods = 9
# Disable some checks:
# W503 Exclude some pydoctest checks globally
# E203 https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html#slices
ignore = W503 E203
# Excluding some directories:
exclude =
.git
__pycache__
.venv
venv
.eggs
*.egg
dist
build
# Ignoring some errors in some files:
per-file-ignores =
[isort]
# isort configuration: https://github.com/timothycrosley/isort/wiki/isort-Settings
include_trailing_comma = true
use_parentheses = true
# See https://github.com/timothycrosley/isort#multi-line-output-modes
multi_line_output = 3
line_length = 120
[tool:pytest]
# Directories that are not visited by pytest collector:
norecursedirs = .venv venv hooks *.egg .eggs dist build docs .tox .git __pycache__
# Extra options:
addopts =
--cov=gdal_boots
--strict-markers
--tb=short
--doctest-modules
testpaths = tests/
python_files = test_*.py
[semantic_release]
version_source = commit
version_variable = gdal_boots/__init__.py:__version__
commit_subject = chore(release): {version}