Skip to content

Commit 754e06c

Browse files
wu.shimingpriteau
authored andcommitted
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] pypa/setuptools@a2e9ae4cb Change-Id: I7a871d30bf935614ff4bc4a254cc4fc63c4218f4
1 parent d12e5a8 commit 754e06c

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

setup.cfg

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[metadata]
22
name = python-cloudkittyclient
33
summary = API client of cloudkitty, Rating as a Service project.
4-
description-file =
4+
description_file =
55
README.rst
66
author = OpenStack
7-
author-email = openstack-discuss@lists.openstack.org
8-
home-page = https://docs.openstack.org/python-cloudkittyclient/latest/
9-
python-requires = >=3.6
7+
author_email = openstack-discuss@lists.openstack.org
8+
home_page = https://docs.openstack.org/python-cloudkittyclient/latest/
9+
python_requires = >=3.6
1010
classifier =
1111
Environment :: OpenStack
1212
Intended Audience :: Information Technology

0 commit comments

Comments
 (0)