From 721660612df4454726b723daf902abd23ba0109c Mon Sep 17 00:00:00 2001 From: Pedro Alvarez Date: Fri, 13 Sep 2013 09:24:00 +0000 Subject: Modify setup script --- setup.py | 17 ++++++++++++++--- 1 file 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', + ], + }, + ) + -- cgit v1.2.1