ajlab 0.1.1__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.
ajlab-0.1.1/.gitignore ADDED
@@ -0,0 +1,39 @@
1
+ # Build artifacts
2
+ build/
3
+ dist/
4
+ *.egg-info/
5
+ *.egg
6
+
7
+ # Python
8
+ __pycache__/
9
+ *.py[cod]
10
+ *$py.class
11
+ *.so
12
+
13
+ # Virtual environments
14
+ .venv/
15
+ venv/
16
+ env/
17
+
18
+ # uv
19
+ .uv/
20
+ uv.lock
21
+
22
+ # Tools
23
+ .hatch/
24
+ .pytest_cache/
25
+ .mypy_cache/
26
+ .ruff_cache/
27
+
28
+ # Jupyter
29
+ .ipynb_checkpoints/
30
+ .virtual_documents/
31
+ *.nbconvert.ipynb
32
+ .jupyter/
33
+ .jupyter_ystore.db
34
+
35
+ # IDE
36
+ .vscode/
37
+ .idea/
38
+ *.swp
39
+ .DS_Store
ajlab-0.1.1/LICENSE ADDED
@@ -0,0 +1,28 @@
1
+ BSD 3-Clause License
2
+
3
+ Copyright (c) 2026, Jeremy Tuloup
4
+
5
+ Redistribution and use in source and binary forms, with or without
6
+ modification, are permitted provided that the following conditions are met:
7
+
8
+ 1. Redistributions of source code must retain the above copyright notice, this
9
+ list of conditions and the following disclaimer.
10
+
11
+ 2. Redistributions in binary form must reproduce the above copyright notice,
12
+ this list of conditions and the following disclaimer in the documentation
13
+ and/or other materials provided with the distribution.
14
+
15
+ 3. Neither the name of the copyright holder nor the names of its contributors
16
+ may be used to endorse or promote products derived from this software
17
+ without specific prior written permission.
18
+
19
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
23
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
ajlab-0.1.1/PKG-INFO ADDED
@@ -0,0 +1,43 @@
1
+ Metadata-Version: 2.4
2
+ Name: ajlab
3
+ Version: 0.1.1
4
+ Summary: Agent ready JupyterLab
5
+ Project-URL: Homepage, https://github.com/jtpio/ajlab
6
+ Project-URL: Repository, https://github.com/jtpio/ajlab
7
+ Project-URL: Issues, https://github.com/jtpio/ajlab/issues
8
+ Author: Jeremy Tuloup
9
+ License-Expression: BSD-3-Clause
10
+ License-File: LICENSE
11
+ Keywords: agent,ai,jupyter,jupyterlab
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Framework :: Jupyter
14
+ Classifier: Framework :: Jupyter :: JupyterLab
15
+ Classifier: Framework :: Jupyter :: JupyterLab :: 4
16
+ Classifier: Intended Audience :: Developers
17
+ Classifier: Intended Audience :: Science/Research
18
+ Classifier: Programming Language :: Python :: 3
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Programming Language :: Python :: 3.13
23
+ Classifier: Programming Language :: Python :: 3.14
24
+ Requires-Python: >=3.10
25
+ Requires-Dist: jupyter-collaboration-ui
26
+ Requires-Dist: jupyter-docprovider
27
+ Requires-Dist: jupyter-server-ydoc
28
+ Requires-Dist: jupyterlab
29
+ Description-Content-Type: text/markdown
30
+
31
+ # ajlab
32
+
33
+ Agent ready JupyterLab.
34
+
35
+ ## Install
36
+
37
+ ```bash
38
+ pip install ajlab
39
+ ```
40
+
41
+ ## License
42
+
43
+ BSD-3-Clause
ajlab-0.1.1/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # ajlab
2
+
3
+ Agent ready JupyterLab.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ pip install ajlab
9
+ ```
10
+
11
+ ## License
12
+
13
+ BSD-3-Clause
@@ -0,0 +1,9 @@
1
+ {
2
+ "disabledExtensions": {
3
+ "@jupyter/collaboration-extension:rtcPanel": true,
4
+ "@jupyter/collaboration-extension:shared-link": true,
5
+ "@jupyter/collaboration-extension:user-menu-bar": true,
6
+ "@jupyter/collaboration-extension:userEditorCursors": true,
7
+ "@jupyter/collaboration-extension:userMenu": true
8
+ }
9
+ }
@@ -0,0 +1,58 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "ajlab"
7
+ description = "Agent ready JupyterLab"
8
+ readme = "README.md"
9
+ requires-python = ">=3.10"
10
+ license = "BSD-3-Clause"
11
+ license-files = ["LICENSE"]
12
+ authors = [
13
+ { name = "Jeremy Tuloup" },
14
+ ]
15
+ keywords = ["jupyter", "jupyterlab", "agent", "ai"]
16
+ classifiers = [
17
+ "Development Status :: 3 - Alpha",
18
+ "Framework :: Jupyter",
19
+ "Framework :: Jupyter :: JupyterLab",
20
+ "Framework :: Jupyter :: JupyterLab :: 4",
21
+ "Intended Audience :: Developers",
22
+ "Intended Audience :: Science/Research",
23
+ "Programming Language :: Python :: 3",
24
+ "Programming Language :: Python :: 3.10",
25
+ "Programming Language :: Python :: 3.11",
26
+ "Programming Language :: Python :: 3.12",
27
+ "Programming Language :: Python :: 3.13",
28
+ "Programming Language :: Python :: 3.14",
29
+ ]
30
+ dynamic = ["version"]
31
+ dependencies = [
32
+ "jupyterlab",
33
+ "jupyter-collaboration-ui",
34
+ "jupyter-docprovider",
35
+ "jupyter-server-ydoc",
36
+ ]
37
+
38
+ [project.urls]
39
+ Homepage = "https://github.com/jtpio/ajlab"
40
+ Repository = "https://github.com/jtpio/ajlab"
41
+ Issues = "https://github.com/jtpio/ajlab/issues"
42
+
43
+ [tool.hatch.version]
44
+ path = "src/ajlab/__init__.py"
45
+
46
+ [tool.hatch.build.targets.wheel]
47
+ packages = ["src/ajlab"]
48
+
49
+ [tool.hatch.build.targets.wheel.shared-data]
50
+ "jupyter-config/labconfig" = "etc/jupyter/labconfig"
51
+
52
+ [tool.hatch.build.targets.sdist]
53
+ include = [
54
+ "/src",
55
+ "/jupyter-config",
56
+ "/LICENSE",
57
+ "/pyproject.toml",
58
+ ]
@@ -0,0 +1 @@
1
+ __version__ = "0.1.1"