__init__.py 321 B

123456789101112
  1. """Server extension for JupyterLab."""
  2. # Copyright (c) Jupyter Development Team.
  3. # Distributed under the terms of the Modified BSD License.
  4. from ._version import __version__
  5. from .extension import load_jupyter_server_extension
  6. def _jupyter_server_extension_paths():
  7. return [{
  8. "module": "jupyterlab"
  9. }]