adding python keystoneclient to setup.py deps

This commit is contained in:
Joe Heck 2012-01-27 07:06:03 +00:00
parent 080f523ff7
commit 68aa9cd10f
1 changed files with 1 additions and 1 deletions

View File

@ -10,5 +10,5 @@ setup(name='keystone',
packages=find_packages(exclude=['test', 'bin']),
scripts=['bin/keystone', 'bin/keystone-manage'],
zip_safe=False,
install_requires=['setuptools'],
install_requires = ['setuptools', 'python-keystoneclient'],
)