aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Zamarin <arthurzam@gmail.com>2021-10-13 20:49:48 +0300
committermrbean-bremen <mrbean-bremen@users.noreply.github.com>2021-10-13 20:09:22 +0200
commit589bae0c58298d92fea0e463ab5104166cd6e63c (patch)
tree2853f7068729764f4067862fcba5dca1acbad34c
parent83f53443531ebc2e265dbe4b0c5b44f914ae1112 (diff)
downloadpyfakefs-589bae0c58298d92fea0e463ab5104166cd6e63c.tar.gz
setup.cfg: Replace dashes with underscores
Setuptools v54.1.0 introduces a warning that the use of dash-separated options in 'setup.cfg' will not be supported in a future version [1]. Get ahead of the issue by replacing the dashes with underscores. Without this, we see 'UserWarning' messages like the following on new enough versions of setuptools: UserWarning: Usage of dash-separated 'description-file' will not be supported in future versions. Please use the underscore name 'description_file' instead [1] https://github.com/pypa/setuptools/commit/a2e9ae4cb Signed-off-by: Arthur Zamarin <arthurzam@gmail.com>
-rw-r--r--setup.cfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index f19282a..0379a60 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,4 +1,4 @@
[metadata]
-description-file = README.md
+description_file = README.md
[bdist_wheel]
universal=0