setup cfg file
Some checks failed
Python CI / test (push) Failing after 46s

This commit is contained in:
Duncan Tourolle 2025-11-08 23:46:28 +01:00
parent 781a9b6c08
commit 4c99282aef

View File

@ -21,3 +21,17 @@ install_requires =
[options.packages.find]
include = pyWebLayout*
[flake8]
exclude =
venv,
build,
dist,
.git,
__pycache__,
.pytest_cache,
*.egg-info
max-line-length = 120
extend-ignore = E203
per-file-ignores =
*:F841