[flake8]
max-line-length = 88
max-complexity = 10
exclude = 
    .git,
    __pycache__,
    .venv,
    venv,
    .pytest_cache,
    build,
    dist,
    *.egg-info
ignore = 
    E203,
    W504,
    E501,
    W503
per-file-ignores =
    __init__.py:F401
    tests/*:S101