jupyterlab-classiq 0.84.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.

Potentially problematic release.


This version of jupyterlab-classiq might be problematic. Click here for more details.

@@ -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"}]
@@ -0,0 +1,4 @@
1
+ # This file is auto-generated by Hatchling. As such, do not:
2
+ # - modify
3
+ # - track in version control e.g. be sure to add to .gitignore
4
+ __version__ = VERSION = '0.84.0'
@@ -0,0 +1,5 @@
1
+ {
2
+ "packageManager": "python",
3
+ "packageName": "jupyterlab_classiq",
4
+ "uninstallInstructions": "Use your Python package manager (pip, conda, etc.) to uninstall the package jupyterlab_classiq"
5
+ }
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "jupyterlab-classiq",
3
+ "version": "0.84.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.2b79e4572e36812638e0.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
+ }