Show More
@@ -95,9 +95,9 b' def find_packages():' | |||
|
95 | 95 | """ |
|
96 | 96 | excludes = ['deathrow', 'quarantine'] |
|
97 | 97 | packages = [] |
|
98 |
for directory, subdirs,files in os.walk( |
|
|
99 |
package = directory.replace(os.path.sep, |
|
|
100 |
if any(package.startswith( |
|
|
98 | for directory, subdirs, files in os.walk("IPython"): | |
|
99 | package = directory.replace(os.path.sep, ".") | |
|
100 | if any(package.startswith("IPython." + exc) for exc in excludes): | |
|
101 | 101 | # package is to be excluded (e.g. deathrow) |
|
102 | 102 | continue |
|
103 | 103 | if '__init__.py' not in files: |
General Comments 0
You need to be logged in to leave comments.
Login now