From 02cbcff645f45712a5ac689f6f3ef7ebfd2cbab4 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Sat, 26 Jul 2025 00:25:31 +0900 Subject: [PATCH] setup.cfg: Replace dashes with underscores Resolve the following warning introduced in setuptools v54.1.0[1]. 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 Change-Id: Id16c4658beffbe79d14238c10caa605c4a5224cf Signed-off-by: Takashi Kajinami --- setup.cfg | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.cfg b/setup.cfg index 656ba63..484a19a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,12 +1,12 @@ [metadata] name = pycadf author = OpenStack -author-email = openstack-discuss@lists.openstack.org +author_email = openstack-discuss@lists.openstack.org summary = CADF Library -description-file = +description_file = README.rst -home-page = https://docs.openstack.org/pycadf/latest/ -python-requires = >=3.9 +home_page = https://docs.openstack.org/pycadf/latest/ +python_requires = >=3.9 classifier = Development Status :: 5 - Production/Stable Environment :: OpenStack