File size: 589 Bytes
d1ceb73 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
"""Server extension for JupyterLab."""
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
from ._version import __version__ # noqa
from .serverextension import load_jupyter_server_extension # noqa
from .handlers.announcements import (
CheckForUpdate, # noqa
CheckForUpdateABC, # noqa
NeverCheckForUpdate, # noqa
)
def _jupyter_server_extension_paths():
return [{"module": "jupyterlab"}]
def _jupyter_server_extension_points():
from .labapp import LabApp
return [{"module": "jupyterlab", "app": LabApp}]
|