[flake8]
ignore = D203, E203, W503, W293, P101
exclude =
    .git,
    __pycache__,
    docs/source/conf.py,
    old,
    build,
    dist,
    wkz/migrations,
    .eggs,
    setup/other,
max-complexity = 14
max-line-length = 121
per-file-ignores =
    fit_parser.py: C901