From 75351a9c141f7cb4e6ea4936cd4cdac36f3b2e1f Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Mon, 7 Dec 2020 17:16:54 +0100 Subject: [PATCH] Add jupyter_labextension_paths to init --- jupyterlab_classic/__init__.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/jupyterlab_classic/__init__.py b/jupyterlab_classic/__init__.py index 7fd5be14d..eb4429177 100644 --- a/jupyterlab_classic/__init__.py +++ b/jupyterlab_classic/__init__.py @@ -13,3 +13,10 @@ def _jupyter_server_extension_paths(): def _jupyter_server_extension_points(): return [{"module": "jupyterlab_classic", "app": ClassicApp}] + + +def _jupyter_labextension_paths(): + return [{ + 'src': 'labextension', + 'dest': '@jupyterlab-classic/lab-extension' + }] \ No newline at end of file