-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
79 lines (68 loc) · 1.56 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
68
69
70
71
72
73
74
75
76
77
78
79
; References:
; https://docs.python.org/3/distutils/configfile.html
; https://setuptools.readthedocs.io/en/latest/setuptools.html
; https://setuptools.readthedocs.io/en/latest/setuptools.html
; https://setuptools.readthedocs.io/en/latest/userguide/declarative_config.html
[aliases]
release = sdist bdist_wheel
docs = build_sphinx
[bdist_rpm]
doc_files = docs,LICENSE.txt,README.rst
install-script = scripts/rpm_install.sh
release = 1
packager = Chad Loether <chad.loether@outlook.com>
[bdist_wheel]
universal = 1
[build_sphinx]
build-dir = docs/build
source-dir = docs/source
[check-manifest]
ignore = .travis.yml
[clean]
all = 1
; TODO: Remove setup.cfg coverage stanzas/entries or tests/.coveragerc file
[coverage:html]
directory = tests/reports
[coverage:run]
branch = True
omit =
.eggs/*
setup.py
env/*
tests/*
*/tests/*
build/*
dist/*
configs/*
venv/*
[coverage:report]
ignore_errors = True
omit =
*/tests/*
.tox/*
tests/*
exclude_lines =
raise NotImplementedError.*
pragma: NO COVER
def __repr__
[metadata]
license-files = LICENSE.txt
description-file = README.rst
;suppress inspection for section "LongLine"
[pycodestyle]
# References:
# https://pycodestyle.readthedocs.io/
# select =
# hang-closing =
# quiet =
# show-pep8 =
# show-source =
# statistics =
max-doc-length = 75
max-line-length = 79
filename = *.py
exclude = __pycache__,docs/source/conf.py,venv*,old*,dist*,build*,*.egg-info,.idea*,.git,.tox*,*.pytest_cache*,setup.py
count = 1
format = pylint
verbose = 1
ignore = E111,E114,E121,E129,E402,E501,E741,E722,F401,F403,F405,W503,W504