[flake8]
ignore =
    E203
    E266
    E231
    E501
    W503
    F403
    F401
    N803  # I like uppercase single-character names sometimes.
    N806  # Same here
max-line-length = 88
max-complexity = 21
docstring-convention=numpy
per-file-ignores =
    tests/*:D
    setup.py:D
rst-roles =
    class
    func
    mod
    data
    const
    meth
    attr
    exc
    obj
rst-directives =
    note
    warning
    versionadded
    versionchanged
    deprecated
    seealso
    currentmodule
    autosummary
