__init__.py 343 B

1234567891011
  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__ # noqa
  5. from .extension import load_jupyter_server_extension # noqa
  6. def _jupyter_server_extension_paths():
  7. return [{'module': 'jupyterlab'}]