[flake8]
max-line-length = 120
extend-ignore = E203, E128, E122, W503
exclude =
    .git,
    __pycache__,
    venv,
    .venv,
    dist,
    build,
    *.egg-info
per-file-ignores =
    tests/*:C901
max-complexity = 16
