File size: 452 Bytes
d1ceb73 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
try:
from ._version import __version__ # noqa
except ImportError:
# Fallback when using the package in dev mode without installing
# in editable mode with pip. Here this is particularly important
# to be able to run the generate_css.py script.
__version__ = "dev"
from .style import JupyterStyle # noqa
def _jupyter_labextension_paths():
return [{
"src": "labextension",
"dest": "jupyterlab_pygments"
}]
|