summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlikui <likui@yovole.com>2021-05-11 17:43:33 +0800
committerlikui <likui@yovole.com>2021-05-11 17:43:33 +0800
commit10227b681f546ef126b8f4ef2e9488c8a1a9f0c0 (patch)
tree97328b67c7ad9b8c703303b84f00860847d93632
parent2c2a1f4de7b6e3a1b8f3e3ff0fc5b23b5f0f4f7a (diff)
downloadpython-neutronclient-10227b681f546ef126b8f4ef2e9488c8a1a9f0c0.tar.gz
setup.cfg: Replace dashes with underscores7.4.0
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: I56804844c7438d7a5bffaaa363b9e3d79850c5c2
-rw-r--r--setup.cfg8
1 files changed, 4 insertions, 4 deletions
diff --git a/setup.cfg b/setup.cfg
index ad537f7..9f06b5c 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,12 +1,12 @@
[metadata]
name = python-neutronclient
summary = CLI and Client Library for OpenStack Networking
-description-file =
+description_file =
README.rst
author = OpenStack Networking Project
-author-email = openstack-discuss@lists.openstack.org
-home-page = https://docs.openstack.org/python-neutronclient/latest/
-python-requires = >=3.6
+author_email = openstack-discuss@lists.openstack.org
+home_page = https://docs.openstack.org/python-neutronclient/latest/
+python_requires = >=3.6
classifier =
Environment :: OpenStack
Intended Audience :: Developers