You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
589 B
Python
23 lines
589 B
Python
"""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}]
|