[flake8]
max-line-length = 88
extend-ignore = B008, E203, E402, E501, W503
exclude =
    .git,
    __pycache__,
    .venv,
    venv,
    build,
    dist,
    *.egg-info,
    alembic/versions,
    .mypy_cache,
    .pytest_cache
per-file-ignores =
    __init__.py: F401
