Files
bonobo/bonobo/contrib/jupyter/__init__.py

16 lines
291 B
Python

from bonobo.plugins.jupyter import JupyterOutputPlugin
def _jupyter_nbextension_paths():
return [{
'section': 'notebook',
'src': 'static',
'dest': 'bonobo-jupyter',
'require': 'bonobo-jupyter/extension'
}]
__all__ = [
'JupyterOutputPlugin',
]