You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
monkeyking/jupyterlab_classic/__init__.py

22 lines
491 B

from ._version import __version__
from .app import ClassicApp
from .serverextension import load_jupyter_server_extension
def _jupyter_server_extension_paths():
return [
{
'module': 'jupyterlab_classic'
}
]
def _jupyter_server_extension_points():
return [{"module": "jupyterlab_classic", "app": ClassicApp}]
def _jupyter_labextension_paths():
return [{
'src': 'labextension',
'dest': '@jupyterlab-classic/lab-extension'
}]