diff options
| author | John Griffith <john.griffith@solidfire.com> | 2013-05-01 09:27:57 -0600 |
|---|---|---|
| committer | John Griffith <john.griffith@solidfire.com> | 2013-05-01 11:48:52 -0600 |
| commit | eaa04175eafd78925d33ed9ccce9035737fc2f3d (patch) | |
| tree | 44b6d1355b2fac3a8c2a65f44b89535a67aca003 /setup.py | |
| parent | cc8dd55264b2778e082eb57be1cdeb5fee44fc4b (diff) | |
| download | python-cinderclient-eaa04175eafd78925d33ed9ccce9035737fc2f3d.tar.gz | |
Update setup.py prior to next upload to pypi.
Minor updates to the setup.py file including:
author and email.
Change-Id: I0194a5fdaa1ea441115e6e869182e4dcb5b531e0
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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", |
