summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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',
+ ],
+ },
+ )