summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormaaoyu <maaoyu@inspur.com>2021-05-04 10:08:03 +0800
committermaaoyu <maaoyu@inspur.com>2021-05-04 10:08:29 +0800
commitcba482114ca42f76858bf65184e43847a8940a9a (patch)
tree716c56b0c814081b8d314cbb708a5ca480ea30a7
parent31c58f24e7428008ef5cf41e9627910995a67d5a (diff)
downloadstevedore-cba482114ca42f76858bf65184e43847a8940a9a.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: I394e12bf1816e4e23e4f547db4bae89547af7989
-rw-r--r--setup.cfg8
1 files changed, 4 insertions, 4 deletions
diff --git a/setup.cfg b/setup.cfg
index 280f9f0..e50a4d5 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,11 +1,11 @@
[metadata]
name = stevedore
-description-file = README.rst
+description_file = README.rst
author = OpenStack
-author-email = openstack-discuss@lists.openstack.org
+author_email = openstack-discuss@lists.openstack.org
summary = Manage dynamic plugins for Python applications
-home-page = https://docs.openstack.org/stevedore/latest/
-python-requires = >=3.6
+home_page = https://docs.openstack.org/stevedore/latest/
+python_requires = >=3.6
classifier =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: Apache Software License