From 826e26fb593398635c317df40161e15c54ec567f Mon Sep 17 00:00:00 2001 From: Ghanshyam Mann Date: Fri, 27 Mar 2020 13:43:38 -0500 Subject: [PATCH] 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 --- setup.cfg | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/setup.cfg b/setup.cfg index ec9e3ce..85c66cf 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,12 +1,11 @@ [metadata] name = barbican_tempest_plugin summary = OpenStack barbican tempest tests. -description-file = - README.rst +long_description = file: README.rst author = OpenStack -author-email = openstack-dev@lists.openstack.org -home-page = http://www.openstack.org/ -requires-python = >=3.6 +author_email = openstack-dev@lists.openstack.org +url = http://www.openstack.org/ +python_requires = >=3.6 classifier = Environment :: OpenStack Intended Audience :: Information Technology