From ea2049c8a5cb55a93c6049d0bcbe649d42623a9c 2012-04-15 11:49:46 From: Thomas Kluyver Date: 2012-04-15 11:49:46 Subject: [PATCH] Exclude IPython.quarantine from installation. --- diff --git a/setupbase.py b/setupbase.py index 0bf0bb1..172d819 100644 --- a/setupbase.py +++ b/setupbase.py @@ -100,11 +100,11 @@ def find_packages(): """ Find all of IPython's packages. """ - excludes = ['deathrow'] + excludes = ['deathrow', 'quarantine'] packages = [] for dir,subdirs,files in os.walk('IPython'): package = dir.replace(os.path.sep, '.') - if any([ package.startswith('IPython.'+exc) for exc in excludes ]): + if any(package.startswith('IPython.'+exc) for exc in excludes): # package is to be excluded (e.g. deathrow) continue if '__init__.py' not in files: