jupyterlab-js 4.4.2__tar.gz

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.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 David Brochart
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,52 @@
1
+ Metadata-Version: 2.4
2
+ Name: jupyterlab-js
3
+ Version: 4.4.2
4
+ Summary: A Python package distributing JupyterLab's static assets
5
+ Project-URL: Source, https://github.com/davidbrochart/jupyterlab-js
6
+ Author-email: David Brochart <david.brochart@gmail.com>
7
+ License: MIT License
8
+
9
+ Copyright (c) 2025 David Brochart
10
+
11
+ Permission is hereby granted, free of charge, to any person obtaining a copy
12
+ of this software and associated documentation files (the "Software"), to deal
13
+ in the Software without restriction, including without limitation the rights
14
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
+ copies of the Software, and to permit persons to whom the Software is
16
+ furnished to do so, subject to the following conditions:
17
+
18
+ The above copyright notice and this permission notice shall be included in all
19
+ copies or substantial portions of the Software.
20
+
21
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27
+ SOFTWARE.
28
+ License-File: LICENSE
29
+ Classifier: Development Status :: 4 - Beta
30
+ Classifier: Intended Audience :: Developers
31
+ Classifier: License :: OSI Approved :: BSD License
32
+ Classifier: Programming Language :: Python
33
+ Classifier: Programming Language :: Python :: 3
34
+ Classifier: Programming Language :: Python :: 3.9
35
+ Classifier: Programming Language :: Python :: 3.10
36
+ Classifier: Programming Language :: Python :: 3.11
37
+ Classifier: Programming Language :: Python :: 3.12
38
+ Classifier: Programming Language :: Python :: 3.13
39
+ Classifier: Typing :: Typed
40
+ Requires-Python: >=3.9
41
+ Description-Content-Type: text/markdown
42
+
43
+ # jupyterlab-js
44
+
45
+ A Python package distributing JupyterLab's static assets only, with no Python dependency.
46
+
47
+ ```bash
48
+ curl --output jupyterlab-4.4.2-py3-none-any.whl https://files.pythonhosted.org/packages/f6/ae/fbb93f4990b7648849b19112d8b3e7427bbfc9c5cc8fdc6bf14c0e86d104/jupyterlab-4.4.2-py3-none-any.whl
49
+ unzip jupyterlab-4.4.2-py3-none-any.whl
50
+ mkdir -p share/jupyter/lab
51
+ cp -r jupyterlab-4.4.2.data/data/share/jupyter/lab/static share/jupyter/lab/
52
+ ```
@@ -0,0 +1,10 @@
1
+ # jupyterlab-js
2
+
3
+ A Python package distributing JupyterLab's static assets only, with no Python dependency.
4
+
5
+ ```bash
6
+ curl --output jupyterlab-4.4.2-py3-none-any.whl https://files.pythonhosted.org/packages/f6/ae/fbb93f4990b7648849b19112d8b3e7427bbfc9c5cc8fdc6bf14c0e86d104/jupyterlab-4.4.2-py3-none-any.whl
7
+ unzip jupyterlab-4.4.2-py3-none-any.whl
8
+ mkdir -p share/jupyter/lab
9
+ cp -r jupyterlab-4.4.2.data/data/share/jupyter/lab/static share/jupyter/lab/
10
+ ```
@@ -0,0 +1,40 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "jupyterlab-js"
7
+ version = "4.4.2"
8
+ description = "A Python package distributing JupyterLab's static assets"
9
+ readme = "README.md"
10
+ authors = [
11
+ { name = "David Brochart", email = "david.brochart@gmail.com" },
12
+ ]
13
+ license = {file = "LICENSE"}
14
+ classifiers = [
15
+ "Development Status :: 4 - Beta",
16
+ "Intended Audience :: Developers",
17
+ "License :: OSI Approved :: BSD License",
18
+ "Typing :: Typed",
19
+ "Programming Language :: Python",
20
+ "Programming Language :: Python :: 3",
21
+ "Programming Language :: Python :: 3.9",
22
+ "Programming Language :: Python :: 3.10",
23
+ "Programming Language :: Python :: 3.11",
24
+ "Programming Language :: Python :: 3.12",
25
+ "Programming Language :: Python :: 3.13",
26
+ ]
27
+ requires-python = ">= 3.9"
28
+
29
+ [project.urls]
30
+ Source = "https://github.com/davidbrochart/jupyterlab-js"
31
+
32
+ [tool.hatch.build.targets.sdist]
33
+ include = ["src/jupyterlab_js"]
34
+
35
+ [tool.hatch.build.targets.wheel]
36
+ ignore-vcs = true
37
+ packages = ["src/jupyterlab_js"]
38
+
39
+ [tool.hatch.build.targets.wheel.shared-data]
40
+ "share/jupyter/lab/static" = "share/jupyter/lab/static"
@@ -0,0 +1,8 @@
1
+ import importlib.metadata
2
+
3
+
4
+ try:
5
+ __version__ = importlib.metadata.version("jupyterlab_js")
6
+ except importlib.metadata.PackageNotFoundError:
7
+ __version__ = "unknown"
8
+