summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorStephen Finucane <stephenfin@redhat.com>2021-03-09 09:42:13 +0000
committerStephen Finucane <stephenfin@redhat.com>2021-03-09 12:49:50 +0000
commit7d08a360d73dbf6b1b317867a51dfe86573b51b9 (patch)
tree4938d23c2536adf60443fb6ae11221bb3dc12964 /setup.cfg
parent31889ce296d1e1a62fe5825292479009118ddfab (diff)
downloadnova-7d08a360d73dbf6b1b317867a51dfe86573b51b9.tar.gz
setup.cfg: Resolve warning
setuptools is now emitting the following warning when building nova: UserWarning: Usage of dash-separated 'python-requires' will not be supported in future versions. Please use the underscore name 'python_requires' instead Do as it says. While we're here, we update a few other options to use their new variants and add some additional metadata. This leaves one final warning: Warning: Unknown distribution option: 'requires_python' That unfortunately cannot be fixed here and requires a separate fix in pbr. Change-Id: I859bc89bc1ee80652f471c3463ef6562d720263b Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg15
1 files changed, 10 insertions, 5 deletions
diff --git a/setup.cfg b/setup.cfg
index 5a21620837..58de1ca03e 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,13 +1,18 @@
[metadata]
name = nova
summary = Cloud computing fabric controller
-description-file =
+description_file =
README.rst
author = OpenStack
-author-email = openstack-discuss@lists.openstack.org
-home-page = https://docs.openstack.org/nova/latest/
-python-requires = >=3.6
-classifier =
+author_email = openstack-discuss@lists.openstack.org
+url = https://docs.openstack.org/nova/latest/
+project_urls =
+ Bug Tracker = https://bugs.launchpad.net/nova/
+ Documentation = https://docs.openstack.org/nova/
+ Source Code = https://opendev.org/openstack/nova
+python_requires = >=3.6
+classifiers =
+ Development Status :: 5 - Production/Stable
Environment :: OpenStack
Intended Audience :: Information Technology
Intended Audience :: System Administrators