From f6542c3ee351731c5ce042c3d24bcc79235611d1 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Sun, 6 Feb 2022 02:25:20 +0900 Subject: [PATCH] setup.cfg: Replace dashes by underscores Since setuptools v54.1.0[1], the parmeters with dash have been deprecated in favor of the new parameters with underscore. This change updates the parameters accordingly to avoid the warnings like the example below. 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: I797f19835ef40341fdcdfc5f9aa5481192ebc2e4 --- setup.cfg | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.cfg b/setup.cfg index 9006a2c..8907cc7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,13 +1,13 @@ [metadata] name = validations-common summary = A common Ansible libraries and plugins for the validations framework -description-file = +description_file = README.rst long_description_content_type = text/x-rst author = OpenStack -author-email = openstack-discuss@lists.openstack.org -home-page = https://opendev.org/openstack/validations-common -python-requires = >=3.6 +author_email = openstack-discuss@lists.openstack.org +home_page = https://opendev.org/openstack/validations-common +python_requires = >=3.6 classifier = Environment :: OpenStack Intended Audience :: Information Technology