-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.cfg
62 lines (56 loc) · 1.12 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
[bdist_wheel]
universal = 1
[sdist]
formats=bztar
[flake8]
max-line-length = 100
exclude = tests/*,docs/*,.env,.tox,.xslt
[pycodestyle]
max-line-length = 100
exclude = tests/*,docs/*,.env,.tox,.xslt
statistics = True
show-source = True
count = True
verbose = 1
[tool:pytest]
norecursedirs =
.git
.tox
.env
dist
build
addopts =
-rxEfsw
--strict
--doctest-modules
--doctest-glob=\*.rst
--tb=short
--ignore=docs/conf.py
--ignore=setup.py
--ignore=.xslt
--ignore=.eggs
--no-cov-on-fail
--cov=rng2doc
--cov-report=term-missing
[isort]
multi_line_output = 1
use_parentheses = True
balanced_wrapping = True
# force_single_line = True
line_length = 90
# known_standard_library =
known_first_party = rng2doc
known_third_party = docopt,lxml,pytest,pydot
forced_separate = test_rng2doc
not_skip = __init__.py
verbose = True
skip = .env,.tox
skip_glob = .env/**.py,.tox/**.py
#
import_heading_stdlib=Standard Library
import_heading_firstparty=My Stuff
import_heading_thirdparty=Third Party Libraries
import_heading_localfolder=Local imports
[check-manifest]
ignore =
.coverage