From 9e4530c79e46d392ed8f3e413bca1acffe022fe6 Mon Sep 17 00:00:00 2001 From: Pedro Alvarez Date: Mon, 12 May 2014 15:10:22 +0000 Subject: Change setup.py script --- setup.py | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 70c2b3f3..f2f48106 100644 --- a/setup.py +++ b/setup.py @@ -17,6 +17,16 @@ # THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT import setuptools -setuptools.setup( - setup_requires=['pbr'], - pbr=True) +setuptools.setup(name='python-novaclient', + version='2.17.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': [ + 'nova = novaclient.shell:main', + ], + }, + ) -- cgit v1.2.1