summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorArthur Zamarin <arthurzam@gentoo.org>2021-10-12 20:04:50 +0300
committerArthur Zamarin <arthurzam@gentoo.org>2021-10-12 20:04:50 +0300
commit8904a339f2df3bd7958e73142d640cd3d0a9245c (patch)
tree97ee073ac3b8288533e3d41a8b77e70b1c26f75f /setup.cfg
parent15d3c2477510229e1b49c60fccfde5ffe94b2a76 (diff)
downloadeventlet-8904a339f2df3bd7958e73142d640cd3d0a9245c.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@gentoo.org>
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index e9ab705..26c955a 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,5 +1,5 @@
[metadata]
-description-file = README.rst
+description_file = README.rst
[wheel]
universal = True