Do the same install_requires as other projects

This will pull in tools/pip-requires on devstack start

Change-Id: If93319c82a5e3499391e8624582929d4f1adc9ec
This commit is contained in:
Steve Baker 2012-12-05 14:14:48 +13:00
parent 7e94df10bb
commit 93688df440
1 changed files with 3 additions and 1 deletions

View File

@ -24,6 +24,8 @@ from heat.openstack.common import setup
from heat import version
version.write_git_sha()
requires = setup.parse_requirements()
setuptools.setup(
name='heat',
version=version.HEAT_VERSION,
@ -36,7 +38,7 @@ setuptools.setup(
cmdclass=setup.get_cmdclass(),
packages=setuptools.find_packages(exclude=['bin']),
include_package_data=True,
install_requires=['extras'],
install_requires=requires,
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',