forked from sysrepo/sysrepo-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
42 lines (36 loc) · 835 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
40
41
42
# Copyright (c) 2020 6WIND S.A.
# SPDX-License-Identifier: BSD-3-Clause
[sdist]
formats = gztar
owner = root
group = root
[bdist_wheel]
universal = false
[coverage:run]
include = sysrepo/*
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: BSD-3-Clause
[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 = libyang,cffi
known_first_party = _sysrepo
default_section = FIRSTPARTY
no_lines_before = LOCALFOLDER