hecvec 0.4.0__tar.gz → 0.4.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {hecvec-0.4.0 → hecvec-0.4.2}/PKG-INFO +4 -1
- {hecvec-0.4.0 → hecvec-0.4.2}/pyproject.toml +4 -2
- {hecvec-0.4.0 → hecvec-0.4.2}/src/hecvec/__init__.py +1 -1
- {hecvec-0.4.0 → hecvec-0.4.2}/src/hecvec/pipeline.py +20 -6
- {hecvec-0.4.0 → hecvec-0.4.2}/uv.lock +322 -1
- {hecvec-0.4.0 → hecvec-0.4.2}/.gitignore +0 -0
- {hecvec-0.4.0 → hecvec-0.4.2}/README.md +0 -0
- {hecvec-0.4.0 → hecvec-0.4.2}/scripts/test_slice.py +0 -0
- {hecvec-0.4.0 → hecvec-0.4.2}/src/hecvec/_recursive_chunking.py +0 -0
- {hecvec-0.4.0 → hecvec-0.4.2}/src/hecvec/chroma_client.py +0 -0
- {hecvec-0.4.0 → hecvec-0.4.2}/src/hecvec/chroma_list.py +0 -0
- {hecvec-0.4.0 → hecvec-0.4.2}/src/hecvec/chunkers.py +0 -0
- {hecvec-0.4.0 → hecvec-0.4.2}/src/hecvec/chunking.py +0 -0
- {hecvec-0.4.0 → hecvec-0.4.2}/src/hecvec/cli.py +0 -0
- {hecvec-0.4.0 → hecvec-0.4.2}/src/hecvec/embeddings.py +0 -0
- {hecvec-0.4.0 → hecvec-0.4.2}/src/hecvec/env.py +0 -0
- {hecvec-0.4.0 → hecvec-0.4.2}/src/hecvec/hecvec.py +0 -0
- {hecvec-0.4.0 → hecvec-0.4.2}/src/hecvec/listdir.py +0 -0
- {hecvec-0.4.0 → hecvec-0.4.2}/src/hecvec/reading.py +0 -0
- {hecvec-0.4.0 → hecvec-0.4.2}/src/hecvec/run_llm_chunk.py +0 -0
- {hecvec-0.4.0 → hecvec-0.4.2}/src/hecvec/run_semantic_chunk.py +0 -0
- {hecvec-0.4.0 → hecvec-0.4.2}/src/hecvec/token_splitter.py +0 -0
- {hecvec-0.4.0 → hecvec-0.4.2}/tests/conftest.py +0 -0
- {hecvec-0.4.0 → hecvec-0.4.2}/tests/test_env.py +0 -0
- {hecvec-0.4.0 → hecvec-0.4.2}/tests/test_listdir.py +0 -0
- {hecvec-0.4.0 → hecvec-0.4.2}/tests/test_reading.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hecvec
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.2
|
|
4
4
|
Summary: List directories (safe root), filter .txt/.md files, read as text, chunk, embed, and push to Chroma.
|
|
5
5
|
License-Expression: MIT
|
|
6
6
|
Keywords: chunking,document-pipeline,listdir,text-files
|
|
@@ -20,16 +20,19 @@ Requires-Dist: langchain-text-splitters>=0.2.0
|
|
|
20
20
|
Requires-Dist: openai>=1.0.0
|
|
21
21
|
Requires-Dist: python-dotenv>=1.0.0
|
|
22
22
|
Requires-Dist: tiktoken>=0.5.0
|
|
23
|
+
Requires-Dist: typing-extensions>=4.0.0
|
|
23
24
|
Provides-Extra: chroma
|
|
24
25
|
Requires-Dist: chromadb>=0.4.0; extra == 'chroma'
|
|
25
26
|
Requires-Dist: langchain-text-splitters>=0.2.0; extra == 'chroma'
|
|
26
27
|
Requires-Dist: openai>=1.0.0; extra == 'chroma'
|
|
27
28
|
Requires-Dist: python-dotenv>=1.0.0; extra == 'chroma'
|
|
28
29
|
Requires-Dist: tiktoken>=0.5.0; extra == 'chroma'
|
|
30
|
+
Requires-Dist: typing-extensions>=4.0.0; extra == 'chroma'
|
|
29
31
|
Provides-Extra: chunk
|
|
30
32
|
Requires-Dist: langchain-text-splitters>=0.2.0; extra == 'chunk'
|
|
31
33
|
Provides-Extra: dev
|
|
32
34
|
Requires-Dist: pytest>=7.0.0; extra == 'dev'
|
|
35
|
+
Requires-Dist: twine>=6.0.0; extra == 'dev'
|
|
33
36
|
Description-Content-Type: text/markdown
|
|
34
37
|
|
|
35
38
|
# HecVec
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "hecvec"
|
|
7
|
-
version = "0.4.
|
|
7
|
+
version = "0.4.2"
|
|
8
8
|
description = "List directories (safe root), filter .txt/.md files, read as text, chunk, embed, and push to Chroma."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.9,<3.14"
|
|
@@ -29,6 +29,7 @@ dependencies = [
|
|
|
29
29
|
"openai>=1.0.0",
|
|
30
30
|
"python-dotenv>=1.0.0",
|
|
31
31
|
"tiktoken>=0.5.0",
|
|
32
|
+
"typing_extensions>=4.0.0",
|
|
32
33
|
]
|
|
33
34
|
|
|
34
35
|
[project.optional-dependencies]
|
|
@@ -39,8 +40,9 @@ chroma = [
|
|
|
39
40
|
"openai>=1.0.0",
|
|
40
41
|
"python-dotenv>=1.0.0",
|
|
41
42
|
"tiktoken>=0.5.0",
|
|
43
|
+
"typing_extensions>=4.0.0",
|
|
42
44
|
]
|
|
43
|
-
dev = ["pytest>=7.0.0"]
|
|
45
|
+
dev = ["pytest>=7.0.0", "twine>=6.0.0"]
|
|
44
46
|
|
|
45
47
|
[tool.pytest.ini_options]
|
|
46
48
|
testpaths = ["tests"]
|
|
@@ -5,6 +5,7 @@ One module = one responsibility: orchestrate the full slice() flow.
|
|
|
5
5
|
from __future__ import annotations
|
|
6
6
|
|
|
7
7
|
import logging
|
|
8
|
+
import sys
|
|
8
9
|
from pathlib import Path
|
|
9
10
|
from time import perf_counter
|
|
10
11
|
from typing import Any
|
|
@@ -19,6 +20,18 @@ from hecvec.reading import ReadText
|
|
|
19
20
|
logger = logging.getLogger(__name__)
|
|
20
21
|
|
|
21
22
|
|
|
23
|
+
def _ensure_slice_logging() -> None:
|
|
24
|
+
"""If hecvec logging has no handlers, attach a stream handler at INFO so slice() progress is visible."""
|
|
25
|
+
if not logger.handlers:
|
|
26
|
+
handler = logging.StreamHandler(sys.stdout)
|
|
27
|
+
handler.setLevel(logging.INFO)
|
|
28
|
+
handler.setFormatter(logging.Formatter("%(message)s"))
|
|
29
|
+
logger.setLevel(logging.INFO)
|
|
30
|
+
logger.addHandler(handler)
|
|
31
|
+
elif logger.level == logging.NOTSET:
|
|
32
|
+
logger.setLevel(logging.INFO)
|
|
33
|
+
|
|
34
|
+
|
|
22
35
|
def _check_chroma_deps() -> None:
|
|
23
36
|
try:
|
|
24
37
|
import chromadb # noqa: F401
|
|
@@ -110,6 +123,7 @@ class Slicer:
|
|
|
110
123
|
No API; everything runs in the library.
|
|
111
124
|
"""
|
|
112
125
|
_check_chroma_deps()
|
|
126
|
+
_ensure_slice_logging()
|
|
113
127
|
|
|
114
128
|
total_start = perf_counter()
|
|
115
129
|
logger.info("[0/5] Starting slice | path=%s | method=%s | model=%s", path, chunking_method, embedding_model)
|
|
@@ -129,22 +143,22 @@ class Slicer:
|
|
|
129
143
|
raise ValueError(f"File must be .txt or .md: {path}")
|
|
130
144
|
root = path.parent
|
|
131
145
|
paths = [path]
|
|
132
|
-
logger.info("
|
|
146
|
+
logger.info("Single file: %s", path)
|
|
133
147
|
else:
|
|
134
148
|
root = Path(root).resolve() if root else path
|
|
135
149
|
if not root.is_dir():
|
|
136
150
|
raise ValueError(f"path must be an existing directory: {root}")
|
|
137
|
-
logger.info("
|
|
151
|
+
logger.info("Scanning directory: %s", root)
|
|
138
152
|
lister = ListDirTextFiles(root=root)
|
|
139
153
|
paths = lister.listdir_recursive_txt_md(path)
|
|
140
154
|
if not paths:
|
|
141
|
-
logger.warning("No
|
|
155
|
+
logger.warning("No .txt/.md files found under %s", path)
|
|
142
156
|
return {"files": 0, "chunks": 0, "collection": collection_name, "message": "No .txt/.md files found"}
|
|
143
|
-
logger.info("
|
|
144
|
-
for
|
|
157
|
+
logger.info("Found %d .txt/.md file(s)", len(paths))
|
|
158
|
+
for p in paths[:10]:
|
|
145
159
|
logger.info(" %s", p)
|
|
146
160
|
if len(paths) > 10:
|
|
147
|
-
logger.info(" ...
|
|
161
|
+
logger.info(" ... and %d more", len(paths) - 10)
|
|
148
162
|
|
|
149
163
|
logger.info("[1/5] File discovery completed in %.2fs (%d file(s))", perf_counter() - stage_start, len(paths))
|
|
150
164
|
|
|
@@ -58,6 +58,15 @@ wheels = [
|
|
|
58
58
|
{ url = "https://files.pythonhosted.org/packages/df/73/b6e24bd22e6720ca8ee9a85a0c4a2971af8497d8f3193fa05390cbd46e09/backoff-2.2.1-py3-none-any.whl", hash = "sha256:63579f9a0628e06278f7e47b7d7d5b6ce20dc65c5e96a6f3ca99a6adca0396e8", size = 15148, upload-time = "2022-10-05T19:19:30.546Z" },
|
|
59
59
|
]
|
|
60
60
|
|
|
61
|
+
[[package]]
|
|
62
|
+
name = "backports-tarfile"
|
|
63
|
+
version = "1.2.0"
|
|
64
|
+
source = { registry = "https://pypi.org/simple" }
|
|
65
|
+
sdist = { url = "https://files.pythonhosted.org/packages/86/72/cd9b395f25e290e633655a100af28cb253e4393396264a98bd5f5951d50f/backports_tarfile-1.2.0.tar.gz", hash = "sha256:d75e02c268746e1b8144c278978b6e98e85de6ad16f8e4b0844a154557eca991", size = 86406, upload-time = "2024-05-28T17:01:54.731Z" }
|
|
66
|
+
wheels = [
|
|
67
|
+
{ url = "https://files.pythonhosted.org/packages/b9/fa/123043af240e49752f1c4bd24da5053b6bd00cad78c2be53c0d1e8b975bc/backports.tarfile-1.2.0-py3-none-any.whl", hash = "sha256:77e284d754527b01fb1e6fa8a1afe577858ebe4e9dad8919e34c862cb399bc34", size = 30181, upload-time = "2024-05-28T17:01:53.112Z" },
|
|
68
|
+
]
|
|
69
|
+
|
|
61
70
|
[[package]]
|
|
62
71
|
name = "bcrypt"
|
|
63
72
|
version = "5.0.0"
|
|
@@ -141,6 +150,46 @@ wheels = [
|
|
|
141
150
|
{ url = "https://files.pythonhosted.org/packages/e6/ad/3cc14f097111b4de0040c83a525973216457bbeeb63739ef1ed275c1c021/certifi-2026.1.4-py3-none-any.whl", hash = "sha256:9943707519e4add1115f44c2bc244f782c0249876bf51b6599fee1ffbedd685c", size = 152900, upload-time = "2026-01-04T02:42:40.15Z" },
|
|
142
151
|
]
|
|
143
152
|
|
|
153
|
+
[[package]]
|
|
154
|
+
name = "cffi"
|
|
155
|
+
version = "2.0.0"
|
|
156
|
+
source = { registry = "https://pypi.org/simple" }
|
|
157
|
+
dependencies = [
|
|
158
|
+
{ name = "pycparser", version = "2.23", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' and implementation_name != 'PyPy'" },
|
|
159
|
+
{ name = "pycparser", version = "3.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' and implementation_name != 'PyPy'" },
|
|
160
|
+
]
|
|
161
|
+
sdist = { url = "https://files.pythonhosted.org/packages/eb/56/b1ba7935a17738ae8453301356628e8147c79dbb825bcbc73dc7401f9846/cffi-2.0.0.tar.gz", hash = "sha256:44d1b5909021139fe36001ae048dbdde8214afa20200eda0f64c068cac5d5529", size = 523588, upload-time = "2025-09-08T23:24:04.541Z" }
|
|
162
|
+
wheels = [
|
|
163
|
+
{ url = "https://files.pythonhosted.org/packages/50/bd/b1a6362b80628111e6653c961f987faa55262b4002fcec42308cad1db680/cffi-2.0.0-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:53f77cbe57044e88bbd5ed26ac1d0514d2acf0591dd6bb02a3ae37f76811b80c", size = 208811, upload-time = "2025-09-08T23:22:12.267Z" },
|
|
164
|
+
{ url = "https://files.pythonhosted.org/packages/4f/27/6933a8b2562d7bd1fb595074cf99cc81fc3789f6a6c05cdabb46284a3188/cffi-2.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:3e837e369566884707ddaf85fc1744b47575005c0a229de3327f8f9a20f4efeb", size = 216402, upload-time = "2025-09-08T23:22:13.455Z" },
|
|
165
|
+
{ url = "https://files.pythonhosted.org/packages/98/29/9b366e70e243eb3d14a5cb488dfd3a0b6b2f1fb001a203f653b93ccfac88/cffi-2.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:fc7de24befaeae77ba923797c7c87834c73648a05a4bde34b3b7e5588973a453", size = 216475, upload-time = "2025-09-08T23:22:17.427Z" },
|
|
166
|
+
{ url = "https://files.pythonhosted.org/packages/21/7a/13b24e70d2f90a322f2900c5d8e1f14fa7e2a6b3332b7309ba7b2ba51a5a/cffi-2.0.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:cf364028c016c03078a23b503f02058f1814320a56ad535686f90565636a9495", size = 218829, upload-time = "2025-09-08T23:22:19.069Z" },
|
|
167
|
+
{ url = "https://files.pythonhosted.org/packages/60/99/c9dc110974c59cc981b1f5b66e1d8af8af764e00f0293266824d9c4254bc/cffi-2.0.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e11e82b744887154b182fd3e7e8512418446501191994dbf9c9fc1f32cc8efd5", size = 211211, upload-time = "2025-09-08T23:22:20.588Z" },
|
|
168
|
+
{ url = "https://files.pythonhosted.org/packages/49/72/ff2d12dbf21aca1b32a40ed792ee6b40f6dc3a9cf1644bd7ef6e95e0ac5e/cffi-2.0.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8ea985900c5c95ce9db1745f7933eeef5d314f0565b27625d9a10ec9881e1bfb", size = 218036, upload-time = "2025-09-08T23:22:22.143Z" },
|
|
169
|
+
{ url = "https://files.pythonhosted.org/packages/b1/b7/1200d354378ef52ec227395d95c2576330fd22a869f7a70e88e1447eb234/cffi-2.0.0-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:baf5215e0ab74c16e2dd324e8ec067ef59e41125d3eade2b863d294fd5035c92", size = 209613, upload-time = "2025-09-08T23:22:29.475Z" },
|
|
170
|
+
{ url = "https://files.pythonhosted.org/packages/b8/56/6033f5e86e8cc9bb629f0077ba71679508bdf54a9a5e112a3c0b91870332/cffi-2.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:730cacb21e1bdff3ce90babf007d0a0917cc3e6492f336c2f0134101e0944f93", size = 216476, upload-time = "2025-09-08T23:22:31.063Z" },
|
|
171
|
+
{ url = "https://files.pythonhosted.org/packages/d7/91/500d892b2bf36529a75b77958edfcd5ad8e2ce4064ce2ecfeab2125d72d1/cffi-2.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:8941aaadaf67246224cee8c3803777eed332a19d909b47e29c9842ef1e79ac26", size = 215574, upload-time = "2025-09-08T23:22:35.443Z" },
|
|
172
|
+
{ url = "https://files.pythonhosted.org/packages/44/64/58f6255b62b101093d5df22dcb752596066c7e89dd725e0afaed242a61be/cffi-2.0.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:a05d0c237b3349096d3981b727493e22147f934b20f6f125a3eba8f994bec4a9", size = 218971, upload-time = "2025-09-08T23:22:36.805Z" },
|
|
173
|
+
{ url = "https://files.pythonhosted.org/packages/ab/49/fa72cebe2fd8a55fbe14956f9970fe8eb1ac59e5df042f603ef7c8ba0adc/cffi-2.0.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:94698a9c5f91f9d138526b48fe26a199609544591f859c870d477351dc7b2414", size = 211972, upload-time = "2025-09-08T23:22:38.436Z" },
|
|
174
|
+
{ url = "https://files.pythonhosted.org/packages/0b/28/dd0967a76aab36731b6ebfe64dec4e981aff7e0608f60c2d46b46982607d/cffi-2.0.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:5fed36fccc0612a53f1d4d9a816b50a36702c28a2aa880cb8a122b3466638743", size = 217078, upload-time = "2025-09-08T23:22:39.776Z" },
|
|
175
|
+
{ url = "https://files.pythonhosted.org/packages/ff/df/a4f0fbd47331ceeba3d37c2e51e9dfc9722498becbeec2bd8bc856c9538a/cffi-2.0.0-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:21d1152871b019407d8ac3985f6775c079416c282e431a4da6afe7aefd2bccbe", size = 212529, upload-time = "2025-09-08T23:22:47.349Z" },
|
|
176
|
+
{ url = "https://files.pythonhosted.org/packages/d5/72/12b5f8d3865bf0f87cf1404d8c374e7487dcf097a1c91c436e72e6badd83/cffi-2.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:b21e08af67b8a103c71a250401c78d5e0893beff75e28c53c98f4de42f774062", size = 220097, upload-time = "2025-09-08T23:22:48.677Z" },
|
|
177
|
+
{ url = "https://files.pythonhosted.org/packages/78/2d/7fa73dfa841b5ac06c7b8855cfc18622132e365f5b81d02230333ff26e9e/cffi-2.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:3e17ed538242334bf70832644a32a7aae3d83b57567f9fd60a26257e992b79ba", size = 219572, upload-time = "2025-09-08T23:22:52.902Z" },
|
|
178
|
+
{ url = "https://files.pythonhosted.org/packages/07/e0/267e57e387b4ca276b90f0434ff88b2c2241ad72b16d31836adddfd6031b/cffi-2.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3925dd22fa2b7699ed2617149842d2e6adde22b262fcbfada50e3d195e4b3a94", size = 222963, upload-time = "2025-09-08T23:22:54.518Z" },
|
|
179
|
+
{ url = "https://files.pythonhosted.org/packages/b6/75/1f2747525e06f53efbd878f4d03bac5b859cbc11c633d0fb81432d98a795/cffi-2.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2c8f814d84194c9ea681642fd164267891702542f028a15fc97d4674b6206187", size = 221361, upload-time = "2025-09-08T23:22:55.867Z" },
|
|
180
|
+
{ url = "https://files.pythonhosted.org/packages/b0/1e/d22cc63332bd59b06481ceaac49d6c507598642e2230f201649058a7e704/cffi-2.0.0-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:07b271772c100085dd28b74fa0cd81c8fb1a3ba18b21e03d7c27f3436a10606b", size = 212446, upload-time = "2025-09-08T23:23:03.472Z" },
|
|
181
|
+
{ url = "https://files.pythonhosted.org/packages/a9/f5/a2c23eb03b61a0b8747f211eb716446c826ad66818ddc7810cc2cc19b3f2/cffi-2.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d48a880098c96020b02d5a1f7d9251308510ce8858940e6fa99ece33f610838b", size = 220101, upload-time = "2025-09-08T23:23:04.792Z" },
|
|
182
|
+
{ url = "https://files.pythonhosted.org/packages/98/df/0a1755e750013a2081e863e7cd37e0cdd02664372c754e5560099eb7aa44/cffi-2.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:c8d3b5532fc71b7a77c09192b4a5a200ea992702734a2e9279a37f2478236f26", size = 219499, upload-time = "2025-09-08T23:23:09.648Z" },
|
|
183
|
+
{ url = "https://files.pythonhosted.org/packages/50/e1/a969e687fcf9ea58e6e2a928ad5e2dd88cc12f6f0ab477e9971f2309b57c/cffi-2.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:d9b29c1f0ae438d5ee9acb31cadee00a58c46cc9c0b2f9038c6b0b3470877a8c", size = 222928, upload-time = "2025-09-08T23:23:10.928Z" },
|
|
184
|
+
{ url = "https://files.pythonhosted.org/packages/36/54/0362578dd2c9e557a28ac77698ed67323ed5b9775ca9d3fe73fe191bb5d8/cffi-2.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6d50360be4546678fc1b79ffe7a66265e28667840010348dd69a314145807a1b", size = 221302, upload-time = "2025-09-08T23:23:12.42Z" },
|
|
185
|
+
{ url = "https://files.pythonhosted.org/packages/9b/13/c92e36358fbcc39cf0962e83223c9522154ee8630e1df7c0b3a39a8124e2/cffi-2.0.0-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:4647afc2f90d1ddd33441e5b0e85b16b12ddec4fca55f0d9671fef036ecca27c", size = 208813, upload-time = "2025-09-08T23:23:51.263Z" },
|
|
186
|
+
{ url = "https://files.pythonhosted.org/packages/15/12/a7a79bd0df4c3bff744b2d7e52cc1b68d5e7e427b384252c42366dc1ecbc/cffi-2.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:3f4d46d8b35698056ec29bca21546e1551a205058ae1a181d871e278b0b28165", size = 216498, upload-time = "2025-09-08T23:23:52.494Z" },
|
|
187
|
+
{ url = "https://files.pythonhosted.org/packages/1f/74/cc4096ce66f5939042ae094e2e96f53426a979864aa1f96a621ad128be27/cffi-2.0.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:61d028e90346df14fedc3d1e5441df818d095f3b87d286825dfcbd6459b7ef63", size = 216548, upload-time = "2025-09-08T23:23:56.506Z" },
|
|
188
|
+
{ url = "https://files.pythonhosted.org/packages/e8/be/f6424d1dc46b1091ffcc8964fa7c0ab0cd36839dd2761b49c90481a6ba1b/cffi-2.0.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:0f6084a0ea23d05d20c3edcda20c3d006f9b6f3fefeac38f59262e10cef47ee2", size = 218897, upload-time = "2025-09-08T23:23:57.825Z" },
|
|
189
|
+
{ url = "https://files.pythonhosted.org/packages/f7/e0/dda537c2309817edf60109e39265f24f24aa7f050767e22c98c53fe7f48b/cffi-2.0.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:1cd13c99ce269b3ed80b417dcd591415d3372bcac067009b6e0f59c7d4015e65", size = 211249, upload-time = "2025-09-08T23:23:59.139Z" },
|
|
190
|
+
{ url = "https://files.pythonhosted.org/packages/2b/e7/7c769804eb75e4c4b35e658dba01de1640a351a9653c3d49ca89d16ccc91/cffi-2.0.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:89472c9762729b5ae1ad974b777416bfda4ac5642423fa93bd57a09204712322", size = 218041, upload-time = "2025-09-08T23:24:00.496Z" },
|
|
191
|
+
]
|
|
192
|
+
|
|
144
193
|
[[package]]
|
|
145
194
|
name = "charset-normalizer"
|
|
146
195
|
version = "3.4.4"
|
|
@@ -333,6 +382,40 @@ wheels = [
|
|
|
333
382
|
{ url = "https://files.pythonhosted.org/packages/a7/06/3d6badcf13db419e25b07041d9c7b4a2c331d3f4e7134445ec5df57714cd/coloredlogs-15.0.1-py2.py3-none-any.whl", hash = "sha256:612ee75c546f53e92e70049c9dbfcc18c935a2b9a53b66085ce9ef6a6e5c0934", size = 46018, upload-time = "2021-06-11T10:22:42.561Z" },
|
|
334
383
|
]
|
|
335
384
|
|
|
385
|
+
[[package]]
|
|
386
|
+
name = "cryptography"
|
|
387
|
+
version = "46.0.5"
|
|
388
|
+
source = { registry = "https://pypi.org/simple" }
|
|
389
|
+
dependencies = [
|
|
390
|
+
{ name = "cffi", marker = "platform_python_implementation != 'PyPy'" },
|
|
391
|
+
{ name = "typing-extensions", marker = "python_full_version < '3.11'" },
|
|
392
|
+
]
|
|
393
|
+
sdist = { url = "https://files.pythonhosted.org/packages/60/04/ee2a9e8542e4fa2773b81771ff8349ff19cdd56b7258a0cc442639052edb/cryptography-46.0.5.tar.gz", hash = "sha256:abace499247268e3757271b2f1e244b36b06f8515cf27c4d49468fc9eb16e93d", size = 750064, upload-time = "2026-02-10T19:18:38.255Z" }
|
|
394
|
+
wheels = [
|
|
395
|
+
{ url = "https://files.pythonhosted.org/packages/ff/9e/6b4397a3e3d15123de3b1806ef342522393d50736c13b20ec4c9ea6693a6/cryptography-46.0.5-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:c18ff11e86df2e28854939acde2d003f7984f721eba450b56a200ad90eeb0e6b", size = 4275637, upload-time = "2026-02-10T19:17:10.53Z" },
|
|
396
|
+
{ url = "https://files.pythonhosted.org/packages/63/e7/471ab61099a3920b0c77852ea3f0ea611c9702f651600397ac567848b897/cryptography-46.0.5-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:4d7e3d356b8cd4ea5aff04f129d5f66ebdc7b6f8eae802b93739ed520c47c79b", size = 4424742, upload-time = "2026-02-10T19:17:12.388Z" },
|
|
397
|
+
{ url = "https://files.pythonhosted.org/packages/37/53/a18500f270342d66bf7e4d9f091114e31e5ee9e7375a5aba2e85a91e0044/cryptography-46.0.5-cp311-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:50bfb6925eff619c9c023b967d5b77a54e04256c4281b0e21336a130cd7fc263", size = 4277528, upload-time = "2026-02-10T19:17:13.853Z" },
|
|
398
|
+
{ url = "https://files.pythonhosted.org/packages/6b/e7/237155ae19a9023de7e30ec64e5d99a9431a567407ac21170a046d22a5a3/cryptography-46.0.5-cp311-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:3ee190460e2fbe447175cda91b88b84ae8322a104fc27766ad09428754a618ed", size = 4456855, upload-time = "2026-02-10T19:17:17.221Z" },
|
|
399
|
+
{ url = "https://files.pythonhosted.org/packages/2d/87/fc628a7ad85b81206738abbd213b07702bcbdada1dd43f72236ef3cffbb5/cryptography-46.0.5-cp311-abi3-manylinux_2_31_armv7l.whl", hash = "sha256:f145bba11b878005c496e93e257c1e88f154d278d2638e6450d17e0f31e558d2", size = 3984635, upload-time = "2026-02-10T19:17:18.792Z" },
|
|
400
|
+
{ url = "https://files.pythonhosted.org/packages/84/29/65b55622bde135aedf4565dc509d99b560ee4095e56989e815f8fd2aa910/cryptography-46.0.5-cp311-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:e9251e3be159d1020c4030bd2e5f84d6a43fe54b6c19c12f51cde9542a2817b2", size = 4277038, upload-time = "2026-02-10T19:17:20.256Z" },
|
|
401
|
+
{ url = "https://files.pythonhosted.org/packages/6d/1a/c1ba8fead184d6e3d5afcf03d569acac5ad063f3ac9fb7258af158f7e378/cryptography-46.0.5-cp311-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:4c3341037c136030cb46e4b1e17b7418ea4cbd9dd207e4a6f3b2b24e0d4ac731", size = 4456482, upload-time = "2026-02-10T19:17:25.133Z" },
|
|
402
|
+
{ url = "https://files.pythonhosted.org/packages/f9/e5/3fb22e37f66827ced3b902cf895e6a6bc1d095b5b26be26bd13c441fdf19/cryptography-46.0.5-cp311-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:890bcb4abd5a2d3f852196437129eb3667d62630333aacc13dfd470fad3aaa82", size = 4405497, upload-time = "2026-02-10T19:17:26.66Z" },
|
|
403
|
+
{ url = "https://files.pythonhosted.org/packages/1a/df/9d58bb32b1121a8a2f27383fabae4d63080c7ca60b9b5c88be742be04ee7/cryptography-46.0.5-cp311-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:80a8d7bfdf38f87ca30a5391c0c9ce4ed2926918e017c29ddf643d0ed2778ea1", size = 4667819, upload-time = "2026-02-10T19:17:28.569Z" },
|
|
404
|
+
{ url = "https://files.pythonhosted.org/packages/0f/04/c85bdeab78c8bc77b701bf0d9bdcf514c044e18a46dcff330df5448631b0/cryptography-46.0.5-cp38-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:7d1f30a86d2757199cb2d56e48cce14deddf1f9c95f1ef1b64ee91ea43fe2e18", size = 4275349, upload-time = "2026-02-10T19:17:58.419Z" },
|
|
405
|
+
{ url = "https://files.pythonhosted.org/packages/5c/32/9b87132a2f91ee7f5223b091dc963055503e9b442c98fc0b8a5ca765fab0/cryptography-46.0.5-cp38-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:039917b0dc418bb9f6edce8a906572d69e74bd330b0b3fea4f79dab7f8ddd235", size = 4420667, upload-time = "2026-02-10T19:18:00.619Z" },
|
|
406
|
+
{ url = "https://files.pythonhosted.org/packages/a1/a6/a7cb7010bec4b7c5692ca6f024150371b295ee1c108bdc1c400e4c44562b/cryptography-46.0.5-cp38-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:ba2a27ff02f48193fc4daeadf8ad2590516fa3d0adeeb34336b96f7fa64c1e3a", size = 4276980, upload-time = "2026-02-10T19:18:02.379Z" },
|
|
407
|
+
{ url = "https://files.pythonhosted.org/packages/37/19/e1b8f964a834eddb44fa1b9a9976f4e414cbb7aa62809b6760c8803d22d1/cryptography-46.0.5-cp38-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:3ce58ba46e1bc2aac4f7d9290223cead56743fa6ab94a5d53292ffaac6a91614", size = 4453674, upload-time = "2026-02-10T19:18:05.588Z" },
|
|
408
|
+
{ url = "https://files.pythonhosted.org/packages/db/ed/db15d3956f65264ca204625597c410d420e26530c4e2943e05a0d2f24d51/cryptography-46.0.5-cp38-abi3-manylinux_2_31_armv7l.whl", hash = "sha256:420d0e909050490d04359e7fdb5ed7e667ca5c3c402b809ae2563d7e66a92229", size = 3978801, upload-time = "2026-02-10T19:18:07.167Z" },
|
|
409
|
+
{ url = "https://files.pythonhosted.org/packages/41/e2/df40a31d82df0a70a0daf69791f91dbb70e47644c58581d654879b382d11/cryptography-46.0.5-cp38-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:582f5fcd2afa31622f317f80426a027f30dc792e9c80ffee87b993200ea115f1", size = 4276755, upload-time = "2026-02-10T19:18:09.813Z" },
|
|
410
|
+
{ url = "https://files.pythonhosted.org/packages/99/0f/a3076874e9c88ecb2ecc31382f6e7c21b428ede6f55aafa1aa272613e3cd/cryptography-46.0.5-cp38-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:a3d507bb6a513ca96ba84443226af944b0f7f47dcc9a399d110cd6146481d24c", size = 4452794, upload-time = "2026-02-10T19:18:12.914Z" },
|
|
411
|
+
{ url = "https://files.pythonhosted.org/packages/02/ef/ffeb542d3683d24194a38f66ca17c0a4b8bf10631feef44a7ef64e631b1a/cryptography-46.0.5-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:9f16fbdf4da055efb21c22d81b89f155f02ba420558db21288b3d0035bafd5f4", size = 4404160, upload-time = "2026-02-10T19:18:14.375Z" },
|
|
412
|
+
{ url = "https://files.pythonhosted.org/packages/96/93/682d2b43c1d5f1406ed048f377c0fc9fc8f7b0447a478d5c65ab3d3a66eb/cryptography-46.0.5-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:ced80795227d70549a411a4ab66e8ce307899fad2220ce5ab2f296e687eacde9", size = 4667123, upload-time = "2026-02-10T19:18:15.886Z" },
|
|
413
|
+
{ url = "https://files.pythonhosted.org/packages/e9/6f/6cc6cc9955caa6eaf83660b0da2b077c7fe8ff9950a3c5e45d605038d439/cryptography-46.0.5-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:bc84e875994c3b445871ea7181d424588171efec3e185dced958dad9e001950a", size = 4218321, upload-time = "2026-02-10T19:18:22.349Z" },
|
|
414
|
+
{ url = "https://files.pythonhosted.org/packages/3e/5d/c4da701939eeee699566a6c1367427ab91a8b7088cc2328c09dbee940415/cryptography-46.0.5-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:2ae6971afd6246710480e3f15824ed3029a60fc16991db250034efd0b9fb4356", size = 4381786, upload-time = "2026-02-10T19:18:24.529Z" },
|
|
415
|
+
{ url = "https://files.pythonhosted.org/packages/ac/97/a538654732974a94ff96c1db621fa464f455c02d4bb7d2652f4edc21d600/cryptography-46.0.5-pp311-pypy311_pp73-manylinux_2_34_aarch64.whl", hash = "sha256:d861ee9e76ace6cf36a6a89b959ec08e7bc2493ee39d07ffe5acb23ef46d27da", size = 4217990, upload-time = "2026-02-10T19:18:25.957Z" },
|
|
416
|
+
{ url = "https://files.pythonhosted.org/packages/ae/11/7e500d2dd3ba891197b9efd2da5454b74336d64a7cc419aa7327ab74e5f6/cryptography-46.0.5-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl", hash = "sha256:2b7a67c9cd56372f3249b39699f2ad479f6991e62ea15800973b956f4b73e257", size = 4381252, upload-time = "2026-02-10T19:18:27.496Z" },
|
|
417
|
+
]
|
|
418
|
+
|
|
336
419
|
[[package]]
|
|
337
420
|
name = "distro"
|
|
338
421
|
version = "1.9.0"
|
|
@@ -342,6 +425,15 @@ wheels = [
|
|
|
342
425
|
{ url = "https://files.pythonhosted.org/packages/12/b3/231ffd4ab1fc9d679809f356cebee130ac7daa00d6d6f3206dd4fd137e9e/distro-1.9.0-py3-none-any.whl", hash = "sha256:7bffd925d65168f85027d8da9af6bddab658135b840670a223589bc0c8ef02b2", size = 20277, upload-time = "2023-12-24T09:54:30.421Z" },
|
|
343
426
|
]
|
|
344
427
|
|
|
428
|
+
[[package]]
|
|
429
|
+
name = "docutils"
|
|
430
|
+
version = "0.22.4"
|
|
431
|
+
source = { registry = "https://pypi.org/simple" }
|
|
432
|
+
sdist = { url = "https://files.pythonhosted.org/packages/ae/b6/03bb70946330e88ffec97aefd3ea75ba575cb2e762061e0e62a213befee8/docutils-0.22.4.tar.gz", hash = "sha256:4db53b1fde9abecbb74d91230d32ab626d94f6badfc575d6db9194a49df29968", size = 2291750, upload-time = "2025-12-18T19:00:26.443Z" }
|
|
433
|
+
wheels = [
|
|
434
|
+
{ url = "https://files.pythonhosted.org/packages/02/10/5da547df7a391dcde17f59520a231527b8571e6f46fc8efb02ccb370ab12/docutils-0.22.4-py3-none-any.whl", hash = "sha256:d0013f540772d1420576855455d050a2180186c91c15779301ac2ccb3eeb68de", size = 633196, upload-time = "2025-12-18T19:00:18.077Z" },
|
|
435
|
+
]
|
|
436
|
+
|
|
345
437
|
[[package]]
|
|
346
438
|
name = "durationpy"
|
|
347
439
|
version = "0.10"
|
|
@@ -507,7 +599,7 @@ wheels = [
|
|
|
507
599
|
|
|
508
600
|
[[package]]
|
|
509
601
|
name = "hecvec"
|
|
510
|
-
version = "0.
|
|
602
|
+
version = "0.4.1"
|
|
511
603
|
source = { editable = "." }
|
|
512
604
|
dependencies = [
|
|
513
605
|
{ name = "chromadb" },
|
|
@@ -516,6 +608,7 @@ dependencies = [
|
|
|
516
608
|
{ name = "openai" },
|
|
517
609
|
{ name = "python-dotenv" },
|
|
518
610
|
{ name = "tiktoken" },
|
|
611
|
+
{ name = "typing-extensions" },
|
|
519
612
|
]
|
|
520
613
|
|
|
521
614
|
[package.optional-dependencies]
|
|
@@ -526,6 +619,7 @@ chroma = [
|
|
|
526
619
|
{ name = "openai" },
|
|
527
620
|
{ name = "python-dotenv" },
|
|
528
621
|
{ name = "tiktoken" },
|
|
622
|
+
{ name = "typing-extensions" },
|
|
529
623
|
]
|
|
530
624
|
chunk = [
|
|
531
625
|
{ name = "langchain-text-splitters", version = "0.3.11", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" },
|
|
@@ -534,6 +628,7 @@ chunk = [
|
|
|
534
628
|
dev = [
|
|
535
629
|
{ name = "pytest", version = "8.4.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" },
|
|
536
630
|
{ name = "pytest", version = "9.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" },
|
|
631
|
+
{ name = "twine" },
|
|
537
632
|
]
|
|
538
633
|
|
|
539
634
|
[package.metadata]
|
|
@@ -550,6 +645,9 @@ requires-dist = [
|
|
|
550
645
|
{ name = "python-dotenv", marker = "extra == 'chroma'", specifier = ">=1.0.0" },
|
|
551
646
|
{ name = "tiktoken", specifier = ">=0.5.0" },
|
|
552
647
|
{ name = "tiktoken", marker = "extra == 'chroma'", specifier = ">=0.5.0" },
|
|
648
|
+
{ name = "twine", marker = "extra == 'dev'", specifier = ">=6.0.0" },
|
|
649
|
+
{ name = "typing-extensions", specifier = ">=4.0.0" },
|
|
650
|
+
{ name = "typing-extensions", marker = "extra == 'chroma'", specifier = ">=4.0.0" },
|
|
553
651
|
]
|
|
554
652
|
provides-extras = ["chunk", "chroma", "dev"]
|
|
555
653
|
|
|
@@ -683,6 +781,18 @@ wheels = [
|
|
|
683
781
|
{ url = "https://files.pythonhosted.org/packages/f0/0f/310fb31e39e2d734ccaa2c0fb981ee41f7bd5056ce9bc29b2248bd569169/humanfriendly-10.0-py2.py3-none-any.whl", hash = "sha256:1697e1a8a8f550fd43c2865cd84542fc175a61dcb779b6fee18cf6b6ccba1477", size = 86794, upload-time = "2021-09-17T21:40:39.897Z" },
|
|
684
782
|
]
|
|
685
783
|
|
|
784
|
+
[[package]]
|
|
785
|
+
name = "id"
|
|
786
|
+
version = "1.6.1"
|
|
787
|
+
source = { registry = "https://pypi.org/simple" }
|
|
788
|
+
dependencies = [
|
|
789
|
+
{ name = "urllib3" },
|
|
790
|
+
]
|
|
791
|
+
sdist = { url = "https://files.pythonhosted.org/packages/6d/04/c2156091427636080787aac190019dc64096e56a23b7364d3c1764ee3a06/id-1.6.1.tar.gz", hash = "sha256:d0732d624fb46fd4e7bc4e5152f00214450953b9e772c182c1c22964def1a069", size = 18088, upload-time = "2026-02-04T16:19:41.26Z" }
|
|
792
|
+
wheels = [
|
|
793
|
+
{ url = "https://files.pythonhosted.org/packages/42/77/de194443bf38daed9452139e960c632b0ef9f9a5dd9ce605fdf18ca9f1b1/id-1.6.1-py3-none-any.whl", hash = "sha256:f5ec41ed2629a508f5d0988eda142e190c9c6da971100612c4de9ad9f9b237ca", size = 14689, upload-time = "2026-02-04T16:19:40.051Z" },
|
|
794
|
+
]
|
|
795
|
+
|
|
686
796
|
[[package]]
|
|
687
797
|
name = "idna"
|
|
688
798
|
version = "3.11"
|
|
@@ -742,6 +852,51 @@ wheels = [
|
|
|
742
852
|
{ url = "https://files.pythonhosted.org/packages/cb/b1/3846dd7f199d53cb17f49cba7e651e9ce294d8497c8c150530ed11865bb8/iniconfig-2.3.0-py3-none-any.whl", hash = "sha256:f631c04d2c48c52b84d0d0549c99ff3859c98df65b3101406327ecc7d53fbf12", size = 7484, upload-time = "2025-10-18T21:55:41.639Z" },
|
|
743
853
|
]
|
|
744
854
|
|
|
855
|
+
[[package]]
|
|
856
|
+
name = "jaraco-classes"
|
|
857
|
+
version = "3.4.0"
|
|
858
|
+
source = { registry = "https://pypi.org/simple" }
|
|
859
|
+
dependencies = [
|
|
860
|
+
{ name = "more-itertools" },
|
|
861
|
+
]
|
|
862
|
+
sdist = { url = "https://files.pythonhosted.org/packages/06/c0/ed4a27bc5571b99e3cff68f8a9fa5b56ff7df1c2251cc715a652ddd26402/jaraco.classes-3.4.0.tar.gz", hash = "sha256:47a024b51d0239c0dd8c8540c6c7f484be3b8fcf0b2d85c13825780d3b3f3acd", size = 11780, upload-time = "2024-03-31T07:27:36.643Z" }
|
|
863
|
+
wheels = [
|
|
864
|
+
{ url = "https://files.pythonhosted.org/packages/7f/66/b15ce62552d84bbfcec9a4873ab79d993a1dd4edb922cbfccae192bd5b5f/jaraco.classes-3.4.0-py3-none-any.whl", hash = "sha256:f662826b6bed8cace05e7ff873ce0f9283b5c924470fe664fff1c2f00f581790", size = 6777, upload-time = "2024-03-31T07:27:34.792Z" },
|
|
865
|
+
]
|
|
866
|
+
|
|
867
|
+
[[package]]
|
|
868
|
+
name = "jaraco-context"
|
|
869
|
+
version = "6.1.1"
|
|
870
|
+
source = { registry = "https://pypi.org/simple" }
|
|
871
|
+
dependencies = [
|
|
872
|
+
{ name = "backports-tarfile", marker = "python_full_version < '3.12'" },
|
|
873
|
+
]
|
|
874
|
+
sdist = { url = "https://files.pythonhosted.org/packages/27/7b/c3081ff1af947915503121c649f26a778e1a2101fd525f74aef997d75b7e/jaraco_context-6.1.1.tar.gz", hash = "sha256:bc046b2dc94f1e5532bd02402684414575cc11f565d929b6563125deb0a6e581", size = 15832, upload-time = "2026-03-07T15:46:04.63Z" }
|
|
875
|
+
wheels = [
|
|
876
|
+
{ url = "https://files.pythonhosted.org/packages/f4/49/c152890d49102b280ecf86ba5f80a8c111c3a155dafa3bd24aeb64fde9e1/jaraco_context-6.1.1-py3-none-any.whl", hash = "sha256:0df6a0287258f3e364072c3e40d5411b20cafa30cb28c4839d24319cecf9f808", size = 7005, upload-time = "2026-03-07T15:46:03.515Z" },
|
|
877
|
+
]
|
|
878
|
+
|
|
879
|
+
[[package]]
|
|
880
|
+
name = "jaraco-functools"
|
|
881
|
+
version = "4.4.0"
|
|
882
|
+
source = { registry = "https://pypi.org/simple" }
|
|
883
|
+
dependencies = [
|
|
884
|
+
{ name = "more-itertools" },
|
|
885
|
+
]
|
|
886
|
+
sdist = { url = "https://files.pythonhosted.org/packages/0f/27/056e0638a86749374d6f57d0b0db39f29509cce9313cf91bdc0ac4d91084/jaraco_functools-4.4.0.tar.gz", hash = "sha256:da21933b0417b89515562656547a77b4931f98176eb173644c0d35032a33d6bb", size = 19943, upload-time = "2025-12-21T09:29:43.6Z" }
|
|
887
|
+
wheels = [
|
|
888
|
+
{ url = "https://files.pythonhosted.org/packages/fd/c4/813bb09f0985cb21e959f21f2464169eca882656849adf727ac7bb7e1767/jaraco_functools-4.4.0-py3-none-any.whl", hash = "sha256:9eec1e36f45c818d9bf307c8948eb03b2b56cd44087b3cdc989abca1f20b9176", size = 10481, upload-time = "2025-12-21T09:29:42.27Z" },
|
|
889
|
+
]
|
|
890
|
+
|
|
891
|
+
[[package]]
|
|
892
|
+
name = "jeepney"
|
|
893
|
+
version = "0.9.0"
|
|
894
|
+
source = { registry = "https://pypi.org/simple" }
|
|
895
|
+
sdist = { url = "https://files.pythonhosted.org/packages/7b/6f/357efd7602486741aa73ffc0617fb310a29b588ed0fd69c2399acbb85b0c/jeepney-0.9.0.tar.gz", hash = "sha256:cf0e9e845622b81e4a28df94c40345400256ec608d0e55bb8a3feaa9163f5732", size = 106758, upload-time = "2025-02-27T18:51:01.684Z" }
|
|
896
|
+
wheels = [
|
|
897
|
+
{ url = "https://files.pythonhosted.org/packages/b2/a3/e137168c9c44d18eff0376253da9f1e9234d0239e0ee230d2fee6cea8e55/jeepney-0.9.0-py3-none-any.whl", hash = "sha256:97e5714520c16fc0a45695e5365a2e11b81ea79bba796e26f9f1d178cb182683", size = 49010, upload-time = "2025-02-27T18:51:00.104Z" },
|
|
898
|
+
]
|
|
899
|
+
|
|
745
900
|
[[package]]
|
|
746
901
|
name = "jiter"
|
|
747
902
|
version = "0.13.0"
|
|
@@ -898,6 +1053,25 @@ wheels = [
|
|
|
898
1053
|
{ url = "https://files.pythonhosted.org/packages/41/45/1a4ed80516f02155c51f51e8cedb3c1902296743db0bbc66608a0db2814f/jsonschema_specifications-2025.9.1-py3-none-any.whl", hash = "sha256:98802fee3a11ee76ecaca44429fda8a41bff98b00a0f2838151b113f210cc6fe", size = 18437, upload-time = "2025-09-08T01:34:57.871Z" },
|
|
899
1054
|
]
|
|
900
1055
|
|
|
1056
|
+
[[package]]
|
|
1057
|
+
name = "keyring"
|
|
1058
|
+
version = "25.7.0"
|
|
1059
|
+
source = { registry = "https://pypi.org/simple" }
|
|
1060
|
+
dependencies = [
|
|
1061
|
+
{ name = "importlib-metadata", marker = "python_full_version < '3.12'" },
|
|
1062
|
+
{ name = "jaraco-classes" },
|
|
1063
|
+
{ name = "jaraco-context" },
|
|
1064
|
+
{ name = "jaraco-functools" },
|
|
1065
|
+
{ name = "jeepney", marker = "sys_platform == 'linux'" },
|
|
1066
|
+
{ name = "pywin32-ctypes", marker = "sys_platform == 'win32'" },
|
|
1067
|
+
{ name = "secretstorage", version = "3.3.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' and sys_platform == 'linux'" },
|
|
1068
|
+
{ name = "secretstorage", version = "3.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' and sys_platform == 'linux'" },
|
|
1069
|
+
]
|
|
1070
|
+
sdist = { url = "https://files.pythonhosted.org/packages/43/4b/674af6ef2f97d56f0ab5153bf0bfa28ccb6c3ed4d1babf4305449668807b/keyring-25.7.0.tar.gz", hash = "sha256:fe01bd85eb3f8fb3dd0405defdeac9a5b4f6f0439edbb3149577f244a2e8245b", size = 63516, upload-time = "2025-11-16T16:26:09.482Z" }
|
|
1071
|
+
wheels = [
|
|
1072
|
+
{ url = "https://files.pythonhosted.org/packages/81/db/e655086b7f3a705df045bf0933bdd9c2f79bb3c97bfef1384598bb79a217/keyring-25.7.0-py3-none-any.whl", hash = "sha256:be4a0b195f149690c166e850609a477c532ddbfbaed96a404d4e43f8d5e2689f", size = 39160, upload-time = "2025-11-16T16:26:08.402Z" },
|
|
1073
|
+
]
|
|
1074
|
+
|
|
901
1075
|
[[package]]
|
|
902
1076
|
name = "kubernetes"
|
|
903
1077
|
version = "35.0.0"
|
|
@@ -1176,6 +1350,15 @@ wheels = [
|
|
|
1176
1350
|
{ url = "https://files.pythonhosted.org/packages/07/e6/ff066b72d86f0a19d3e4b6f3af073a9a328cb3cb4b068e25972866fcd517/mmh3-5.2.0-cp39-cp39-win_arm64.whl", hash = "sha256:33576136c06b46a7046b6d83a3d75fbca7d25f84cec743f1ae156362608dc6d2", size = 39340, upload-time = "2025-07-29T07:43:47.512Z" },
|
|
1177
1351
|
]
|
|
1178
1352
|
|
|
1353
|
+
[[package]]
|
|
1354
|
+
name = "more-itertools"
|
|
1355
|
+
version = "10.8.0"
|
|
1356
|
+
source = { registry = "https://pypi.org/simple" }
|
|
1357
|
+
sdist = { url = "https://files.pythonhosted.org/packages/ea/5d/38b681d3fce7a266dd9ab73c66959406d565b3e85f21d5e66e1181d93721/more_itertools-10.8.0.tar.gz", hash = "sha256:f638ddf8a1a0d134181275fb5d58b086ead7c6a72429ad725c67503f13ba30bd", size = 137431, upload-time = "2025-09-02T15:23:11.018Z" }
|
|
1358
|
+
wheels = [
|
|
1359
|
+
{ url = "https://files.pythonhosted.org/packages/a4/8e/469e5a4a2f5855992e425f3cb33804cc07bf18d48f2db061aec61ce50270/more_itertools-10.8.0-py3-none-any.whl", hash = "sha256:52d4362373dcf7c52546bc4af9a86ee7c4579df9a8dc268be0a2f949d376cc9b", size = 69667, upload-time = "2025-09-02T15:23:09.635Z" },
|
|
1360
|
+
]
|
|
1361
|
+
|
|
1179
1362
|
[[package]]
|
|
1180
1363
|
name = "mpmath"
|
|
1181
1364
|
version = "1.3.0"
|
|
@@ -1185,6 +1368,30 @@ wheels = [
|
|
|
1185
1368
|
{ url = "https://files.pythonhosted.org/packages/43/e3/7d92a15f894aa0c9c4b49b8ee9ac9850d6e63b03c9c32c0367a13ae62209/mpmath-1.3.0-py3-none-any.whl", hash = "sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c", size = 536198, upload-time = "2023-03-07T16:47:09.197Z" },
|
|
1186
1369
|
]
|
|
1187
1370
|
|
|
1371
|
+
[[package]]
|
|
1372
|
+
name = "nh3"
|
|
1373
|
+
version = "0.3.3"
|
|
1374
|
+
source = { registry = "https://pypi.org/simple" }
|
|
1375
|
+
sdist = { url = "https://files.pythonhosted.org/packages/cc/37/ab55eb2b05e334ff9a1ad52c556ace1f9c20a3f63613a165d384d5387657/nh3-0.3.3.tar.gz", hash = "sha256:185ed41b88c910b9ca8edc89ca3b4be688a12cb9de129d84befa2f74a0039fee", size = 18968, upload-time = "2026-02-14T09:35:15.664Z" }
|
|
1376
|
+
wheels = [
|
|
1377
|
+
{ url = "https://files.pythonhosted.org/packages/13/3e/aef8cf8e0419b530c95e96ae93a5078e9b36c1e6613eeb1df03a80d5194e/nh3-0.3.3-cp38-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:e8ee96156f7dfc6e30ecda650e480c5ae0a7d38f0c6fafc3c1c655e2500421d9", size = 1448640, upload-time = "2026-02-14T09:34:49.316Z" },
|
|
1378
|
+
{ url = "https://files.pythonhosted.org/packages/ca/43/d2011a4f6c0272cb122eeff40062ee06bb2b6e57eabc3a5e057df0d582df/nh3-0.3.3-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45fe0d6a607264910daec30360c8a3b5b1500fd832d21b2da608256287bcb92d", size = 839405, upload-time = "2026-02-14T09:34:50.779Z" },
|
|
1379
|
+
{ url = "https://files.pythonhosted.org/packages/f8/f3/965048510c1caf2a34ed04411a46a04a06eb05563cd06f1aa57b71eb2bc8/nh3-0.3.3-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5bc1d4b30ba1ba896669d944b6003630592665974bd11a3dc2f661bde92798a7", size = 825849, upload-time = "2026-02-14T09:34:52.622Z" },
|
|
1380
|
+
{ url = "https://files.pythonhosted.org/packages/78/99/b4bbc6ad16329d8db2c2c320423f00b549ca3b129c2b2f9136be2606dbb0/nh3-0.3.3-cp38-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:f433a2dd66545aad4a720ad1b2150edcdca75bfff6f4e6f378ade1ec138d5e77", size = 1068303, upload-time = "2026-02-14T09:34:54.179Z" },
|
|
1381
|
+
{ url = "https://files.pythonhosted.org/packages/3f/34/3420d97065aab1b35f3e93ce9c96c8ebd423ce86fe84dee3126790421a2a/nh3-0.3.3-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52e973cb742e95b9ae1b35822ce23992428750f4b46b619fe86eba4205255b30", size = 1029316, upload-time = "2026-02-14T09:34:56.186Z" },
|
|
1382
|
+
{ url = "https://files.pythonhosted.org/packages/f1/9a/99eda757b14e596fdb2ca5f599a849d9554181aa899274d0d183faef4493/nh3-0.3.3-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4c730617bdc15d7092dcc0469dc2826b914c8f874996d105b4bc3842a41c1cd9", size = 919944, upload-time = "2026-02-14T09:34:57.886Z" },
|
|
1383
|
+
{ url = "https://files.pythonhosted.org/packages/6f/84/c0dc75c7fb596135f999e59a410d9f45bdabb989f1cb911f0016d22b747b/nh3-0.3.3-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e98fa3dbfd54e25487e36ba500bc29bca3a4cab4ffba18cfb1a35a2d02624297", size = 811461, upload-time = "2026-02-14T09:34:59.65Z" },
|
|
1384
|
+
{ url = "https://files.pythonhosted.org/packages/7e/ec/b1bf57cab6230eec910e4863528dc51dcf21b57aaf7c88ee9190d62c9185/nh3-0.3.3-cp38-abi3-manylinux_2_31_riscv64.whl", hash = "sha256:3a62b8ae7c235481715055222e54c682422d0495a5c73326807d4e44c5d14691", size = 840360, upload-time = "2026-02-14T09:35:01.444Z" },
|
|
1385
|
+
{ url = "https://files.pythonhosted.org/packages/37/5e/326ae34e904dde09af1de51219a611ae914111f0970f2f111f4f0188f57e/nh3-0.3.3-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fc305a2264868ec8fa16548296f803d8fd9c1fa66cd28b88b605b1bd06667c0b", size = 859872, upload-time = "2026-02-14T09:35:03.348Z" },
|
|
1386
|
+
{ url = "https://files.pythonhosted.org/packages/09/38/7eba529ce17ab4d3790205da37deabb4cb6edcba15f27b8562e467f2fc97/nh3-0.3.3-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:90126a834c18af03bfd6ff9a027bfa6bbf0e238527bc780a24de6bd7cc1041e2", size = 1023550, upload-time = "2026-02-14T09:35:04.829Z" },
|
|
1387
|
+
{ url = "https://files.pythonhosted.org/packages/05/a2/556fdecd37c3681b1edee2cf795a6799c6ed0a5551b2822636960d7e7651/nh3-0.3.3-cp38-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:24769a428e9e971e4ccfb24628f83aaa7dc3c8b41b130c8ddc1835fa1c924489", size = 1105212, upload-time = "2026-02-14T09:35:06.821Z" },
|
|
1388
|
+
{ url = "https://files.pythonhosted.org/packages/dd/e3/5db0b0ad663234967d83702277094687baf7c498831a2d3ad3451c11770f/nh3-0.3.3-cp38-abi3-musllinux_1_2_i686.whl", hash = "sha256:b7a18ee057761e455d58b9d31445c3e4b2594cff4ddb84d2e331c011ef46f462", size = 1069970, upload-time = "2026-02-14T09:35:08.504Z" },
|
|
1389
|
+
{ url = "https://files.pythonhosted.org/packages/79/b2/2ea21b79c6e869581ce5f51549b6e185c4762233591455bf2a326fb07f3b/nh3-0.3.3-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:5a4b2c1f3e6f3cbe7048e17f4fefad3f8d3e14cc0fd08fb8599e0d5653f6b181", size = 1047588, upload-time = "2026-02-14T09:35:09.911Z" },
|
|
1390
|
+
{ url = "https://files.pythonhosted.org/packages/e2/92/2e434619e658c806d9c096eed2cdff9a883084299b7b19a3f0824eb8e63d/nh3-0.3.3-cp38-abi3-win32.whl", hash = "sha256:e974850b131fdffa75e7ad8e0d9c7a855b96227b093417fdf1bd61656e530f37", size = 616179, upload-time = "2026-02-14T09:35:11.366Z" },
|
|
1391
|
+
{ url = "https://files.pythonhosted.org/packages/73/88/1ce287ef8649dc51365b5094bd3713b76454838140a32ab4f8349973883c/nh3-0.3.3-cp38-abi3-win_amd64.whl", hash = "sha256:2efd17c0355d04d39e6d79122b42662277ac10a17ea48831d90b46e5ef7e4fc0", size = 631159, upload-time = "2026-02-14T09:35:12.77Z" },
|
|
1392
|
+
{ url = "https://files.pythonhosted.org/packages/31/f1/b4835dbde4fb06f29db89db027576d6014081cd278d9b6751facc3e69e43/nh3-0.3.3-cp38-abi3-win_arm64.whl", hash = "sha256:b838e619f483531483d26d889438e53a880510e832d2aafe73f93b7b1ac2bce2", size = 616645, upload-time = "2026-02-14T09:35:14.062Z" },
|
|
1393
|
+
]
|
|
1394
|
+
|
|
1188
1395
|
[[package]]
|
|
1189
1396
|
name = "numpy"
|
|
1190
1397
|
version = "2.0.2"
|
|
@@ -1938,6 +2145,32 @@ wheels = [
|
|
|
1938
2145
|
{ url = "https://files.pythonhosted.org/packages/e0/a8/ce037ae1b5c7e58f19e8ded75d74b6f692dae1e48b1749f09fb0d0acaf1f/pybase64-1.4.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:5de708043de95a3d2d621f5d51dc8e774bbdf969aa39021eee3ba5209d35dbea", size = 36126, upload-time = "2025-12-06T13:27:02.489Z" },
|
|
1939
2146
|
]
|
|
1940
2147
|
|
|
2148
|
+
[[package]]
|
|
2149
|
+
name = "pycparser"
|
|
2150
|
+
version = "2.23"
|
|
2151
|
+
source = { registry = "https://pypi.org/simple" }
|
|
2152
|
+
resolution-markers = [
|
|
2153
|
+
"python_full_version < '3.10'",
|
|
2154
|
+
]
|
|
2155
|
+
sdist = { url = "https://files.pythonhosted.org/packages/fe/cf/d2d3b9f5699fb1e4615c8e32ff220203e43b248e1dfcc6736ad9057731ca/pycparser-2.23.tar.gz", hash = "sha256:78816d4f24add8f10a06d6f05b4d424ad9e96cfebf68a4ddc99c65c0720d00c2", size = 173734, upload-time = "2025-09-09T13:23:47.91Z" }
|
|
2156
|
+
wheels = [
|
|
2157
|
+
{ url = "https://files.pythonhosted.org/packages/a0/e3/59cd50310fc9b59512193629e1984c1f95e5c8ae6e5d8c69532ccc65a7fe/pycparser-2.23-py3-none-any.whl", hash = "sha256:e5c6e8d3fbad53479cab09ac03729e0a9faf2bee3db8208a550daf5af81a5934", size = 118140, upload-time = "2025-09-09T13:23:46.651Z" },
|
|
2158
|
+
]
|
|
2159
|
+
|
|
2160
|
+
[[package]]
|
|
2161
|
+
name = "pycparser"
|
|
2162
|
+
version = "3.0"
|
|
2163
|
+
source = { registry = "https://pypi.org/simple" }
|
|
2164
|
+
resolution-markers = [
|
|
2165
|
+
"python_full_version >= '3.13'",
|
|
2166
|
+
"python_full_version >= '3.11' and python_full_version < '3.13'",
|
|
2167
|
+
"python_full_version == '3.10.*'",
|
|
2168
|
+
]
|
|
2169
|
+
sdist = { url = "https://files.pythonhosted.org/packages/1b/7d/92392ff7815c21062bea51aa7b87d45576f649f16458d78b7cf94b9ab2e6/pycparser-3.0.tar.gz", hash = "sha256:600f49d217304a5902ac3c37e1281c9fe94e4d0489de643a9504c5cdfdfc6b29", size = 103492, upload-time = "2026-01-21T14:26:51.89Z" }
|
|
2170
|
+
wheels = [
|
|
2171
|
+
{ url = "https://files.pythonhosted.org/packages/0c/c3/44f3fbbfa403ea2a7c779186dc20772604442dde72947e7d01069cbe98e3/pycparser-3.0-py3-none-any.whl", hash = "sha256:b727414169a36b7d524c1c3e31839a521725078d7b2ff038656844266160a992", size = 48172, upload-time = "2026-01-21T14:26:50.693Z" },
|
|
2172
|
+
]
|
|
2173
|
+
|
|
1941
2174
|
[[package]]
|
|
1942
2175
|
name = "pydantic"
|
|
1943
2176
|
version = "2.12.5"
|
|
@@ -2160,6 +2393,15 @@ wheels = [
|
|
|
2160
2393
|
{ url = "https://files.pythonhosted.org/packages/14/1b/a298b06749107c305e1fe0f814c6c74aea7b2f1e10989cb30f544a1b3253/python_dotenv-1.2.1-py3-none-any.whl", hash = "sha256:b81ee9561e9ca4004139c6cbba3a238c32b03e4894671e181b671e8cb8425d61", size = 21230, upload-time = "2025-10-26T15:12:09.109Z" },
|
|
2161
2394
|
]
|
|
2162
2395
|
|
|
2396
|
+
[[package]]
|
|
2397
|
+
name = "pywin32-ctypes"
|
|
2398
|
+
version = "0.2.3"
|
|
2399
|
+
source = { registry = "https://pypi.org/simple" }
|
|
2400
|
+
sdist = { url = "https://files.pythonhosted.org/packages/85/9f/01a1a99704853cb63f253eea009390c88e7131c67e66a0a02099a8c917cb/pywin32-ctypes-0.2.3.tar.gz", hash = "sha256:d162dc04946d704503b2edc4d55f3dba5c1d539ead017afa00142c38b9885755", size = 29471, upload-time = "2024-08-14T10:15:34.626Z" }
|
|
2401
|
+
wheels = [
|
|
2402
|
+
{ url = "https://files.pythonhosted.org/packages/de/3d/8161f7711c017e01ac9f008dfddd9410dff3674334c233bde66e7ba65bbf/pywin32_ctypes-0.2.3-py3-none-any.whl", hash = "sha256:8a1513379d709975552d202d942d9837758905c8d01eb82b8bcc30918929e7b8", size = 30756, upload-time = "2024-08-14T10:15:33.187Z" },
|
|
2403
|
+
]
|
|
2404
|
+
|
|
2163
2405
|
[[package]]
|
|
2164
2406
|
name = "pyyaml"
|
|
2165
2407
|
version = "6.0.3"
|
|
@@ -2215,6 +2457,20 @@ wheels = [
|
|
|
2215
2457
|
{ url = "https://files.pythonhosted.org/packages/f0/0c/25113e0b5e103d7f1490c0e947e303fe4a696c10b501dea7a9f49d4e876c/pyyaml-6.0.3-cp39-cp39-win_amd64.whl", hash = "sha256:2e71d11abed7344e42a8849600193d15b6def118602c4c176f748e4583246007", size = 158777, upload-time = "2025-09-25T21:33:15.55Z" },
|
|
2216
2458
|
]
|
|
2217
2459
|
|
|
2460
|
+
[[package]]
|
|
2461
|
+
name = "readme-renderer"
|
|
2462
|
+
version = "44.0"
|
|
2463
|
+
source = { registry = "https://pypi.org/simple" }
|
|
2464
|
+
dependencies = [
|
|
2465
|
+
{ name = "docutils" },
|
|
2466
|
+
{ name = "nh3" },
|
|
2467
|
+
{ name = "pygments" },
|
|
2468
|
+
]
|
|
2469
|
+
sdist = { url = "https://files.pythonhosted.org/packages/5a/a9/104ec9234c8448c4379768221ea6df01260cd6c2ce13182d4eac531c8342/readme_renderer-44.0.tar.gz", hash = "sha256:8712034eabbfa6805cacf1402b4eeb2a73028f72d1166d6f5cb7f9c047c5d1e1", size = 32056, upload-time = "2024-07-08T15:00:57.805Z" }
|
|
2470
|
+
wheels = [
|
|
2471
|
+
{ url = "https://files.pythonhosted.org/packages/e1/67/921ec3024056483db83953ae8e48079ad62b92db7880013ca77632921dd0/readme_renderer-44.0-py3-none-any.whl", hash = "sha256:2fbca89b81a08526aadf1357a8c2ae889ec05fb03f5da67f9769c9a592166151", size = 13310, upload-time = "2024-07-08T15:00:56.577Z" },
|
|
2472
|
+
]
|
|
2473
|
+
|
|
2218
2474
|
[[package]]
|
|
2219
2475
|
name = "referencing"
|
|
2220
2476
|
version = "0.36.2"
|
|
@@ -2494,6 +2750,15 @@ wheels = [
|
|
|
2494
2750
|
{ url = "https://files.pythonhosted.org/packages/3f/51/d4db610ef29373b879047326cbf6fa98b6c1969d6f6dc423279de2b1be2c/requests_toolbelt-1.0.0-py2.py3-none-any.whl", hash = "sha256:cccfdd665f0a24fcf4726e690f65639d272bb0637b9b92dfd91a5568ccf6bd06", size = 54481, upload-time = "2023-05-01T04:11:28.427Z" },
|
|
2495
2751
|
]
|
|
2496
2752
|
|
|
2753
|
+
[[package]]
|
|
2754
|
+
name = "rfc3986"
|
|
2755
|
+
version = "2.0.0"
|
|
2756
|
+
source = { registry = "https://pypi.org/simple" }
|
|
2757
|
+
sdist = { url = "https://files.pythonhosted.org/packages/85/40/1520d68bfa07ab5a6f065a186815fb6610c86fe957bc065754e47f7b0840/rfc3986-2.0.0.tar.gz", hash = "sha256:97aacf9dbd4bfd829baad6e6309fa6573aaf1be3f6fa735c8ab05e46cecb261c", size = 49026, upload-time = "2022-01-10T00:52:30.832Z" }
|
|
2758
|
+
wheels = [
|
|
2759
|
+
{ url = "https://files.pythonhosted.org/packages/ff/9a/9afaade874b2fa6c752c36f1548f718b5b83af81ed9b76628329dab81c1b/rfc3986-2.0.0-py2.py3-none-any.whl", hash = "sha256:50b1502b60e289cb37883f3dfd34532b8873c7de9f49bb546641ce9cbd256ebd", size = 31326, upload-time = "2022-01-10T00:52:29.594Z" },
|
|
2760
|
+
]
|
|
2761
|
+
|
|
2497
2762
|
[[package]]
|
|
2498
2763
|
name = "rich"
|
|
2499
2764
|
version = "14.3.3"
|
|
@@ -2742,6 +3007,40 @@ wheels = [
|
|
|
2742
3007
|
{ url = "https://files.pythonhosted.org/packages/d1/b7/b95708304cd49b7b6f82fdd039f1748b66ec2b21d6a45180910802f1abf1/rpds_py-0.30.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:ac37f9f516c51e5753f27dfdef11a88330f04de2d564be3991384b2f3535d02e", size = 562191, upload-time = "2025-11-30T20:24:36.853Z" },
|
|
2743
3008
|
]
|
|
2744
3009
|
|
|
3010
|
+
[[package]]
|
|
3011
|
+
name = "secretstorage"
|
|
3012
|
+
version = "3.3.3"
|
|
3013
|
+
source = { registry = "https://pypi.org/simple" }
|
|
3014
|
+
resolution-markers = [
|
|
3015
|
+
"python_full_version < '3.10'",
|
|
3016
|
+
]
|
|
3017
|
+
dependencies = [
|
|
3018
|
+
{ name = "cryptography", marker = "python_full_version < '3.10'" },
|
|
3019
|
+
{ name = "jeepney", marker = "python_full_version < '3.10'" },
|
|
3020
|
+
]
|
|
3021
|
+
sdist = { url = "https://files.pythonhosted.org/packages/53/a4/f48c9d79cb507ed1373477dbceaba7401fd8a23af63b837fa61f1dcd3691/SecretStorage-3.3.3.tar.gz", hash = "sha256:2403533ef369eca6d2ba81718576c5e0f564d5cca1b58f73a8b23e7d4eeebd77", size = 19739, upload-time = "2022-08-13T16:22:46.976Z" }
|
|
3022
|
+
wheels = [
|
|
3023
|
+
{ url = "https://files.pythonhosted.org/packages/54/24/b4293291fa1dd830f353d2cb163295742fa87f179fcc8a20a306a81978b7/SecretStorage-3.3.3-py3-none-any.whl", hash = "sha256:f356e6628222568e3af06f2eba8df495efa13b3b63081dafd4f7d9a7b7bc9f99", size = 15221, upload-time = "2022-08-13T16:22:44.457Z" },
|
|
3024
|
+
]
|
|
3025
|
+
|
|
3026
|
+
[[package]]
|
|
3027
|
+
name = "secretstorage"
|
|
3028
|
+
version = "3.5.0"
|
|
3029
|
+
source = { registry = "https://pypi.org/simple" }
|
|
3030
|
+
resolution-markers = [
|
|
3031
|
+
"python_full_version >= '3.13'",
|
|
3032
|
+
"python_full_version >= '3.11' and python_full_version < '3.13'",
|
|
3033
|
+
"python_full_version == '3.10.*'",
|
|
3034
|
+
]
|
|
3035
|
+
dependencies = [
|
|
3036
|
+
{ name = "cryptography", marker = "python_full_version >= '3.10'" },
|
|
3037
|
+
{ name = "jeepney", marker = "python_full_version >= '3.10'" },
|
|
3038
|
+
]
|
|
3039
|
+
sdist = { url = "https://files.pythonhosted.org/packages/1c/03/e834bcd866f2f8a49a85eaff47340affa3bfa391ee9912a952a1faa68c7b/secretstorage-3.5.0.tar.gz", hash = "sha256:f04b8e4689cbce351744d5537bf6b1329c6fc68f91fa666f60a380edddcd11be", size = 19884, upload-time = "2025-11-23T19:02:53.191Z" }
|
|
3040
|
+
wheels = [
|
|
3041
|
+
{ url = "https://files.pythonhosted.org/packages/b7/46/f5af3402b579fd5e11573ce652019a67074317e18c1935cc0b4ba9b35552/secretstorage-3.5.0-py3-none-any.whl", hash = "sha256:0ce65888c0725fcb2c5bc0fdb8e5438eece02c523557ea40ce0703c266248137", size = 15554, upload-time = "2025-11-23T19:02:51.545Z" },
|
|
3042
|
+
]
|
|
3043
|
+
|
|
2745
3044
|
[[package]]
|
|
2746
3045
|
name = "shellingham"
|
|
2747
3046
|
version = "1.5.4"
|
|
@@ -2944,6 +3243,28 @@ wheels = [
|
|
|
2944
3243
|
{ url = "https://files.pythonhosted.org/packages/16/e1/3079a9ff9b8e11b846c6ac5c8b5bfb7ff225eee721825310c91b3b50304f/tqdm-4.67.3-py3-none-any.whl", hash = "sha256:ee1e4c0e59148062281c49d80b25b67771a127c85fc9676d3be5f243206826bf", size = 78374, upload-time = "2026-02-03T17:35:50.982Z" },
|
|
2945
3244
|
]
|
|
2946
3245
|
|
|
3246
|
+
[[package]]
|
|
3247
|
+
name = "twine"
|
|
3248
|
+
version = "6.2.0"
|
|
3249
|
+
source = { registry = "https://pypi.org/simple" }
|
|
3250
|
+
dependencies = [
|
|
3251
|
+
{ name = "id" },
|
|
3252
|
+
{ name = "importlib-metadata", marker = "python_full_version < '3.10'" },
|
|
3253
|
+
{ name = "keyring", marker = "platform_machine != 'ppc64le' and platform_machine != 's390x'" },
|
|
3254
|
+
{ name = "packaging", version = "25.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" },
|
|
3255
|
+
{ name = "packaging", version = "26.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" },
|
|
3256
|
+
{ name = "readme-renderer" },
|
|
3257
|
+
{ name = "requests" },
|
|
3258
|
+
{ name = "requests-toolbelt" },
|
|
3259
|
+
{ name = "rfc3986" },
|
|
3260
|
+
{ name = "rich" },
|
|
3261
|
+
{ name = "urllib3" },
|
|
3262
|
+
]
|
|
3263
|
+
sdist = { url = "https://files.pythonhosted.org/packages/e0/a8/949edebe3a82774c1ec34f637f5dd82d1cf22c25e963b7d63771083bbee5/twine-6.2.0.tar.gz", hash = "sha256:e5ed0d2fd70c9959770dce51c8f39c8945c574e18173a7b81802dab51b4b75cf", size = 172262, upload-time = "2025-09-04T15:43:17.255Z" }
|
|
3264
|
+
wheels = [
|
|
3265
|
+
{ url = "https://files.pythonhosted.org/packages/3a/7a/882d99539b19b1490cac5d77c67338d126e4122c8276bf640e411650c830/twine-6.2.0-py3-none-any.whl", hash = "sha256:418ebf08ccda9a8caaebe414433b0ba5e25eb5e4a927667122fbe8f829f985d8", size = 42727, upload-time = "2025-09-04T15:43:15.994Z" },
|
|
3266
|
+
]
|
|
3267
|
+
|
|
2947
3268
|
[[package]]
|
|
2948
3269
|
name = "typer"
|
|
2949
3270
|
version = "0.23.2"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|