From 4ed91c672fa549706a7d3d648e1ae883d2cfaeaa Mon Sep 17 00:00:00 2001 From: Jason Kölker Date: Wed, 28 Sep 2011 09:45:39 -0500 Subject: update setup.py to only have common requires --- setup.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index d26e86f..0d03842 100644 --- a/setup.py +++ b/setup.py @@ -23,8 +23,11 @@ Common components for Openstack including paster templates. packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=True, - install_requires=['PasteDeploy', - 'PasteScript', + install_requires=[ + 'PasteDeploy', + 'eventlet', + 'routes', + 'WebOb', ], entry_points=""" # -*- Entry points: -*- -- cgit