File: setup.cfg

package info (click to toggle)
h5sparse 0.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 176 kB
  • sloc: python: 321; sh: 5; makefile: 4
file content (55 lines) | stat: -rw-r--r-- 1,077 bytes parent folder | download | duplicates (3)
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
[aliases]
test=nosetests

[nosetests]
exe=1
verbosity=1
detailed-errors=1
with-coverage=1
cover-package=h5sparse
cover-branches=1
debug=nose.loader
cover-html=1
cover-html-dir=htmlcov
nocapture=1

[bdist_wheel]
universal=1

[flake8]
ignore =
    # D100: missing docstring in public module
    D100,
    # D101: missing docstring in public class
    D101,
    # D102: missing docstring in public method
    D102,
    # D103: missing docstring in public function
    D103,
    # D104  missing docstring in public package
    D104,
    # D105  missing docstring in magic method
    D105,
    # W503: line break occurred before a binary operator
    W503,
    # I201: missing newline between sections or imports
    I201,
    # N802: function name should be lowercase
    N802,
    # N803: argument name should be lowercase
    N803,
    # N806: variable in function should be lowercase
    N806,
exclude =
    .tox,
    .git,
    __pycache__,
    docs/source/conf.py,
    build,
    dist,
    *.pyc,
    *.egg-info,
    .cache,
    .eggs,
max-complexity = 10
max-line-length = 99