summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPedro Alvarez <pedro.alvarez@codethink.co.uk>2013-09-13 11:04:33 +0000
committerPedro Alvarez <pedro.alvarez@codethink.co.uk>2013-09-13 11:04:33 +0000
commit21cc66a850c5ea1d2ffffb655da0c452b919ed3b (patch)
tree084fea642332ddfaaa8fb50ad7f08c67870ece95
parentc448bb44bf21c7f267fed1f6a65f876a40666df1 (diff)
downloadpython-keystoneclient-21cc66a850c5ea1d2ffffb655da0c452b919ed3b.tar.gz
Modify setup scriptbaserock/morph
-rw-r--r--setup.py17
1 files changed, 14 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index 2a0786a..7533c10 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-keystoneclient',
+ version='1.0',
+ description='Client Library for OpenStack Identity',
+ author='OpenStack',
+ author_email='openstack-dev@lists.openstack.org',
+ url='http://www.openstack.org',
+ packages=setuptools.find_packages(exclude=['tests']),
+ entry_points = {
+ 'console_scripts': [
+ 'keystone = keystoneclient.shell:main',
+ ],
+ },
+ )
+