summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPedro Alvarez <pedro.alvarez@codethink.co.uk>2014-05-12 15:10:22 +0000
committerPedro Alvarez <pedro.alvarez@codethink.co.uk>2014-05-12 15:10:22 +0000
commit9e4530c79e46d392ed8f3e413bca1acffe022fe6 (patch)
tree9cde76e1d5aabc02cae0376175b2cd0f993f330b
parent3393cb9ff828bf49722617f60f437b1941acd2c7 (diff)
downloadpython-novaclient-9e4530c79e46d392ed8f3e413bca1acffe022fe6.tar.gz
Change setup.py scriptbaserock/morph
-rw-r--r--setup.py16
1 files 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',
+ ],
+ },
+ )