Files
zenml/venv/lib/python3.9/site-packages/jupyterlab_widgets/__init__.py
Christian Mantha 2ca0b9ef7c star
2026-03-02 19:10:52 -05:00

21 lines
599 B
Python

# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
from ._version import __version__
def _jupyter_labextension_paths():
import sys
from pathlib import Path
labext_name = '@jupyter-widgets/jupyterlab-manager'
here = Path(__file__).parent.resolve()
src_prefix = here.parent / 'labextension'
if not src_prefix.exists():
src_prefix = Path(sys.prefix) / f'share/jupyter/labextensions/{labext_name}'
return [{'src': str(src_prefix), 'dest': labext_name}]
__all__ = ['_jupyter_labextension_paths', '__version__']