view setup.cfg @ 731:75d37575472b

Docs: Add does to some methods that are yet missing docs
author Franz Glasner <fzglas.hg@dom66.de>
date Fri, 18 Aug 2023 00:29:55 +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