summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwu.shiming <wushiming@yovole.com>2021-05-12 10:18:48 +0800
committerwu.shiming <wushiming@yovole.com>2021-05-12 10:19:15 +0800
commit6a8f10a808aee8a4c2c765cd9c378498625b5e9c (patch)
tree52f8e1e6983237eabb8395ddf9e9eb7816333d7a
parent9bc517aa274d41572da87c0ad60ac4ae9f086f64 (diff)
downloadpython-designateclient-6a8f10a808aee8a4c2c765cd9c378498625b5e9c.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: I2447dd697d0282c22cbadc775b87df186e46bf42
-rw-r--r--setup.cfg8
1 files changed, 4 insertions, 4 deletions
diff --git a/setup.cfg b/setup.cfg
index 5a07d18..6d7fc54 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,13 +1,13 @@
[metadata]
name = python-designateclient
summary = OpenStack DNS-as-a-Service - Client
-description-file =
+description_file =
README.rst
license = Apache License, Version 2.0
author = OpenStack
-author-email = openstack-discuss@lists.openstack.org
-home-page = https://docs.openstack.org/python-designateclient/latest
-python-requires = >=3.6
+author_email = openstack-discuss@lists.openstack.org
+home_page = https://docs.openstack.org/python-designateclient/latest
+python_requires = >=3.6
classifier =
Environment :: OpenStack
Intended Audience :: Information Technology