]> review.fuel-infra Code Review - openstack-build/heat-build.git/commitdiff
We don't need to be installable via PIP so remove build and install deps
authorSteven Dake <sdake@redhat.com>
Thu, 28 Jun 2012 18:36:50 +0000 (11:36 -0700)
committerSteven Dake <sdake@redhat.com>
Thu, 28 Jun 2012 18:38:27 +0000 (11:38 -0700)
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>
setup.py

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