From: Alfredo Deza Date: Wed, 14 Aug 2013 16:00:51 +0000 (-0400) Subject: remove install_requires from setup.py X-Git-Tag: 1.1.0~1979^2~4 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=18ea0239ea8bfe56a03b58aa9fb7ea1ae8ebe9d9;p=teuthology.git remove install_requires from setup.py Signed-off-by: Alfredo Deza --- diff --git a/setup.py b/setup.py index 6fbd86803..7fe4d1e41 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,3 @@ -#!/usr/bin/python from setuptools import setup, find_packages setup( @@ -12,18 +11,6 @@ setup( license='MIT', keywords='ceph testing ssh cluster', - install_requires=[ - 'gevent ==0.13.6', - 'paramiko >=1.7.7', - 'configobj', - 'PyYAML', - 'bunch >=1.0.0', - 'argparse >=1.2.1', - 'httplib2', - 'beanstalkc >=0.2.0', - 'pexpect', - ], - # to find the code associated with entry point # A.B:foo first cd into directory A, open file B # and find sub foo