From eaa04175eafd78925d33ed9ccce9035737fc2f3d Mon Sep 17 00:00:00 2001 From: John Griffith Date: Wed, 1 May 2013 09:27:57 -0600 Subject: [PATCH] Update setup.py prior to next upload to pypi. Minor updates to the setup.py file including: author and email. Change-Id: I0194a5fdaa1ea441115e6e869182e4dcb5b531e0 --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index a2b069355..ffefec4ae 100644 --- a/setup.py +++ b/setup.py @@ -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",