-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathsetup.cfg
More file actions
28 lines (25 loc) · 729 Bytes
/
setup.cfg
File metadata and controls
28 lines (25 loc) · 729 Bytes
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
[bdist_wheel]
universal=1
[versioneer]
VCS = git
style = pep440
versionfile_source = python_jsonschema_objects/_version.py
versionfile_build = python_jsonschema_objects/_version.py
tag_prefix =
[flake8]
extend-exclude = build, env, .env, venv, .venv, .tox, versioneer.py
extend-ignore =
# Ignore "whitespace before ':'" because black enforces a different rule.
E203
# Ignore "do not assign a lambda expression, use a def".
E731
max-line-length = 88
per-file-ignores =
# Ignore "module level import not at top of file" for files generated that way.
docs/conf.py:E402
python_jsonschema_objects/__init__.py:E402
[isort]
atomic = true
extend_skip = versioneer.py
profile = black
skip_gitignore = true