From 0b20224e9cf743580019302a0c6b8c976155d168 Mon Sep 17 00:00:00 2001 From: Alexander Seiler Date: Mon, 16 May 2022 05:44:36 +0200 Subject: [PATCH] Fix build warning Building the package currently prints this warning message: ``` /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 b88034e..08aedd7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,2 +1,2 @@ [metadata] -description-file = README.md +description_file = README.md