summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorlikui <likui@yovole.com>2021-05-11 17:44:51 +0800
committerlikui <likui@yovole.com>2021-05-11 17:44:51 +0800
commit5d6fa4fc72a1fb34a0d85108428a96f2cdf2ce87 (patch)
tree5f7e5365866bc224c99f9c27793836563e1ec700 /setup.cfg
parent71d7b183193b8aa94b1eae4831a108b8c3534c30 (diff)
downloadtrove-5d6fa4fc72a1fb34a0d85108428a96f2cdf2ce87.tar.gz
setup.cfg: Replace dashes with underscores
Setuptools v54.1.0 introduces a warning that the use of dash-separated options in 'setup.cfg' will not be supported in a future version [1]. Get ahead of the issue by replacing the dashes with underscores. Without this, we see 'UserWarning' messages like the following on new enough versions of setuptools: UserWarning: Usage of dash-separated 'description-file' will not be supported in future versions. Please use the underscore name 'description_file' instead [1] https://github.com/pypa/setuptools/commit/a2e9ae4cb Change-Id: I5acc467985d80fe4eb7d7a69055c9b178bcebbd1
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg6
1 files changed, 3 insertions, 3 deletions
diff --git a/setup.cfg b/setup.cfg
index 3173d4e4..ad4e0d22 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,11 +1,11 @@
[metadata]
name = trove
summary = OpenStack DBaaS
-description-file =
+description_file =
README.rst
author = OpenStack
-author-email = openstack-discuss@lists.openstack.org
-home-page = https://docs.openstack.org/trove/latest/
+author_email = openstack-discuss@lists.openstack.org
+home_page = https://docs.openstack.org/trove/latest/
classifier =
Environment :: OpenStack
Intended Audience :: Information Technology