Update
Browse files- .pre-commit-config.yaml +4 -27
- .vscode/settings.json +1 -5
- README.md +1 -1
- pyproject.toml +2 -1
- requirements.txt +15 -13
- uv.lock +191 -157
.pre-commit-config.yaml
CHANGED
@@ -13,44 +13,21 @@ repos:
|
|
13 |
args: ["--fix=lf"]
|
14 |
- id: requirements-txt-fixer
|
15 |
- id: trailing-whitespace
|
16 |
-
- repo: https://github.com/myint/docformatter
|
17 |
-
rev: v1.7.5
|
18 |
-
hooks:
|
19 |
-
- id: docformatter
|
20 |
-
args: ["--in-place"]
|
21 |
- repo: https://github.com/astral-sh/ruff-pre-commit
|
22 |
-
rev: v0.8.
|
23 |
hooks:
|
24 |
- id: ruff
|
25 |
args: ["--fix"]
|
26 |
- id: ruff-format
|
27 |
-
args: ["--line-length", "119"]
|
28 |
- repo: https://github.com/pre-commit/mirrors-mypy
|
29 |
-
rev: v1.14.
|
30 |
hooks:
|
31 |
- id: mypy
|
32 |
args: ["--ignore-missing-imports"]
|
33 |
additional_dependencies:
|
34 |
[
|
35 |
"types-python-slugify",
|
36 |
-
"types-requests",
|
37 |
-
"types-PyYAML",
|
38 |
"types-pytz",
|
|
|
|
|
39 |
]
|
40 |
-
- repo: https://github.com/kynan/nbstripout
|
41 |
-
rev: 0.8.1
|
42 |
-
hooks:
|
43 |
-
- id: nbstripout
|
44 |
-
args:
|
45 |
-
[
|
46 |
-
"--extra-keys",
|
47 |
-
"metadata.interpreter metadata.kernelspec cell.metadata.pycharm",
|
48 |
-
]
|
49 |
-
- repo: https://github.com/nbQA-dev/nbQA
|
50 |
-
rev: 1.9.1
|
51 |
-
hooks:
|
52 |
-
- id: nbqa-black
|
53 |
-
- id: nbqa-pyupgrade
|
54 |
-
args: ["--py37-plus"]
|
55 |
-
- id: nbqa-isort
|
56 |
-
args: ["--float-to-top"]
|
|
|
13 |
args: ["--fix=lf"]
|
14 |
- id: requirements-txt-fixer
|
15 |
- id: trailing-whitespace
|
|
|
|
|
|
|
|
|
|
|
16 |
- repo: https://github.com/astral-sh/ruff-pre-commit
|
17 |
+
rev: v0.8.6
|
18 |
hooks:
|
19 |
- id: ruff
|
20 |
args: ["--fix"]
|
21 |
- id: ruff-format
|
|
|
22 |
- repo: https://github.com/pre-commit/mirrors-mypy
|
23 |
+
rev: v1.14.1
|
24 |
hooks:
|
25 |
- id: mypy
|
26 |
args: ["--ignore-missing-imports"]
|
27 |
additional_dependencies:
|
28 |
[
|
29 |
"types-python-slugify",
|
|
|
|
|
30 |
"types-pytz",
|
31 |
+
"types-PyYAML",
|
32 |
+
"types-requests",
|
33 |
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.vscode/settings.json
CHANGED
@@ -13,9 +13,5 @@
|
|
13 |
"files.insertFinalNewline": false
|
14 |
},
|
15 |
"notebook.output.scrolling": true,
|
16 |
-
"notebook.
|
17 |
-
"notebook.formatOnSave.enabled": true,
|
18 |
-
"notebook.codeActionsOnSave": {
|
19 |
-
"source.organizeImports": "explicit"
|
20 |
-
}
|
21 |
}
|
|
|
13 |
"files.insertFinalNewline": false
|
14 |
},
|
15 |
"notebook.output.scrolling": true,
|
16 |
+
"notebook.formatOnSave.enabled": true
|
|
|
|
|
|
|
|
|
17 |
}
|
README.md
CHANGED
@@ -4,7 +4,7 @@ emoji: 👀
|
|
4 |
colorFrom: blue
|
5 |
colorTo: purple
|
6 |
sdk: gradio
|
7 |
-
sdk_version: 5.
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
license: cc-by-nc-sa-4.0
|
|
|
4 |
colorFrom: blue
|
5 |
colorTo: purple
|
6 |
sdk: gradio
|
7 |
+
sdk_version: 5.12.0
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
license: cc-by-nc-sa-4.0
|
pyproject.toml
CHANGED
@@ -6,7 +6,8 @@ readme = "README.md"
|
|
6 |
requires-python = ">=3.10"
|
7 |
dependencies = [
|
8 |
"blobfile>=3.0.0",
|
9 |
-
"gradio>=5.
|
|
|
10 |
"torch==1.13.1",
|
11 |
"torchvision>=0.14.1",
|
12 |
]
|
|
|
6 |
requires-python = ">=3.10"
|
7 |
dependencies = [
|
8 |
"blobfile>=3.0.0",
|
9 |
+
"gradio>=5.12.0",
|
10 |
+
"hf-transfer>=0.1.9",
|
11 |
"torch==1.13.1",
|
12 |
"torchvision>=0.14.1",
|
13 |
]
|
requirements.txt
CHANGED
@@ -4,7 +4,7 @@ aiofiles==23.2.1
|
|
4 |
# via gradio
|
5 |
annotated-types==0.7.0
|
6 |
# via pydantic
|
7 |
-
anyio==4.
|
8 |
# via
|
9 |
# gradio
|
10 |
# httpx
|
@@ -36,14 +36,16 @@ fsspec==2024.12.0
|
|
36 |
# via
|
37 |
# gradio-client
|
38 |
# huggingface-hub
|
39 |
-
gradio==5.
|
40 |
# via ddnm-hq (pyproject.toml)
|
41 |
-
gradio-client==1.5.
|
42 |
# via gradio
|
43 |
h11==0.14.0
|
44 |
# via
|
45 |
# httpcore
|
46 |
# uvicorn
|
|
|
|
|
47 |
httpcore==1.0.7
|
48 |
# via httpx
|
49 |
httpx==0.28.1
|
@@ -51,7 +53,7 @@ httpx==0.28.1
|
|
51 |
# gradio
|
52 |
# gradio-client
|
53 |
# safehttpx
|
54 |
-
huggingface-hub==0.27.
|
55 |
# via
|
56 |
# gradio
|
57 |
# gradio-client
|
@@ -72,7 +74,7 @@ markupsafe==2.1.5
|
|
72 |
# jinja2
|
73 |
mdurl==0.1.2
|
74 |
# via markdown-it-py
|
75 |
-
numpy==
|
76 |
# via
|
77 |
# gradio
|
78 |
# pandas
|
@@ -87,7 +89,7 @@ nvidia-cuda-runtime-cu11==11.7.99
|
|
87 |
# via torch
|
88 |
nvidia-cudnn-cu11==8.5.0.96
|
89 |
# via torch
|
90 |
-
orjson==3.10.
|
91 |
# via gradio
|
92 |
packaging==24.2
|
93 |
# via
|
@@ -96,13 +98,13 @@ packaging==24.2
|
|
96 |
# huggingface-hub
|
97 |
pandas==2.2.3
|
98 |
# via gradio
|
99 |
-
pillow==
|
100 |
# via
|
101 |
# gradio
|
102 |
# torchvision
|
103 |
pycryptodomex==3.21.0
|
104 |
# via blobfile
|
105 |
-
pydantic==2.10.
|
106 |
# via
|
107 |
# fastapi
|
108 |
# gradio
|
@@ -110,7 +112,7 @@ pydantic-core==2.27.2
|
|
110 |
# via pydantic
|
111 |
pydub==0.25.1
|
112 |
# via gradio
|
113 |
-
pygments==2.
|
114 |
# via rich
|
115 |
python-dateutil==2.9.0.post0
|
116 |
# via pandas
|
@@ -118,7 +120,7 @@ python-multipart==0.0.20
|
|
118 |
# via gradio
|
119 |
pytz==2024.2
|
120 |
# via pandas
|
121 |
-
pyyaml==6.0
|
122 |
# via
|
123 |
# gradio
|
124 |
# huggingface-hub
|
@@ -128,13 +130,13 @@ requests==2.32.3
|
|
128 |
# torchvision
|
129 |
rich==13.9.4
|
130 |
# via typer
|
131 |
-
ruff==0.
|
132 |
# via gradio
|
133 |
safehttpx==0.1.6
|
134 |
# via gradio
|
135 |
semantic-version==2.10.0
|
136 |
# via gradio
|
137 |
-
setuptools==75.
|
138 |
# via
|
139 |
# nvidia-cublas-cu11
|
140 |
# nvidia-cuda-runtime-cu11
|
@@ -156,7 +158,7 @@ torch==1.13.1
|
|
156 |
# torchvision
|
157 |
torchvision==0.14.1
|
158 |
# via ddnm-hq (pyproject.toml)
|
159 |
-
tqdm==4.
|
160 |
# via huggingface-hub
|
161 |
typer==0.15.1
|
162 |
# via gradio
|
|
|
4 |
# via gradio
|
5 |
annotated-types==0.7.0
|
6 |
# via pydantic
|
7 |
+
anyio==4.8.0
|
8 |
# via
|
9 |
# gradio
|
10 |
# httpx
|
|
|
36 |
# via
|
37 |
# gradio-client
|
38 |
# huggingface-hub
|
39 |
+
gradio==5.12.0
|
40 |
# via ddnm-hq (pyproject.toml)
|
41 |
+
gradio-client==1.5.4
|
42 |
# via gradio
|
43 |
h11==0.14.0
|
44 |
# via
|
45 |
# httpcore
|
46 |
# uvicorn
|
47 |
+
hf-transfer==0.1.9
|
48 |
+
# via ddnm-hq (pyproject.toml)
|
49 |
httpcore==1.0.7
|
50 |
# via httpx
|
51 |
httpx==0.28.1
|
|
|
53 |
# gradio
|
54 |
# gradio-client
|
55 |
# safehttpx
|
56 |
+
huggingface-hub==0.27.1
|
57 |
# via
|
58 |
# gradio
|
59 |
# gradio-client
|
|
|
74 |
# jinja2
|
75 |
mdurl==0.1.2
|
76 |
# via markdown-it-py
|
77 |
+
numpy==2.2.1
|
78 |
# via
|
79 |
# gradio
|
80 |
# pandas
|
|
|
89 |
# via torch
|
90 |
nvidia-cudnn-cu11==8.5.0.96
|
91 |
# via torch
|
92 |
+
orjson==3.10.14
|
93 |
# via gradio
|
94 |
packaging==24.2
|
95 |
# via
|
|
|
98 |
# huggingface-hub
|
99 |
pandas==2.2.3
|
100 |
# via gradio
|
101 |
+
pillow==11.1.0
|
102 |
# via
|
103 |
# gradio
|
104 |
# torchvision
|
105 |
pycryptodomex==3.21.0
|
106 |
# via blobfile
|
107 |
+
pydantic==2.10.5
|
108 |
# via
|
109 |
# fastapi
|
110 |
# gradio
|
|
|
112 |
# via pydantic
|
113 |
pydub==0.25.1
|
114 |
# via gradio
|
115 |
+
pygments==2.19.1
|
116 |
# via rich
|
117 |
python-dateutil==2.9.0.post0
|
118 |
# via pandas
|
|
|
120 |
# via gradio
|
121 |
pytz==2024.2
|
122 |
# via pandas
|
123 |
+
pyyaml==6.0.2
|
124 |
# via
|
125 |
# gradio
|
126 |
# huggingface-hub
|
|
|
130 |
# torchvision
|
131 |
rich==13.9.4
|
132 |
# via typer
|
133 |
+
ruff==0.9.1
|
134 |
# via gradio
|
135 |
safehttpx==0.1.6
|
136 |
# via gradio
|
137 |
semantic-version==2.10.0
|
138 |
# via gradio
|
139 |
+
setuptools==75.8.0
|
140 |
# via
|
141 |
# nvidia-cublas-cu11
|
142 |
# nvidia-cuda-runtime-cu11
|
|
|
158 |
# torchvision
|
159 |
torchvision==0.14.1
|
160 |
# via ddnm-hq (pyproject.toml)
|
161 |
+
tqdm==4.67.1
|
162 |
# via huggingface-hub
|
163 |
typer==0.15.1
|
164 |
# via gradio
|
uv.lock
CHANGED
@@ -27,7 +27,7 @@ wheels = [
|
|
27 |
|
28 |
[[package]]
|
29 |
name = "anyio"
|
30 |
-
version = "4.
|
31 |
source = { registry = "https://pypi.org/simple" }
|
32 |
dependencies = [
|
33 |
{ name = "exceptiongroup", marker = "python_full_version < '3.11'" },
|
@@ -35,9 +35,9 @@ dependencies = [
|
|
35 |
{ name = "sniffio" },
|
36 |
{ name = "typing-extensions", marker = "python_full_version < '3.13'" },
|
37 |
]
|
38 |
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
39 |
wheels = [
|
40 |
-
{ url = "https://files.pythonhosted.org/packages/
|
41 |
]
|
42 |
|
43 |
[[package]]
|
@@ -193,6 +193,7 @@ source = { virtual = "." }
|
|
193 |
dependencies = [
|
194 |
{ name = "blobfile" },
|
195 |
{ name = "gradio" },
|
|
|
196 |
{ name = "torch" },
|
197 |
{ name = "torchvision" },
|
198 |
]
|
@@ -200,7 +201,8 @@ dependencies = [
|
|
200 |
[package.metadata]
|
201 |
requires-dist = [
|
202 |
{ name = "blobfile", specifier = ">=3.0.0" },
|
203 |
-
{ name = "gradio", specifier = ">=5.
|
|
|
204 |
{ name = "torch", specifier = "==1.13.1" },
|
205 |
{ name = "torchvision", specifier = ">=0.14.1" },
|
206 |
]
|
@@ -257,7 +259,7 @@ wheels = [
|
|
257 |
|
258 |
[[package]]
|
259 |
name = "gradio"
|
260 |
-
version = "5.
|
261 |
source = { registry = "https://pypi.org/simple" }
|
262 |
dependencies = [
|
263 |
{ name = "aiofiles" },
|
@@ -290,12 +292,12 @@ dependencies = [
|
|
290 |
{ name = "uvicorn", marker = "sys_platform != 'emscripten'" },
|
291 |
]
|
292 |
wheels = [
|
293 |
-
{ url = "https://files.pythonhosted.org/packages/
|
294 |
]
|
295 |
|
296 |
[[package]]
|
297 |
name = "gradio-client"
|
298 |
-
version = "1.5.
|
299 |
source = { registry = "https://pypi.org/simple" }
|
300 |
dependencies = [
|
301 |
{ name = "fsspec" },
|
@@ -305,9 +307,9 @@ dependencies = [
|
|
305 |
{ name = "typing-extensions" },
|
306 |
{ name = "websockets" },
|
307 |
]
|
308 |
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
309 |
wheels = [
|
310 |
-
{ url = "https://files.pythonhosted.org/packages/
|
311 |
]
|
312 |
|
313 |
[[package]]
|
@@ -319,6 +321,38 @@ wheels = [
|
|
319 |
{ url = "https://files.pythonhosted.org/packages/95/04/ff642e65ad6b90db43e668d70ffb6736436c7ce41fcc549f4e9472234127/h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761", size = 58259 },
|
320 |
]
|
321 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
322 |
[[package]]
|
323 |
name = "httpcore"
|
324 |
version = "1.0.7"
|
@@ -349,7 +383,7 @@ wheels = [
|
|
349 |
|
350 |
[[package]]
|
351 |
name = "huggingface-hub"
|
352 |
-
version = "0.27.
|
353 |
source = { registry = "https://pypi.org/simple" }
|
354 |
dependencies = [
|
355 |
{ name = "filelock" },
|
@@ -360,9 +394,9 @@ dependencies = [
|
|
360 |
{ name = "tqdm" },
|
361 |
{ name = "typing-extensions" },
|
362 |
]
|
363 |
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
364 |
wheels = [
|
365 |
-
{ url = "https://files.pythonhosted.org/packages/
|
366 |
]
|
367 |
|
368 |
[[package]]
|
@@ -636,58 +670,58 @@ wheels = [
|
|
636 |
|
637 |
[[package]]
|
638 |
name = "orjson"
|
639 |
-
version = "3.10.
|
640 |
-
source = { registry = "https://pypi.org/simple" }
|
641 |
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
642 |
-
wheels = [
|
643 |
-
{ url = "https://files.pythonhosted.org/packages/
|
644 |
-
{ url = "https://files.pythonhosted.org/packages/9f/
|
645 |
-
{ url = "https://files.pythonhosted.org/packages/
|
646 |
-
{ url = "https://files.pythonhosted.org/packages/
|
647 |
-
{ url = "https://files.pythonhosted.org/packages/
|
648 |
-
{ url = "https://files.pythonhosted.org/packages/
|
649 |
-
{ url = "https://files.pythonhosted.org/packages/
|
650 |
-
{ url = "https://files.pythonhosted.org/packages/
|
651 |
-
{ url = "https://files.pythonhosted.org/packages/
|
652 |
-
{ url = "https://files.pythonhosted.org/packages/
|
653 |
-
{ url = "https://files.pythonhosted.org/packages/
|
654 |
-
{ url = "https://files.pythonhosted.org/packages/
|
655 |
-
{ url = "https://files.pythonhosted.org/packages/
|
656 |
-
{ url = "https://files.pythonhosted.org/packages/
|
657 |
-
{ url = "https://files.pythonhosted.org/packages/
|
658 |
-
{ url = "https://files.pythonhosted.org/packages/
|
659 |
-
{ url = "https://files.pythonhosted.org/packages/
|
660 |
-
{ url = "https://files.pythonhosted.org/packages/
|
661 |
-
{ url = "https://files.pythonhosted.org/packages/
|
662 |
-
{ url = "https://files.pythonhosted.org/packages/
|
663 |
-
{ url = "https://files.pythonhosted.org/packages/
|
664 |
-
{ url = "https://files.pythonhosted.org/packages/
|
665 |
-
{ url = "https://files.pythonhosted.org/packages/
|
666 |
-
{ url = "https://files.pythonhosted.org/packages/
|
667 |
-
{ url = "https://files.pythonhosted.org/packages/
|
668 |
-
{ url = "https://files.pythonhosted.org/packages/
|
669 |
-
{ url = "https://files.pythonhosted.org/packages/
|
670 |
-
{ url = "https://files.pythonhosted.org/packages/
|
671 |
-
{ url = "https://files.pythonhosted.org/packages/39/
|
672 |
-
{ url = "https://files.pythonhosted.org/packages/
|
673 |
-
{ url = "https://files.pythonhosted.org/packages/
|
674 |
-
{ url = "https://files.pythonhosted.org/packages/
|
675 |
-
{ url = "https://files.pythonhosted.org/packages/
|
676 |
-
{ url = "https://files.pythonhosted.org/packages/
|
677 |
-
{ url = "https://files.pythonhosted.org/packages/
|
678 |
-
{ url = "https://files.pythonhosted.org/packages/
|
679 |
-
{ url = "https://files.pythonhosted.org/packages/
|
680 |
-
{ url = "https://files.pythonhosted.org/packages/
|
681 |
-
{ url = "https://files.pythonhosted.org/packages/
|
682 |
-
{ url = "https://files.pythonhosted.org/packages/
|
683 |
-
{ url = "https://files.pythonhosted.org/packages/
|
684 |
-
{ url = "https://files.pythonhosted.org/packages/
|
685 |
-
{ url = "https://files.pythonhosted.org/packages/
|
686 |
-
{ url = "https://files.pythonhosted.org/packages/
|
687 |
-
{ url = "https://files.pythonhosted.org/packages/
|
688 |
-
{ url = "https://files.pythonhosted.org/packages/
|
689 |
-
{ url = "https://files.pythonhosted.org/packages/
|
690 |
-
{ url = "https://files.pythonhosted.org/packages/
|
691 |
]
|
692 |
|
693 |
[[package]]
|
@@ -749,69 +783,69 @@ wheels = [
|
|
749 |
|
750 |
[[package]]
|
751 |
name = "pillow"
|
752 |
-
version = "11.
|
753 |
-
source = { registry = "https://pypi.org/simple" }
|
754 |
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
755 |
-
wheels = [
|
756 |
-
{ url = "https://files.pythonhosted.org/packages/
|
757 |
-
{ url = "https://files.pythonhosted.org/packages/
|
758 |
-
{ url = "https://files.pythonhosted.org/packages/
|
759 |
-
{ url = "https://files.pythonhosted.org/packages/
|
760 |
-
{ url = "https://files.pythonhosted.org/packages/
|
761 |
-
{ url = "https://files.pythonhosted.org/packages/
|
762 |
-
{ url = "https://files.pythonhosted.org/packages/
|
763 |
-
{ url = "https://files.pythonhosted.org/packages/
|
764 |
-
{ url = "https://files.pythonhosted.org/packages/
|
765 |
-
{ url = "https://files.pythonhosted.org/packages/
|
766 |
-
{ url = "https://files.pythonhosted.org/packages/
|
767 |
-
{ url = "https://files.pythonhosted.org/packages/
|
768 |
-
{ url = "https://files.pythonhosted.org/packages/
|
769 |
-
{ url = "https://files.pythonhosted.org/packages/
|
770 |
-
{ url = "https://files.pythonhosted.org/packages/
|
771 |
-
{ url = "https://files.pythonhosted.org/packages/
|
772 |
-
{ url = "https://files.pythonhosted.org/packages/
|
773 |
-
{ url = "https://files.pythonhosted.org/packages/
|
774 |
-
{ url = "https://files.pythonhosted.org/packages/
|
775 |
-
{ url = "https://files.pythonhosted.org/packages/
|
776 |
-
{ url = "https://files.pythonhosted.org/packages/
|
777 |
-
{ url = "https://files.pythonhosted.org/packages/52/
|
778 |
-
{ url = "https://files.pythonhosted.org/packages/
|
779 |
-
{ url = "https://files.pythonhosted.org/packages/
|
780 |
-
{ url = "https://files.pythonhosted.org/packages/d9/
|
781 |
-
{ url = "https://files.pythonhosted.org/packages/
|
782 |
-
{ url = "https://files.pythonhosted.org/packages/
|
783 |
-
{ url = "https://files.pythonhosted.org/packages/
|
784 |
-
{ url = "https://files.pythonhosted.org/packages/
|
785 |
-
{ url = "https://files.pythonhosted.org/packages/
|
786 |
-
{ url = "https://files.pythonhosted.org/packages/
|
787 |
-
{ url = "https://files.pythonhosted.org/packages/
|
788 |
-
{ url = "https://files.pythonhosted.org/packages/
|
789 |
-
{ url = "https://files.pythonhosted.org/packages/
|
790 |
-
{ url = "https://files.pythonhosted.org/packages/
|
791 |
-
{ url = "https://files.pythonhosted.org/packages/
|
792 |
-
{ url = "https://files.pythonhosted.org/packages/
|
793 |
-
{ url = "https://files.pythonhosted.org/packages/
|
794 |
-
{ url = "https://files.pythonhosted.org/packages/
|
795 |
-
{ url = "https://files.pythonhosted.org/packages/
|
796 |
-
{ url = "https://files.pythonhosted.org/packages/
|
797 |
-
{ url = "https://files.pythonhosted.org/packages/
|
798 |
-
{ url = "https://files.pythonhosted.org/packages/
|
799 |
-
{ url = "https://files.pythonhosted.org/packages/
|
800 |
-
{ url = "https://files.pythonhosted.org/packages/
|
801 |
-
{ url = "https://files.pythonhosted.org/packages/
|
802 |
-
{ url = "https://files.pythonhosted.org/packages/
|
803 |
-
{ url = "https://files.pythonhosted.org/packages/
|
804 |
-
{ url = "https://files.pythonhosted.org/packages/
|
805 |
-
{ url = "https://files.pythonhosted.org/packages/
|
806 |
-
{ url = "https://files.pythonhosted.org/packages/
|
807 |
-
{ url = "https://files.pythonhosted.org/packages/
|
808 |
-
{ url = "https://files.pythonhosted.org/packages/
|
809 |
-
{ url = "https://files.pythonhosted.org/packages/
|
810 |
-
{ url = "https://files.pythonhosted.org/packages/
|
811 |
-
{ url = "https://files.pythonhosted.org/packages/
|
812 |
-
{ url = "https://files.pythonhosted.org/packages/
|
813 |
-
{ url = "https://files.pythonhosted.org/packages/
|
814 |
-
{ url = "https://files.pythonhosted.org/packages/
|
815 |
]
|
816 |
|
817 |
[[package]]
|
@@ -840,16 +874,16 @@ wheels = [
|
|
840 |
|
841 |
[[package]]
|
842 |
name = "pydantic"
|
843 |
-
version = "2.10.
|
844 |
source = { registry = "https://pypi.org/simple" }
|
845 |
dependencies = [
|
846 |
{ name = "annotated-types" },
|
847 |
{ name = "pydantic-core" },
|
848 |
{ name = "typing-extensions" },
|
849 |
]
|
850 |
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
851 |
wheels = [
|
852 |
-
{ url = "https://files.pythonhosted.org/packages/
|
853 |
]
|
854 |
|
855 |
[[package]]
|
@@ -938,11 +972,11 @@ wheels = [
|
|
938 |
|
939 |
[[package]]
|
940 |
name = "pygments"
|
941 |
-
version = "2.
|
942 |
source = { registry = "https://pypi.org/simple" }
|
943 |
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
944 |
wheels = [
|
945 |
-
{ url = "https://files.pythonhosted.org/packages/
|
946 |
]
|
947 |
|
948 |
[[package]]
|
@@ -1050,27 +1084,27 @@ wheels = [
|
|
1050 |
|
1051 |
[[package]]
|
1052 |
name = "ruff"
|
1053 |
-
version = "0.
|
1054 |
-
source = { registry = "https://pypi.org/simple" }
|
1055 |
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
1056 |
-
wheels = [
|
1057 |
-
{ url = "https://files.pythonhosted.org/packages/05/
|
1058 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1059 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1060 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1061 |
-
{ url = "https://files.pythonhosted.org/packages/12/
|
1062 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1063 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1064 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1065 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1066 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1067 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1068 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1069 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1070 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1071 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1072 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1073 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1074 |
]
|
1075 |
|
1076 |
[[package]]
|
@@ -1096,11 +1130,11 @@ wheels = [
|
|
1096 |
|
1097 |
[[package]]
|
1098 |
name = "setuptools"
|
1099 |
-
version = "75.
|
1100 |
source = { registry = "https://pypi.org/simple" }
|
1101 |
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
1102 |
wheels = [
|
1103 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1104 |
]
|
1105 |
|
1106 |
[[package]]
|
|
|
27 |
|
28 |
[[package]]
|
29 |
name = "anyio"
|
30 |
+
version = "4.8.0"
|
31 |
source = { registry = "https://pypi.org/simple" }
|
32 |
dependencies = [
|
33 |
{ name = "exceptiongroup", marker = "python_full_version < '3.11'" },
|
|
|
35 |
{ name = "sniffio" },
|
36 |
{ name = "typing-extensions", marker = "python_full_version < '3.13'" },
|
37 |
]
|
38 |
+
sdist = { url = "https://files.pythonhosted.org/packages/a3/73/199a98fc2dae33535d6b8e8e6ec01f8c1d76c9adb096c6b7d64823038cde/anyio-4.8.0.tar.gz", hash = "sha256:1d9fe889df5212298c0c0723fa20479d1b94883a2df44bd3897aa91083316f7a", size = 181126 }
|
39 |
wheels = [
|
40 |
+
{ url = "https://files.pythonhosted.org/packages/46/eb/e7f063ad1fec6b3178a3cd82d1a3c4de82cccf283fc42746168188e1cdd5/anyio-4.8.0-py3-none-any.whl", hash = "sha256:b5011f270ab5eb0abf13385f851315585cc37ef330dd88e27ec3d34d651fd47a", size = 96041 },
|
41 |
]
|
42 |
|
43 |
[[package]]
|
|
|
193 |
dependencies = [
|
194 |
{ name = "blobfile" },
|
195 |
{ name = "gradio" },
|
196 |
+
{ name = "hf-transfer" },
|
197 |
{ name = "torch" },
|
198 |
{ name = "torchvision" },
|
199 |
]
|
|
|
201 |
[package.metadata]
|
202 |
requires-dist = [
|
203 |
{ name = "blobfile", specifier = ">=3.0.0" },
|
204 |
+
{ name = "gradio", specifier = ">=5.12.0" },
|
205 |
+
{ name = "hf-transfer", specifier = ">=0.1.9" },
|
206 |
{ name = "torch", specifier = "==1.13.1" },
|
207 |
{ name = "torchvision", specifier = ">=0.14.1" },
|
208 |
]
|
|
|
259 |
|
260 |
[[package]]
|
261 |
name = "gradio"
|
262 |
+
version = "5.12.0"
|
263 |
source = { registry = "https://pypi.org/simple" }
|
264 |
dependencies = [
|
265 |
{ name = "aiofiles" },
|
|
|
292 |
{ name = "uvicorn", marker = "sys_platform != 'emscripten'" },
|
293 |
]
|
294 |
wheels = [
|
295 |
+
{ url = "https://files.pythonhosted.org/packages/7a/70/fb8611fabeb432d05946ef89d7acc6fde6c7e85ca9a05d39626b4cdf1a17/gradio-5.12.0-py3-none-any.whl", hash = "sha256:b4b79a2c537131a8a5e23046565e64da40156ac24f9082e563e734e89641e160", size = 57580407 },
|
296 |
]
|
297 |
|
298 |
[[package]]
|
299 |
name = "gradio-client"
|
300 |
+
version = "1.5.4"
|
301 |
source = { registry = "https://pypi.org/simple" }
|
302 |
dependencies = [
|
303 |
{ name = "fsspec" },
|
|
|
307 |
{ name = "typing-extensions" },
|
308 |
{ name = "websockets" },
|
309 |
]
|
310 |
+
sdist = { url = "https://files.pythonhosted.org/packages/cb/60/e822beb21c93497285b10c34a20da5ef0e4b18fb736e89077b599e2783d1/gradio_client-1.5.4.tar.gz", hash = "sha256:281a1b6c4e45210c70b60888bb6f329c27f30645d7aa376e1f20966de82273dc", size = 319517 }
|
311 |
wheels = [
|
312 |
+
{ url = "https://files.pythonhosted.org/packages/a6/3d/e05202dd42581c2a1e93c730d10a0ef45bc40921332c9aa0d6645bbf0e2b/gradio_client-1.5.4-py3-none-any.whl", hash = "sha256:ad38c9a6f7fc590e822627f5bf5685321a7822b8f1a88b76d00a0621a43162d6", size = 321364 },
|
313 |
]
|
314 |
|
315 |
[[package]]
|
|
|
321 |
{ url = "https://files.pythonhosted.org/packages/95/04/ff642e65ad6b90db43e668d70ffb6736436c7ce41fcc549f4e9472234127/h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761", size = 58259 },
|
322 |
]
|
323 |
|
324 |
+
[[package]]
|
325 |
+
name = "hf-transfer"
|
326 |
+
version = "0.1.9"
|
327 |
+
source = { registry = "https://pypi.org/simple" }
|
328 |
+
sdist = { url = "https://files.pythonhosted.org/packages/1a/eb/8fc64f40388c29ce8ce3b2b180a089d4d6b25b1d0d232d016704cb852104/hf_transfer-0.1.9.tar.gz", hash = "sha256:035572865dab29d17e783fbf1e84cf1cb24f3fcf8f1b17db1cfc7fdf139f02bf", size = 25201 }
|
329 |
+
wheels = [
|
330 |
+
{ url = "https://files.pythonhosted.org/packages/a4/78/0dce00208f585fae675f40033ef9a30dedfa83665d5ac79f16beb4a0a6c2/hf_transfer-0.1.9-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:6e94e8822da79573c9b6ae4d6b2f847c59a7a06c5327d7db20751b68538dc4f6", size = 1386084 },
|
331 |
+
{ url = "https://files.pythonhosted.org/packages/ea/2e/3d60b1a9e9f29a2152aa66c823bf5e399ae7be3fef310ff0de86779c5d2d/hf_transfer-0.1.9-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3ebc4ab9023414880c8b1d3c38174d1c9989eb5022d37e814fa91a3060123eb0", size = 1343558 },
|
332 |
+
{ url = "https://files.pythonhosted.org/packages/fb/38/130a5ac3747f104033591bcac1c961cb1faadfdc91704f59b09c0b465ff2/hf_transfer-0.1.9-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8674026f21ed369aa2a0a4b46000aca850fc44cd2b54af33a172ce5325b4fc82", size = 3726676 },
|
333 |
+
{ url = "https://files.pythonhosted.org/packages/15/a1/f4e27c5ad17aac616ae0849e2aede5aae31db8267a948c6b3eeb9fd96446/hf_transfer-0.1.9-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3a736dfbb2c84f5a2c975478ad200c0c8bfcb58a25a35db402678fb87ce17fa4", size = 3062920 },
|
334 |
+
{ url = "https://files.pythonhosted.org/packages/8d/0d/727abdfba39bc3f1132cfa4c970588c2c0bb0d82fe2d645cc10f4e2f8e0b/hf_transfer-0.1.9-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:504b8427fd785dd8546d53b9fafe6e436bd7a3adf76b9dce556507650a7b4567", size = 3578681 },
|
335 |
+
{ url = "https://files.pythonhosted.org/packages/50/d0/2b213eb1ea8b1252ccaf1a6c804d0aba03fea38aae4124df6a3acb70511a/hf_transfer-0.1.9-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2c7fc1b85f4d0f76e452765d7648c9f4bfd0aedb9ced2ae1ebfece2d8cfaf8e2", size = 3398837 },
|
336 |
+
{ url = "https://files.pythonhosted.org/packages/8c/8a/79dbce9006e0bd6b74516f97451a7b7c64dbbb426df15d901dd438cfeee3/hf_transfer-0.1.9-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0d991376f0eac70a60f0cbc95602aa708a6f7c8617f28b4945c1431d67b8e3c8", size = 3546986 },
|
337 |
+
{ url = "https://files.pythonhosted.org/packages/a9/f7/9ac239b6ee6fe0bad130325d987a93ea58c4118e50479f0786f1733b37e8/hf_transfer-0.1.9-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:e6ac4eddcd99575ed3735ed911ddf9d1697e2bd13aa3f0ad7e3904dd4863842e", size = 4071715 },
|
338 |
+
{ url = "https://files.pythonhosted.org/packages/d8/a3/0ed697279f5eeb7a40f279bd783cf50e6d0b91f24120dcf66ef2cf8822b4/hf_transfer-0.1.9-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:57fd9880da1ee0f47250f735f791fab788f0aa1ee36afc49f761349869c8b4d9", size = 3388081 },
|
339 |
+
{ url = "https://files.pythonhosted.org/packages/dc/eb/47e477bdf1d784f31c7540db6cc8c354b777e51a186897a7abda34517f36/hf_transfer-0.1.9-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:5d561f0520f493c66b016d99ceabe69c23289aa90be38dd802d2aef279f15751", size = 3658654 },
|
340 |
+
{ url = "https://files.pythonhosted.org/packages/45/07/6661e43fbee09594a8a5e9bb778107d95fe38dac4c653982afe03d32bd4d/hf_transfer-0.1.9-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:a5b366d34cd449fe9b20ef25941e6eef0460a2f74e7389f02e673e1f88ebd538", size = 3690551 },
|
341 |
+
{ url = "https://files.pythonhosted.org/packages/81/f5/461d2e5f307e5048289b1168d5c642ae3bb2504e88dff1a38b92ed990a21/hf_transfer-0.1.9-cp38-abi3-macosx_10_12_x86_64.whl", hash = "sha256:e66acf91df4a8b72f60223059df3003062a5ae111757187ed1a06750a30e911b", size = 1393046 },
|
342 |
+
{ url = "https://files.pythonhosted.org/packages/41/ba/8d9fd9f1083525edfcb389c93738c802f3559cb749324090d7109c8bf4c2/hf_transfer-0.1.9-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:8669dbcc7a3e2e8d61d42cd24da9c50d57770bd74b445c65123291ca842a7e7a", size = 1348126 },
|
343 |
+
{ url = "https://files.pythonhosted.org/packages/8e/a2/cd7885bc9959421065a6fae0fe67b6c55becdeda4e69b873e52976f9a9f0/hf_transfer-0.1.9-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8fd0167c4407a3bc4cdd0307e65ada2294ec04f1813d8a69a5243e379b22e9d8", size = 3728604 },
|
344 |
+
{ url = "https://files.pythonhosted.org/packages/f6/2e/a072cf196edfeda3310c9a5ade0a0fdd785e6154b3ce24fc738c818da2a7/hf_transfer-0.1.9-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ee8b10afedcb75f71091bcc197c526a6ebf5c58bbbadb34fdeee6160f55f619f", size = 3064995 },
|
345 |
+
{ url = "https://files.pythonhosted.org/packages/c2/84/aec9ef4c0fab93c1ea2b1badff38c78b4b2f86f0555b26d2051dbc920cde/hf_transfer-0.1.9-cp38-abi3-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5828057e313de59300dd1abb489444bc452efe3f479d3c55b31a8f680936ba42", size = 3580908 },
|
346 |
+
{ url = "https://files.pythonhosted.org/packages/29/63/b560d39651a56603d64f1a0212d0472a44cbd965db2fa62b99d99cb981bf/hf_transfer-0.1.9-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fc6bd19e1cc177c66bdef15ef8636ad3bde79d5a4f608c158021153b4573509d", size = 3400839 },
|
347 |
+
{ url = "https://files.pythonhosted.org/packages/d6/d8/f87ea6f42456254b48915970ed98e993110521e9263472840174d32c880d/hf_transfer-0.1.9-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cdca9bfb89e6f8f281890cc61a8aff2d3cecaff7e1a4d275574d96ca70098557", size = 3552664 },
|
348 |
+
{ url = "https://files.pythonhosted.org/packages/d6/56/1267c39b65fc8f4e2113b36297320f102718bf5799b544a6cbe22013aa1d/hf_transfer-0.1.9-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:89a23f58b7b7effbc047b8ca286f131b17728c99a9f972723323003ffd1bb916", size = 4073732 },
|
349 |
+
{ url = "https://files.pythonhosted.org/packages/82/1a/9c748befbe3decf7cb415e34f8a0c3789a0a9c55910dea73d581e48c0ce5/hf_transfer-0.1.9-cp38-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:dc7fff1345980d6c0ebb92c811d24afa4b98b3e07ed070c8e38cc91fd80478c5", size = 3390096 },
|
350 |
+
{ url = "https://files.pythonhosted.org/packages/72/85/4c03da147b6b4b7cb12e074d3d44eee28604a387ed0eaf7eaaead5069c57/hf_transfer-0.1.9-cp38-abi3-musllinux_1_2_i686.whl", hash = "sha256:1a6bd16c667ebe89a069ca163060127a794fa3a3525292c900b8c8cc47985b0d", size = 3664743 },
|
351 |
+
{ url = "https://files.pythonhosted.org/packages/e7/6e/e597b04f753f1b09e6893075d53a82a30c13855cbaa791402695b01e369f/hf_transfer-0.1.9-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:d2fde99d502093ade3ab1b53f80da18480e9902aa960dab7f74fb1b9e5bc5746", size = 3695243 },
|
352 |
+
{ url = "https://files.pythonhosted.org/packages/09/89/d4e234727a26b2546c8fb70a276cd924260d60135f2165bf8b9ed67bb9a4/hf_transfer-0.1.9-cp38-abi3-win32.whl", hash = "sha256:435cc3cdc8524ce57b074032b8fd76eed70a4224d2091232fa6a8cef8fd6803e", size = 1086605 },
|
353 |
+
{ url = "https://files.pythonhosted.org/packages/a1/14/f1e15b851d1c2af5b0b1a82bf8eb10bda2da62d98180220ba6fd8879bb5b/hf_transfer-0.1.9-cp38-abi3-win_amd64.whl", hash = "sha256:16f208fc678911c37e11aa7b586bc66a37d02e636208f18b6bc53d29b5df40ad", size = 1160240 },
|
354 |
+
]
|
355 |
+
|
356 |
[[package]]
|
357 |
name = "httpcore"
|
358 |
version = "1.0.7"
|
|
|
383 |
|
384 |
[[package]]
|
385 |
name = "huggingface-hub"
|
386 |
+
version = "0.27.1"
|
387 |
source = { registry = "https://pypi.org/simple" }
|
388 |
dependencies = [
|
389 |
{ name = "filelock" },
|
|
|
394 |
{ name = "tqdm" },
|
395 |
{ name = "typing-extensions" },
|
396 |
]
|
397 |
+
sdist = { url = "https://files.pythonhosted.org/packages/e1/d2/d6976de7542792fc077b498d64af64882b6d8bb40679284ec0bff77d5929/huggingface_hub-0.27.1.tar.gz", hash = "sha256:c004463ca870283909d715d20f066ebd6968c2207dae9393fdffb3c1d4d8f98b", size = 379407 }
|
398 |
wheels = [
|
399 |
+
{ url = "https://files.pythonhosted.org/packages/6c/3f/50f6b25fafdcfb1c089187a328c95081abf882309afd86f4053951507cd1/huggingface_hub-0.27.1-py3-none-any.whl", hash = "sha256:1c5155ca7d60b60c2e2fc38cbb3ffb7f7c3adf48f824015b219af9061771daec", size = 450658 },
|
400 |
]
|
401 |
|
402 |
[[package]]
|
|
|
670 |
|
671 |
[[package]]
|
672 |
name = "orjson"
|
673 |
+
version = "3.10.14"
|
674 |
+
source = { registry = "https://pypi.org/simple" }
|
675 |
+
sdist = { url = "https://files.pythonhosted.org/packages/92/f7/3219b56f47b4f5e864fb11cdf4ac0aaa3de608730ad2dc4c6e16382f35ec/orjson-3.10.14.tar.gz", hash = "sha256:cf31f6f071a6b8e7aa1ead1fa27b935b48d00fbfa6a28ce856cfff2d5dd68eed", size = 5282116 }
|
676 |
+
wheels = [
|
677 |
+
{ url = "https://files.pythonhosted.org/packages/b3/62/64348b8b29a14c7342f6aa45c8be0a87fdda2ce7716bc123717376537077/orjson-3.10.14-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:849ea7845a55f09965826e816cdc7689d6cf74fe9223d79d758c714af955bcb6", size = 249439 },
|
678 |
+
{ url = "https://files.pythonhosted.org/packages/9f/51/48f4dfbca7b4db630316b170db4a150a33cd405650258bd62a2d619b43b4/orjson-3.10.14-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5947b139dfa33f72eecc63f17e45230a97e741942955a6c9e650069305eb73d", size = 135811 },
|
679 |
+
{ url = "https://files.pythonhosted.org/packages/a1/1c/e18770843e6d045605c8e00a1be801da5668fa934b323b0492a49c9dee4f/orjson-3.10.14-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:cde6d76910d3179dae70f164466692f4ea36da124d6fb1a61399ca589e81d69a", size = 150154 },
|
680 |
+
{ url = "https://files.pythonhosted.org/packages/51/1e/3817dc79164f1fc17fc53102f74f62d31f5f4ec042abdd24d94c5e06e51c/orjson-3.10.14-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c6dfbaeb7afa77ca608a50e2770a0461177b63a99520d4928e27591b142c74b1", size = 139740 },
|
681 |
+
{ url = "https://files.pythonhosted.org/packages/ff/fc/fbf9e25448f7a2d67c1a2b6dad78a9340666bf9fda3339ff59b1e93f0b6f/orjson-3.10.14-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fa45e489ef80f28ff0e5ba0a72812b8cfc7c1ef8b46a694723807d1b07c89ebb", size = 154479 },
|
682 |
+
{ url = "https://files.pythonhosted.org/packages/d4/df/c8b7ea21ff658f6a9a26d562055631c01d445bda5eb613c02c7d0934607d/orjson-3.10.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f5007abfdbb1d866e2aa8990bd1c465f0f6da71d19e695fc278282be12cffa5", size = 130414 },
|
683 |
+
{ url = "https://files.pythonhosted.org/packages/df/f7/e29c2d42bef8fbf696a5e54e6339b0b9ea5179326950fee6ae80acf59d09/orjson-3.10.14-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1b49e2af011c84c3f2d541bb5cd1e3c7c2df672223e7e3ea608f09cf295e5f8a", size = 138545 },
|
684 |
+
{ url = "https://files.pythonhosted.org/packages/8e/97/afdf2908fe8eaeecb29e97fa82dc934f275acf330e5271def0b8fbac5478/orjson-3.10.14-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:164ac155109226b3a2606ee6dda899ccfbe6e7e18b5bdc3fbc00f79cc074157d", size = 130952 },
|
685 |
+
{ url = "https://files.pythonhosted.org/packages/4a/dd/04e01c1305694f47e9794c60ec7cece02e55fa9d57c5d72081eaaa62ad1d/orjson-3.10.14-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:6b1225024cf0ef5d15934b5ffe9baf860fe8bc68a796513f5ea4f5056de30bca", size = 414673 },
|
686 |
+
{ url = "https://files.pythonhosted.org/packages/fa/12/28c4d5f6a395ac9693b250f0662366968c47fc99c8f3cd803a65b1f5ba46/orjson-3.10.14-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:d6546e8073dc382e60fcae4a001a5a1bc46da5eab4a4878acc2d12072d6166d5", size = 141002 },
|
687 |
+
{ url = "https://files.pythonhosted.org/packages/21/f6/357cb167c2d2fd9542251cfd9f68681b67ed4dcdac82aa6ee2f4f3ab952e/orjson-3.10.14-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:9f1d2942605c894162252d6259b0121bf1cb493071a1ea8cb35d79cb3e6ac5bc", size = 129626 },
|
688 |
+
{ url = "https://files.pythonhosted.org/packages/df/07/d9062353500df9db8bfa7c6a5982687c97d0b69a5b158c4166d407ac94e2/orjson-3.10.14-cp310-cp310-win32.whl", hash = "sha256:397083806abd51cf2b3bbbf6c347575374d160331a2d33c5823e22249ad3118b", size = 142429 },
|
689 |
+
{ url = "https://files.pythonhosted.org/packages/50/ba/6ba2bf69ac0526d143aebe78bc39e6e5fbb51d5336fbc5efb9aab6687cd9/orjson-3.10.14-cp310-cp310-win_amd64.whl", hash = "sha256:fa18f949d3183a8d468367056be989666ac2bef3a72eece0bade9cdb733b3c28", size = 133512 },
|
690 |
+
{ url = "https://files.pythonhosted.org/packages/bf/18/26721760368e12b691fb6811692ed21ae5275ea918db409ba26866cacbe8/orjson-3.10.14-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:f506fd666dd1ecd15a832bebc66c4df45c1902fd47526292836c339f7ba665a9", size = 249437 },
|
691 |
+
{ url = "https://files.pythonhosted.org/packages/d5/5b/2adfe7cc301edeb3bffc1942956659c19ec00d51a21c53c17c0767bebf47/orjson-3.10.14-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:efe5fd254cfb0eeee13b8ef7ecb20f5d5a56ddda8a587f3852ab2cedfefdb5f6", size = 135812 },
|
692 |
+
{ url = "https://files.pythonhosted.org/packages/8a/68/07df7787fd9ff6dba815b2d793eec5e039d288fdf150431ed48a660bfcbb/orjson-3.10.14-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4ddc8c866d7467f5ee2991397d2ea94bcf60d0048bdd8ca555740b56f9042725", size = 150153 },
|
693 |
+
{ url = "https://files.pythonhosted.org/packages/02/71/f68562734461b801b53bacd5365e079dcb3c78656a662f0639494880e522/orjson-3.10.14-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3af8e42ae4363773658b8d578d56dedffb4f05ceeb4d1d4dd3fb504950b45526", size = 139742 },
|
694 |
+
{ url = "https://files.pythonhosted.org/packages/04/03/1355fb27652582f00d3c62e93a32b982fa42bc31d2e07f0a317867069096/orjson-3.10.14-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:84dd83110503bc10e94322bf3ffab8bc49150176b49b4984dc1cce4c0a993bf9", size = 154479 },
|
695 |
+
{ url = "https://files.pythonhosted.org/packages/7c/47/1c2a840f27715e8bc2bbafffc851512ede6e53483593eded190919bdcaf4/orjson-3.10.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:36f5bfc0399cd4811bf10ec7a759c7ab0cd18080956af8ee138097d5b5296a95", size = 130413 },
|
696 |
+
{ url = "https://files.pythonhosted.org/packages/dd/b2/5bb51006cbae85b052d1bbee7ff43ae26fa155bb3d31a71b0c07d384d5e3/orjson-3.10.14-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:868943660fb2a1e6b6b965b74430c16a79320b665b28dd4511d15ad5038d37d5", size = 138545 },
|
697 |
+
{ url = "https://files.pythonhosted.org/packages/79/30/7841a5dd46bb46b8e868791d5469c9d4788d3e26b7e69d40256647997baf/orjson-3.10.14-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33449c67195969b1a677533dee9d76e006001213a24501333624623e13c7cc8e", size = 130953 },
|
698 |
+
{ url = "https://files.pythonhosted.org/packages/08/49/720e7c2040c0f1df630a36d83d449bd7e4d4471071d5ece47a4f7211d570/orjson-3.10.14-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:e4c9f60f9fb0b5be66e416dcd8c9d94c3eabff3801d875bdb1f8ffc12cf86905", size = 414675 },
|
699 |
+
{ url = "https://files.pythonhosted.org/packages/50/b0/ca7619f34280e7dcbd50dbc9c5fe5200c12cd7269b8858652beb3887483f/orjson-3.10.14-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:0de4d6315cfdbd9ec803b945c23b3a68207fd47cbe43626036d97e8e9561a436", size = 141004 },
|
700 |
+
{ url = "https://files.pythonhosted.org/packages/75/1b/7548e3a711543f438e87a4349e00439ab7f37807942e5659f29363f35765/orjson-3.10.14-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:83adda3db595cb1a7e2237029b3249c85afbe5c747d26b41b802e7482cb3933e", size = 129629 },
|
701 |
+
{ url = "https://files.pythonhosted.org/packages/b0/1e/4930a6ff46debd6be1ff18e869b7bc43a7ad762c865610b7e745038d6f68/orjson-3.10.14-cp311-cp311-win32.whl", hash = "sha256:998019ef74a4997a9d741b1473533cdb8faa31373afc9849b35129b4b8ec048d", size = 142430 },
|
702 |
+
{ url = "https://files.pythonhosted.org/packages/28/e0/6cc1cd1dfde36555e81ac869f7847e86bb11c27f97b72fde2f1509b12163/orjson-3.10.14-cp311-cp311-win_amd64.whl", hash = "sha256:9d034abdd36f0f0f2240f91492684e5043d46f290525d1117712d5b8137784eb", size = 133516 },
|
703 |
+
{ url = "https://files.pythonhosted.org/packages/8c/dc/dc5a882be016ee8688bd867ad3b4e3b2ab039d91383099702301a1adb6ac/orjson-3.10.14-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:2ad4b7e367efba6dc3f119c9a0fcd41908b7ec0399a696f3cdea7ec477441b09", size = 249396 },
|
704 |
+
{ url = "https://files.pythonhosted.org/packages/f0/95/4c23ff5c0505cd687928608e0b7910ccb44ce59490079e1c17b7610aa0d0/orjson-3.10.14-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f496286fc85e93ce0f71cc84fc1c42de2decf1bf494094e188e27a53694777a7", size = 135689 },
|
705 |
+
{ url = "https://files.pythonhosted.org/packages/ad/39/b4bdd19604dce9d6509c4d86e8e251a1373a24204b4c4169866dcecbe5f5/orjson-3.10.14-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c7f189bbfcded40e41a6969c1068ba305850ba016665be71a217918931416fbf", size = 150136 },
|
706 |
+
{ url = "https://files.pythonhosted.org/packages/1d/92/7b9bad96353abd3e89947960252dcf1022ce2df7f29056e434de05e18b6d/orjson-3.10.14-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8cc8204f0b75606869c707da331058ddf085de29558b516fc43c73ee5ee2aadb", size = 139766 },
|
707 |
+
{ url = "https://files.pythonhosted.org/packages/a6/bd/abb13c86540b7a91b40d7d9f8549d03a026bc22d78fa93f71d68b8f4c36e/orjson-3.10.14-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:deaa2899dff7f03ab667e2ec25842d233e2a6a9e333efa484dfe666403f3501c", size = 154533 },
|
708 |
+
{ url = "https://files.pythonhosted.org/packages/c0/02/0bcb91ec9c7143012359983aca44f567f87df379957cd4af11336217b12f/orjson-3.10.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f1c3ea52642c9714dc6e56de8a451a066f6d2707d273e07fe8a9cc1ba073813d", size = 130658 },
|
709 |
+
{ url = "https://files.pythonhosted.org/packages/b4/1e/b304596bb1f800d47d6e92305bd09f0eef693ed4f7b2095db63f9808b229/orjson-3.10.14-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9d3f9ed72e7458ded9a1fb1b4d4ed4c4fdbaf82030ce3f9274b4dc1bff7ace2b", size = 138546 },
|
710 |
+
{ url = "https://files.pythonhosted.org/packages/56/c7/65d72b22080186ef618a46afeb9386e20056f3237664090f3a2f8da1cd6d/orjson-3.10.14-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:07520685d408a2aba514c17ccc16199ff2934f9f9e28501e676c557f454a37fe", size = 130774 },
|
711 |
+
{ url = "https://files.pythonhosted.org/packages/4d/85/1ab35a832f32b37ccd673721e845cf302f23453603112255af611c91d1d1/orjson-3.10.14-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:76344269b550ea01488d19a2a369ab572c1ac4449a72e9f6ac0d70eb1cbfb953", size = 414649 },
|
712 |
+
{ url = "https://files.pythonhosted.org/packages/d1/7d/1d6575f779bab8fe698fa6d52e8aa3aa0a9fca4885d0bf6197700455713a/orjson-3.10.14-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e2979d0f2959990620f7e62da6cd954e4620ee815539bc57a8ae46e2dacf90e3", size = 141060 },
|
713 |
+
{ url = "https://files.pythonhosted.org/packages/f8/26/68513e28b3bd1d7633318ed2818e86d1bfc8b782c87c520c7b363092837f/orjson-3.10.14-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:03f61ca3674555adcb1aa717b9fc87ae936aa7a63f6aba90a474a88701278780", size = 129798 },
|
714 |
+
{ url = "https://files.pythonhosted.org/packages/44/ca/020fb99c98ff7267ba18ce798ff0c8c3aa97cd949b611fc76cad3c87e534/orjson-3.10.14-cp312-cp312-win32.whl", hash = "sha256:d5075c54edf1d6ad81d4c6523ce54a748ba1208b542e54b97d8a882ecd810fd1", size = 142524 },
|
715 |
+
{ url = "https://files.pythonhosted.org/packages/70/7f/f2d346819a273653825e7c92dc26418c8da506003c9fc1dfe8157e733b2e/orjson-3.10.14-cp312-cp312-win_amd64.whl", hash = "sha256:175cafd322e458603e8ce73510a068d16b6e6f389c13f69bf16de0e843d7d406", size = 133663 },
|
716 |
+
{ url = "https://files.pythonhosted.org/packages/46/bb/f1b037d89f580c79eda0940772384cc226a697be1cb4eb94ae4e792aa34c/orjson-3.10.14-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:0905ca08a10f7e0e0c97d11359609300eb1437490a7f32bbaa349de757e2e0c7", size = 249333 },
|
717 |
+
{ url = "https://files.pythonhosted.org/packages/e4/72/12958a073cace3f8acef0f9a30739d95f46bbb1544126fecad11527d4508/orjson-3.10.14-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:92d13292249f9f2a3e418cbc307a9fbbef043c65f4bd8ba1eb620bc2aaba3d15", size = 125038 },
|
718 |
+
{ url = "https://files.pythonhosted.org/packages/c0/ae/461f78b1c98de1bc034af88bc21c6a792cc63373261fbc10a6ee560814fa/orjson-3.10.14-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90937664e776ad316d64251e2fa2ad69265e4443067668e4727074fe39676414", size = 130604 },
|
719 |
+
{ url = "https://files.pythonhosted.org/packages/ae/d2/17f50513f56bff7898840fddf7fb88f501305b9b2605d2793ff224789665/orjson-3.10.14-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:9ed3d26c4cb4f6babaf791aa46a029265850e80ec2a566581f5c2ee1a14df4f1", size = 130756 },
|
720 |
+
{ url = "https://files.pythonhosted.org/packages/fa/bc/673856e4af94c9890dfd8e2054c05dc2ddc16d1728c2aa0c5bd198943105/orjson-3.10.14-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:56ee546c2bbe9599aba78169f99d1dc33301853e897dbaf642d654248280dc6e", size = 414613 },
|
721 |
+
{ url = "https://files.pythonhosted.org/packages/09/01/08c5b69b0756dd1790fcffa569d6a28dedcd7b97f825e4b46537b788908c/orjson-3.10.14-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:901e826cb2f1bdc1fcef3ef59adf0c451e8f7c0b5deb26c1a933fb66fb505eae", size = 141010 },
|
722 |
+
{ url = "https://files.pythonhosted.org/packages/5b/98/72883bb6cf88fd364996e62d2026622ca79bfb8dbaf96ccdd2018ada25b1/orjson-3.10.14-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:26336c0d4b2d44636e1e1e6ed1002f03c6aae4a8a9329561c8883f135e9ff010", size = 129732 },
|
723 |
+
{ url = "https://files.pythonhosted.org/packages/e4/99/347418f7ef56dcb478ba131a6112b8ddd5b747942652b6e77a53155a7e21/orjson-3.10.14-cp313-cp313-win32.whl", hash = "sha256:e2bc525e335a8545c4e48f84dd0328bc46158c9aaeb8a1c2276546e94540ea3d", size = 142504 },
|
724 |
+
{ url = "https://files.pythonhosted.org/packages/59/ac/5e96cad01083015f7bfdb02ccafa489da8e6caa7f4c519e215f04d2bd856/orjson-3.10.14-cp313-cp313-win_amd64.whl", hash = "sha256:eca04dfd792cedad53dc9a917da1a522486255360cb4e77619343a20d9f35364", size = 133388 },
|
725 |
]
|
726 |
|
727 |
[[package]]
|
|
|
783 |
|
784 |
[[package]]
|
785 |
name = "pillow"
|
786 |
+
version = "11.1.0"
|
787 |
+
source = { registry = "https://pypi.org/simple" }
|
788 |
+
sdist = { url = "https://files.pythonhosted.org/packages/f3/af/c097e544e7bd278333db77933e535098c259609c4eb3b85381109602fb5b/pillow-11.1.0.tar.gz", hash = "sha256:368da70808b36d73b4b390a8ffac11069f8a5c85f29eff1f1b01bcf3ef5b2a20", size = 46742715 }
|
789 |
+
wheels = [
|
790 |
+
{ url = "https://files.pythonhosted.org/packages/50/1c/2dcea34ac3d7bc96a1fd1bd0a6e06a57c67167fec2cff8d95d88229a8817/pillow-11.1.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:e1abe69aca89514737465752b4bcaf8016de61b3be1397a8fc260ba33321b3a8", size = 3229983 },
|
791 |
+
{ url = "https://files.pythonhosted.org/packages/14/ca/6bec3df25e4c88432681de94a3531cc738bd85dea6c7aa6ab6f81ad8bd11/pillow-11.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c640e5a06869c75994624551f45e5506e4256562ead981cce820d5ab39ae2192", size = 3101831 },
|
792 |
+
{ url = "https://files.pythonhosted.org/packages/d4/2c/668e18e5521e46eb9667b09e501d8e07049eb5bfe39d56be0724a43117e6/pillow-11.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a07dba04c5e22824816b2615ad7a7484432d7f540e6fa86af60d2de57b0fcee2", size = 4314074 },
|
793 |
+
{ url = "https://files.pythonhosted.org/packages/02/80/79f99b714f0fc25f6a8499ecfd1f810df12aec170ea1e32a4f75746051ce/pillow-11.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e267b0ed063341f3e60acd25c05200df4193e15a4a5807075cd71225a2386e26", size = 4394933 },
|
794 |
+
{ url = "https://files.pythonhosted.org/packages/81/aa/8d4ad25dc11fd10a2001d5b8a80fdc0e564ac33b293bdfe04ed387e0fd95/pillow-11.1.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:bd165131fd51697e22421d0e467997ad31621b74bfc0b75956608cb2906dda07", size = 4353349 },
|
795 |
+
{ url = "https://files.pythonhosted.org/packages/84/7a/cd0c3eaf4a28cb2a74bdd19129f7726277a7f30c4f8424cd27a62987d864/pillow-11.1.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:abc56501c3fd148d60659aae0af6ddc149660469082859fa7b066a298bde9482", size = 4476532 },
|
796 |
+
{ url = "https://files.pythonhosted.org/packages/8f/8b/a907fdd3ae8f01c7670dfb1499c53c28e217c338b47a813af8d815e7ce97/pillow-11.1.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:54ce1c9a16a9561b6d6d8cb30089ab1e5eb66918cb47d457bd996ef34182922e", size = 4279789 },
|
797 |
+
{ url = "https://files.pythonhosted.org/packages/6f/9a/9f139d9e8cccd661c3efbf6898967a9a337eb2e9be2b454ba0a09533100d/pillow-11.1.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:73ddde795ee9b06257dac5ad42fcb07f3b9b813f8c1f7f870f402f4dc54b5269", size = 4413131 },
|
798 |
+
{ url = "https://files.pythonhosted.org/packages/a8/68/0d8d461f42a3f37432203c8e6df94da10ac8081b6d35af1c203bf3111088/pillow-11.1.0-cp310-cp310-win32.whl", hash = "sha256:3a5fe20a7b66e8135d7fd617b13272626a28278d0e578c98720d9ba4b2439d49", size = 2291213 },
|
799 |
+
{ url = "https://files.pythonhosted.org/packages/14/81/d0dff759a74ba87715509af9f6cb21fa21d93b02b3316ed43bda83664db9/pillow-11.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:b6123aa4a59d75f06e9dd3dac5bf8bc9aa383121bb3dd9a7a612e05eabc9961a", size = 2625725 },
|
800 |
+
{ url = "https://files.pythonhosted.org/packages/ce/1f/8d50c096a1d58ef0584ddc37e6f602828515219e9d2428e14ce50f5ecad1/pillow-11.1.0-cp310-cp310-win_arm64.whl", hash = "sha256:a76da0a31da6fcae4210aa94fd779c65c75786bc9af06289cd1c184451ef7a65", size = 2375213 },
|
801 |
+
{ url = "https://files.pythonhosted.org/packages/dd/d6/2000bfd8d5414fb70cbbe52c8332f2283ff30ed66a9cde42716c8ecbe22c/pillow-11.1.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:e06695e0326d05b06833b40b7ef477e475d0b1ba3a6d27da1bb48c23209bf457", size = 3229968 },
|
802 |
+
{ url = "https://files.pythonhosted.org/packages/d9/45/3fe487010dd9ce0a06adf9b8ff4f273cc0a44536e234b0fad3532a42c15b/pillow-11.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:96f82000e12f23e4f29346e42702b6ed9a2f2fea34a740dd5ffffcc8c539eb35", size = 3101806 },
|
803 |
+
{ url = "https://files.pythonhosted.org/packages/e3/72/776b3629c47d9d5f1c160113158a7a7ad177688d3a1159cd3b62ded5a33a/pillow-11.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a3cd561ded2cf2bbae44d4605837221b987c216cff94f49dfeed63488bb228d2", size = 4322283 },
|
804 |
+
{ url = "https://files.pythonhosted.org/packages/e4/c2/e25199e7e4e71d64eeb869f5b72c7ddec70e0a87926398785ab944d92375/pillow-11.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f189805c8be5ca5add39e6f899e6ce2ed824e65fb45f3c28cb2841911da19070", size = 4402945 },
|
805 |
+
{ url = "https://files.pythonhosted.org/packages/c1/ed/51d6136c9d5911f78632b1b86c45241c712c5a80ed7fa7f9120a5dff1eba/pillow-11.1.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:dd0052e9db3474df30433f83a71b9b23bd9e4ef1de13d92df21a52c0303b8ab6", size = 4361228 },
|
806 |
+
{ url = "https://files.pythonhosted.org/packages/48/a4/fbfe9d5581d7b111b28f1d8c2762dee92e9821bb209af9fa83c940e507a0/pillow-11.1.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:837060a8599b8f5d402e97197d4924f05a2e0d68756998345c829c33186217b1", size = 4484021 },
|
807 |
+
{ url = "https://files.pythonhosted.org/packages/39/db/0b3c1a5018117f3c1d4df671fb8e47d08937f27519e8614bbe86153b65a5/pillow-11.1.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:aa8dd43daa836b9a8128dbe7d923423e5ad86f50a7a14dc688194b7be5c0dea2", size = 4287449 },
|
808 |
+
{ url = "https://files.pythonhosted.org/packages/d9/58/bc128da7fea8c89fc85e09f773c4901e95b5936000e6f303222490c052f3/pillow-11.1.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0a2f91f8a8b367e7a57c6e91cd25af510168091fb89ec5146003e424e1558a96", size = 4419972 },
|
809 |
+
{ url = "https://files.pythonhosted.org/packages/5f/bb/58f34379bde9fe197f51841c5bbe8830c28bbb6d3801f16a83b8f2ad37df/pillow-11.1.0-cp311-cp311-win32.whl", hash = "sha256:c12fc111ef090845de2bb15009372175d76ac99969bdf31e2ce9b42e4b8cd88f", size = 2291201 },
|
810 |
+
{ url = "https://files.pythonhosted.org/packages/3a/c6/fce9255272bcf0c39e15abd2f8fd8429a954cf344469eaceb9d0d1366913/pillow-11.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:fbd43429d0d7ed6533b25fc993861b8fd512c42d04514a0dd6337fb3ccf22761", size = 2625686 },
|
811 |
+
{ url = "https://files.pythonhosted.org/packages/c8/52/8ba066d569d932365509054859f74f2a9abee273edcef5cd75e4bc3e831e/pillow-11.1.0-cp311-cp311-win_arm64.whl", hash = "sha256:f7955ecf5609dee9442cbface754f2c6e541d9e6eda87fad7f7a989b0bdb9d71", size = 2375194 },
|
812 |
+
{ url = "https://files.pythonhosted.org/packages/95/20/9ce6ed62c91c073fcaa23d216e68289e19d95fb8188b9fb7a63d36771db8/pillow-11.1.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:2062ffb1d36544d42fcaa277b069c88b01bb7298f4efa06731a7fd6cc290b81a", size = 3226818 },
|
813 |
+
{ url = "https://files.pythonhosted.org/packages/b9/d8/f6004d98579a2596c098d1e30d10b248798cceff82d2b77aa914875bfea1/pillow-11.1.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a85b653980faad27e88b141348707ceeef8a1186f75ecc600c395dcac19f385b", size = 3101662 },
|
814 |
+
{ url = "https://files.pythonhosted.org/packages/08/d9/892e705f90051c7a2574d9f24579c9e100c828700d78a63239676f960b74/pillow-11.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9409c080586d1f683df3f184f20e36fb647f2e0bc3988094d4fd8c9f4eb1b3b3", size = 4329317 },
|
815 |
+
{ url = "https://files.pythonhosted.org/packages/8c/aa/7f29711f26680eab0bcd3ecdd6d23ed6bce180d82e3f6380fb7ae35fcf3b/pillow-11.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7fdadc077553621911f27ce206ffcbec7d3f8d7b50e0da39f10997e8e2bb7f6a", size = 4412999 },
|
816 |
+
{ url = "https://files.pythonhosted.org/packages/c8/c4/8f0fe3b9e0f7196f6d0bbb151f9fba323d72a41da068610c4c960b16632a/pillow-11.1.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:93a18841d09bcdd774dcdc308e4537e1f867b3dec059c131fde0327899734aa1", size = 4368819 },
|
817 |
+
{ url = "https://files.pythonhosted.org/packages/38/0d/84200ed6a871ce386ddc82904bfadc0c6b28b0c0ec78176871a4679e40b3/pillow-11.1.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:9aa9aeddeed452b2f616ff5507459e7bab436916ccb10961c4a382cd3e03f47f", size = 4496081 },
|
818 |
+
{ url = "https://files.pythonhosted.org/packages/84/9c/9bcd66f714d7e25b64118e3952d52841a4babc6d97b6d28e2261c52045d4/pillow-11.1.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3cdcdb0b896e981678eee140d882b70092dac83ac1cdf6b3a60e2216a73f2b91", size = 4296513 },
|
819 |
+
{ url = "https://files.pythonhosted.org/packages/db/61/ada2a226e22da011b45f7104c95ebda1b63dcbb0c378ad0f7c2a710f8fd2/pillow-11.1.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:36ba10b9cb413e7c7dfa3e189aba252deee0602c86c309799da5a74009ac7a1c", size = 4431298 },
|
820 |
+
{ url = "https://files.pythonhosted.org/packages/e7/c4/fc6e86750523f367923522014b821c11ebc5ad402e659d8c9d09b3c9d70c/pillow-11.1.0-cp312-cp312-win32.whl", hash = "sha256:cfd5cd998c2e36a862d0e27b2df63237e67273f2fc78f47445b14e73a810e7e6", size = 2291630 },
|
821 |
+
{ url = "https://files.pythonhosted.org/packages/08/5c/2104299949b9d504baf3f4d35f73dbd14ef31bbd1ddc2c1b66a5b7dfda44/pillow-11.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:a697cd8ba0383bba3d2d3ada02b34ed268cb548b369943cd349007730c92bddf", size = 2626369 },
|
822 |
+
{ url = "https://files.pythonhosted.org/packages/37/f3/9b18362206b244167c958984b57c7f70a0289bfb59a530dd8af5f699b910/pillow-11.1.0-cp312-cp312-win_arm64.whl", hash = "sha256:4dd43a78897793f60766563969442020e90eb7847463eca901e41ba186a7d4a5", size = 2375240 },
|
823 |
+
{ url = "https://files.pythonhosted.org/packages/b3/31/9ca79cafdce364fd5c980cd3416c20ce1bebd235b470d262f9d24d810184/pillow-11.1.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:ae98e14432d458fc3de11a77ccb3ae65ddce70f730e7c76140653048c71bfcbc", size = 3226640 },
|
824 |
+
{ url = "https://files.pythonhosted.org/packages/ac/0f/ff07ad45a1f172a497aa393b13a9d81a32e1477ef0e869d030e3c1532521/pillow-11.1.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:cc1331b6d5a6e144aeb5e626f4375f5b7ae9934ba620c0ac6b3e43d5e683a0f0", size = 3101437 },
|
825 |
+
{ url = "https://files.pythonhosted.org/packages/08/2f/9906fca87a68d29ec4530be1f893149e0cb64a86d1f9f70a7cfcdfe8ae44/pillow-11.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:758e9d4ef15d3560214cddbc97b8ef3ef86ce04d62ddac17ad39ba87e89bd3b1", size = 4326605 },
|
826 |
+
{ url = "https://files.pythonhosted.org/packages/b0/0f/f3547ee15b145bc5c8b336401b2d4c9d9da67da9dcb572d7c0d4103d2c69/pillow-11.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b523466b1a31d0dcef7c5be1f20b942919b62fd6e9a9be199d035509cbefc0ec", size = 4411173 },
|
827 |
+
{ url = "https://files.pythonhosted.org/packages/b1/df/bf8176aa5db515c5de584c5e00df9bab0713548fd780c82a86cba2c2fedb/pillow-11.1.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:9044b5e4f7083f209c4e35aa5dd54b1dd5b112b108648f5c902ad586d4f945c5", size = 4369145 },
|
828 |
+
{ url = "https://files.pythonhosted.org/packages/de/7c/7433122d1cfadc740f577cb55526fdc39129a648ac65ce64db2eb7209277/pillow-11.1.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:3764d53e09cdedd91bee65c2527815d315c6b90d7b8b79759cc48d7bf5d4f114", size = 4496340 },
|
829 |
+
{ url = "https://files.pythonhosted.org/packages/25/46/dd94b93ca6bd555588835f2504bd90c00d5438fe131cf01cfa0c5131a19d/pillow-11.1.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:31eba6bbdd27dde97b0174ddf0297d7a9c3a507a8a1480e1e60ef914fe23d352", size = 4296906 },
|
830 |
+
{ url = "https://files.pythonhosted.org/packages/a8/28/2f9d32014dfc7753e586db9add35b8a41b7a3b46540e965cb6d6bc607bd2/pillow-11.1.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b5d658fbd9f0d6eea113aea286b21d3cd4d3fd978157cbf2447a6035916506d3", size = 4431759 },
|
831 |
+
{ url = "https://files.pythonhosted.org/packages/33/48/19c2cbe7403870fbe8b7737d19eb013f46299cdfe4501573367f6396c775/pillow-11.1.0-cp313-cp313-win32.whl", hash = "sha256:f86d3a7a9af5d826744fabf4afd15b9dfef44fe69a98541f666f66fbb8d3fef9", size = 2291657 },
|
832 |
+
{ url = "https://files.pythonhosted.org/packages/3b/ad/285c556747d34c399f332ba7c1a595ba245796ef3e22eae190f5364bb62b/pillow-11.1.0-cp313-cp313-win_amd64.whl", hash = "sha256:593c5fd6be85da83656b93ffcccc2312d2d149d251e98588b14fbc288fd8909c", size = 2626304 },
|
833 |
+
{ url = "https://files.pythonhosted.org/packages/e5/7b/ef35a71163bf36db06e9c8729608f78dedf032fc8313d19bd4be5c2588f3/pillow-11.1.0-cp313-cp313-win_arm64.whl", hash = "sha256:11633d58b6ee5733bde153a8dafd25e505ea3d32e261accd388827ee987baf65", size = 2375117 },
|
834 |
+
{ url = "https://files.pythonhosted.org/packages/79/30/77f54228401e84d6791354888549b45824ab0ffde659bafa67956303a09f/pillow-11.1.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:70ca5ef3b3b1c4a0812b5c63c57c23b63e53bc38e758b37a951e5bc466449861", size = 3230060 },
|
835 |
+
{ url = "https://files.pythonhosted.org/packages/ce/b1/56723b74b07dd64c1010fee011951ea9c35a43d8020acd03111f14298225/pillow-11.1.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:8000376f139d4d38d6851eb149b321a52bb8893a88dae8ee7d95840431977081", size = 3106192 },
|
836 |
+
{ url = "https://files.pythonhosted.org/packages/e1/cd/7bf7180e08f80a4dcc6b4c3a0aa9e0b0ae57168562726a05dc8aa8fa66b0/pillow-11.1.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ee85f0696a17dd28fbcfceb59f9510aa71934b483d1f5601d1030c3c8304f3c", size = 4446805 },
|
837 |
+
{ url = "https://files.pythonhosted.org/packages/97/42/87c856ea30c8ed97e8efbe672b58c8304dee0573f8c7cab62ae9e31db6ae/pillow-11.1.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:dd0e081319328928531df7a0e63621caf67652c8464303fd102141b785ef9547", size = 4530623 },
|
838 |
+
{ url = "https://files.pythonhosted.org/packages/ff/41/026879e90c84a88e33fb00cc6bd915ac2743c67e87a18f80270dfe3c2041/pillow-11.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:e63e4e5081de46517099dc30abe418122f54531a6ae2ebc8680bcd7096860eab", size = 4465191 },
|
839 |
+
{ url = "https://files.pythonhosted.org/packages/e5/fb/a7960e838bc5df57a2ce23183bfd2290d97c33028b96bde332a9057834d3/pillow-11.1.0-cp313-cp313t-win32.whl", hash = "sha256:dda60aa465b861324e65a78c9f5cf0f4bc713e4309f83bc387be158b077963d9", size = 2295494 },
|
840 |
+
{ url = "https://files.pythonhosted.org/packages/d7/6c/6ec83ee2f6f0fda8d4cf89045c6be4b0373ebfc363ba8538f8c999f63fcd/pillow-11.1.0-cp313-cp313t-win_amd64.whl", hash = "sha256:ad5db5781c774ab9a9b2c4302bbf0c1014960a0a7be63278d13ae6fdf88126fe", size = 2631595 },
|
841 |
+
{ url = "https://files.pythonhosted.org/packages/cf/6c/41c21c6c8af92b9fea313aa47c75de49e2f9a467964ee33eb0135d47eb64/pillow-11.1.0-cp313-cp313t-win_arm64.whl", hash = "sha256:67cd427c68926108778a9005f2a04adbd5e67c442ed21d95389fe1d595458756", size = 2377651 },
|
842 |
+
{ url = "https://files.pythonhosted.org/packages/fa/c5/389961578fb677b8b3244fcd934f720ed25a148b9a5cc81c91bdf59d8588/pillow-11.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:8c730dc3a83e5ac137fbc92dfcfe1511ce3b2b5d7578315b63dbbb76f7f51d90", size = 3198345 },
|
843 |
+
{ url = "https://files.pythonhosted.org/packages/c4/fa/803c0e50ffee74d4b965229e816af55276eac1d5806712de86f9371858fd/pillow-11.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:7d33d2fae0e8b170b6a6c57400e077412240f6f5bb2a342cf1ee512a787942bb", size = 3072938 },
|
844 |
+
{ url = "https://files.pythonhosted.org/packages/dc/67/2a3a5f8012b5d8c63fe53958ba906c1b1d0482ebed5618057ef4d22f8076/pillow-11.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a8d65b38173085f24bc07f8b6c505cbb7418009fa1a1fcb111b1f4961814a442", size = 3400049 },
|
845 |
+
{ url = "https://files.pythonhosted.org/packages/e5/a0/514f0d317446c98c478d1872497eb92e7cde67003fed74f696441e647446/pillow-11.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:015c6e863faa4779251436db398ae75051469f7c903b043a48f078e437656f83", size = 3422431 },
|
846 |
+
{ url = "https://files.pythonhosted.org/packages/cd/00/20f40a935514037b7d3f87adfc87d2c538430ea625b63b3af8c3f5578e72/pillow-11.1.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:d44ff19eea13ae4acdaaab0179fa68c0c6f2f45d66a4d8ec1eda7d6cecbcc15f", size = 3446208 },
|
847 |
+
{ url = "https://files.pythonhosted.org/packages/28/3c/7de681727963043e093c72e6c3348411b0185eab3263100d4490234ba2f6/pillow-11.1.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:d3d8da4a631471dfaf94c10c85f5277b1f8e42ac42bade1ac67da4b4a7359b73", size = 3509746 },
|
848 |
+
{ url = "https://files.pythonhosted.org/packages/41/67/936f9814bdd74b2dfd4822f1f7725ab5d8ff4103919a1664eb4874c58b2f/pillow-11.1.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:4637b88343166249fe8aa94e7c4a62a180c4b3898283bb5d3d2fd5fe10d8e4e0", size = 2626353 },
|
849 |
]
|
850 |
|
851 |
[[package]]
|
|
|
874 |
|
875 |
[[package]]
|
876 |
name = "pydantic"
|
877 |
+
version = "2.10.5"
|
878 |
source = { registry = "https://pypi.org/simple" }
|
879 |
dependencies = [
|
880 |
{ name = "annotated-types" },
|
881 |
{ name = "pydantic-core" },
|
882 |
{ name = "typing-extensions" },
|
883 |
]
|
884 |
+
sdist = { url = "https://files.pythonhosted.org/packages/6a/c7/ca334c2ef6f2e046b1144fe4bb2a5da8a4c574e7f2ebf7e16b34a6a2fa92/pydantic-2.10.5.tar.gz", hash = "sha256:278b38dbbaec562011d659ee05f63346951b3a248a6f3642e1bc68894ea2b4ff", size = 761287 }
|
885 |
wheels = [
|
886 |
+
{ url = "https://files.pythonhosted.org/packages/58/26/82663c79010b28eddf29dcdd0ea723439535fa917fce5905885c0e9ba562/pydantic-2.10.5-py3-none-any.whl", hash = "sha256:4dd4e322dbe55472cb7ca7e73f4b63574eecccf2835ffa2af9021ce113c83c53", size = 431426 },
|
887 |
]
|
888 |
|
889 |
[[package]]
|
|
|
972 |
|
973 |
[[package]]
|
974 |
name = "pygments"
|
975 |
+
version = "2.19.1"
|
976 |
source = { registry = "https://pypi.org/simple" }
|
977 |
+
sdist = { url = "https://files.pythonhosted.org/packages/7c/2d/c3338d48ea6cc0feb8446d8e6937e1408088a72a39937982cc6111d17f84/pygments-2.19.1.tar.gz", hash = "sha256:61c16d2a8576dc0649d9f39e089b5f02bcd27fba10d8fb4dcc28173f7a45151f", size = 4968581 }
|
978 |
wheels = [
|
979 |
+
{ url = "https://files.pythonhosted.org/packages/8a/0b/9fcc47d19c48b59121088dd6da2488a49d5f72dacf8262e2790a1d2c7d15/pygments-2.19.1-py3-none-any.whl", hash = "sha256:9ea1544ad55cecf4b8242fab6dd35a93bbce657034b0611ee383099054ab6d8c", size = 1225293 },
|
980 |
]
|
981 |
|
982 |
[[package]]
|
|
|
1084 |
|
1085 |
[[package]]
|
1086 |
name = "ruff"
|
1087 |
+
version = "0.9.1"
|
1088 |
+
source = { registry = "https://pypi.org/simple" }
|
1089 |
+
sdist = { url = "https://files.pythonhosted.org/packages/67/3e/e89f736f01aa9517a97e2e7e0ce8d34a4d8207087b3cfdec95133fee13b5/ruff-0.9.1.tar.gz", hash = "sha256:fd2b25ecaf907d6458fa842675382c8597b3c746a2dde6717fe3415425df0c17", size = 3498844 }
|
1090 |
+
wheels = [
|
1091 |
+
{ url = "https://files.pythonhosted.org/packages/dc/05/c3a2e0feb3d5d394cdfd552de01df9d3ec8a3a3771bbff247fab7e668653/ruff-0.9.1-py3-none-linux_armv6l.whl", hash = "sha256:84330dda7abcc270e6055551aca93fdde1b0685fc4fd358f26410f9349cf1743", size = 10645241 },
|
1092 |
+
{ url = "https://files.pythonhosted.org/packages/dd/da/59f0a40e5f88ee5c054ad175caaa2319fc96571e1d29ab4730728f2aad4f/ruff-0.9.1-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:3cae39ba5d137054b0e5b472aee3b78a7c884e61591b100aeb544bcd1fc38d4f", size = 10391066 },
|
1093 |
+
{ url = "https://files.pythonhosted.org/packages/b7/fe/85e1c1acf0ba04a3f2d54ae61073da030f7a5dc386194f96f3c6ca444a78/ruff-0.9.1-py3-none-macosx_11_0_arm64.whl", hash = "sha256:50c647ff96f4ba288db0ad87048257753733763b409b2faf2ea78b45c8bb7fcb", size = 10012308 },
|
1094 |
+
{ url = "https://files.pythonhosted.org/packages/6f/9b/780aa5d4bdca8dcea4309264b8faa304bac30e1ce0bcc910422bfcadd203/ruff-0.9.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f0c8b149e9c7353cace7d698e1656ffcf1e36e50f8ea3b5d5f7f87ff9986a7ca", size = 10881960 },
|
1095 |
+
{ url = "https://files.pythonhosted.org/packages/12/f4/dac4361afbfe520afa7186439e8094e4884ae3b15c8fc75fb2e759c1f267/ruff-0.9.1-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:beb3298604540c884d8b282fe7625651378e1986c25df51dec5b2f60cafc31ce", size = 10414803 },
|
1096 |
+
{ url = "https://files.pythonhosted.org/packages/f0/a2/057a3cb7999513cb78d6cb33a7d1cc6401c82d7332583786e4dad9e38e44/ruff-0.9.1-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:39d0174ccc45c439093971cc06ed3ac4dc545f5e8bdacf9f067adf879544d969", size = 11464929 },
|
1097 |
+
{ url = "https://files.pythonhosted.org/packages/eb/c6/1ccfcc209bee465ced4874dcfeaadc88aafcc1ea9c9f31ef66f063c187f0/ruff-0.9.1-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:69572926c0f0c9912288915214ca9b2809525ea263603370b9e00bed2ba56dbd", size = 12170717 },
|
1098 |
+
{ url = "https://files.pythonhosted.org/packages/84/97/4a524027518525c7cf6931e9fd3b2382be5e4b75b2b61bec02681a7685a5/ruff-0.9.1-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:937267afce0c9170d6d29f01fcd1f4378172dec6760a9f4dface48cdabf9610a", size = 11708921 },
|
1099 |
+
{ url = "https://files.pythonhosted.org/packages/a6/a4/4e77cf6065c700d5593b25fca6cf725b1ab6d70674904f876254d0112ed0/ruff-0.9.1-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:186c2313de946f2c22bdf5954b8dd083e124bcfb685732cfb0beae0c47233d9b", size = 13058074 },
|
1100 |
+
{ url = "https://files.pythonhosted.org/packages/f9/d6/fcb78e0531e863d0a952c4c5600cc5cd317437f0e5f031cd2288b117bb37/ruff-0.9.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3f94942a3bb767675d9a051867c036655fe9f6c8a491539156a6f7e6b5f31831", size = 11281093 },
|
1101 |
+
{ url = "https://files.pythonhosted.org/packages/e4/3b/7235bbeff00c95dc2d073cfdbf2b871b5bbf476754c5d277815d286b4328/ruff-0.9.1-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:728d791b769cc28c05f12c280f99e8896932e9833fef1dd8756a6af2261fd1ab", size = 10882610 },
|
1102 |
+
{ url = "https://files.pythonhosted.org/packages/2a/66/5599d23257c61cf038137f82999ca8f9d0080d9d5134440a461bef85b461/ruff-0.9.1-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:2f312c86fb40c5c02b44a29a750ee3b21002bd813b5233facdaf63a51d9a85e1", size = 10489273 },
|
1103 |
+
{ url = "https://files.pythonhosted.org/packages/78/85/de4aa057e2532db0f9761e2c2c13834991e087787b93e4aeb5f1cb10d2df/ruff-0.9.1-py3-none-musllinux_1_2_i686.whl", hash = "sha256:ae017c3a29bee341ba584f3823f805abbe5fe9cd97f87ed07ecbf533c4c88366", size = 11003314 },
|
1104 |
+
{ url = "https://files.pythonhosted.org/packages/00/42/afedcaa089116d81447347f76041ff46025849fedb0ed2b187d24cf70fca/ruff-0.9.1-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:5dc40a378a0e21b4cfe2b8a0f1812a6572fc7b230ef12cd9fac9161aa91d807f", size = 11342982 },
|
1105 |
+
{ url = "https://files.pythonhosted.org/packages/39/c6/fe45f3eb27e3948b41a305d8b768e949bf6a39310e9df73f6c576d7f1d9f/ruff-0.9.1-py3-none-win32.whl", hash = "sha256:46ebf5cc106cf7e7378ca3c28ce4293b61b449cd121b98699be727d40b79ba72", size = 8819750 },
|
1106 |
+
{ url = "https://files.pythonhosted.org/packages/38/8d/580db77c3b9d5c3d9479e55b0b832d279c30c8f00ab0190d4cd8fc67831c/ruff-0.9.1-py3-none-win_amd64.whl", hash = "sha256:342a824b46ddbcdddd3abfbb332fa7fcaac5488bf18073e841236aadf4ad5c19", size = 9701331 },
|
1107 |
+
{ url = "https://files.pythonhosted.org/packages/b2/94/0498cdb7316ed67a1928300dd87d659c933479f44dec51b4f62bfd1f8028/ruff-0.9.1-py3-none-win_arm64.whl", hash = "sha256:1cd76c7f9c679e6e8f2af8f778367dca82b95009bc7b1a85a47f1521ae524fa7", size = 9145708 },
|
1108 |
]
|
1109 |
|
1110 |
[[package]]
|
|
|
1130 |
|
1131 |
[[package]]
|
1132 |
name = "setuptools"
|
1133 |
+
version = "75.8.0"
|
1134 |
source = { registry = "https://pypi.org/simple" }
|
1135 |
+
sdist = { url = "https://files.pythonhosted.org/packages/92/ec/089608b791d210aec4e7f97488e67ab0d33add3efccb83a056cbafe3a2a6/setuptools-75.8.0.tar.gz", hash = "sha256:c5afc8f407c626b8313a86e10311dd3f661c6cd9c09d4bf8c15c0e11f9f2b0e6", size = 1343222 }
|
1136 |
wheels = [
|
1137 |
+
{ url = "https://files.pythonhosted.org/packages/69/8a/b9dc7678803429e4a3bc9ba462fa3dd9066824d3c607490235c6a796be5a/setuptools-75.8.0-py3-none-any.whl", hash = "sha256:e3982f444617239225d675215d51f6ba05f845d4eec313da4418fdbb56fb27e3", size = 1228782 },
|
1138 |
]
|
1139 |
|
1140 |
[[package]]
|