jupyterlab-classiq 0.103.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- jupyterlab_classiq/__init__.py +16 -0
- jupyterlab_classiq/_version.py +4 -0
- jupyterlab_classiq-0.103.0.data/data/share/jupyter/labextensions/jupyterlab-classiq/install.json +5 -0
- jupyterlab_classiq-0.103.0.data/data/share/jupyter/labextensions/jupyterlab-classiq/package.json +40 -0
- jupyterlab_classiq-0.103.0.data/data/share/jupyter/labextensions/jupyterlab-classiq/static/374.7519db0052ae0058a2bc.js +2857 -0
- jupyterlab_classiq-0.103.0.data/data/share/jupyter/labextensions/jupyterlab-classiq/static/374.7519db0052ae0058a2bc.js.LICENSE.txt +135 -0
- jupyterlab_classiq-0.103.0.data/data/share/jupyter/labextensions/jupyterlab-classiq/static/codicon.raw.css +1 -0
- jupyterlab_classiq-0.103.0.data/data/share/jupyter/labextensions/jupyterlab-classiq/static/remoteEntry.83fdeca71e41e8c9ac3b.js +1 -0
- jupyterlab_classiq-0.103.0.data/data/share/jupyter/labextensions/jupyterlab-classiq/static/style.js +4 -0
- jupyterlab_classiq-0.103.0.data/data/share/jupyter/labextensions/jupyterlab-classiq/static/third-party-licenses.json +10 -0
- jupyterlab_classiq-0.103.0.dist-info/METADATA +42 -0
- jupyterlab_classiq-0.103.0.dist-info/RECORD +13 -0
- jupyterlab_classiq-0.103.0.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
try:
|
|
2
|
+
from ._version import __version__ # type: ignore[import]
|
|
3
|
+
except ImportError:
|
|
4
|
+
# Fallback when using the package in dev mode without installing
|
|
5
|
+
# in editable mode with pip. It is highly recommended to install
|
|
6
|
+
# the package from a stable release or in editable mode: https://pip.pypa.io/en/stable/topics/local-project-installs/#editable-installs
|
|
7
|
+
import warnings
|
|
8
|
+
|
|
9
|
+
warnings.warn(
|
|
10
|
+
"Importing 'jupyterlab_classiq' outside a proper installation.", stacklevel=2
|
|
11
|
+
)
|
|
12
|
+
__version__ = "dev"
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
def _jupyter_labextension_paths() -> list[dict]:
|
|
16
|
+
return [{"src": "labextension", "dest": "jupyterlab-classiq"}]
|
jupyterlab_classiq-0.103.0.data/data/share/jupyter/labextensions/jupyterlab-classiq/package.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "jupyterlab-classiq",
|
|
3
|
+
"version": "0.103.0",
|
|
4
|
+
"description": "A JupyterLab Classiq extension.",
|
|
5
|
+
"private": true,
|
|
6
|
+
"keywords": [
|
|
7
|
+
"jupyter",
|
|
8
|
+
"jupyterlab",
|
|
9
|
+
"jupyterlab-extension"
|
|
10
|
+
],
|
|
11
|
+
"homepage": "https://classiq.io",
|
|
12
|
+
"license": "Proprietary",
|
|
13
|
+
"author": {
|
|
14
|
+
"name": "Classiq Technologies",
|
|
15
|
+
"email": "support@classiq.io"
|
|
16
|
+
},
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/Classiq"
|
|
20
|
+
},
|
|
21
|
+
"main": "./widget/index.js",
|
|
22
|
+
"types": "./widget/index.d.ts",
|
|
23
|
+
"jupyterlab": {
|
|
24
|
+
"extension": true,
|
|
25
|
+
"outputDir": "jupyterlab_classiq/labextension",
|
|
26
|
+
"webpackConfig": "./webpack.config.js",
|
|
27
|
+
"_build": {
|
|
28
|
+
"load": "static/remoteEntry.83fdeca71e41e8c9ac3b.js",
|
|
29
|
+
"extension": "./extension"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"scripts": {
|
|
33
|
+
"build": "jupyter labextension build .",
|
|
34
|
+
"clean": "rimraf jupyterlab_classiq/labextension"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@jupyterlab/builder": "^4.4.3"
|
|
39
|
+
}
|
|
40
|
+
}
|