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",