Files
pyWebLayout/setup.cfg
T

18 lines
365 B
INI

# Packaging metadata lives in pyproject.toml ([project]), which takes
# precedence over anything declared here. This file keeps only tool config
# that has nowhere better to live.
[flake8]
exclude =
venv,
build,
dist,
.git,
__pycache__,
.pytest_cache,
*.egg-info
max-line-length = 120
extend-ignore = E203
per-file-ignores =
*:F841