Fix setup.cfg keywords

author-email, home-page are aliases, replacing them for their final value

description-file -> long_description = file:

requires-python is old value and does not work, python-requires
is right metadata.

'python-requires' is introduced from PEP440 and requires-python was old value
in PEP345.
- https://packaging.python.org/guides/distributing-packages-using-setuptools/#python-requires
- https://www.python.org/dev/peps/pep-0345/#requires-python

Change-Id: I2d2cd5d660ef937bfe8445bae7cf6b279eb80b0f
This commit is contained in:
Ghanshyam Mann 2020-03-27 13:43:38 -05:00 committed by Moisés Guimarães
parent 9fcc04ff76
commit 826e26fb59
1 changed files with 4 additions and 5 deletions

View File

@ -1,12 +1,11 @@
[metadata] [metadata]
name = barbican_tempest_plugin name = barbican_tempest_plugin
summary = OpenStack barbican tempest tests. summary = OpenStack barbican tempest tests.
description-file = long_description = file: README.rst
README.rst
author = OpenStack author = OpenStack
author-email = openstack-dev@lists.openstack.org author_email = openstack-dev@lists.openstack.org
home-page = http://www.openstack.org/ url = http://www.openstack.org/
requires-python = >=3.6 python_requires = >=3.6
classifier = classifier =
Environment :: OpenStack Environment :: OpenStack
Intended Audience :: Information Technology Intended Audience :: Information Technology