-
Notifications
You must be signed in to change notification settings - Fork 31
/
setup.cfg
62 lines (51 loc) · 1.21 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
[metadata]
name = netconf
author = Christian Hopps
author_email = [email protected]
summary = Netconf server and client library.
description-file = README.rst
home-page = https://github.com/choppsv1/netconf/
license = Apache-2
[files]
packages =
netconf
[entry_points]
console_scripts =
netconf-client = netconf.__main__:main
[global]
setup-hooks =
pbr.hooks.setup_hook
[wheel]
universal = 1
[pbr]
autodoc_index_modules = True
[build_sphinx]
all-files = 1
build-dir = doc/build
source-dir = doc/source
warning-is-error = 1
[nosetests]
verbosity=1
with-doctest=1
[tool:pytest]
addopts = --doctest-modules
doctest_optionflags = ALLOW_UNICODE
testpaths = netconf tests
[coverage:run]
source=netconf,tests
[yapf]
based_on_style = pep8
coalesce_brackets = True
column_limit = 100
continuation_indent_width = 4
each_dict_entry_on_separate_line = True
space_between_ending_comma_and_closing_bracket = True
[flake8]
max-line-length=100
# E125 continuation line does not distinguish
# E128 continuation line does not distinguish
# E261 at least 2 spaces for inline comment
# enable E302 (expected 2 newlines)
# enable E303 too many blank lines
# F401 unused import caught by pylint if we want it
ignore=E125,E128,E261,F401