Update setup.py prior to next upload to pypi.

Minor updates to the setup.py file including:
author and email.

Change-Id: I0194a5fdaa1ea441115e6e869182e4dcb5b531e0
This commit is contained in:
John Griffith 2013-05-01 09:27:57 -06:00
parent cc8dd55264
commit eaa04175ea

@ -14,7 +14,6 @@
import os
import setuptools
import sys
from cinderclient.openstack.common import setup
@ -32,8 +31,8 @@ def read_file(file_name):
setuptools.setup(
name=project,
version=setup.get_version(project),
author="Rackspace, based on work by Jacob Kaplan-Moss",
author_email="github@racklabs.com",
author="OpenStack Contributors",
author_email="openstack-dev@lists.openstack.org",
description="Client library for OpenStack Cinder API.",
long_description=read_file("README.rst"),
license="Apache License, Version 2.0",
@ -43,6 +42,7 @@ setuptools.setup(
install_requires=requires,
tests_require=tests_require,
setup_requires=['setuptools-git>=0.4'],
include_package_data=True,
dependency_links=depend_links,
classifiers=[
"Development Status :: 5 - Production/Stable",