view setup.cfg @ 597:1b03b7a566af

FIX: Remove __* from the manifest's "global-exclude": it excludes __init__.py files also. Use "exclude" instead. This is rooted: paths are given relative to the package root directory.
author Franz Glasner <f.glasner@feldmann-mg.com>
date Mon, 10 Jan 2022 11:34:31 +0100
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