[flake8]
exclude = 
    .git,
    __pycache__,
    build,
    dist,
    doc,
    playground,
max-complexity = 10
select = E9,F63,F7,F82,F401,F402,F403
show-source = False
statistics = True
count = True
per-file-ignores =
    __init__.py:F401,F403,
    tests/*:F403
