diff options
-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', + ], + }, + ) + |