view setup.cfg @ 659:b97e5f3bbc8e

Test indexed list access in variable interpolations: ok. Also drop an extra note into the documentation.
author Franz Glasner <f.glasner@feldmann-mg.com>
date Mon, 30 May 2022 14:08:40 +0200
parents e85d1eddf539
children
line wrap: on
line source

[metadata]
license_file = LICENSE.txt

[egg_info]
tag_build =
tag_date = 0
tag_svn_revision = 0

[bdist_wheel]
universal = 1

[sdist]
formats = gztar

[flake8]
ignore =
    # "multiple statements on one line (colon)"
    E701,
    # "line break before binary operator"
    W503,
per-file-ignores =
    # Ignore "too many blank lines"
    configmix/compat.py:E303