Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/setup.cfg
blob: b40fd485abbce873c73195d59e99b356e35bd172 (plain)
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
[metadata]
license_file=COPYING

[sdist]
owner=root
group=root

[bdist_wheel]
universal = 1

[nosetests]
with-doctest=true
doctest-extension=doctest
doctest-options=+IGNORE_EXCEPTION_DETAIL
with-coverage=true
cover-branches=true
cover-package=pskc
cover-inclusive=true
cover-erase=true
cover-html=true
cover-html-dir=coverage
cover-min-percentage=100

[build_sphinx]
all_files = 1
builder = html man

[flake8]
ignore =
  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 = 78