From bacef722a32d1a19b00391053f7157b82553df0c Mon Sep 17 00:00:00 2001 From: Tim Burke Date: Thu, 22 Apr 2021 12:54:47 -0700 Subject: [PATCH] Use underscores instead of dashes in setup.cfg We've been seeing warnings like UserWarning: Usage of dash-separated 'home-page' will not be supported in future versions. Please use the underscore name 'home_page' instead for a while in our pep8 jobs; this ought to clean them up. As best I can tell, setuptools has supported either format for several years. Change-Id: I4d538859f278ac26a6b6d6845df103ebd4c49da3 --- setup.cfg | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index 16e1b3a8b5..d86cce3606 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,11 +1,11 @@ [metadata] name = swift summary = OpenStack Object Storage -description-file = +description_file = README.rst author = OpenStack -author-email = openstack-discuss@lists.openstack.org -home-page = https://docs.openstack.org/swift/latest/ +author_email = openstack-discuss@lists.openstack.org +home_page = https://docs.openstack.org/swift/latest/ classifier = Development Status :: 5 - Production/Stable Environment :: OpenStack