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: I1f6e855b0c9cddaf714bf5750f3edd167ede1527
This commit is contained in:
parent
41c93a403d
commit
5e435a4264
@ -1,11 +1,11 @@
|
||||
[metadata]
|
||||
name = ansible-role-container-registry
|
||||
summary = ansible-container-registry - Ansible role to deploy a container registry
|
||||
description-file =
|
||||
description_file =
|
||||
README.rst
|
||||
author = TripleO Team
|
||||
author-email = emilien@redhat.com
|
||||
home-page = https://opendev.org/openstack/ansible-role-container-registry
|
||||
author_email = emilien@redhat.com
|
||||
home_page = https://opendev.org/openstack/ansible-role-container-registry
|
||||
classifier =
|
||||
License :: OSI Approved :: Apache Software License
|
||||
Development Status :: 4 - Beta
|
||||
@ -15,7 +15,7 @@ classifier =
|
||||
Topic :: Utilities
|
||||
|
||||
[global]
|
||||
setup-hooks =
|
||||
setup_hooks =
|
||||
pbr.hooks.setup_hook
|
||||
|
||||
[files]
|
||||
|
Loading…
Reference in New Issue
Block a user