From dd7ae2dcec9347d368dbaa60fb4d0d1172881034 Mon Sep 17 00:00:00 2001 From: Denis Bilenko Date: Wed, 11 Feb 2009 13:38:06 +0600 Subject: [PATCH] fix setup.py not to install greentest as a package system-wide --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ddd3e85..39bf505 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( author='Linden Lab', author_email='eventletdev@lists.secondlife.com', url='http://wiki.secondlife.com/wiki/Eventlet', - packages=find_packages(), + packages=find_packages(exclude=['greentest']), long_description=""" Eventlet is a networking library written in Python. It achieves high scalability by using non-blocking io while at the same time