__init__.py 452 B

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