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
This commit is contained in:
Sean McGinnis 2018-06-07 15:22:44 -05:00
parent c5436ecddb
commit 87557c4963
1 changed files with 2 additions and 1 deletions

View File

@ -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