File: setup.cfg

package info (click to toggle)
python-pskc 1.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,192 kB
  • sloc: python: 1,844; xml: 151; makefile: 22; sh: 9
file content (48 lines) | stat: -rw-r--r-- 901 bytes parent folder | download
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
[metadata]
license_file = COPYING

[sdist]
owner = root
group = root

[bdist_wheel]
universal = 1

[tool:pytest]
addopts = --doctest-modules --doctest-glob="*.doctest" pskc tests --cov=pskc --cov-report=term-missing:skip-covered --cov-report=html
doctest_optionflags = IGNORE_EXCEPTION_DETAIL

[coverage:run]
branch = true

[coverage:report]
show_missing = true

[coverage:html]
directory = coverage

[build_sphinx]
all_files = 1
builder = html man

[flake8]
ignore = 
	B902  # catching Exception is fine
	D105  # Missing docstring in magic method
	D107  # Missing docstring in __init__
	Q001  # Use of ''' multiline strings
	W504  # we put the binary operator on the preceding line
max-complexity = 14
max-line-length = 120
extend-exclude = 
	.github
	.pytest_cache
	build

[codespell]
skip = jquery*,*.egg-info,ChangeLog,./.git,./.tox,./build,./coverage,./std

[egg_info]
tag_build = 
tag_date = 0