[flake8]
max-line-length = 88
extend-ignore = E203, W503, E402, E741
exclude = 
    .git,
    __pycache__,
    build,
    dist,
    .venv,
    .pytest_cache,
    htmlcov,
    node_modules,
    templates,
    docs
per-file-ignores =
    __init__.py: F401
    test/*: F401
    examples/*: F401
    benchmarks/*: F401
max-complexity = 15 