mirror of
https://github.com/jupyter/notebook.git
synced 2025-04-06 13:50:29 +08:00
Exclude IPython.quarantine from installation.
This commit is contained in:
parent
0344f92a62
commit
2c693fc89b
@ -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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user