From c993e3ef104e81fb432d1ac8f406cf397b8f106b Mon Sep 17 00:00:00 2001 From: Tony Breeds Date: Thu, 2 Feb 2023 11:09:40 +1100 Subject: [PATCH] Use underscores in setup metadata Fixes: [pbr] Generating ChangeLog .../lib/python3.11/site-packages/setuptools/command/easy_install.py:144: EasyInstallDeprecationWarning: easy_install command is deprecated. Use build and pip and other standards-based tools. warnings.warn( .../lib/python3.11/site-packages/setuptools/dist.py:770: UserWarning: Usage of dash-separated 'description-file' will not be supported in future versions. Please use the underscore name 'description_file' instead warnings.warn( .../lib/python3.11/site-packages/setuptools/dist.py:770: UserWarning: Usage of dash-separated 'author-email' will not be supported in future versions. Please use the underscore name 'author_email' instead warnings.warn( .../lib/python3.11/site-packages/setuptools/dist.py:770: UserWarning: Usage of dash-separated 'home-page' will not be supported in future versions. Please use the underscore name 'home_page' instead warnings.warn( running editable_wheel Change-Id: I248d6a305108f4eb49b8ce10829fb4f650104c8a --- setup.cfg | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index 096d1af9..6dba4280 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,10 +1,10 @@ [metadata] name = openstack-election summary = OpenStack Election Documents -description-file = README.rst +description_file = README.rst author = OpenStack Election Officials -author-email = openstack-discuss@lists.openstack.org -home-page = https://governance.openstack.org/election/ +author_email = openstack-discuss@lists.openstack.org +home_page = https://governance.openstack.org/election/ classifier = Environment :: OpenStack Intended Audience :: Information Technology