From 0667c24e8ff1d0eb4a734cf516809d63d793b3b1 Mon Sep 17 00:00:00 2001 From: Yandong Xuan Date: Sat, 1 May 2021 16:16:29 +0800 Subject: [PATCH] setup.cfg: Replace dashes with underscores Resolves warnings like the following: UserWarning: Usage of dash-separated 'description-file' will not be supported in future versions. Please use the underscore name 'description_file' instead Change-Id: I1b4082e121c57585408d23ecc528674ca5924b7e --- setup.cfg | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.cfg b/setup.cfg index 8b8f9031..977a9b46 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,13 +1,13 @@ [metadata] name = rally-openstack summary = Rally plugins for OpenStack platform -description-file = +description_file = README.rst author = OpenStack -author-email = openstack-discuss@lists.openstack.org -home-page = https://docs.openstack.org/rally/latest/ +author_email = openstack-discuss@lists.openstack.org +home_page = https://docs.openstack.org/rally/latest/ license = Apache License, Version 2.0 -python-requires = >=3.6 +python_requires = >=3.6 classifier = Environment :: OpenStack Intended Audience :: Developers