annotate setup.cfg @ 654:0d6673d06c2c

Add support for using "tomllib" (in Python's stdlib since 3.11) and "tomli" TOML packages. They are preferred if they are found to be installed. But note that the declared dependency for the "toml" extra nevertheless is the "toml" package. Because it is available for all supported Python versions. So use Python 3.11+ or install "tomli" manually if you want to use the alternate packages.
author Franz Glasner <fzglas.hg@dom66.de>
date Thu, 19 May 2022 22:10:59 +0200
parents e85d1eddf539
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
75
de56425063cf Include LICENSE.txt in the wheel as well
Franz Glasner <hg@dom66.de>
parents: 0
diff changeset
1 [metadata]
de56425063cf Include LICENSE.txt in the wheel as well
Franz Glasner <hg@dom66.de>
parents: 0
diff changeset
2 license_file = LICENSE.txt
de56425063cf Include LICENSE.txt in the wheel as well
Franz Glasner <hg@dom66.de>
parents: 0
diff changeset
3
0
53ea2bc254e7 Begin a package to abstract some of the important configuration handling stuff.
Franz Glasner <hg@dom66.de>
parents:
diff changeset
4 [egg_info]
207
b3b5ed34d180 Handle most flake8 errors and warnings.
Franz Glasner <fzglas.hg@dom66.de>
parents: 75
diff changeset
5 tag_build =
0
53ea2bc254e7 Begin a package to abstract some of the important configuration handling stuff.
Franz Glasner <hg@dom66.de>
parents:
diff changeset
6 tag_date = 0
53ea2bc254e7 Begin a package to abstract some of the important configuration handling stuff.
Franz Glasner <hg@dom66.de>
parents:
diff changeset
7 tag_svn_revision = 0
53ea2bc254e7 Begin a package to abstract some of the important configuration handling stuff.
Franz Glasner <hg@dom66.de>
parents:
diff changeset
8
53ea2bc254e7 Begin a package to abstract some of the important configuration handling stuff.
Franz Glasner <hg@dom66.de>
parents:
diff changeset
9 [bdist_wheel]
53ea2bc254e7 Begin a package to abstract some of the important configuration handling stuff.
Franz Glasner <hg@dom66.de>
parents:
diff changeset
10 universal = 1
53ea2bc254e7 Begin a package to abstract some of the important configuration handling stuff.
Franz Glasner <hg@dom66.de>
parents:
diff changeset
11
53ea2bc254e7 Begin a package to abstract some of the important configuration handling stuff.
Franz Glasner <hg@dom66.de>
parents:
diff changeset
12 [sdist]
53ea2bc254e7 Begin a package to abstract some of the important configuration handling stuff.
Franz Glasner <hg@dom66.de>
parents:
diff changeset
13 formats = gztar
207
b3b5ed34d180 Handle most flake8 errors and warnings.
Franz Glasner <fzglas.hg@dom66.de>
parents: 75
diff changeset
14
b3b5ed34d180 Handle most flake8 errors and warnings.
Franz Glasner <fzglas.hg@dom66.de>
parents: 75
diff changeset
15 [flake8]
538
e85d1eddf539 more flake8 customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 207
diff changeset
16 ignore =
e85d1eddf539 more flake8 customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 207
diff changeset
17 # "multiple statements on one line (colon)"
e85d1eddf539 more flake8 customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 207
diff changeset
18 E701,
e85d1eddf539 more flake8 customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 207
diff changeset
19 # "line break before binary operator"
e85d1eddf539 more flake8 customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 207
diff changeset
20 W503,
207
b3b5ed34d180 Handle most flake8 errors and warnings.
Franz Glasner <fzglas.hg@dom66.de>
parents: 75
diff changeset
21 per-file-ignores =
b3b5ed34d180 Handle most flake8 errors and warnings.
Franz Glasner <fzglas.hg@dom66.de>
parents: 75
diff changeset
22 # Ignore "too many blank lines"
b3b5ed34d180 Handle most flake8 errors and warnings.
Franz Glasner <fzglas.hg@dom66.de>
parents: 75
diff changeset
23 configmix/compat.py:E303