forked from CESNET/libyang-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
39 lines (34 loc) · 745 Bytes
/
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
[sdist]
formats = gztar
owner = root
group = root
[bdist_wheel]
universal = false
[coverage:run]
include = libyang/*
omit = tests/test_*
[coverage:report]
skip_covered = false
ignore_errors = true
sort = Cover
[flake8]
# E713 test for membership should be 'not in'
# C801 Copyright notice not present
select =
E713,
C801,
copyright-check = True
copyright-min-file-size = 1
copyright-regexp = Copyright \(c\) \d{4}(-\d{4})?.*\n.*SPDX-License-Identifier: MIT
[isort]
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
line_length=88
lines_after_imports = 2
force_sort_within_sections = True
known_third_party = cffi
known_first_party = _libyang
default_section = FIRSTPARTY
no_lines_before = LOCALFOLDER