[flake8]
# W503: Line break occurred before a binary operator
ignore = W503
per-file-ignores =
    # F401: Module imported but unused
    # I100: Import statements are in the wrong order
    # I101: Imported names are in the wrong order
    __init__.py: F401
    miscore/__init__.py: F401, I100, I101
max-line-length = 99
max-doc-length = 99
exclude =
    .git,
    __pycache__,
    venv,
    doc/conf.py,
    doc/_build,
    build,
    dist,
    examples/article.py,
doctests = True
import-order-style = google
application_import_names =
    miscore,
    version
strictness = short
docstring_style = sphinx