From 87557c4963544d76e1157a59e20de41f04ac532a Mon Sep 17 00:00:00 2001 From: Sean McGinnis Date: Thu, 7 Jun 2018 15:22:44 -0500 Subject: [PATCH] Fix package check errors Errors running `python setup.py check -r -s` due to required metadata for the package caused by having 'author' set but not 'author-email'. Full error is: ``` python setup.py check -r -s running check warning: check: missing meta-data: if 'author' supplied, 'author_email' must be supplied too error: The docutils package is needed. ``` This updates both author and author-email to be consistent with the values used in other OpenStack projects. Change-Id: Icdcb9b9328e361ba4883af5b464c9968f72607e8 --- setup.cfg | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index f8f97503..4b74789e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,8 @@ [metadata] name = monasca-common summary = Monasca common python modules -author = Hewlett-Packard +author = OpenStack +author-email = openstack-dev@lists.openstack.org home-page = https://github.com/openstack/monasca-common classifier = Intended Audience :: Information Technology