-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy path__init__.py
More file actions
16 lines (14 loc) · 604 Bytes
/
__init__.py
File metadata and controls
16 lines (14 loc) · 604 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
try:
from ._version import __version__
except ImportError:
# Fallback when using the package in dev mode without installing
# in editable mode with pip. It is highly recommended to install
# the package from a stable release or in editable mode: https://pip.pypa.io/en/stable/topics/local-project-installs/#editable-installs
import warnings
warnings.warn("Importing 'jupyterlab-visualpython' outside a proper installation.")
__version__ = "dev"
def _jupyter_labextension_paths():
return [{
"src": "labextension",
"dest": "jupyterlab-visualpython"
}]