-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
45 lines (39 loc) · 794 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
[metadata]
description_file = README.md
[bdist_wheel]
universal = 1
[versioneer]
VCS = git
style = pep440
versionfile_source = toolkit/_version.py
versionfile_build = toolkit/_version.py
tag_prefix = v
parentdir_prefix =
[flake8]
ignore = D203,W503
exclude = .git,__pycache__,build,dist,toolkit/_version.py,versioneer.py,toolkit/template
per-file-ignores =
setup.py:E501
# Match black line-length
max-line-length = 127
extend-ignore =
E203,
[isort]
skip = __init__.py,toolkit/template
profile = black
skip_gitignore = True
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
line_length=88
[coverage:run]
omit =
tests/*
main.py
setup.py
versioneer.py
toolkit/_version.py
toolkit/template/*
[tool:pytest]
testpaths=tests/