Files
MLPproject/.venv/lib/python3.12/site-packages/jupyterlab/__init__.py
2025-10-23 15:44:32 +02:00

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}]