[flake8]
max-line-length = 127
max-complexity = 20
ignore = E203,E501,W503,F821,C901
exclude =
    .git,
    __pycache__,
    .pytest_cache,
    .venv,
    venv,
    env,
    build,
    dist,
    *.egg-info,
    .tox,
    .mypy_cache,
    docs
per-file-ignores =
    __init__.py:F401