diff options
author | Pedro Alvarez <pedro.alvarez@codethink.co.uk> | 2013-09-13 11:04:33 +0000 |
---|---|---|
committer | Pedro Alvarez <pedro.alvarez@codethink.co.uk> | 2013-09-13 11:04:33 +0000 |
commit | 21cc66a850c5ea1d2ffffb655da0c452b919ed3b (patch) | |
tree | 084fea642332ddfaaa8fb50ad7f08c67870ece95 | |
parent | c448bb44bf21c7f267fed1f6a65f876a40666df1 (diff) | |
download | python-keystoneclient-baserock/morph.tar.gz |
Modify setup scriptbaserock/morph
-rw-r--r-- | setup.py | 17 |
1 files changed, 14 insertions, 3 deletions
@@ -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', + ], + }, + ) + |