From 8f32225672213bdc8d09d531c33265e7c3473e65 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Thu, 8 Jul 2021 13:10:23 +0900 Subject: [PATCH] setup.cfg: Replace dashes with underscores Since setuptools v54.1.0[1], dash-separated options causes a warning message like [2] and we should replace dashes with underscores. [1] https://github.com/pypa/setuptools/commit/a2e9ae4cb [2] UserWarning: Usage of dash-separated 'description-file' will not be supported in future versions. Please use the underscore name 'description_file' instead Change-Id: I05d9c484bb669ae33211e88924b20b7cfe7d0d67 --- setup.cfg | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.cfg b/setup.cfg index d93cd9b..a18e6c8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,11 +1,11 @@ [metadata] name = openstacki18n summary = OpenStack I18n -description-file = README.rst +description_file = README.rst author = OpenStack -author-email = openstack-i18n@lists.openstack.org -home-page = https://docs.openstack.org/i18n/latest/ -python-requires = >=3.6 +author_email = openstack-i18n@lists.openstack.org +home_page = https://docs.openstack.org/i18n/latest/ +python_requires = >=3.6 classifier = Environment :: OpenStack Intended Audience :: I18n Contributors