summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--setup.py17
1 files changed, 14 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index 2a0786a..e6469f3 100644
--- a/setup.py
+++ b/setup.py
@@ -17,6 +17,17 @@
# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT
import setuptools
-setuptools.setup(
- setup_requires=['pbr>=0.5.21,<1.0'],
- pbr=True)
+setuptools.setup(name='python-glanceclient',
+ version='1.0',
+ description='OpenStack Image API Client Library',
+ author='OpenStack',
+ author_email='openstack-dev@lists.openstack.org',
+ url='http://www.openstack.org/',
+ packages=setuptools.find_packages(exclude=['tests']),
+ entry_points = {
+ 'console_scripts': [
+ 'glance = glanceclient.shell:main',
+ ],
+ },
+ )
+