Show More
@@ -100,11 +100,11 b' def find_packages():' | |||
|
100 | 100 | """ |
|
101 | 101 | Find all of IPython's packages. |
|
102 | 102 | """ |
|
103 | excludes = ['deathrow'] | |
|
103 | excludes = ['deathrow', 'quarantine'] | |
|
104 | 104 | packages = [] |
|
105 | 105 | for dir,subdirs,files in os.walk('IPython'): |
|
106 | 106 | package = dir.replace(os.path.sep, '.') |
|
107 |
if any( |
|
|
107 | if any(package.startswith('IPython.'+exc) for exc in excludes): | |
|
108 | 108 | # package is to be excluded (e.g. deathrow) |
|
109 | 109 | continue |
|
110 | 110 | if '__init__.py' not in files: |
General Comments 0
You need to be logged in to leave comments.
Login now