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
This commit is contained in:
Takashi Kajinami 2021-07-08 13:10:23 +09:00
parent 53a1782013
commit 8f32225672
1 changed files with 4 additions and 4 deletions

View File

@ -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