devscholar-jupyter 0.1.6__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.
- devscholar_jupyter-0.1.6/.gitignore +91 -0
- devscholar_jupyter-0.1.6/.yarnrc.yml +1 -0
- devscholar_jupyter-0.1.6/=4.0.0 +390 -0
- devscholar_jupyter-0.1.6/LICENSE +21 -0
- devscholar_jupyter-0.1.6/PKG-INFO +165 -0
- devscholar_jupyter-0.1.6/README.md +118 -0
- devscholar_jupyter-0.1.6/devscholar_jupyter/__init__.py +14 -0
- devscholar_jupyter-0.1.6/devscholar_jupyter/_version.py +4 -0
- devscholar_jupyter-0.1.6/devscholar_jupyter/labextension/package.json +108 -0
- devscholar_jupyter-0.1.6/devscholar_jupyter/labextension/schemas/devscholar-jupyter/package.json.orig +103 -0
- devscholar_jupyter-0.1.6/devscholar_jupyter/labextension/schemas/devscholar-jupyter/plugin.json +53 -0
- devscholar_jupyter-0.1.6/devscholar_jupyter/labextension/static/181.a925bb364d669b836c73.js +1 -0
- devscholar_jupyter-0.1.6/devscholar_jupyter/labextension/static/246.c160cde5043ec3070ce3.js +1 -0
- devscholar_jupyter-0.1.6/devscholar_jupyter/labextension/static/remoteEntry.492d82dfe74d945b27de.js +1 -0
- devscholar_jupyter-0.1.6/devscholar_jupyter/labextension/static/style.js +4 -0
- devscholar_jupyter-0.1.6/devscholar_jupyter/labextension/static/third-party-licenses.json +16 -0
- devscholar_jupyter-0.1.6/install.json +5 -0
- devscholar_jupyter-0.1.6/package.json +103 -0
- devscholar_jupyter-0.1.6/pyproject.toml +76 -0
- devscholar_jupyter-0.1.6/schema/plugin.json +53 -0
- devscholar_jupyter-0.1.6/src/highlighter.ts +74 -0
- devscholar_jupyter-0.1.6/src/index.ts +286 -0
- devscholar_jupyter-0.1.6/src/metadataClient.ts +359 -0
- devscholar_jupyter-0.1.6/src/paperParser.ts +255 -0
- devscholar_jupyter-0.1.6/src/tooltip.ts +298 -0
- devscholar_jupyter-0.1.6/style/index.css +155 -0
- devscholar_jupyter-0.1.6/style/index.js +1 -0
- devscholar_jupyter-0.1.6/tsconfig.json +25 -0
- devscholar_jupyter-0.1.6/yarn.lock +7955 -0
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
.Python
|
|
11
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
*.egg-info/
|
|
24
|
+
.installed.cfg
|
|
25
|
+
*.egg
|
|
26
|
+
|
|
27
|
+
# PyInstaller
|
|
28
|
+
*.manifest
|
|
29
|
+
*.spec
|
|
30
|
+
|
|
31
|
+
# Installer logs
|
|
32
|
+
pip-log.txt
|
|
33
|
+
pip-delete-this-directory.txt
|
|
34
|
+
|
|
35
|
+
# Unit test / coverage reports
|
|
36
|
+
htmlcov/
|
|
37
|
+
.tox/
|
|
38
|
+
.nox/
|
|
39
|
+
.coverage
|
|
40
|
+
.coverage.*
|
|
41
|
+
.cache
|
|
42
|
+
nosetests.xml
|
|
43
|
+
coverage.xml
|
|
44
|
+
*.cover
|
|
45
|
+
*.py,cover
|
|
46
|
+
.hypothesis/
|
|
47
|
+
.pytest_cache/
|
|
48
|
+
|
|
49
|
+
# Translations
|
|
50
|
+
*.mo
|
|
51
|
+
*.pot
|
|
52
|
+
|
|
53
|
+
# Jupyter Notebook
|
|
54
|
+
.ipynb_checkpoints
|
|
55
|
+
|
|
56
|
+
# pyenv
|
|
57
|
+
.python-version
|
|
58
|
+
|
|
59
|
+
# Environments
|
|
60
|
+
.env
|
|
61
|
+
.venv
|
|
62
|
+
env/
|
|
63
|
+
venv/
|
|
64
|
+
ENV/
|
|
65
|
+
env.bak/
|
|
66
|
+
venv.bak/
|
|
67
|
+
|
|
68
|
+
# IDE
|
|
69
|
+
.idea/
|
|
70
|
+
.vscode/
|
|
71
|
+
*.swp
|
|
72
|
+
*.swo
|
|
73
|
+
*~
|
|
74
|
+
|
|
75
|
+
# Node
|
|
76
|
+
node_modules/
|
|
77
|
+
*.log
|
|
78
|
+
|
|
79
|
+
# JupyterLab extension
|
|
80
|
+
devscholar_jupyter/labextension/
|
|
81
|
+
devscholar_jupyter/_version.py
|
|
82
|
+
*.tsbuildinfo
|
|
83
|
+
tsconfig.tsbuildinfo
|
|
84
|
+
|
|
85
|
+
# Build artifacts
|
|
86
|
+
*.vsix
|
|
87
|
+
|
|
88
|
+
# Yarn
|
|
89
|
+
.yarn/cache
|
|
90
|
+
.yarn/install-state.gz
|
|
91
|
+
.yarn/unplugged
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
nodeLinker: node-modules
|
|
@@ -0,0 +1,390 @@
|
|
|
1
|
+
Collecting build
|
|
2
|
+
Downloading build-1.3.0-py3-none-any.whl.metadata (5.6 kB)
|
|
3
|
+
Collecting hatch
|
|
4
|
+
Downloading hatch-1.16.2-py3-none-any.whl.metadata (5.6 kB)
|
|
5
|
+
Collecting hatch-jupyter-builder
|
|
6
|
+
Downloading hatch_jupyter_builder-0.9.1-py3-none-any.whl.metadata (5.4 kB)
|
|
7
|
+
Collecting hatch-nodejs-version
|
|
8
|
+
Downloading hatch_nodejs_version-0.4.0-py3-none-any.whl.metadata (5.4 kB)
|
|
9
|
+
Collecting jupyterlab
|
|
10
|
+
Downloading jupyterlab-4.5.1-py3-none-any.whl.metadata (16 kB)
|
|
11
|
+
Collecting packaging>=19.1 (from build)
|
|
12
|
+
Downloading packaging-25.0-py3-none-any.whl.metadata (3.3 kB)
|
|
13
|
+
Collecting pyproject_hooks (from build)
|
|
14
|
+
Downloading pyproject_hooks-1.2.0-py3-none-any.whl.metadata (1.3 kB)
|
|
15
|
+
Collecting backports-zstd>=1.0.0 (from hatch)
|
|
16
|
+
Downloading backports_zstd-1.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.metadata (6.9 kB)
|
|
17
|
+
Collecting click>=8.0.6 (from hatch)
|
|
18
|
+
Downloading click-8.3.1-py3-none-any.whl.metadata (2.6 kB)
|
|
19
|
+
Collecting hatchling>=1.27.0 (from hatch)
|
|
20
|
+
Downloading hatchling-1.28.0-py3-none-any.whl.metadata (3.8 kB)
|
|
21
|
+
Collecting httpx>=0.22.0 (from hatch)
|
|
22
|
+
Downloading httpx-0.28.1-py3-none-any.whl.metadata (7.1 kB)
|
|
23
|
+
Collecting hyperlink>=21.0.0 (from hatch)
|
|
24
|
+
Downloading hyperlink-21.0.0-py2.py3-none-any.whl.metadata (1.5 kB)
|
|
25
|
+
Collecting keyring>=23.5.0 (from hatch)
|
|
26
|
+
Downloading keyring-25.7.0-py3-none-any.whl.metadata (21 kB)
|
|
27
|
+
Collecting pexpect~=4.8 (from hatch)
|
|
28
|
+
Downloading pexpect-4.9.0-py2.py3-none-any.whl.metadata (2.5 kB)
|
|
29
|
+
Collecting platformdirs>=2.5.0 (from hatch)
|
|
30
|
+
Downloading platformdirs-4.5.1-py3-none-any.whl.metadata (12 kB)
|
|
31
|
+
Collecting rich>=11.2.0 (from hatch)
|
|
32
|
+
Downloading rich-14.2.0-py3-none-any.whl.metadata (18 kB)
|
|
33
|
+
Collecting shellingham>=1.4.0 (from hatch)
|
|
34
|
+
Downloading shellingham-1.5.4-py2.py3-none-any.whl.metadata (3.5 kB)
|
|
35
|
+
Collecting tomli-w>=1.0 (from hatch)
|
|
36
|
+
Downloading tomli_w-1.2.0-py3-none-any.whl.metadata (5.7 kB)
|
|
37
|
+
Collecting tomlkit>=0.11.1 (from hatch)
|
|
38
|
+
Downloading tomlkit-0.13.3-py3-none-any.whl.metadata (2.8 kB)
|
|
39
|
+
Collecting userpath~=1.7 (from hatch)
|
|
40
|
+
Downloading userpath-1.9.2-py3-none-any.whl.metadata (3.0 kB)
|
|
41
|
+
Collecting uv>=0.5.23 (from hatch)
|
|
42
|
+
Downloading uv-0.9.21-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (11 kB)
|
|
43
|
+
Collecting virtualenv>=20.26.6 (from hatch)
|
|
44
|
+
Downloading virtualenv-20.35.4-py3-none-any.whl.metadata (4.6 kB)
|
|
45
|
+
Collecting ptyprocess>=0.5 (from pexpect~=4.8->hatch)
|
|
46
|
+
Downloading ptyprocess-0.7.0-py2.py3-none-any.whl.metadata (1.3 kB)
|
|
47
|
+
Collecting async-lru>=1.0.0 (from jupyterlab)
|
|
48
|
+
Downloading async_lru-2.0.5-py3-none-any.whl.metadata (4.5 kB)
|
|
49
|
+
Collecting ipykernel!=6.30.0,>=6.5.0 (from jupyterlab)
|
|
50
|
+
Downloading ipykernel-7.1.0-py3-none-any.whl.metadata (4.5 kB)
|
|
51
|
+
Collecting jinja2>=3.0.3 (from jupyterlab)
|
|
52
|
+
Downloading jinja2-3.1.6-py3-none-any.whl.metadata (2.9 kB)
|
|
53
|
+
Collecting jupyter-core (from jupyterlab)
|
|
54
|
+
Downloading jupyter_core-5.9.1-py3-none-any.whl.metadata (1.5 kB)
|
|
55
|
+
Collecting jupyter-lsp>=2.0.0 (from jupyterlab)
|
|
56
|
+
Downloading jupyter_lsp-2.3.0-py3-none-any.whl.metadata (1.8 kB)
|
|
57
|
+
Collecting jupyter-server<3,>=2.4.0 (from jupyterlab)
|
|
58
|
+
Downloading jupyter_server-2.17.0-py3-none-any.whl.metadata (8.5 kB)
|
|
59
|
+
Collecting jupyterlab-server<3,>=2.28.0 (from jupyterlab)
|
|
60
|
+
Downloading jupyterlab_server-2.28.0-py3-none-any.whl.metadata (5.9 kB)
|
|
61
|
+
Collecting notebook-shim>=0.2 (from jupyterlab)
|
|
62
|
+
Downloading notebook_shim-0.2.4-py3-none-any.whl.metadata (4.0 kB)
|
|
63
|
+
Requirement already satisfied: setuptools>=41.1.0 in /opt/hostedtoolcache/Python/3.11.14/x64/lib/python3.11/site-packages (from jupyterlab) (79.0.1)
|
|
64
|
+
Collecting tornado>=6.2.0 (from jupyterlab)
|
|
65
|
+
Downloading tornado-6.5.4-cp39-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.8 kB)
|
|
66
|
+
Collecting traitlets (from jupyterlab)
|
|
67
|
+
Downloading traitlets-5.14.3-py3-none-any.whl.metadata (10 kB)
|
|
68
|
+
Collecting anyio (from httpx>=0.22.0->hatch)
|
|
69
|
+
Downloading anyio-4.12.0-py3-none-any.whl.metadata (4.3 kB)
|
|
70
|
+
Collecting certifi (from httpx>=0.22.0->hatch)
|
|
71
|
+
Downloading certifi-2026.1.4-py3-none-any.whl.metadata (2.5 kB)
|
|
72
|
+
Collecting httpcore==1.* (from httpx>=0.22.0->hatch)
|
|
73
|
+
Downloading httpcore-1.0.9-py3-none-any.whl.metadata (21 kB)
|
|
74
|
+
Collecting idna (from httpx>=0.22.0->hatch)
|
|
75
|
+
Downloading idna-3.11-py3-none-any.whl.metadata (8.4 kB)
|
|
76
|
+
Collecting h11>=0.16 (from httpcore==1.*->httpx>=0.22.0->hatch)
|
|
77
|
+
Downloading h11-0.16.0-py3-none-any.whl.metadata (8.3 kB)
|
|
78
|
+
Collecting argon2-cffi>=21.1 (from jupyter-server<3,>=2.4.0->jupyterlab)
|
|
79
|
+
Downloading argon2_cffi-25.1.0-py3-none-any.whl.metadata (4.1 kB)
|
|
80
|
+
Collecting jupyter-client>=7.4.4 (from jupyter-server<3,>=2.4.0->jupyterlab)
|
|
81
|
+
Downloading jupyter_client-8.7.0-py3-none-any.whl.metadata (8.3 kB)
|
|
82
|
+
Collecting jupyter-events>=0.11.0 (from jupyter-server<3,>=2.4.0->jupyterlab)
|
|
83
|
+
Downloading jupyter_events-0.12.0-py3-none-any.whl.metadata (5.8 kB)
|
|
84
|
+
Collecting jupyter-server-terminals>=0.4.4 (from jupyter-server<3,>=2.4.0->jupyterlab)
|
|
85
|
+
Downloading jupyter_server_terminals-0.5.3-py3-none-any.whl.metadata (5.6 kB)
|
|
86
|
+
Collecting nbconvert>=6.4.4 (from jupyter-server<3,>=2.4.0->jupyterlab)
|
|
87
|
+
Downloading nbconvert-7.16.6-py3-none-any.whl.metadata (8.5 kB)
|
|
88
|
+
Collecting nbformat>=5.3.0 (from jupyter-server<3,>=2.4.0->jupyterlab)
|
|
89
|
+
Downloading nbformat-5.10.4-py3-none-any.whl.metadata (3.6 kB)
|
|
90
|
+
Collecting overrides>=5.0 (from jupyter-server<3,>=2.4.0->jupyterlab)
|
|
91
|
+
Downloading overrides-7.7.0-py3-none-any.whl.metadata (5.8 kB)
|
|
92
|
+
Collecting prometheus-client>=0.9 (from jupyter-server<3,>=2.4.0->jupyterlab)
|
|
93
|
+
Downloading prometheus_client-0.23.1-py3-none-any.whl.metadata (1.9 kB)
|
|
94
|
+
Collecting pyzmq>=24 (from jupyter-server<3,>=2.4.0->jupyterlab)
|
|
95
|
+
Downloading pyzmq-27.1.0-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.metadata (6.0 kB)
|
|
96
|
+
Collecting send2trash>=1.8.2 (from jupyter-server<3,>=2.4.0->jupyterlab)
|
|
97
|
+
Downloading send2trash-2.0.0-py3-none-any.whl.metadata (4.3 kB)
|
|
98
|
+
Collecting terminado>=0.8.3 (from jupyter-server<3,>=2.4.0->jupyterlab)
|
|
99
|
+
Downloading terminado-0.18.1-py3-none-any.whl.metadata (5.8 kB)
|
|
100
|
+
Collecting websocket-client>=1.7 (from jupyter-server<3,>=2.4.0->jupyterlab)
|
|
101
|
+
Downloading websocket_client-1.9.0-py3-none-any.whl.metadata (8.3 kB)
|
|
102
|
+
Collecting babel>=2.10 (from jupyterlab-server<3,>=2.28.0->jupyterlab)
|
|
103
|
+
Downloading babel-2.17.0-py3-none-any.whl.metadata (2.0 kB)
|
|
104
|
+
Collecting json5>=0.9.0 (from jupyterlab-server<3,>=2.28.0->jupyterlab)
|
|
105
|
+
Downloading json5-0.13.0-py3-none-any.whl.metadata (36 kB)
|
|
106
|
+
Collecting jsonschema>=4.18.0 (from jupyterlab-server<3,>=2.28.0->jupyterlab)
|
|
107
|
+
Downloading jsonschema-4.25.1-py3-none-any.whl.metadata (7.6 kB)
|
|
108
|
+
Collecting requests>=2.31 (from jupyterlab-server<3,>=2.28.0->jupyterlab)
|
|
109
|
+
Downloading requests-2.32.5-py3-none-any.whl.metadata (4.9 kB)
|
|
110
|
+
Collecting typing_extensions>=4.5 (from anyio->httpx>=0.22.0->hatch)
|
|
111
|
+
Downloading typing_extensions-4.15.0-py3-none-any.whl.metadata (3.3 kB)
|
|
112
|
+
Collecting argon2-cffi-bindings (from argon2-cffi>=21.1->jupyter-server<3,>=2.4.0->jupyterlab)
|
|
113
|
+
Downloading argon2_cffi_bindings-25.1.0-cp39-abi3-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.metadata (7.4 kB)
|
|
114
|
+
Collecting pathspec>=0.10.1 (from hatchling>=1.27.0->hatch)
|
|
115
|
+
Downloading pathspec-1.0.0-py3-none-any.whl.metadata (12 kB)
|
|
116
|
+
Collecting pluggy>=1.0.0 (from hatchling>=1.27.0->hatch)
|
|
117
|
+
Downloading pluggy-1.6.0-py3-none-any.whl.metadata (4.8 kB)
|
|
118
|
+
Collecting trove-classifiers (from hatchling>=1.27.0->hatch)
|
|
119
|
+
Downloading trove_classifiers-2025.12.1.14-py3-none-any.whl.metadata (2.4 kB)
|
|
120
|
+
Collecting comm>=0.1.1 (from ipykernel!=6.30.0,>=6.5.0->jupyterlab)
|
|
121
|
+
Downloading comm-0.2.3-py3-none-any.whl.metadata (3.7 kB)
|
|
122
|
+
Collecting debugpy>=1.6.5 (from ipykernel!=6.30.0,>=6.5.0->jupyterlab)
|
|
123
|
+
Downloading debugpy-1.8.19-cp311-cp311-manylinux_2_34_x86_64.whl.metadata (1.4 kB)
|
|
124
|
+
Collecting ipython>=7.23.1 (from ipykernel!=6.30.0,>=6.5.0->jupyterlab)
|
|
125
|
+
Downloading ipython-9.9.0-py3-none-any.whl.metadata (4.6 kB)
|
|
126
|
+
Collecting matplotlib-inline>=0.1 (from ipykernel!=6.30.0,>=6.5.0->jupyterlab)
|
|
127
|
+
Downloading matplotlib_inline-0.2.1-py3-none-any.whl.metadata (2.3 kB)
|
|
128
|
+
Collecting nest-asyncio>=1.4 (from ipykernel!=6.30.0,>=6.5.0->jupyterlab)
|
|
129
|
+
Downloading nest_asyncio-1.6.0-py3-none-any.whl.metadata (2.8 kB)
|
|
130
|
+
Collecting psutil>=5.7 (from ipykernel!=6.30.0,>=6.5.0->jupyterlab)
|
|
131
|
+
Downloading psutil-7.2.1-cp36-abi3-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl.metadata (22 kB)
|
|
132
|
+
Collecting decorator>=4.3.2 (from ipython>=7.23.1->ipykernel!=6.30.0,>=6.5.0->jupyterlab)
|
|
133
|
+
Downloading decorator-5.2.1-py3-none-any.whl.metadata (3.9 kB)
|
|
134
|
+
Collecting ipython-pygments-lexers>=1.0.0 (from ipython>=7.23.1->ipykernel!=6.30.0,>=6.5.0->jupyterlab)
|
|
135
|
+
Downloading ipython_pygments_lexers-1.1.1-py3-none-any.whl.metadata (1.1 kB)
|
|
136
|
+
Collecting jedi>=0.18.1 (from ipython>=7.23.1->ipykernel!=6.30.0,>=6.5.0->jupyterlab)
|
|
137
|
+
Downloading jedi-0.19.2-py2.py3-none-any.whl.metadata (22 kB)
|
|
138
|
+
Collecting prompt_toolkit<3.1.0,>=3.0.41 (from ipython>=7.23.1->ipykernel!=6.30.0,>=6.5.0->jupyterlab)
|
|
139
|
+
Downloading prompt_toolkit-3.0.52-py3-none-any.whl.metadata (6.4 kB)
|
|
140
|
+
Collecting pygments>=2.11.0 (from ipython>=7.23.1->ipykernel!=6.30.0,>=6.5.0->jupyterlab)
|
|
141
|
+
Downloading pygments-2.19.2-py3-none-any.whl.metadata (2.5 kB)
|
|
142
|
+
Collecting stack_data>=0.6.0 (from ipython>=7.23.1->ipykernel!=6.30.0,>=6.5.0->jupyterlab)
|
|
143
|
+
Downloading stack_data-0.6.3-py3-none-any.whl.metadata (18 kB)
|
|
144
|
+
Collecting wcwidth (from prompt_toolkit<3.1.0,>=3.0.41->ipython>=7.23.1->ipykernel!=6.30.0,>=6.5.0->jupyterlab)
|
|
145
|
+
Downloading wcwidth-0.2.14-py2.py3-none-any.whl.metadata (15 kB)
|
|
146
|
+
Collecting parso<0.9.0,>=0.8.4 (from jedi>=0.18.1->ipython>=7.23.1->ipykernel!=6.30.0,>=6.5.0->jupyterlab)
|
|
147
|
+
Downloading parso-0.8.5-py2.py3-none-any.whl.metadata (8.3 kB)
|
|
148
|
+
Collecting MarkupSafe>=2.0 (from jinja2>=3.0.3->jupyterlab)
|
|
149
|
+
Downloading markupsafe-3.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.metadata (2.7 kB)
|
|
150
|
+
Collecting attrs>=22.2.0 (from jsonschema>=4.18.0->jupyterlab-server<3,>=2.28.0->jupyterlab)
|
|
151
|
+
Downloading attrs-25.4.0-py3-none-any.whl.metadata (10 kB)
|
|
152
|
+
Collecting jsonschema-specifications>=2023.03.6 (from jsonschema>=4.18.0->jupyterlab-server<3,>=2.28.0->jupyterlab)
|
|
153
|
+
Downloading jsonschema_specifications-2025.9.1-py3-none-any.whl.metadata (2.9 kB)
|
|
154
|
+
Collecting referencing>=0.28.4 (from jsonschema>=4.18.0->jupyterlab-server<3,>=2.28.0->jupyterlab)
|
|
155
|
+
Downloading referencing-0.37.0-py3-none-any.whl.metadata (2.8 kB)
|
|
156
|
+
Collecting rpds-py>=0.7.1 (from jsonschema>=4.18.0->jupyterlab-server<3,>=2.28.0->jupyterlab)
|
|
157
|
+
Downloading rpds_py-0.30.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.1 kB)
|
|
158
|
+
Collecting python-dateutil>=2.8.2 (from jupyter-client>=7.4.4->jupyter-server<3,>=2.4.0->jupyterlab)
|
|
159
|
+
Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadata (8.4 kB)
|
|
160
|
+
Collecting python-json-logger>=2.0.4 (from jupyter-events>=0.11.0->jupyter-server<3,>=2.4.0->jupyterlab)
|
|
161
|
+
Downloading python_json_logger-4.0.0-py3-none-any.whl.metadata (4.0 kB)
|
|
162
|
+
Collecting pyyaml>=5.3 (from jupyter-events>=0.11.0->jupyter-server<3,>=2.4.0->jupyterlab)
|
|
163
|
+
Downloading pyyaml-6.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.metadata (2.4 kB)
|
|
164
|
+
Collecting rfc3339-validator (from jupyter-events>=0.11.0->jupyter-server<3,>=2.4.0->jupyterlab)
|
|
165
|
+
Downloading rfc3339_validator-0.1.4-py2.py3-none-any.whl.metadata (1.5 kB)
|
|
166
|
+
Collecting rfc3986-validator>=0.1.1 (from jupyter-events>=0.11.0->jupyter-server<3,>=2.4.0->jupyterlab)
|
|
167
|
+
Downloading rfc3986_validator-0.1.1-py2.py3-none-any.whl.metadata (1.7 kB)
|
|
168
|
+
Collecting fqdn (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.11.0->jupyter-server<3,>=2.4.0->jupyterlab)
|
|
169
|
+
Downloading fqdn-1.5.1-py3-none-any.whl.metadata (1.4 kB)
|
|
170
|
+
Collecting isoduration (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.11.0->jupyter-server<3,>=2.4.0->jupyterlab)
|
|
171
|
+
Downloading isoduration-20.11.0-py3-none-any.whl.metadata (5.7 kB)
|
|
172
|
+
Collecting jsonpointer>1.13 (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.11.0->jupyter-server<3,>=2.4.0->jupyterlab)
|
|
173
|
+
Downloading jsonpointer-3.0.0-py2.py3-none-any.whl.metadata (2.3 kB)
|
|
174
|
+
Collecting rfc3987-syntax>=1.1.0 (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.11.0->jupyter-server<3,>=2.4.0->jupyterlab)
|
|
175
|
+
Downloading rfc3987_syntax-1.1.0-py3-none-any.whl.metadata (7.7 kB)
|
|
176
|
+
Collecting uri-template (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.11.0->jupyter-server<3,>=2.4.0->jupyterlab)
|
|
177
|
+
Downloading uri_template-1.3.0-py3-none-any.whl.metadata (8.8 kB)
|
|
178
|
+
Collecting webcolors>=24.6.0 (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.11.0->jupyter-server<3,>=2.4.0->jupyterlab)
|
|
179
|
+
Downloading webcolors-25.10.0-py3-none-any.whl.metadata (2.2 kB)
|
|
180
|
+
Collecting SecretStorage>=3.2 (from keyring>=23.5.0->hatch)
|
|
181
|
+
Downloading secretstorage-3.5.0-py3-none-any.whl.metadata (4.0 kB)
|
|
182
|
+
Collecting jeepney>=0.4.2 (from keyring>=23.5.0->hatch)
|
|
183
|
+
Downloading jeepney-0.9.0-py3-none-any.whl.metadata (1.2 kB)
|
|
184
|
+
Collecting importlib_metadata>=4.11.4 (from keyring>=23.5.0->hatch)
|
|
185
|
+
Downloading importlib_metadata-8.7.1-py3-none-any.whl.metadata (4.7 kB)
|
|
186
|
+
Collecting jaraco.classes (from keyring>=23.5.0->hatch)
|
|
187
|
+
Downloading jaraco.classes-3.4.0-py3-none-any.whl.metadata (2.6 kB)
|
|
188
|
+
Collecting jaraco.functools (from keyring>=23.5.0->hatch)
|
|
189
|
+
Downloading jaraco_functools-4.4.0-py3-none-any.whl.metadata (3.0 kB)
|
|
190
|
+
Collecting jaraco.context (from keyring>=23.5.0->hatch)
|
|
191
|
+
Downloading jaraco_context-6.0.2-py3-none-any.whl.metadata (4.3 kB)
|
|
192
|
+
Collecting zipp>=3.20 (from importlib_metadata>=4.11.4->keyring>=23.5.0->hatch)
|
|
193
|
+
Downloading zipp-3.23.0-py3-none-any.whl.metadata (3.6 kB)
|
|
194
|
+
Collecting beautifulsoup4 (from nbconvert>=6.4.4->jupyter-server<3,>=2.4.0->jupyterlab)
|
|
195
|
+
Downloading beautifulsoup4-4.14.3-py3-none-any.whl.metadata (3.8 kB)
|
|
196
|
+
Collecting bleach!=5.0.0 (from bleach[css]!=5.0.0->nbconvert>=6.4.4->jupyter-server<3,>=2.4.0->jupyterlab)
|
|
197
|
+
Downloading bleach-6.3.0-py3-none-any.whl.metadata (31 kB)
|
|
198
|
+
Collecting defusedxml (from nbconvert>=6.4.4->jupyter-server<3,>=2.4.0->jupyterlab)
|
|
199
|
+
Downloading defusedxml-0.7.1-py2.py3-none-any.whl.metadata (32 kB)
|
|
200
|
+
Collecting jupyterlab-pygments (from nbconvert>=6.4.4->jupyter-server<3,>=2.4.0->jupyterlab)
|
|
201
|
+
Downloading jupyterlab_pygments-0.3.0-py3-none-any.whl.metadata (4.4 kB)
|
|
202
|
+
Collecting mistune<4,>=2.0.3 (from nbconvert>=6.4.4->jupyter-server<3,>=2.4.0->jupyterlab)
|
|
203
|
+
Downloading mistune-3.2.0-py3-none-any.whl.metadata (1.9 kB)
|
|
204
|
+
Collecting nbclient>=0.5.0 (from nbconvert>=6.4.4->jupyter-server<3,>=2.4.0->jupyterlab)
|
|
205
|
+
Downloading nbclient-0.10.4-py3-none-any.whl.metadata (8.3 kB)
|
|
206
|
+
Collecting pandocfilters>=1.4.1 (from nbconvert>=6.4.4->jupyter-server<3,>=2.4.0->jupyterlab)
|
|
207
|
+
Downloading pandocfilters-1.5.1-py2.py3-none-any.whl.metadata (9.0 kB)
|
|
208
|
+
Collecting webencodings (from bleach!=5.0.0->bleach[css]!=5.0.0->nbconvert>=6.4.4->jupyter-server<3,>=2.4.0->jupyterlab)
|
|
209
|
+
Downloading webencodings-0.5.1-py2.py3-none-any.whl.metadata (2.1 kB)
|
|
210
|
+
Collecting tinycss2<1.5,>=1.1.0 (from bleach[css]!=5.0.0->nbconvert>=6.4.4->jupyter-server<3,>=2.4.0->jupyterlab)
|
|
211
|
+
Downloading tinycss2-1.4.0-py3-none-any.whl.metadata (3.0 kB)
|
|
212
|
+
Collecting fastjsonschema>=2.15 (from nbformat>=5.3.0->jupyter-server<3,>=2.4.0->jupyterlab)
|
|
213
|
+
Downloading fastjsonschema-2.21.2-py3-none-any.whl.metadata (2.3 kB)
|
|
214
|
+
Collecting six>=1.5 (from python-dateutil>=2.8.2->jupyter-client>=7.4.4->jupyter-server<3,>=2.4.0->jupyterlab)
|
|
215
|
+
Downloading six-1.17.0-py2.py3-none-any.whl.metadata (1.7 kB)
|
|
216
|
+
Collecting charset_normalizer<4,>=2 (from requests>=2.31->jupyterlab-server<3,>=2.28.0->jupyterlab)
|
|
217
|
+
Downloading charset_normalizer-3.4.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.metadata (37 kB)
|
|
218
|
+
Collecting urllib3<3,>=1.21.1 (from requests>=2.31->jupyterlab-server<3,>=2.28.0->jupyterlab)
|
|
219
|
+
Downloading urllib3-2.6.2-py3-none-any.whl.metadata (6.6 kB)
|
|
220
|
+
Collecting lark>=1.2.2 (from rfc3987-syntax>=1.1.0->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.11.0->jupyter-server<3,>=2.4.0->jupyterlab)
|
|
221
|
+
Downloading lark-1.3.1-py3-none-any.whl.metadata (1.8 kB)
|
|
222
|
+
Collecting markdown-it-py>=2.2.0 (from rich>=11.2.0->hatch)
|
|
223
|
+
Downloading markdown_it_py-4.0.0-py3-none-any.whl.metadata (7.3 kB)
|
|
224
|
+
Collecting mdurl~=0.1 (from markdown-it-py>=2.2.0->rich>=11.2.0->hatch)
|
|
225
|
+
Downloading mdurl-0.1.2-py3-none-any.whl.metadata (1.6 kB)
|
|
226
|
+
Collecting cryptography>=2.0 (from SecretStorage>=3.2->keyring>=23.5.0->hatch)
|
|
227
|
+
Downloading cryptography-46.0.3-cp311-abi3-manylinux_2_34_x86_64.whl.metadata (5.7 kB)
|
|
228
|
+
Collecting cffi>=2.0.0 (from cryptography>=2.0->SecretStorage>=3.2->keyring>=23.5.0->hatch)
|
|
229
|
+
Downloading cffi-2.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (2.6 kB)
|
|
230
|
+
Collecting pycparser (from cffi>=2.0.0->cryptography>=2.0->SecretStorage>=3.2->keyring>=23.5.0->hatch)
|
|
231
|
+
Downloading pycparser-2.23-py3-none-any.whl.metadata (993 bytes)
|
|
232
|
+
Collecting executing>=1.2.0 (from stack_data>=0.6.0->ipython>=7.23.1->ipykernel!=6.30.0,>=6.5.0->jupyterlab)
|
|
233
|
+
Downloading executing-2.2.1-py2.py3-none-any.whl.metadata (8.9 kB)
|
|
234
|
+
Collecting asttokens>=2.1.0 (from stack_data>=0.6.0->ipython>=7.23.1->ipykernel!=6.30.0,>=6.5.0->jupyterlab)
|
|
235
|
+
Downloading asttokens-3.0.1-py3-none-any.whl.metadata (4.9 kB)
|
|
236
|
+
Collecting pure-eval (from stack_data>=0.6.0->ipython>=7.23.1->ipykernel!=6.30.0,>=6.5.0->jupyterlab)
|
|
237
|
+
Downloading pure_eval-0.2.3-py3-none-any.whl.metadata (6.3 kB)
|
|
238
|
+
Collecting distlib<1,>=0.3.7 (from virtualenv>=20.26.6->hatch)
|
|
239
|
+
Downloading distlib-0.4.0-py2.py3-none-any.whl.metadata (5.2 kB)
|
|
240
|
+
Collecting filelock<4,>=3.12.2 (from virtualenv>=20.26.6->hatch)
|
|
241
|
+
Downloading filelock-3.20.2-py3-none-any.whl.metadata (2.1 kB)
|
|
242
|
+
Collecting soupsieve>=1.6.1 (from beautifulsoup4->nbconvert>=6.4.4->jupyter-server<3,>=2.4.0->jupyterlab)
|
|
243
|
+
Downloading soupsieve-2.8.1-py3-none-any.whl.metadata (4.6 kB)
|
|
244
|
+
Collecting arrow>=0.15.0 (from isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.11.0->jupyter-server<3,>=2.4.0->jupyterlab)
|
|
245
|
+
Downloading arrow-1.4.0-py3-none-any.whl.metadata (7.7 kB)
|
|
246
|
+
Collecting tzdata (from arrow>=0.15.0->isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.11.0->jupyter-server<3,>=2.4.0->jupyterlab)
|
|
247
|
+
Downloading tzdata-2025.3-py2.py3-none-any.whl.metadata (1.4 kB)
|
|
248
|
+
Collecting more-itertools (from jaraco.classes->keyring>=23.5.0->hatch)
|
|
249
|
+
Downloading more_itertools-10.8.0-py3-none-any.whl.metadata (39 kB)
|
|
250
|
+
Collecting backports.tarfile (from jaraco.context->keyring>=23.5.0->hatch)
|
|
251
|
+
Downloading backports.tarfile-1.2.0-py3-none-any.whl.metadata (2.0 kB)
|
|
252
|
+
Downloading build-1.3.0-py3-none-any.whl (23 kB)
|
|
253
|
+
Downloading hatch-1.16.2-py3-none-any.whl (140 kB)
|
|
254
|
+
Downloading pexpect-4.9.0-py2.py3-none-any.whl (63 kB)
|
|
255
|
+
Downloading userpath-1.9.2-py3-none-any.whl (9.1 kB)
|
|
256
|
+
Downloading hatch_jupyter_builder-0.9.1-py3-none-any.whl (18 kB)
|
|
257
|
+
Downloading hatch_nodejs_version-0.4.0-py3-none-any.whl (8.9 kB)
|
|
258
|
+
Downloading jupyterlab-4.5.1-py3-none-any.whl (12.4 MB)
|
|
259
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 12.4/12.4 MB 238.3 MB/s 0:00:00
|
|
260
|
+
Downloading httpx-0.28.1-py3-none-any.whl (73 kB)
|
|
261
|
+
Downloading httpcore-1.0.9-py3-none-any.whl (78 kB)
|
|
262
|
+
Downloading jupyter_server-2.17.0-py3-none-any.whl (388 kB)
|
|
263
|
+
Downloading jupyterlab_server-2.28.0-py3-none-any.whl (59 kB)
|
|
264
|
+
Downloading anyio-4.12.0-py3-none-any.whl (113 kB)
|
|
265
|
+
Downloading argon2_cffi-25.1.0-py3-none-any.whl (14 kB)
|
|
266
|
+
Downloading async_lru-2.0.5-py3-none-any.whl (6.1 kB)
|
|
267
|
+
Downloading babel-2.17.0-py3-none-any.whl (10.2 MB)
|
|
268
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 10.2/10.2 MB 262.0 MB/s 0:00:00
|
|
269
|
+
Downloading backports_zstd-1.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (491 kB)
|
|
270
|
+
Downloading click-8.3.1-py3-none-any.whl (108 kB)
|
|
271
|
+
Downloading h11-0.16.0-py3-none-any.whl (37 kB)
|
|
272
|
+
Downloading hatchling-1.28.0-py3-none-any.whl (76 kB)
|
|
273
|
+
Downloading hyperlink-21.0.0-py2.py3-none-any.whl (74 kB)
|
|
274
|
+
Downloading idna-3.11-py3-none-any.whl (71 kB)
|
|
275
|
+
Downloading ipykernel-7.1.0-py3-none-any.whl (117 kB)
|
|
276
|
+
Downloading comm-0.2.3-py3-none-any.whl (7.3 kB)
|
|
277
|
+
Downloading debugpy-1.8.19-cp311-cp311-manylinux_2_34_x86_64.whl (3.2 MB)
|
|
278
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.2/3.2 MB 142.9 MB/s 0:00:00
|
|
279
|
+
Downloading ipython-9.9.0-py3-none-any.whl (621 kB)
|
|
280
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 621.4/621.4 kB 89.4 MB/s 0:00:00
|
|
281
|
+
Downloading prompt_toolkit-3.0.52-py3-none-any.whl (391 kB)
|
|
282
|
+
Downloading decorator-5.2.1-py3-none-any.whl (9.2 kB)
|
|
283
|
+
Downloading ipython_pygments_lexers-1.1.1-py3-none-any.whl (8.1 kB)
|
|
284
|
+
Downloading jedi-0.19.2-py2.py3-none-any.whl (1.6 MB)
|
|
285
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.6/1.6 MB 153.6 MB/s 0:00:00
|
|
286
|
+
Downloading parso-0.8.5-py2.py3-none-any.whl (106 kB)
|
|
287
|
+
Downloading jinja2-3.1.6-py3-none-any.whl (134 kB)
|
|
288
|
+
Downloading json5-0.13.0-py3-none-any.whl (36 kB)
|
|
289
|
+
Downloading jsonschema-4.25.1-py3-none-any.whl (90 kB)
|
|
290
|
+
Downloading attrs-25.4.0-py3-none-any.whl (67 kB)
|
|
291
|
+
Downloading jsonschema_specifications-2025.9.1-py3-none-any.whl (18 kB)
|
|
292
|
+
Downloading jupyter_client-8.7.0-py3-none-any.whl (106 kB)
|
|
293
|
+
Downloading jupyter_core-5.9.1-py3-none-any.whl (29 kB)
|
|
294
|
+
Downloading jupyter_events-0.12.0-py3-none-any.whl (19 kB)
|
|
295
|
+
Downloading jsonpointer-3.0.0-py2.py3-none-any.whl (7.6 kB)
|
|
296
|
+
Downloading jupyter_lsp-2.3.0-py3-none-any.whl (76 kB)
|
|
297
|
+
Downloading jupyter_server_terminals-0.5.3-py3-none-any.whl (13 kB)
|
|
298
|
+
Downloading keyring-25.7.0-py3-none-any.whl (39 kB)
|
|
299
|
+
Downloading importlib_metadata-8.7.1-py3-none-any.whl (27 kB)
|
|
300
|
+
Downloading jeepney-0.9.0-py3-none-any.whl (49 kB)
|
|
301
|
+
Downloading markupsafe-3.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (22 kB)
|
|
302
|
+
Downloading matplotlib_inline-0.2.1-py3-none-any.whl (9.5 kB)
|
|
303
|
+
Downloading nbconvert-7.16.6-py3-none-any.whl (258 kB)
|
|
304
|
+
Downloading mistune-3.2.0-py3-none-any.whl (53 kB)
|
|
305
|
+
Downloading bleach-6.3.0-py3-none-any.whl (164 kB)
|
|
306
|
+
Downloading tinycss2-1.4.0-py3-none-any.whl (26 kB)
|
|
307
|
+
Downloading nbclient-0.10.4-py3-none-any.whl (25 kB)
|
|
308
|
+
Downloading nbformat-5.10.4-py3-none-any.whl (78 kB)
|
|
309
|
+
Downloading fastjsonschema-2.21.2-py3-none-any.whl (24 kB)
|
|
310
|
+
Downloading nest_asyncio-1.6.0-py3-none-any.whl (5.2 kB)
|
|
311
|
+
Downloading notebook_shim-0.2.4-py3-none-any.whl (13 kB)
|
|
312
|
+
Downloading overrides-7.7.0-py3-none-any.whl (17 kB)
|
|
313
|
+
Downloading packaging-25.0-py3-none-any.whl (66 kB)
|
|
314
|
+
Downloading pandocfilters-1.5.1-py2.py3-none-any.whl (8.7 kB)
|
|
315
|
+
Downloading pathspec-1.0.0-py3-none-any.whl (54 kB)
|
|
316
|
+
Downloading platformdirs-4.5.1-py3-none-any.whl (18 kB)
|
|
317
|
+
Downloading pluggy-1.6.0-py3-none-any.whl (20 kB)
|
|
318
|
+
Downloading prometheus_client-0.23.1-py3-none-any.whl (61 kB)
|
|
319
|
+
Downloading psutil-7.2.1-cp36-abi3-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl (154 kB)
|
|
320
|
+
Downloading ptyprocess-0.7.0-py2.py3-none-any.whl (13 kB)
|
|
321
|
+
Downloading pygments-2.19.2-py3-none-any.whl (1.2 MB)
|
|
322
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 150.4 MB/s 0:00:00
|
|
323
|
+
Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB)
|
|
324
|
+
Downloading python_json_logger-4.0.0-py3-none-any.whl (15 kB)
|
|
325
|
+
Downloading pyyaml-6.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (806 kB)
|
|
326
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 806.6/806.6 kB 121.1 MB/s 0:00:00
|
|
327
|
+
Downloading pyzmq-27.1.0-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (857 kB)
|
|
328
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 857.0/857.0 kB 118.0 MB/s 0:00:00
|
|
329
|
+
Downloading referencing-0.37.0-py3-none-any.whl (26 kB)
|
|
330
|
+
Downloading requests-2.32.5-py3-none-any.whl (64 kB)
|
|
331
|
+
Downloading charset_normalizer-3.4.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (151 kB)
|
|
332
|
+
Downloading urllib3-2.6.2-py3-none-any.whl (131 kB)
|
|
333
|
+
Downloading certifi-2026.1.4-py3-none-any.whl (152 kB)
|
|
334
|
+
Downloading rfc3986_validator-0.1.1-py2.py3-none-any.whl (4.2 kB)
|
|
335
|
+
Downloading rfc3987_syntax-1.1.0-py3-none-any.whl (8.0 kB)
|
|
336
|
+
Downloading lark-1.3.1-py3-none-any.whl (113 kB)
|
|
337
|
+
Downloading rich-14.2.0-py3-none-any.whl (243 kB)
|
|
338
|
+
Downloading markdown_it_py-4.0.0-py3-none-any.whl (87 kB)
|
|
339
|
+
Downloading mdurl-0.1.2-py3-none-any.whl (10.0 kB)
|
|
340
|
+
Downloading rpds_py-0.30.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (390 kB)
|
|
341
|
+
Downloading secretstorage-3.5.0-py3-none-any.whl (15 kB)
|
|
342
|
+
Downloading cryptography-46.0.3-cp311-abi3-manylinux_2_34_x86_64.whl (4.5 MB)
|
|
343
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 200.9 MB/s 0:00:00
|
|
344
|
+
Downloading cffi-2.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (215 kB)
|
|
345
|
+
Downloading send2trash-2.0.0-py3-none-any.whl (17 kB)
|
|
346
|
+
Downloading shellingham-1.5.4-py2.py3-none-any.whl (9.8 kB)
|
|
347
|
+
Downloading six-1.17.0-py2.py3-none-any.whl (11 kB)
|
|
348
|
+
Downloading stack_data-0.6.3-py3-none-any.whl (24 kB)
|
|
349
|
+
Downloading asttokens-3.0.1-py3-none-any.whl (27 kB)
|
|
350
|
+
Downloading executing-2.2.1-py2.py3-none-any.whl (28 kB)
|
|
351
|
+
Downloading terminado-0.18.1-py3-none-any.whl (14 kB)
|
|
352
|
+
Downloading tomli_w-1.2.0-py3-none-any.whl (6.7 kB)
|
|
353
|
+
Downloading tomlkit-0.13.3-py3-none-any.whl (38 kB)
|
|
354
|
+
Downloading tornado-6.5.4-cp39-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (445 kB)
|
|
355
|
+
Downloading traitlets-5.14.3-py3-none-any.whl (85 kB)
|
|
356
|
+
Downloading typing_extensions-4.15.0-py3-none-any.whl (44 kB)
|
|
357
|
+
Downloading uv-0.9.21-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (22.2 MB)
|
|
358
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 22.2/22.2 MB 53.2 MB/s 0:00:00
|
|
359
|
+
Downloading virtualenv-20.35.4-py3-none-any.whl (6.0 MB)
|
|
360
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.0/6.0 MB 174.7 MB/s 0:00:00
|
|
361
|
+
Downloading distlib-0.4.0-py2.py3-none-any.whl (469 kB)
|
|
362
|
+
Downloading filelock-3.20.2-py3-none-any.whl (16 kB)
|
|
363
|
+
Downloading webcolors-25.10.0-py3-none-any.whl (14 kB)
|
|
364
|
+
Downloading webencodings-0.5.1-py2.py3-none-any.whl (11 kB)
|
|
365
|
+
Downloading websocket_client-1.9.0-py3-none-any.whl (82 kB)
|
|
366
|
+
Downloading zipp-3.23.0-py3-none-any.whl (10 kB)
|
|
367
|
+
Downloading argon2_cffi_bindings-25.1.0-cp39-abi3-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (87 kB)
|
|
368
|
+
Downloading beautifulsoup4-4.14.3-py3-none-any.whl (107 kB)
|
|
369
|
+
Downloading soupsieve-2.8.1-py3-none-any.whl (36 kB)
|
|
370
|
+
Downloading defusedxml-0.7.1-py2.py3-none-any.whl (25 kB)
|
|
371
|
+
Downloading fqdn-1.5.1-py3-none-any.whl (9.1 kB)
|
|
372
|
+
Downloading isoduration-20.11.0-py3-none-any.whl (11 kB)
|
|
373
|
+
Downloading arrow-1.4.0-py3-none-any.whl (68 kB)
|
|
374
|
+
Downloading jaraco.classes-3.4.0-py3-none-any.whl (6.8 kB)
|
|
375
|
+
Downloading jaraco_context-6.0.2-py3-none-any.whl (7.0 kB)
|
|
376
|
+
Downloading backports.tarfile-1.2.0-py3-none-any.whl (30 kB)
|
|
377
|
+
Downloading jaraco_functools-4.4.0-py3-none-any.whl (10 kB)
|
|
378
|
+
Downloading jupyterlab_pygments-0.3.0-py3-none-any.whl (15 kB)
|
|
379
|
+
Downloading more_itertools-10.8.0-py3-none-any.whl (69 kB)
|
|
380
|
+
Downloading pure_eval-0.2.3-py3-none-any.whl (11 kB)
|
|
381
|
+
Downloading pycparser-2.23-py3-none-any.whl (118 kB)
|
|
382
|
+
Downloading pyproject_hooks-1.2.0-py3-none-any.whl (10 kB)
|
|
383
|
+
Downloading rfc3339_validator-0.1.4-py2.py3-none-any.whl (3.5 kB)
|
|
384
|
+
Downloading trove_classifiers-2025.12.1.14-py3-none-any.whl (14 kB)
|
|
385
|
+
Downloading tzdata-2025.3-py2.py3-none-any.whl (348 kB)
|
|
386
|
+
Downloading uri_template-1.3.0-py3-none-any.whl (11 kB)
|
|
387
|
+
Downloading wcwidth-0.2.14-py2.py3-none-any.whl (37 kB)
|
|
388
|
+
Installing collected packages: webencodings, trove-classifiers, pure-eval, ptyprocess, fastjsonschema, distlib, zipp, websocket-client, webcolors, wcwidth, uv, urllib3, uri-template, tzdata, typing_extensions, traitlets, tornado, tomlkit, tomli-w, tinycss2, soupsieve, six, shellingham, send2trash, rpds-py, rfc3986-validator, pyzmq, pyyaml, python-json-logger, pyproject_hooks, pygments, pycparser, psutil, prometheus-client, pluggy, platformdirs, pexpect, pathspec, parso, pandocfilters, packaging, overrides, nest-asyncio, more-itertools, mistune, mdurl, MarkupSafe, lark, jupyterlab-pygments, jsonpointer, json5, jeepney, idna, h11, fqdn, filelock, executing, defusedxml, decorator, debugpy, comm, click, charset_normalizer, certifi, bleach, backports-zstd, backports.tarfile, babel, attrs, async-lru, asttokens, virtualenv, userpath, terminado, stack_data, rfc3987-syntax, rfc3339-validator, requests, referencing, python-dateutil, prompt_toolkit, matplotlib-inline, markdown-it-py, jupyter-core, jinja2, jedi, jaraco.functools, jaraco.context, jaraco.classes, ipython-pygments-lexers, importlib_metadata, hyperlink, httpcore, hatchling, cffi, build, beautifulsoup4, anyio, rich, jupyter-server-terminals, jupyter-client, jsonschema-specifications, ipython, httpx, hatch-nodejs-version, hatch-jupyter-builder, cryptography, arrow, argon2-cffi-bindings, SecretStorage, jsonschema, isoduration, ipykernel, argon2-cffi, nbformat, keyring, nbclient, jupyter-events, hatch, nbconvert, jupyter-server, notebook-shim, jupyterlab-server, jupyter-lsp, jupyterlab
|
|
389
|
+
|
|
390
|
+
Successfully installed MarkupSafe-3.0.3 SecretStorage-3.5.0 anyio-4.12.0 argon2-cffi-25.1.0 argon2-cffi-bindings-25.1.0 arrow-1.4.0 asttokens-3.0.1 async-lru-2.0.5 attrs-25.4.0 babel-2.17.0 backports-zstd-1.3.0 backports.tarfile-1.2.0 beautifulsoup4-4.14.3 bleach-6.3.0 build-1.3.0 certifi-2026.1.4 cffi-2.0.0 charset_normalizer-3.4.4 click-8.3.1 comm-0.2.3 cryptography-46.0.3 debugpy-1.8.19 decorator-5.2.1 defusedxml-0.7.1 distlib-0.4.0 executing-2.2.1 fastjsonschema-2.21.2 filelock-3.20.2 fqdn-1.5.1 h11-0.16.0 hatch-1.16.2 hatch-jupyter-builder-0.9.1 hatch-nodejs-version-0.4.0 hatchling-1.28.0 httpcore-1.0.9 httpx-0.28.1 hyperlink-21.0.0 idna-3.11 importlib_metadata-8.7.1 ipykernel-7.1.0 ipython-9.9.0 ipython-pygments-lexers-1.1.1 isoduration-20.11.0 jaraco.classes-3.4.0 jaraco.context-6.0.2 jaraco.functools-4.4.0 jedi-0.19.2 jeepney-0.9.0 jinja2-3.1.6 json5-0.13.0 jsonpointer-3.0.0 jsonschema-4.25.1 jsonschema-specifications-2025.9.1 jupyter-client-8.7.0 jupyter-core-5.9.1 jupyter-events-0.12.0 jupyter-lsp-2.3.0 jupyter-server-2.17.0 jupyter-server-terminals-0.5.3 jupyterlab-4.5.1 jupyterlab-pygments-0.3.0 jupyterlab-server-2.28.0 keyring-25.7.0 lark-1.3.1 markdown-it-py-4.0.0 matplotlib-inline-0.2.1 mdurl-0.1.2 mistune-3.2.0 more-itertools-10.8.0 nbclient-0.10.4 nbconvert-7.16.6 nbformat-5.10.4 nest-asyncio-1.6.0 notebook-shim-0.2.4 overrides-7.7.0 packaging-25.0 pandocfilters-1.5.1 parso-0.8.5 pathspec-1.0.0 pexpect-4.9.0 platformdirs-4.5.1 pluggy-1.6.0 prometheus-client-0.23.1 prompt_toolkit-3.0.52 psutil-7.2.1 ptyprocess-0.7.0 pure-eval-0.2.3 pycparser-2.23 pygments-2.19.2 pyproject_hooks-1.2.0 python-dateutil-2.9.0.post0 python-json-logger-4.0.0 pyyaml-6.0.3 pyzmq-27.1.0 referencing-0.37.0 requests-2.32.5 rfc3339-validator-0.1.4 rfc3986-validator-0.1.1 rfc3987-syntax-1.1.0 rich-14.2.0 rpds-py-0.30.0 send2trash-2.0.0 shellingham-1.5.4 six-1.17.0 soupsieve-2.8.1 stack_data-0.6.3 terminado-0.18.1 tinycss2-1.4.0 tomli-w-1.2.0 tomlkit-0.13.3 tornado-6.5.4 traitlets-5.14.3 trove-classifiers-2025.12.1.14 typing_extensions-4.15.0 tzdata-2025.3 uri-template-1.3.0 urllib3-2.6.2 userpath-1.9.2 uv-0.9.21 virtualenv-20.35.4 wcwidth-0.2.14 webcolors-25.10.0 webencodings-0.5.1 websocket-client-1.9.0 zipp-3.23.0
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Sudhakar Pallaprolu
|
|
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.
|