[flake8]
max-line-length = 100
inline-quotes = double
multiline-quotes = double
docstring-quotes = double
extend-ignore =
    E203,
    W503,
    E501,
    D100,
    D104
exclude =
    .git,
    __pycache__,
    .venv,
    build,
    dist,
    *.egg-info
per-file-ignores =
    __init__.py:F401,D103
    tests/*:D103
