From bc38119d43a6ea0fac0a85634536e9293d3f7f56 Mon Sep 17 00:00:00 2001 From: Felix Yan Date: Tue, 10 May 2022 12:09:58 +0800 Subject: [PATCH] Fix a warning about dash-separated cfg key ``` /usr/lib/python3.10/site-packages/setuptools/dist.py:723: UserWarning: Usage of dash-separated 'description-file' will not be supported in future versions. Please use the underscore name 'description_file' instead ``` --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 988c5d6..622d480 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,3 +1,3 @@ [metadata] -description-file = README.rst +description_file = README.rst