We don't need to be installable via PIP so remove build and install deps

setup.py is installing dependencies via pip, making a mess of the system.

Instead if someone wants to install, expect they will have openstack
installed already, which should contain the necessary dependencies.

Change-Id: I8ff82aad1b85bd4e1acc454b04c5fcec2adcadbe
Signed-off-by: Steven Dake <sdake@redhat.com>
This commit is contained in:
Steven Dake 2012-06-28 11:36:50 -07:00
parent 038a65947c
commit 63cdd18d50
1 changed files with 1 additions and 6 deletions

View File

@ -26,9 +26,6 @@ setup.write_vcsversion('heat/vcsversion.py')
# import this after write_vcsversion because version imports vcsversion # import this after write_vcsversion because version imports vcsversion
from heat import version from heat import version
requires = setup.parse_requirements()
depend_links = setup.parse_dependency_links()
setuptools.setup( setuptools.setup(
name='heat', name='heat',
version=version.canonical_version_string(), version=version.canonical_version_string(),
@ -38,10 +35,8 @@ setuptools.setup(
author='Heat API Developers', author='Heat API Developers',
author_email='discuss@heat-api.org', author_email='discuss@heat-api.org',
url='http://heat.openstack.org/', url='http://heat.openstack.org/',
packages=setuptools.find_packages(exclude=['bin']),
cmdclass=setup.get_cmdclass(), cmdclass=setup.get_cmdclass(),
install_requires=requires, packages=setuptools.find_packages(exclude=['bin']),
dependency_links=depend_links,
include_package_data=True, include_package_data=True,
classifiers=[ classifiers=[
'Development Status :: 4 - Beta', 'Development Status :: 4 - Beta',