-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
48 lines (42 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
43
44
45
46
47
48
[bdist_wheel]
universal = 1
[flake8]
max-line-length = 140
exclude =
tests/*
benker/drawing.py
[tool:pytest]
testpaths =
tests
python_files =
test_*.py
*_test.py
tests.py
addopts =
-rxEfsw
--strict
--doctest-modules
--doctest-glob=\*.rst
--tb=short
[isort]
force_single_line = True
line_length = 140
known_first_party = benker, tests
known_third_party = lxml, py, pytest, xmldiff
forced_separate = tests
default_section = FIRSTPARTY
not_skip = __init__.py
skip =
grid.py
table.py
[aliases]
snapshot = clean --all egg_info bdist_wheel
release = clean --all egg_info --tag-build="" -D bdist_wheel
sphinx = clean --all egg_info --tag-build="" -D build_sphinx
test = pytest
[upload_docs]
upload-dir = dist/docs
[build_sphinx]
builder = html
source-dir = docs
build-dir = dist/docs