jpterm 0.2.12__tar.gz → 0.2.13__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.
- jpterm-0.2.13/.github/workflows/publish.yml +60 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/.github/workflows/test.yml +2 -2
- {jpterm-0.2.12 → jpterm-0.2.13}/PKG-INFO +22 -22
- {jpterm-0.2.12 → jpterm-0.2.13}/README.md +1 -1
- {jpterm-0.2.12 → jpterm-0.2.13}/docs/usage/CLI.md +1 -1
- jpterm-0.2.13/jpterm/__init__.py +1 -0
- jpterm-0.2.13/plugins/cell/txl_cell/__init__.py +1 -0
- jpterm-0.2.13/plugins/console/txl_console/__init__.py +1 -0
- jpterm-0.2.13/plugins/editors/txl_editors/__init__.py +1 -0
- jpterm-0.2.13/plugins/file_browser/txl_file_browser/__init__.py +1 -0
- jpterm-0.2.13/plugins/image_viewer/txl_image_viewer/__init__.py +1 -0
- jpterm-0.2.13/plugins/jpterm/txl_jpterm/__init__.py +1 -0
- jpterm-0.2.13/plugins/kernel/txl_kernel/__init__.py +1 -0
- jpterm-0.2.13/plugins/launcher/txl_launcher/__init__.py +1 -0
- jpterm-0.2.13/plugins/local_contents/txl_local_contents/__init__.py +1 -0
- jpterm-0.2.13/plugins/local_kernels/txl_local_kernels/__init__.py +1 -0
- jpterm-0.2.13/plugins/local_terminals/txl_local_terminals/__init__.py +1 -0
- jpterm-0.2.13/plugins/markdown_viewer/txl_markdown_viewer/__init__.py +1 -0
- jpterm-0.2.13/plugins/notebook_editor/txl_notebook_editor/__init__.py +1 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/remote_contents/pyproject.toml +1 -1
- jpterm-0.2.13/plugins/remote_contents/txl_remote_contents/__init__.py +1 -0
- jpterm-0.2.13/plugins/remote_kernels/txl_remote_kernels/__init__.py +1 -0
- jpterm-0.2.13/plugins/remote_terminals/txl_remote_terminals/__init__.py +1 -0
- jpterm-0.2.13/plugins/terminal/txl_terminal/__init__.py +1 -0
- jpterm-0.2.13/plugins/text_editor/txl_text_editor/__init__.py +1 -0
- jpterm-0.2.13/plugins/widgets/txl_widgets/__init__.py +1 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/pyproject.toml +20 -20
- {jpterm-0.2.12 → jpterm-0.2.13}/txl/pyproject.toml +1 -1
- jpterm-0.2.13/txl/txl/__init__.py +1 -0
- jpterm-0.2.12/jpterm/__init__.py +0 -1
- jpterm-0.2.12/plugins/cell/txl_cell/__init__.py +0 -1
- jpterm-0.2.12/plugins/console/txl_console/__init__.py +0 -1
- jpterm-0.2.12/plugins/editors/txl_editors/__init__.py +0 -1
- jpterm-0.2.12/plugins/file_browser/txl_file_browser/__init__.py +0 -1
- jpterm-0.2.12/plugins/image_viewer/txl_image_viewer/__init__.py +0 -1
- jpterm-0.2.12/plugins/jpterm/txl_jpterm/__init__.py +0 -1
- jpterm-0.2.12/plugins/kernel/txl_kernel/__init__.py +0 -1
- jpterm-0.2.12/plugins/launcher/txl_launcher/__init__.py +0 -1
- jpterm-0.2.12/plugins/local_contents/txl_local_contents/__init__.py +0 -1
- jpterm-0.2.12/plugins/local_kernels/txl_local_kernels/__init__.py +0 -1
- jpterm-0.2.12/plugins/local_terminals/txl_local_terminals/__init__.py +0 -1
- jpterm-0.2.12/plugins/markdown_viewer/txl_markdown_viewer/__init__.py +0 -1
- jpterm-0.2.12/plugins/notebook_editor/txl_notebook_editor/__init__.py +0 -1
- jpterm-0.2.12/plugins/remote_contents/txl_remote_contents/__init__.py +0 -1
- jpterm-0.2.12/plugins/remote_kernels/txl_remote_kernels/__init__.py +0 -1
- jpterm-0.2.12/plugins/remote_terminals/txl_remote_terminals/__init__.py +0 -1
- jpterm-0.2.12/plugins/terminal/txl_terminal/__init__.py +0 -1
- jpterm-0.2.12/plugins/text_editor/txl_text_editor/__init__.py +0 -1
- jpterm-0.2.12/plugins/widgets/txl_widgets/__init__.py +0 -1
- jpterm-0.2.12/txl/txl/__init__.py +0 -1
- {jpterm-0.2.12 → jpterm-0.2.13}/.gitignore +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/.pre-commit-config.yaml +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/CHANGELOG.md +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/LICENSE +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/config.yaml +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/docs/assets/logo.png +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/docs/index.md +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/docs/install.md +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/docs/plugins/console.md +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/docs/plugins/notebook_editor.md +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/docs/usage/key_bindings.md +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/examples/button.ipynb +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/examples/demo.md +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/examples/jupyter.png +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/examples/plotext.ipynb +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/examples/plotext2.ipynb +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/examples/switch.ipynb +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/examples/widget.ipynb +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/jpterm/cli.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/mkdocs.yml +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/cell/LICENSE.txt +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/cell/README.md +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/cell/pyproject.toml +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/cell/txl_cell/components.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/console/LICENSE.txt +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/console/README.md +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/console/pyproject.toml +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/console/txl_console/components.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/editors/LICENSE.txt +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/editors/README.md +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/editors/pyproject.toml +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/editors/txl_editors/components.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/file_browser/LICENSE.txt +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/file_browser/README.md +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/file_browser/pyproject.toml +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/file_browser/txl_file_browser/components.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/image_viewer/LICENSE.txt +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/image_viewer/README.md +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/image_viewer/pyproject.toml +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/image_viewer/txl_image_viewer/components.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/jpterm/LICENSE.txt +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/jpterm/README.md +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/jpterm/pyproject.toml +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/jpterm/txl_jpterm/components.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/jpterm/txl_jpterm/footer.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/jpterm/txl_jpterm/header.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/jpterm/txl_jpterm/jpterm.css +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/jpterm/txl_jpterm/main_area.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/kernel/LICENSE.txt +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/kernel/README.md +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/kernel/pyproject.toml +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/kernel/txl_kernel/driver.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/kernel/txl_kernel/message.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/launcher/LICENSE.txt +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/launcher/README.md +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/launcher/pyproject.toml +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/launcher/txl_launcher/components.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/local_contents/LICENSE.txt +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/local_contents/README.md +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/local_contents/pyproject.toml +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/local_contents/txl_local_contents/components.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/local_kernels/LICENSE.txt +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/local_kernels/README.md +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/local_kernels/pyproject.toml +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/local_kernels/txl_local_kernels/components.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/local_kernels/txl_local_kernels/connect.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/local_kernels/txl_local_kernels/driver.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/local_kernels/txl_local_kernels/kernelspec.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/local_kernels/txl_local_kernels/message.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/local_kernels/txl_local_kernels/paths.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/local_terminals/LICENSE.txt +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/local_terminals/README.md +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/local_terminals/pyproject.toml +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/local_terminals/txl_local_terminals/components.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/local_terminals/txl_local_terminals/terminal.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/local_terminals/txl_local_terminals/win_terminal.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/markdown_viewer/LICENSE.txt +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/markdown_viewer/README.md +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/markdown_viewer/pyproject.toml +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/markdown_viewer/txl_markdown_viewer/components.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/notebook_editor/LICENSE.txt +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/notebook_editor/README.md +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/notebook_editor/pyproject.toml +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/notebook_editor/txl_notebook_editor/components.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/notebook_viewer/LICENSE.txt +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/notebook_viewer/README.md +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/notebook_viewer/pyproject.toml +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/notebook_viewer/txl_notebook_viewer/__init__.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/notebook_viewer/txl_notebook_viewer/components.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/remote_contents/LICENSE.txt +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/remote_contents/README.md +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/remote_contents/txl_remote_contents/components.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/remote_kernels/LICENSE.txt +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/remote_kernels/README.md +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/remote_kernels/pyproject.toml +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/remote_kernels/txl_remote_kernels/components.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/remote_kernels/txl_remote_kernels/driver.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/remote_kernels/txl_remote_kernels/message.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/remote_terminals/LICENSE.txt +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/remote_terminals/README.md +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/remote_terminals/pyproject.toml +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/remote_terminals/txl_remote_terminals/components.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/terminal/LICENSE.txt +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/terminal/README.md +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/terminal/pyproject.toml +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/terminal/txl_terminal/components.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/text_editor/LICENSE.txt +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/text_editor/README.md +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/text_editor/pyproject.toml +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/text_editor/txl_text_editor/components.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/text_viewer/LICENSE.txt +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/text_viewer/README.md +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/text_viewer/pyproject.toml +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/text_viewer/txl_text_viewer/__init__.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/text_viewer/txl_text_viewer/components.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/widgets/LICENSE.txt +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/widgets/README.md +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/widgets/pyproject.toml +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/plugins/widgets/txl_widgets/components.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/txl/LICENSE.txt +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/txl/README.md +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/txl/txl/app.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/txl/txl/base.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/txl/txl/cli.py +0 -0
- {jpterm-0.2.12 → jpterm-0.2.13}/txl/txl/text_input.py +0 -0
@@ -0,0 +1,60 @@
|
|
1
|
+
name: publish
|
2
|
+
|
3
|
+
on:
|
4
|
+
release:
|
5
|
+
types: [published]
|
6
|
+
|
7
|
+
jobs:
|
8
|
+
build:
|
9
|
+
name: Build the source tarball and the wheel
|
10
|
+
runs-on: ubuntu-latest
|
11
|
+
environment: release
|
12
|
+
steps:
|
13
|
+
- uses: actions/checkout@v4
|
14
|
+
- name: Set up Python
|
15
|
+
uses: actions/setup-python@v5
|
16
|
+
with:
|
17
|
+
python-version: 3.x
|
18
|
+
- name: Install dependencies
|
19
|
+
run: pip install hatch
|
20
|
+
- name: Create packages
|
21
|
+
run: |
|
22
|
+
hatch build
|
23
|
+
cd txl; hatch build ../dist; cd ..
|
24
|
+
cd plugins/cell; hatch build ../../dist; cd ../..
|
25
|
+
cd plugins/console; hatch build ../../dist; cd ../..
|
26
|
+
cd plugins/editors; hatch build ../../dist; cd ../..
|
27
|
+
cd plugins/file_browser; hatch build ../../dist; cd ../..
|
28
|
+
cd plugins/image_viewer; hatch build ../../dist; cd ../..
|
29
|
+
cd plugins/jpterm; hatch build ../../dist; cd ../..
|
30
|
+
cd plugins/kernel; hatch build ../../dist; cd ../..
|
31
|
+
cd plugins/local_contents; hatch build ../../dist; cd ../..
|
32
|
+
cd plugins/local_terminals; hatch build ../../dist; cd ../..
|
33
|
+
cd plugins/local_kernels; hatch build ../../dist; cd ../..
|
34
|
+
cd plugins/notebook_editor; hatch build ../../dist; cd ../..
|
35
|
+
cd plugins/remote_contents; hatch build ../../dist; cd ../..
|
36
|
+
cd plugins/remote_terminals; hatch build ../../dist; cd ../..
|
37
|
+
cd plugins/remote_kernels; hatch build ../../dist; cd ../..
|
38
|
+
cd plugins/text_editor; hatch build ../../dist; cd ../..
|
39
|
+
cd plugins/markdown_viewer; hatch build ../../dist; cd ../..
|
40
|
+
cd plugins/terminal; hatch build ../../dist; cd ../..
|
41
|
+
cd plugins/launcher; hatch build ../../dist; cd ../..
|
42
|
+
cd plugins/widgets; hatch build ../../dist; cd ../..
|
43
|
+
- name: Archive packages
|
44
|
+
uses: actions/upload-artifact@v4
|
45
|
+
with:
|
46
|
+
name: dist
|
47
|
+
path: dist
|
48
|
+
|
49
|
+
publish:
|
50
|
+
name: Publish build artifacts to PyPI
|
51
|
+
needs: build
|
52
|
+
runs-on: ubuntu-latest
|
53
|
+
environment: release
|
54
|
+
permissions:
|
55
|
+
id-token: write
|
56
|
+
steps:
|
57
|
+
- name: Retrieve packages
|
58
|
+
uses: actions/download-artifact@v4
|
59
|
+
- name: Upload packages
|
60
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
@@ -1,4 +1,4 @@
|
|
1
|
-
name:
|
1
|
+
name: test
|
2
2
|
|
3
3
|
on:
|
4
4
|
push:
|
@@ -37,7 +37,7 @@ jobs:
|
|
37
37
|
fail-fast: false
|
38
38
|
matrix:
|
39
39
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
40
|
-
python-version: [ '3.10', '3.11' ]
|
40
|
+
python-version: [ '3.10', '3.11', '3.12' ]
|
41
41
|
|
42
42
|
steps:
|
43
43
|
- name: Checkout repository
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: jpterm
|
3
|
-
Version: 0.2.
|
3
|
+
Version: 0.2.13
|
4
4
|
Summary: Jupyter in the terminal
|
5
5
|
Project-URL: Homepage, https://github.com/davidbrochart/jpterm
|
6
6
|
Author-email: David Brochart <david.brochart@gmail.com>
|
@@ -16,33 +16,33 @@ Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
16
16
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
17
17
|
Requires-Python: >=3.10
|
18
18
|
Requires-Dist: rich-click>=1.6.0
|
19
|
-
Requires-Dist: txl-cell==0.2.
|
20
|
-
Requires-Dist: txl-console==0.2.
|
21
|
-
Requires-Dist: txl-editors==0.2.
|
22
|
-
Requires-Dist: txl-file-browser==0.2.
|
23
|
-
Requires-Dist: txl-image-viewer==0.2.
|
24
|
-
Requires-Dist: txl-jpterm==0.2.
|
25
|
-
Requires-Dist: txl-kernel==0.2.
|
26
|
-
Requires-Dist: txl-launcher==0.2.
|
27
|
-
Requires-Dist: txl-local-contents==0.2.
|
28
|
-
Requires-Dist: txl-local-kernels==0.2.
|
29
|
-
Requires-Dist: txl-local-terminals==0.2.
|
30
|
-
Requires-Dist: txl-markdown-viewer==0.2.
|
31
|
-
Requires-Dist: txl-notebook-editor==0.2.
|
32
|
-
Requires-Dist: txl-remote-contents==0.2.
|
33
|
-
Requires-Dist: txl-remote-kernels==0.2.
|
34
|
-
Requires-Dist: txl-remote-terminals==0.2.
|
35
|
-
Requires-Dist: txl-terminal==0.2.
|
36
|
-
Requires-Dist: txl-text-editor==0.2.
|
37
|
-
Requires-Dist: txl-widgets==0.2.
|
38
|
-
Requires-Dist: txl==0.2.
|
19
|
+
Requires-Dist: txl-cell==0.2.13
|
20
|
+
Requires-Dist: txl-console==0.2.13
|
21
|
+
Requires-Dist: txl-editors==0.2.13
|
22
|
+
Requires-Dist: txl-file-browser==0.2.13
|
23
|
+
Requires-Dist: txl-image-viewer==0.2.13
|
24
|
+
Requires-Dist: txl-jpterm==0.2.13
|
25
|
+
Requires-Dist: txl-kernel==0.2.13
|
26
|
+
Requires-Dist: txl-launcher==0.2.13
|
27
|
+
Requires-Dist: txl-local-contents==0.2.13
|
28
|
+
Requires-Dist: txl-local-kernels==0.2.13
|
29
|
+
Requires-Dist: txl-local-terminals==0.2.13
|
30
|
+
Requires-Dist: txl-markdown-viewer==0.2.13
|
31
|
+
Requires-Dist: txl-notebook-editor==0.2.13
|
32
|
+
Requires-Dist: txl-remote-contents==0.2.13
|
33
|
+
Requires-Dist: txl-remote-kernels==0.2.13
|
34
|
+
Requires-Dist: txl-remote-terminals==0.2.13
|
35
|
+
Requires-Dist: txl-terminal==0.2.13
|
36
|
+
Requires-Dist: txl-text-editor==0.2.13
|
37
|
+
Requires-Dist: txl-widgets==0.2.13
|
38
|
+
Requires-Dist: txl==0.2.13
|
39
39
|
Provides-Extra: docs
|
40
40
|
Requires-Dist: mkdocs; extra == 'docs'
|
41
41
|
Requires-Dist: mkdocs-material; extra == 'docs'
|
42
42
|
Requires-Dist: mkdocstrings-python; extra == 'docs'
|
43
43
|
Description-Content-Type: text/markdown
|
44
44
|
|
45
|
-
[](https://github.com/davidbrochart/jpterm/actions)
|
46
46
|
[](https://github.com/psf/black)
|
47
47
|
[](https://github.com/pypa/hatch)
|
48
48
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
[](https://github.com/davidbrochart/jpterm/actions)
|
2
2
|
[](https://github.com/psf/black)
|
3
3
|
[](https://github.com/pypa/hatch)
|
4
4
|
|
@@ -25,7 +25,7 @@ Jpterm can also be a client to a Jupyter server, just like when you use JupyterL
|
|
25
25
|
pip install "jupyterlab>=4"
|
26
26
|
pip install jupyter-collaboration
|
27
27
|
# Launch it:
|
28
|
-
jupyter lab --ServerApp.token='' --ServerApp.password='' --no-browser --port=8000
|
28
|
+
jupyter lab --ServerApp.token='' --ServerApp.password='' --ServerApp.disable_check_xsrf=True --no-browser --port=8000
|
29
29
|
|
30
30
|
# Or install jupyverse:
|
31
31
|
pip install "jupyverse[jupyterlab, noauth]"
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.2.13"
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.2.13"
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.2.13"
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.2.13"
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.2.13"
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.2.13"
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.2.13"
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.2.13"
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.2.13"
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.2.13"
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.2.13"
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.2.13"
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.2.13"
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.2.13"
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.2.13"
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.2.13"
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.2.13"
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.2.13"
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.2.13"
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.2.13"
|
@@ -25,26 +25,26 @@ keywords = [
|
|
25
25
|
]
|
26
26
|
dependencies = [
|
27
27
|
"rich-click >=1.6.0",
|
28
|
-
"txl ==0.2.
|
29
|
-
"txl_cell ==0.2.
|
30
|
-
"txl_console ==0.2.
|
31
|
-
"txl_editors ==0.2.
|
32
|
-
"txl_file_browser ==0.2.
|
33
|
-
"txl_image_viewer ==0.2.
|
34
|
-
"txl_jpterm ==0.2.
|
35
|
-
"txl_kernel ==0.2.
|
36
|
-
"txl_local_contents ==0.2.
|
37
|
-
"txl_local_terminals ==0.2.
|
38
|
-
"txl_local_kernels ==0.2.
|
39
|
-
"txl_notebook_editor ==0.2.
|
40
|
-
"txl_remote_contents ==0.2.
|
41
|
-
"txl_remote_terminals ==0.2.
|
42
|
-
"txl_remote_kernels ==0.2.
|
43
|
-
"txl_text_editor ==0.2.
|
44
|
-
"txl_markdown_viewer ==0.2.
|
45
|
-
"txl_terminal ==0.2.
|
46
|
-
"txl_launcher ==0.2.
|
47
|
-
"txl_widgets ==0.2.
|
28
|
+
"txl ==0.2.13",
|
29
|
+
"txl_cell ==0.2.13",
|
30
|
+
"txl_console ==0.2.13",
|
31
|
+
"txl_editors ==0.2.13",
|
32
|
+
"txl_file_browser ==0.2.13",
|
33
|
+
"txl_image_viewer ==0.2.13",
|
34
|
+
"txl_jpterm ==0.2.13",
|
35
|
+
"txl_kernel ==0.2.13",
|
36
|
+
"txl_local_contents ==0.2.13",
|
37
|
+
"txl_local_terminals ==0.2.13",
|
38
|
+
"txl_local_kernels ==0.2.13",
|
39
|
+
"txl_notebook_editor ==0.2.13",
|
40
|
+
"txl_remote_contents ==0.2.13",
|
41
|
+
"txl_remote_terminals ==0.2.13",
|
42
|
+
"txl_remote_kernels ==0.2.13",
|
43
|
+
"txl_text_editor ==0.2.13",
|
44
|
+
"txl_markdown_viewer ==0.2.13",
|
45
|
+
"txl_terminal ==0.2.13",
|
46
|
+
"txl_launcher ==0.2.13",
|
47
|
+
"txl_widgets ==0.2.13",
|
48
48
|
]
|
49
49
|
|
50
50
|
[project.optional-dependencies]
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.2.13"
|
jpterm-0.2.12/jpterm/__init__.py
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.2.12"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.2.12"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.2.12"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.2.12"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.2.12"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.2.12"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.2.12"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.2.12"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.2.12"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.2.12"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.2.12"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.2.12"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.2.12"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.2.12"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.2.12"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.2.12"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.2.12"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.2.12"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.2.12"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.2.12"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.2.12"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|