micropython-stubber 1.23.3__py3-none-any.whl → 1.24.1__py3-none-any.whl
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.
- {micropython_stubber-1.23.3.dist-info → micropython_stubber-1.24.1.dist-info}/METADATA +29 -11
- {micropython_stubber-1.23.3.dist-info → micropython_stubber-1.24.1.dist-info}/RECORD +68 -65
- {micropython_stubber-1.23.3.dist-info → micropython_stubber-1.24.1.dist-info}/WHEEL +1 -1
- mpflash/README.md +2 -2
- mpflash/mpflash/basicgit.py +22 -2
- mpflash/mpflash/common.py +23 -13
- mpflash/mpflash/downloaded.py +10 -2
- mpflash/mpflash/flash/esp.py +1 -1
- mpflash/mpflash/mpboard_id/__init__.py +9 -4
- mpflash/mpflash/mpboard_id/add_boards.py +25 -14
- mpflash/mpflash/mpboard_id/board.py +2 -2
- mpflash/mpflash/mpboard_id/board_id.py +10 -6
- mpflash/mpflash/mpboard_id/board_info.zip +0 -0
- mpflash/mpflash/mpremoteboard/__init__.py +13 -8
- mpflash/mpflash/vendor/board_database.py +185 -0
- mpflash/mpflash/vendor/readme.md +10 -1
- mpflash/mpflash/versions.py +28 -40
- mpflash/poetry.lock +1147 -231
- mpflash/pyproject.toml +4 -3
- stubber/__init__.py +1 -1
- stubber/board/createstubs.py +76 -34
- stubber/board/createstubs_db.py +34 -25
- stubber/board/createstubs_db_min.py +90 -83
- stubber/board/createstubs_db_mpy.mpy +0 -0
- stubber/board/createstubs_mem.py +34 -25
- stubber/board/createstubs_mem_min.py +123 -116
- stubber/board/createstubs_mem_mpy.mpy +0 -0
- stubber/board/createstubs_min.py +154 -145
- stubber/board/createstubs_mpy.mpy +0 -0
- stubber/board/modulelist.txt +16 -0
- stubber/codemod/enrich.py +301 -86
- stubber/codemod/merge_docstub.py +251 -66
- stubber/codemod/test_enrich.py +87 -0
- stubber/codemod/visitors/type_helpers.py +182 -0
- stubber/commands/build_cmd.py +16 -3
- stubber/commands/clone_cmd.py +3 -3
- stubber/commands/config_cmd.py +4 -2
- stubber/commands/enrich_folder_cmd.py +33 -21
- stubber/commands/get_core_cmd.py +1 -2
- stubber/commands/get_docstubs_cmd.py +60 -6
- stubber/commands/get_frozen_cmd.py +15 -12
- stubber/commands/get_mcu_cmd.py +3 -3
- stubber/commands/merge_cmd.py +1 -2
- stubber/commands/publish_cmd.py +19 -4
- stubber/commands/stub_cmd.py +3 -3
- stubber/commands/switch_cmd.py +3 -5
- stubber/commands/variants_cmd.py +3 -3
- stubber/cst_transformer.py +52 -17
- stubber/freeze/common.py +27 -11
- stubber/freeze/freeze_manifest_2.py +8 -1
- stubber/freeze/get_frozen.py +4 -1
- stubber/merge_config.py +111 -0
- stubber/minify.py +1 -2
- stubber/publish/database.py +51 -10
- stubber/publish/merge_docstubs.py +38 -17
- stubber/publish/package.py +32 -18
- stubber/publish/publish.py +8 -8
- stubber/publish/stubpackage.py +117 -50
- stubber/rst/lookup.py +205 -41
- stubber/rst/reader.py +106 -59
- stubber/rst/rst_utils.py +24 -11
- stubber/stubber.py +1 -1
- stubber/stubs_from_docs.py +31 -13
- stubber/update_module_list.py +2 -2
- stubber/utils/config.py +33 -13
- stubber/utils/post.py +9 -6
- stubber/publish/missing_class_methods.py +0 -51
- {micropython_stubber-1.23.3.dist-info → micropython_stubber-1.24.1.dist-info}/LICENSE +0 -0
- {micropython_stubber-1.23.3.dist-info → micropython_stubber-1.24.1.dist-info}/entry_points.txt +0 -0
mpflash/poetry.lock
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# This file is automatically @generated by Poetry
|
1
|
+
# This file is automatically @generated by Poetry 2.0.1 and should not be changed by hand.
|
2
2
|
|
3
3
|
[[package]]
|
4
4
|
name = "ansicon"
|
@@ -6,6 +6,8 @@ version = "1.89.0"
|
|
6
6
|
description = "Python wrapper for loading Jason Hood's ANSICON"
|
7
7
|
optional = false
|
8
8
|
python-versions = "*"
|
9
|
+
groups = ["main"]
|
10
|
+
markers = "platform_system == \"Windows\""
|
9
11
|
files = [
|
10
12
|
{file = "ansicon-1.89.0-py2.py3-none-any.whl", hash = "sha256:f1def52d17f65c2c9682cf8370c03f541f410c1752d6a14029f97318e4b9dfec"},
|
11
13
|
{file = "ansicon-1.89.0.tar.gz", hash = "sha256:e4d039def5768a47e4afec8e89e83ec3ae5a26bf00ad851f914d1240b444d2b1"},
|
@@ -13,13 +15,15 @@ files = [
|
|
13
15
|
|
14
16
|
[[package]]
|
15
17
|
name = "argcomplete"
|
16
|
-
version = "3.5.
|
18
|
+
version = "3.5.2"
|
17
19
|
description = "Bash tab completion for argparse"
|
18
20
|
optional = false
|
19
21
|
python-versions = ">=3.8"
|
22
|
+
groups = ["main"]
|
23
|
+
markers = "sys_platform != \"win32\""
|
20
24
|
files = [
|
21
|
-
{file = "argcomplete-3.5.
|
22
|
-
{file = "argcomplete-3.5.
|
25
|
+
{file = "argcomplete-3.5.2-py3-none-any.whl", hash = "sha256:036d020d79048a5d525bc63880d7a4b8d1668566b8a76daf1144c0bbe0f63472"},
|
26
|
+
{file = "argcomplete-3.5.2.tar.gz", hash = "sha256:23146ed7ac4403b70bd6026402468942ceba34a6732255b9edf5b7354f68a6bb"},
|
23
27
|
]
|
24
28
|
|
25
29
|
[package.extras]
|
@@ -31,6 +35,7 @@ version = "0.12.0"
|
|
31
35
|
description = "Additional argparse types and actions."
|
32
36
|
optional = false
|
33
37
|
python-versions = ">=3.6"
|
38
|
+
groups = ["main"]
|
34
39
|
files = [
|
35
40
|
{file = "argparse_addons-0.12.0-py3-none-any.whl", hash = "sha256:48b70ecd719054fcb0d7e6f25a1fecc13607aac61d446e83f47d211b4ead0d61"},
|
36
41
|
{file = "argparse_addons-0.12.0.tar.gz", hash = "sha256:6322a0dcd706887e76308d23136d5b86da0eab75a282dc6496701d1210b460af"},
|
@@ -38,29 +43,48 @@ files = [
|
|
38
43
|
|
39
44
|
[[package]]
|
40
45
|
name = "attrs"
|
41
|
-
version = "24.
|
46
|
+
version = "24.3.0"
|
42
47
|
description = "Classes Without Boilerplate"
|
43
48
|
optional = false
|
44
|
-
python-versions = ">=3.
|
49
|
+
python-versions = ">=3.8"
|
50
|
+
groups = ["main"]
|
45
51
|
files = [
|
46
|
-
{file = "attrs-24.
|
47
|
-
{file = "attrs-24.
|
52
|
+
{file = "attrs-24.3.0-py3-none-any.whl", hash = "sha256:ac96cd038792094f438ad1f6ff80837353805ac950cd2aa0e0625ef19850c308"},
|
53
|
+
{file = "attrs-24.3.0.tar.gz", hash = "sha256:8f5c07333d543103541ba7be0e2ce16eeee8130cb0b3f9238ab904ce1e85baff"},
|
48
54
|
]
|
49
55
|
|
50
56
|
[package.extras]
|
51
57
|
benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"]
|
52
58
|
cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"]
|
53
|
-
dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"]
|
59
|
+
dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit-uv", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"]
|
54
60
|
docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"]
|
55
61
|
tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"]
|
56
62
|
tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"]
|
57
63
|
|
64
|
+
[[package]]
|
65
|
+
name = "backports-tarfile"
|
66
|
+
version = "1.2.0"
|
67
|
+
description = "Backport of CPython tarfile module"
|
68
|
+
optional = false
|
69
|
+
python-versions = ">=3.8"
|
70
|
+
groups = ["main"]
|
71
|
+
markers = "python_version < \"3.12\""
|
72
|
+
files = [
|
73
|
+
{file = "backports.tarfile-1.2.0-py3-none-any.whl", hash = "sha256:77e284d754527b01fb1e6fa8a1afe577858ebe4e9dad8919e34c862cb399bc34"},
|
74
|
+
{file = "backports_tarfile-1.2.0.tar.gz", hash = "sha256:d75e02c268746e1b8144c278978b6e98e85de6ad16f8e4b0844a154557eca991"},
|
75
|
+
]
|
76
|
+
|
77
|
+
[package.extras]
|
78
|
+
docs = ["furo", "jaraco.packaging (>=9.3)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"]
|
79
|
+
testing = ["jaraco.test", "pytest (!=8.0.*)", "pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)"]
|
80
|
+
|
58
81
|
[[package]]
|
59
82
|
name = "beautifulsoup4"
|
60
83
|
version = "4.12.3"
|
61
84
|
description = "Screen-scraping library"
|
62
85
|
optional = false
|
63
86
|
python-versions = ">=3.6.0"
|
87
|
+
groups = ["main"]
|
64
88
|
files = [
|
65
89
|
{file = "beautifulsoup4-4.12.3-py3-none-any.whl", hash = "sha256:b80878c9f40111313e55da8ba20bdba06d8fa3969fc68304167741bbf9e082ed"},
|
66
90
|
{file = "beautifulsoup4-4.12.3.tar.gz", hash = "sha256:74e3d1928edc070d21748185c46e3fb33490f22f52a3addee9aee0f4f7781051"},
|
@@ -82,6 +106,7 @@ version = "20.0.0"
|
|
82
106
|
description = "Mangling of various file formats that conveys binary information (Motorola S-Record, Intel HEX and binary files)."
|
83
107
|
optional = false
|
84
108
|
python-versions = ">=3.6"
|
109
|
+
groups = ["main"]
|
85
110
|
files = [
|
86
111
|
{file = "bincopy-20.0.0-py3-none-any.whl", hash = "sha256:c9cde5234e3699aa9eaaab4a4e7f32f175d2111549ae4423ee19012840714426"},
|
87
112
|
{file = "bincopy-20.0.0.tar.gz", hash = "sha256:14cfb4cf97227bf2b1f5b85623df4c767ad219afdc9fe0732dd2cfdff446afdf"},
|
@@ -98,6 +123,7 @@ version = "2.9.3"
|
|
98
123
|
description = "efficient arrays of booleans -- C extension"
|
99
124
|
optional = false
|
100
125
|
python-versions = "*"
|
126
|
+
groups = ["main"]
|
101
127
|
files = [
|
102
128
|
{file = "bitarray-2.9.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:2cf5f5400636c7dda797fd681795ce63932458620fe8c40955890380acba9f62"},
|
103
129
|
{file = "bitarray-2.9.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:3487b4718ffa5942fab777835ee36085f8dda7ec4bd0b28433efb117f84852b6"},
|
@@ -244,6 +270,7 @@ version = "4.2.3"
|
|
244
270
|
description = "Simple construction, analysis and modification of binary data."
|
245
271
|
optional = false
|
246
272
|
python-versions = ">=3.8"
|
273
|
+
groups = ["main"]
|
247
274
|
files = [
|
248
275
|
{file = "bitstring-4.2.3-py3-none-any.whl", hash = "sha256:20ed0036e2fcf0323acb0f92f0b7b178516a080f3e91061470aa019ac4ede404"},
|
249
276
|
{file = "bitstring-4.2.3.tar.gz", hash = "sha256:e0c447af3fda0d114f77b88c2d199f02f97ee7e957e6d719f40f41cf15fbb897"},
|
@@ -258,6 +285,7 @@ version = "1.20.0"
|
|
258
285
|
description = "Easy, practical library for making terminal apps, by providing an elegant, well-documented interface to Colors, Keyboard input, and screen Positioning capabilities."
|
259
286
|
optional = false
|
260
287
|
python-versions = ">=2.7"
|
288
|
+
groups = ["main"]
|
261
289
|
files = [
|
262
290
|
{file = "blessed-1.20.0-py2.py3-none-any.whl", hash = "sha256:0c542922586a265e699188e52d5f5ac5ec0dd517e5a1041d90d2bbf23f906058"},
|
263
291
|
{file = "blessed-1.20.0.tar.gz", hash = "sha256:2cdd67f8746e048f00df47a2880f4d6acbcdb399031b604e34ba8f71d5787680"},
|
@@ -274,27 +302,78 @@ version = "0.2.0"
|
|
274
302
|
description = "blkinfo is a python package to list information about all available or the specified block devices."
|
275
303
|
optional = false
|
276
304
|
python-versions = "*"
|
305
|
+
groups = ["main"]
|
277
306
|
files = [
|
278
307
|
{file = "blkinfo-0.2.0.tar.gz", hash = "sha256:322a906595f78832d6725ac74a0b9fd2794df3388584d9f05c1a2f8e19324851"},
|
279
308
|
]
|
280
309
|
|
310
|
+
[[package]]
|
311
|
+
name = "build"
|
312
|
+
version = "1.2.2.post1"
|
313
|
+
description = "A simple, correct Python build frontend"
|
314
|
+
optional = false
|
315
|
+
python-versions = ">=3.8"
|
316
|
+
groups = ["main"]
|
317
|
+
files = [
|
318
|
+
{file = "build-1.2.2.post1-py3-none-any.whl", hash = "sha256:1d61c0887fa860c01971625baae8bdd338e517b836a2f70dd1f7aa3a6b2fc5b5"},
|
319
|
+
{file = "build-1.2.2.post1.tar.gz", hash = "sha256:b36993e92ca9375a219c99e606a122ff365a760a2d4bba0caa09bd5278b608b7"},
|
320
|
+
]
|
321
|
+
|
322
|
+
[package.dependencies]
|
323
|
+
colorama = {version = "*", markers = "os_name == \"nt\""}
|
324
|
+
importlib-metadata = {version = ">=4.6", markers = "python_full_version < \"3.10.2\""}
|
325
|
+
packaging = ">=19.1"
|
326
|
+
pyproject_hooks = "*"
|
327
|
+
tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""}
|
328
|
+
|
329
|
+
[package.extras]
|
330
|
+
docs = ["furo (>=2023.08.17)", "sphinx (>=7.0,<8.0)", "sphinx-argparse-cli (>=1.5)", "sphinx-autodoc-typehints (>=1.10)", "sphinx-issues (>=3.0.0)"]
|
331
|
+
test = ["build[uv,virtualenv]", "filelock (>=3)", "pytest (>=6.2.4)", "pytest-cov (>=2.12)", "pytest-mock (>=2)", "pytest-rerunfailures (>=9.1)", "pytest-xdist (>=1.34)", "setuptools (>=42.0.0)", "setuptools (>=56.0.0)", "setuptools (>=56.0.0)", "setuptools (>=67.8.0)", "wheel (>=0.36.0)"]
|
332
|
+
typing = ["build[uv]", "importlib-metadata (>=5.1)", "mypy (>=1.9.0,<1.10.0)", "tomli", "typing-extensions (>=3.7.4.3)"]
|
333
|
+
uv = ["uv (>=0.1.18)"]
|
334
|
+
virtualenv = ["virtualenv (>=20.0.35)"]
|
335
|
+
|
281
336
|
[[package]]
|
282
337
|
name = "cache-to-disk"
|
283
338
|
version = "2.0.0"
|
284
339
|
description = "Local disk caching decorator for python function."
|
285
340
|
optional = false
|
286
341
|
python-versions = "*"
|
342
|
+
groups = ["main"]
|
287
343
|
files = [
|
288
344
|
{file = "cache_to_disk-2.0.0-py3-none-any.whl", hash = "sha256:ea5afe13d4284cb4a06169b0807fbc60547cbe19c54563bf90e1d44f24029481"},
|
289
345
|
{file = "cache_to_disk-2.0.0.tar.gz", hash = "sha256:79e19ea9b72eedc5cec83bb8aa55374afc671493e7d13d541f3b63eb3a13fb32"},
|
290
346
|
]
|
291
347
|
|
348
|
+
[[package]]
|
349
|
+
name = "cachecontrol"
|
350
|
+
version = "0.14.2"
|
351
|
+
description = "httplib2 caching for requests"
|
352
|
+
optional = false
|
353
|
+
python-versions = ">=3.8"
|
354
|
+
groups = ["main"]
|
355
|
+
files = [
|
356
|
+
{file = "cachecontrol-0.14.2-py3-none-any.whl", hash = "sha256:ebad2091bf12d0d200dfc2464330db638c5deb41d546f6d7aca079e87290f3b0"},
|
357
|
+
{file = "cachecontrol-0.14.2.tar.gz", hash = "sha256:7d47d19f866409b98ff6025b6a0fca8e4c791fb31abbd95f622093894ce903a2"},
|
358
|
+
]
|
359
|
+
|
360
|
+
[package.dependencies]
|
361
|
+
filelock = {version = ">=3.8.0", optional = true, markers = "extra == \"filecache\""}
|
362
|
+
msgpack = ">=0.5.2,<2.0.0"
|
363
|
+
requests = ">=2.16.0"
|
364
|
+
|
365
|
+
[package.extras]
|
366
|
+
dev = ["CacheControl[filecache,redis]", "build", "cherrypy", "codespell[tomli]", "furo", "mypy", "pytest", "pytest-cov", "ruff", "sphinx", "sphinx-copybutton", "tox", "types-redis", "types-requests"]
|
367
|
+
filecache = ["filelock (>=3.8.0)"]
|
368
|
+
redis = ["redis (>=2.10.5)"]
|
369
|
+
|
292
370
|
[[package]]
|
293
371
|
name = "cachetools"
|
294
372
|
version = "5.5.0"
|
295
373
|
description = "Extensible memoizing collections and decorators"
|
296
374
|
optional = false
|
297
375
|
python-versions = ">=3.7"
|
376
|
+
groups = ["main"]
|
298
377
|
files = [
|
299
378
|
{file = "cachetools-5.5.0-py3-none-any.whl", hash = "sha256:02134e8439cdc2ffb62023ce1debca2944c3f289d66bb17ead3ab3dede74b292"},
|
300
379
|
{file = "cachetools-5.5.0.tar.gz", hash = "sha256:2cc24fb4cbe39633fb7badd9db9ca6295d766d9c2995f245725a46715d050f2a"},
|
@@ -302,13 +381,14 @@ files = [
|
|
302
381
|
|
303
382
|
[[package]]
|
304
383
|
name = "certifi"
|
305
|
-
version = "2024.
|
384
|
+
version = "2024.12.14"
|
306
385
|
description = "Python package for providing Mozilla's CA Bundle."
|
307
386
|
optional = false
|
308
387
|
python-versions = ">=3.6"
|
388
|
+
groups = ["main"]
|
309
389
|
files = [
|
310
|
-
{file = "certifi-2024.
|
311
|
-
{file = "certifi-2024.
|
390
|
+
{file = "certifi-2024.12.14-py3-none-any.whl", hash = "sha256:1275f7a45be9464efc1173084eaa30f866fe2e47d389406136d332ed4967ec56"},
|
391
|
+
{file = "certifi-2024.12.14.tar.gz", hash = "sha256:b650d30f370c2b724812bee08008be0c4163b163ddaec3f2546c1caf65f191db"},
|
312
392
|
]
|
313
393
|
|
314
394
|
[[package]]
|
@@ -317,6 +397,7 @@ version = "1.17.1"
|
|
317
397
|
description = "Foreign Function Interface for Python calling C code."
|
318
398
|
optional = false
|
319
399
|
python-versions = ">=3.8"
|
400
|
+
groups = ["main"]
|
320
401
|
files = [
|
321
402
|
{file = "cffi-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:df8b1c11f177bc2313ec4b2d46baec87a5f3e71fc8b45dab2ee7cae86d9aba14"},
|
322
403
|
{file = "cffi-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8f2cdc858323644ab277e9bb925ad72ae0e67f69e804f4898c070998d50b1a67"},
|
@@ -392,127 +473,132 @@ pycparser = "*"
|
|
392
473
|
|
393
474
|
[[package]]
|
394
475
|
name = "charset-normalizer"
|
395
|
-
version = "3.4.
|
476
|
+
version = "3.4.1"
|
396
477
|
description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet."
|
397
478
|
optional = false
|
398
|
-
python-versions = ">=3.7
|
399
|
-
|
400
|
-
|
401
|
-
{file = "charset_normalizer-3.4.
|
402
|
-
{file = "charset_normalizer-3.4.
|
403
|
-
{file = "charset_normalizer-3.4.
|
404
|
-
{file = "charset_normalizer-3.4.
|
405
|
-
{file = "charset_normalizer-3.4.
|
406
|
-
{file = "charset_normalizer-3.4.
|
407
|
-
{file = "charset_normalizer-3.4.
|
408
|
-
{file = "charset_normalizer-3.4.
|
409
|
-
{file = "charset_normalizer-3.4.
|
410
|
-
{file = "charset_normalizer-3.4.
|
411
|
-
{file = "charset_normalizer-3.4.
|
412
|
-
{file = "charset_normalizer-3.4.
|
413
|
-
{file = "charset_normalizer-3.4.
|
414
|
-
{file = "charset_normalizer-3.4.
|
415
|
-
{file = "charset_normalizer-3.4.
|
416
|
-
{file = "charset_normalizer-3.4.
|
417
|
-
{file = "charset_normalizer-3.4.
|
418
|
-
{file = "charset_normalizer-3.4.
|
419
|
-
{file = "charset_normalizer-3.4.
|
420
|
-
{file = "charset_normalizer-3.4.
|
421
|
-
{file = "charset_normalizer-3.4.
|
422
|
-
{file = "charset_normalizer-3.4.
|
423
|
-
{file = "charset_normalizer-3.4.
|
424
|
-
{file = "charset_normalizer-3.4.
|
425
|
-
{file = "charset_normalizer-3.4.
|
426
|
-
{file = "charset_normalizer-3.4.
|
427
|
-
{file = "charset_normalizer-3.4.
|
428
|
-
{file = "charset_normalizer-3.4.
|
429
|
-
{file = "charset_normalizer-3.4.
|
430
|
-
{file = "charset_normalizer-3.4.
|
431
|
-
{file = "charset_normalizer-3.4.
|
432
|
-
{file = "charset_normalizer-3.4.
|
433
|
-
{file = "charset_normalizer-3.4.
|
434
|
-
{file = "charset_normalizer-3.4.
|
435
|
-
{file = "charset_normalizer-3.4.
|
436
|
-
{file = "charset_normalizer-3.4.
|
437
|
-
{file = "charset_normalizer-3.4.
|
438
|
-
{file = "charset_normalizer-3.4.
|
439
|
-
{file = "charset_normalizer-3.4.
|
440
|
-
{file = "charset_normalizer-3.4.
|
441
|
-
{file = "charset_normalizer-3.4.
|
442
|
-
{file = "charset_normalizer-3.4.
|
443
|
-
{file = "charset_normalizer-3.4.
|
444
|
-
{file = "charset_normalizer-3.4.
|
445
|
-
{file = "charset_normalizer-3.4.
|
446
|
-
{file = "charset_normalizer-3.4.
|
447
|
-
{file = "charset_normalizer-3.4.
|
448
|
-
{file = "charset_normalizer-3.4.
|
449
|
-
{file = "charset_normalizer-3.4.
|
450
|
-
{file = "charset_normalizer-3.4.
|
451
|
-
{file = "charset_normalizer-3.4.
|
452
|
-
{file = "charset_normalizer-3.4.
|
453
|
-
{file = "charset_normalizer-3.4.
|
454
|
-
{file = "charset_normalizer-3.4.
|
455
|
-
{file = "charset_normalizer-3.4.
|
456
|
-
{file = "charset_normalizer-3.4.
|
457
|
-
{file = "charset_normalizer-3.4.
|
458
|
-
{file = "charset_normalizer-3.4.
|
459
|
-
{file = "charset_normalizer-3.4.
|
460
|
-
{file = "charset_normalizer-3.4.
|
461
|
-
{file = "charset_normalizer-3.4.
|
462
|
-
{file = "charset_normalizer-3.4.
|
463
|
-
{file = "charset_normalizer-3.4.
|
464
|
-
{file = "charset_normalizer-3.4.
|
465
|
-
{file = "charset_normalizer-3.4.
|
466
|
-
{file = "charset_normalizer-3.4.
|
467
|
-
{file = "charset_normalizer-3.4.
|
468
|
-
{file = "charset_normalizer-3.4.
|
469
|
-
{file = "charset_normalizer-3.4.
|
470
|
-
{file = "charset_normalizer-3.4.
|
471
|
-
{file = "charset_normalizer-3.4.
|
472
|
-
{file = "charset_normalizer-3.4.
|
473
|
-
{file = "charset_normalizer-3.4.
|
474
|
-
{file = "charset_normalizer-3.4.
|
475
|
-
{file = "charset_normalizer-3.4.
|
476
|
-
{file = "charset_normalizer-3.4.
|
477
|
-
{file = "charset_normalizer-3.4.
|
478
|
-
{file = "charset_normalizer-3.4.
|
479
|
-
{file = "charset_normalizer-3.4.
|
480
|
-
{file = "charset_normalizer-3.4.
|
481
|
-
{file = "charset_normalizer-3.4.
|
482
|
-
{file = "charset_normalizer-3.4.
|
483
|
-
{file = "charset_normalizer-3.4.
|
484
|
-
{file = "charset_normalizer-3.4.
|
485
|
-
{file = "charset_normalizer-3.4.
|
486
|
-
{file = "charset_normalizer-3.4.
|
487
|
-
{file = "charset_normalizer-3.4.
|
488
|
-
{file = "charset_normalizer-3.4.
|
489
|
-
{file = "charset_normalizer-3.4.
|
490
|
-
{file = "charset_normalizer-3.4.
|
491
|
-
{file = "charset_normalizer-3.4.
|
492
|
-
{file = "charset_normalizer-3.4.
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
{file = "
|
504
|
-
{file = "
|
479
|
+
python-versions = ">=3.7"
|
480
|
+
groups = ["main"]
|
481
|
+
files = [
|
482
|
+
{file = "charset_normalizer-3.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:91b36a978b5ae0ee86c394f5a54d6ef44db1de0815eb43de826d41d21e4af3de"},
|
483
|
+
{file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7461baadb4dc00fd9e0acbe254e3d7d2112e7f92ced2adc96e54ef6501c5f176"},
|
484
|
+
{file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e218488cd232553829be0664c2292d3af2eeeb94b32bea483cf79ac6a694e037"},
|
485
|
+
{file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:80ed5e856eb7f30115aaf94e4a08114ccc8813e6ed1b5efa74f9f82e8509858f"},
|
486
|
+
{file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b010a7a4fd316c3c484d482922d13044979e78d1861f0e0650423144c616a46a"},
|
487
|
+
{file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4532bff1b8421fd0a320463030c7520f56a79c9024a4e88f01c537316019005a"},
|
488
|
+
{file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d973f03c0cb71c5ed99037b870f2be986c3c05e63622c017ea9816881d2dd247"},
|
489
|
+
{file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3a3bd0dcd373514dcec91c411ddb9632c0d7d92aed7093b8c3bbb6d69ca74408"},
|
490
|
+
{file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:d9c3cdf5390dcd29aa8056d13e8e99526cda0305acc038b96b30352aff5ff2bb"},
|
491
|
+
{file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:2bdfe3ac2e1bbe5b59a1a63721eb3b95fc9b6817ae4a46debbb4e11f6232428d"},
|
492
|
+
{file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:eab677309cdb30d047996b36d34caeda1dc91149e4fdca0b1a039b3f79d9a807"},
|
493
|
+
{file = "charset_normalizer-3.4.1-cp310-cp310-win32.whl", hash = "sha256:c0429126cf75e16c4f0ad00ee0eae4242dc652290f940152ca8c75c3a4b6ee8f"},
|
494
|
+
{file = "charset_normalizer-3.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:9f0b8b1c6d84c8034a44893aba5e767bf9c7a211e313a9605d9c617d7083829f"},
|
495
|
+
{file = "charset_normalizer-3.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:8bfa33f4f2672964266e940dd22a195989ba31669bd84629f05fab3ef4e2d125"},
|
496
|
+
{file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:28bf57629c75e810b6ae989f03c0828d64d6b26a5e205535585f96093e405ed1"},
|
497
|
+
{file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f08ff5e948271dc7e18a35641d2f11a4cd8dfd5634f55228b691e62b37125eb3"},
|
498
|
+
{file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:234ac59ea147c59ee4da87a0c0f098e9c8d169f4dc2a159ef720f1a61bbe27cd"},
|
499
|
+
{file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd4ec41f914fa74ad1b8304bbc634b3de73d2a0889bd32076342a573e0779e00"},
|
500
|
+
{file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eea6ee1db730b3483adf394ea72f808b6e18cf3cb6454b4d86e04fa8c4327a12"},
|
501
|
+
{file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c96836c97b1238e9c9e3fe90844c947d5afbf4f4c92762679acfe19927d81d77"},
|
502
|
+
{file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4d86f7aff21ee58f26dcf5ae81a9addbd914115cdebcbb2217e4f0ed8982e146"},
|
503
|
+
{file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:09b5e6733cbd160dcc09589227187e242a30a49ca5cefa5a7edd3f9d19ed53fd"},
|
504
|
+
{file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:5777ee0881f9499ed0f71cc82cf873d9a0ca8af166dfa0af8ec4e675b7df48e6"},
|
505
|
+
{file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:237bdbe6159cff53b4f24f397d43c6336c6b0b42affbe857970cefbb620911c8"},
|
506
|
+
{file = "charset_normalizer-3.4.1-cp311-cp311-win32.whl", hash = "sha256:8417cb1f36cc0bc7eaba8ccb0e04d55f0ee52df06df3ad55259b9a323555fc8b"},
|
507
|
+
{file = "charset_normalizer-3.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:d7f50a1f8c450f3925cb367d011448c39239bb3eb4117c36a6d354794de4ce76"},
|
508
|
+
{file = "charset_normalizer-3.4.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:73d94b58ec7fecbc7366247d3b0b10a21681004153238750bb67bd9012414545"},
|
509
|
+
{file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dad3e487649f498dd991eeb901125411559b22e8d7ab25d3aeb1af367df5efd7"},
|
510
|
+
{file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c30197aa96e8eed02200a83fba2657b4c3acd0f0aa4bdc9f6c1af8e8962e0757"},
|
511
|
+
{file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2369eea1ee4a7610a860d88f268eb39b95cb588acd7235e02fd5a5601773d4fa"},
|
512
|
+
{file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc2722592d8998c870fa4e290c2eec2c1569b87fe58618e67d38b4665dfa680d"},
|
513
|
+
{file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffc9202a29ab3920fa812879e95a9e78b2465fd10be7fcbd042899695d75e616"},
|
514
|
+
{file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:804a4d582ba6e5b747c625bf1255e6b1507465494a40a2130978bda7b932c90b"},
|
515
|
+
{file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0f55e69f030f7163dffe9fd0752b32f070566451afe180f99dbeeb81f511ad8d"},
|
516
|
+
{file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:c4c3e6da02df6fa1410a7680bd3f63d4f710232d3139089536310d027950696a"},
|
517
|
+
{file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:5df196eb874dae23dcfb968c83d4f8fdccb333330fe1fc278ac5ceeb101003a9"},
|
518
|
+
{file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e358e64305fe12299a08e08978f51fc21fac060dcfcddd95453eabe5b93ed0e1"},
|
519
|
+
{file = "charset_normalizer-3.4.1-cp312-cp312-win32.whl", hash = "sha256:9b23ca7ef998bc739bf6ffc077c2116917eabcc901f88da1b9856b210ef63f35"},
|
520
|
+
{file = "charset_normalizer-3.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:6ff8a4a60c227ad87030d76e99cd1698345d4491638dfa6673027c48b3cd395f"},
|
521
|
+
{file = "charset_normalizer-3.4.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:aabfa34badd18f1da5ec1bc2715cadc8dca465868a4e73a0173466b688f29dda"},
|
522
|
+
{file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22e14b5d70560b8dd51ec22863f370d1e595ac3d024cb8ad7d308b4cd95f8313"},
|
523
|
+
{file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8436c508b408b82d87dc5f62496973a1805cd46727c34440b0d29d8a2f50a6c9"},
|
524
|
+
{file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2d074908e1aecee37a7635990b2c6d504cd4766c7bc9fc86d63f9c09af3fa11b"},
|
525
|
+
{file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:955f8851919303c92343d2f66165294848d57e9bba6cf6e3625485a70a038d11"},
|
526
|
+
{file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:44ecbf16649486d4aebafeaa7ec4c9fed8b88101f4dd612dcaf65d5e815f837f"},
|
527
|
+
{file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0924e81d3d5e70f8126529951dac65c1010cdf117bb75eb02dd12339b57749dd"},
|
528
|
+
{file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:2967f74ad52c3b98de4c3b32e1a44e32975e008a9cd2a8cc8966d6a5218c5cb2"},
|
529
|
+
{file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:c75cb2a3e389853835e84a2d8fb2b81a10645b503eca9bcb98df6b5a43eb8886"},
|
530
|
+
{file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:09b26ae6b1abf0d27570633b2b078a2a20419c99d66fb2823173d73f188ce601"},
|
531
|
+
{file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fa88b843d6e211393a37219e6a1c1df99d35e8fd90446f1118f4216e307e48cd"},
|
532
|
+
{file = "charset_normalizer-3.4.1-cp313-cp313-win32.whl", hash = "sha256:eb8178fe3dba6450a3e024e95ac49ed3400e506fd4e9e5c32d30adda88cbd407"},
|
533
|
+
{file = "charset_normalizer-3.4.1-cp313-cp313-win_amd64.whl", hash = "sha256:b1ac5992a838106edb89654e0aebfc24f5848ae2547d22c2c3f66454daa11971"},
|
534
|
+
{file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f30bf9fd9be89ecb2360c7d94a711f00c09b976258846efe40db3d05828e8089"},
|
535
|
+
{file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:97f68b8d6831127e4787ad15e6757232e14e12060bec17091b85eb1486b91d8d"},
|
536
|
+
{file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7974a0b5ecd505609e3b19742b60cee7aa2aa2fb3151bc917e6e2646d7667dcf"},
|
537
|
+
{file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fc54db6c8593ef7d4b2a331b58653356cf04f67c960f584edb7c3d8c97e8f39e"},
|
538
|
+
{file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:311f30128d7d333eebd7896965bfcfbd0065f1716ec92bd5638d7748eb6f936a"},
|
539
|
+
{file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:7d053096f67cd1241601111b698f5cad775f97ab25d81567d3f59219b5f1adbd"},
|
540
|
+
{file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:807f52c1f798eef6cf26beb819eeb8819b1622ddfeef9d0977a8502d4db6d534"},
|
541
|
+
{file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:dccbe65bd2f7f7ec22c4ff99ed56faa1e9f785482b9bbd7c717e26fd723a1d1e"},
|
542
|
+
{file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:2fb9bd477fdea8684f78791a6de97a953c51831ee2981f8e4f583ff3b9d9687e"},
|
543
|
+
{file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:01732659ba9b5b873fc117534143e4feefecf3b2078b0a6a2e925271bb6f4cfa"},
|
544
|
+
{file = "charset_normalizer-3.4.1-cp37-cp37m-win32.whl", hash = "sha256:7a4f97a081603d2050bfaffdefa5b02a9ec823f8348a572e39032caa8404a487"},
|
545
|
+
{file = "charset_normalizer-3.4.1-cp37-cp37m-win_amd64.whl", hash = "sha256:7b1bef6280950ee6c177b326508f86cad7ad4dff12454483b51d8b7d673a2c5d"},
|
546
|
+
{file = "charset_normalizer-3.4.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:ecddf25bee22fe4fe3737a399d0d177d72bc22be6913acfab364b40bce1ba83c"},
|
547
|
+
{file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8c60ca7339acd497a55b0ea5d506b2a2612afb2826560416f6894e8b5770d4a9"},
|
548
|
+
{file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b7b2d86dd06bfc2ade3312a83a5c364c7ec2e3498f8734282c6c3d4b07b346b8"},
|
549
|
+
{file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dd78cfcda14a1ef52584dbb008f7ac81c1328c0f58184bf9a84c49c605002da6"},
|
550
|
+
{file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e27f48bcd0957c6d4cb9d6fa6b61d192d0b13d5ef563e5f2ae35feafc0d179c"},
|
551
|
+
{file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:01ad647cdd609225c5350561d084b42ddf732f4eeefe6e678765636791e78b9a"},
|
552
|
+
{file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:619a609aa74ae43d90ed2e89bdd784765de0a25ca761b93e196d938b8fd1dbbd"},
|
553
|
+
{file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:89149166622f4db9b4b6a449256291dc87a99ee53151c74cbd82a53c8c2f6ccd"},
|
554
|
+
{file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:7709f51f5f7c853f0fb938bcd3bc59cdfdc5203635ffd18bf354f6967ea0f824"},
|
555
|
+
{file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:345b0426edd4e18138d6528aed636de7a9ed169b4aaf9d61a8c19e39d26838ca"},
|
556
|
+
{file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:0907f11d019260cdc3f94fbdb23ff9125f6b5d1039b76003b5b0ac9d6a6c9d5b"},
|
557
|
+
{file = "charset_normalizer-3.4.1-cp38-cp38-win32.whl", hash = "sha256:ea0d8d539afa5eb2728aa1932a988a9a7af94f18582ffae4bc10b3fbdad0626e"},
|
558
|
+
{file = "charset_normalizer-3.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:329ce159e82018d646c7ac45b01a430369d526569ec08516081727a20e9e4af4"},
|
559
|
+
{file = "charset_normalizer-3.4.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b97e690a2118911e39b4042088092771b4ae3fc3aa86518f84b8cf6888dbdb41"},
|
560
|
+
{file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:78baa6d91634dfb69ec52a463534bc0df05dbd546209b79a3880a34487f4b84f"},
|
561
|
+
{file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1a2bc9f351a75ef49d664206d51f8e5ede9da246602dc2d2726837620ea034b2"},
|
562
|
+
{file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:75832c08354f595c760a804588b9357d34ec00ba1c940c15e31e96d902093770"},
|
563
|
+
{file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0af291f4fe114be0280cdd29d533696a77b5b49cfde5467176ecab32353395c4"},
|
564
|
+
{file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0167ddc8ab6508fe81860a57dd472b2ef4060e8d378f0cc555707126830f2537"},
|
565
|
+
{file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:2a75d49014d118e4198bcee5ee0a6f25856b29b12dbf7cd012791f8a6cc5c496"},
|
566
|
+
{file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:363e2f92b0f0174b2f8238240a1a30142e3db7b957a5dd5689b0e75fb717cc78"},
|
567
|
+
{file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:ab36c8eb7e454e34e60eb55ca5d241a5d18b2c6244f6827a30e451c42410b5f7"},
|
568
|
+
{file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:4c0907b1928a36d5a998d72d64d8eaa7244989f7aaaf947500d3a800c83a3fd6"},
|
569
|
+
{file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:04432ad9479fa40ec0f387795ddad4437a2b50417c69fa275e212933519ff294"},
|
570
|
+
{file = "charset_normalizer-3.4.1-cp39-cp39-win32.whl", hash = "sha256:3bed14e9c89dcb10e8f3a29f9ccac4955aebe93c71ae803af79265c9ca5644c5"},
|
571
|
+
{file = "charset_normalizer-3.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:49402233c892a461407c512a19435d1ce275543138294f7ef013f0b63d5d3765"},
|
572
|
+
{file = "charset_normalizer-3.4.1-py3-none-any.whl", hash = "sha256:d98b1668f06378c6dbefec3b92299716b931cd4e6061f3c875a71ced1780ab85"},
|
573
|
+
{file = "charset_normalizer-3.4.1.tar.gz", hash = "sha256:44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3"},
|
574
|
+
]
|
575
|
+
|
576
|
+
[[package]]
|
577
|
+
name = "cleo"
|
578
|
+
version = "2.1.0"
|
579
|
+
description = "Cleo allows you to create beautiful and testable command-line interfaces."
|
580
|
+
optional = false
|
581
|
+
python-versions = ">=3.7,<4.0"
|
582
|
+
groups = ["main"]
|
583
|
+
files = [
|
584
|
+
{file = "cleo-2.1.0-py3-none-any.whl", hash = "sha256:4a31bd4dd45695a64ee3c4758f583f134267c2bc518d8ae9a29cf237d009b07e"},
|
585
|
+
{file = "cleo-2.1.0.tar.gz", hash = "sha256:0b2c880b5d13660a7ea651001fb4acb527696c01f15c9ee650f377aa543fd523"},
|
505
586
|
]
|
506
587
|
|
588
|
+
[package.dependencies]
|
589
|
+
crashtest = ">=0.4.1,<0.5.0"
|
590
|
+
rapidfuzz = ">=3.0.0,<4.0.0"
|
591
|
+
|
507
592
|
[[package]]
|
508
593
|
name = "click"
|
509
|
-
version = "8.1.
|
594
|
+
version = "8.1.8"
|
510
595
|
description = "Composable command line interface toolkit"
|
511
596
|
optional = false
|
512
597
|
python-versions = ">=3.7"
|
598
|
+
groups = ["main"]
|
513
599
|
files = [
|
514
|
-
{file = "click-8.1.
|
515
|
-
{file = "click-8.1.
|
600
|
+
{file = "click-8.1.8-py3-none-any.whl", hash = "sha256:63c132bbbed01578a06712a2d1f497bb62d9c1c0d329b7903a866228027263b2"},
|
601
|
+
{file = "click-8.1.8.tar.gz", hash = "sha256:ed53c9d8990d83c2a27deae68e4ee337473f6330c040a31d4225c9574d16096a"},
|
516
602
|
]
|
517
603
|
|
518
604
|
[package.dependencies]
|
@@ -524,10 +610,12 @@ version = "0.4.6"
|
|
524
610
|
description = "Cross-platform colored terminal text."
|
525
611
|
optional = false
|
526
612
|
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7"
|
613
|
+
groups = ["main", "test"]
|
527
614
|
files = [
|
528
615
|
{file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"},
|
529
616
|
{file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"},
|
530
617
|
]
|
618
|
+
markers = {main = "sys_platform == \"win32\" or platform_system == \"Windows\" or os_name == \"nt\"", test = "sys_platform == \"win32\""}
|
531
619
|
|
532
620
|
[[package]]
|
533
621
|
name = "coverage"
|
@@ -535,6 +623,7 @@ version = "7.6.1"
|
|
535
623
|
description = "Code coverage measurement for Python"
|
536
624
|
optional = false
|
537
625
|
python-versions = ">=3.8"
|
626
|
+
groups = ["test"]
|
538
627
|
files = [
|
539
628
|
{file = "coverage-7.6.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b06079abebbc0e89e6163b8e8f0e16270124c154dc6e4a47b413dd538859af16"},
|
540
629
|
{file = "coverage-7.6.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cf4b19715bccd7ee27b6b120e7e9dd56037b9c0681dcc1adc9ba9db3d417fa36"},
|
@@ -613,12 +702,25 @@ files = [
|
|
613
702
|
[package.extras]
|
614
703
|
toml = ["tomli"]
|
615
704
|
|
705
|
+
[[package]]
|
706
|
+
name = "crashtest"
|
707
|
+
version = "0.4.1"
|
708
|
+
description = "Manage Python errors with ease"
|
709
|
+
optional = false
|
710
|
+
python-versions = ">=3.7,<4.0"
|
711
|
+
groups = ["main"]
|
712
|
+
files = [
|
713
|
+
{file = "crashtest-0.4.1-py3-none-any.whl", hash = "sha256:8d23eac5fa660409f57472e3851dab7ac18aba459a8d19cbbba86d3d5aecd2a5"},
|
714
|
+
{file = "crashtest-0.4.1.tar.gz", hash = "sha256:80d7b1f316ebfbd429f648076d6275c877ba30ba48979de4191714a75266f0ce"},
|
715
|
+
]
|
716
|
+
|
616
717
|
[[package]]
|
617
718
|
name = "cryptography"
|
618
719
|
version = "43.0.3"
|
619
720
|
description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers."
|
620
721
|
optional = false
|
621
722
|
python-versions = ">=3.7"
|
723
|
+
groups = ["main"]
|
622
724
|
files = [
|
623
725
|
{file = "cryptography-43.0.3-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:bf7a1932ac4176486eab36a19ed4c0492da5d97123f1406cf15e41b05e787d2e"},
|
624
726
|
{file = "cryptography-43.0.3-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:63efa177ff54aec6e1c0aefaa1a241232dcd37413835a9b674b6e3f0ae2bfd3e"},
|
@@ -664,20 +766,33 @@ test-randomorder = ["pytest-randomly"]
|
|
664
766
|
|
665
767
|
[[package]]
|
666
768
|
name = "deprecated"
|
667
|
-
version = "1.2.
|
769
|
+
version = "1.2.15"
|
668
770
|
description = "Python @deprecated decorator to deprecate old python classes, functions or methods."
|
669
771
|
optional = false
|
670
|
-
python-versions = "
|
772
|
+
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7"
|
773
|
+
groups = ["main"]
|
671
774
|
files = [
|
672
|
-
{file = "Deprecated-1.2.
|
673
|
-
{file = "
|
775
|
+
{file = "Deprecated-1.2.15-py2.py3-none-any.whl", hash = "sha256:353bc4a8ac4bfc96800ddab349d89c25dec1079f65fd53acdcc1e0b975b21320"},
|
776
|
+
{file = "deprecated-1.2.15.tar.gz", hash = "sha256:683e561a90de76239796e6b6feac66b99030d2dd3fcf61ef996330f14bbb9b0d"},
|
674
777
|
]
|
675
778
|
|
676
779
|
[package.dependencies]
|
677
780
|
wrapt = ">=1.10,<2"
|
678
781
|
|
679
782
|
[package.extras]
|
680
|
-
dev = ["PyTest", "PyTest-Cov", "bump2version (<1)", "sphinx (<2)", "tox"]
|
783
|
+
dev = ["PyTest", "PyTest-Cov", "bump2version (<1)", "jinja2 (>=3.0.3,<3.1.0)", "setuptools", "sphinx (<2)", "tox"]
|
784
|
+
|
785
|
+
[[package]]
|
786
|
+
name = "distlib"
|
787
|
+
version = "0.3.9"
|
788
|
+
description = "Distribution utilities"
|
789
|
+
optional = false
|
790
|
+
python-versions = "*"
|
791
|
+
groups = ["main"]
|
792
|
+
files = [
|
793
|
+
{file = "distlib-0.3.9-py2.py3-none-any.whl", hash = "sha256:47f8c22fd27c27e25a65601af709b38e4f0a45ea4fc2e710f65755fa8caaaf87"},
|
794
|
+
{file = "distlib-0.3.9.tar.gz", hash = "sha256:a60f20dea646b8a33f3e7772f74dc0b2d0772d2837ee1342a00645c81edf9403"},
|
795
|
+
]
|
681
796
|
|
682
797
|
[[package]]
|
683
798
|
name = "distro"
|
@@ -685,17 +800,81 @@ version = "1.9.0"
|
|
685
800
|
description = "Distro - an OS platform information API"
|
686
801
|
optional = false
|
687
802
|
python-versions = ">=3.6"
|
803
|
+
groups = ["test"]
|
688
804
|
files = [
|
689
805
|
{file = "distro-1.9.0-py3-none-any.whl", hash = "sha256:7bffd925d65168f85027d8da9af6bddab658135b840670a223589bc0c8ef02b2"},
|
690
806
|
{file = "distro-1.9.0.tar.gz", hash = "sha256:2fa77c6fd8940f116ee1d6b94a2f90b13b5ea8d019b98bc8bafdcabcdd9bdbed"},
|
691
807
|
]
|
692
808
|
|
809
|
+
[[package]]
|
810
|
+
name = "dulwich"
|
811
|
+
version = "0.22.7"
|
812
|
+
description = "Python Git Library"
|
813
|
+
optional = false
|
814
|
+
python-versions = ">=3.9"
|
815
|
+
groups = ["main"]
|
816
|
+
files = [
|
817
|
+
{file = "dulwich-0.22.7-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:01e484d44014fef78cdef3b3adc34564808b4677497a57a0950c90a1d6349be3"},
|
818
|
+
{file = "dulwich-0.22.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb258c62d7fb4cfe03b3fba09f702ebb84a924f2f004833435e32c93fe8a7f13"},
|
819
|
+
{file = "dulwich-0.22.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fdbd087e9e99bc809b15864ebc79dbefe869e3038b64c953d7736f6e6b382dc7"},
|
820
|
+
{file = "dulwich-0.22.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6c830d63c691b5f979964a2d6b325930b7a53f14836598352690601cd205f04b"},
|
821
|
+
{file = "dulwich-0.22.7-cp310-cp310-win32.whl", hash = "sha256:925cec97aeefda3f950e45e8d4c247e4ce6f83b6ee96e383c82f9bced626151f"},
|
822
|
+
{file = "dulwich-0.22.7-cp310-cp310-win_amd64.whl", hash = "sha256:f73668ecc29e0a20d20970489fffe2ba466e5486eae2f20104bc38bcbe611f64"},
|
823
|
+
{file = "dulwich-0.22.7-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:df5a179e5d95ac0263b5e0ccd53311eac486091979dcac106c5cc9e0ee4f2aa2"},
|
824
|
+
{file = "dulwich-0.22.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca7ed207956001e6a8a2e3f319cdc37591e53f7eb04aedafa78f96768048c53e"},
|
825
|
+
{file = "dulwich-0.22.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:052715452b729544c611a107b2eef6111e527f041c1b666f8ed36c04e39c36b5"},
|
826
|
+
{file = "dulwich-0.22.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:74b7cf6f0d46ac777be617dad7c1b992380004de74c0e0652bed174686249f34"},
|
827
|
+
{file = "dulwich-0.22.7-cp311-cp311-win32.whl", hash = "sha256:5b9806a75f4b74fa891926b1d830e21f9cead80ed6dd803ed668369b26fb8b5f"},
|
828
|
+
{file = "dulwich-0.22.7-cp311-cp311-win_amd64.whl", hash = "sha256:01544915c4056d0820de8cf126b971f7c180743ff64c4435c89168e44b30df4b"},
|
829
|
+
{file = "dulwich-0.22.7-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2b7a3ac4baa49bd988cc0d0891a93aa26307c01f35caeed8729b7928a1f483af"},
|
830
|
+
{file = "dulwich-0.22.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7d72ce1377eac23bd77aa3541ceb91f2d8bd68687659f8625af8301f0b6b0a63"},
|
831
|
+
{file = "dulwich-0.22.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6bda2eca0847c30a9312a72f219af9e63feb7d2ca89f47fdaa240b0d0cdd6b84"},
|
832
|
+
{file = "dulwich-0.22.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a8886b2c9750ba15193356d9e8608e031cd89a780d0afc53b3101391605b3793"},
|
833
|
+
{file = "dulwich-0.22.7-cp312-cp312-win32.whl", hash = "sha256:1782854c10878b5cb8423e74b0ef4256c3667f7b0266513af028ac28dbab1f2d"},
|
834
|
+
{file = "dulwich-0.22.7-cp312-cp312-win_amd64.whl", hash = "sha256:fe324dc40b93e8be996c9fa9291a439bef835a92a2e4cb5c8cbdb1171c168fd6"},
|
835
|
+
{file = "dulwich-0.22.7-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2220c8b7cac5794e2260a924e81b05baa7836c18ba805d5a6731071a5ff6b860"},
|
836
|
+
{file = "dulwich-0.22.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1cbd5ecbc95e18c745965fc7b2b71209443987a99e499c7bb074234d7c6142e2"},
|
837
|
+
{file = "dulwich-0.22.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9f418779837a3249b7dfc4b3dc7266fa40687e5f0249eedfa7185560ba1ee148"},
|
838
|
+
{file = "dulwich-0.22.7-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9c01db2ef6d5f5b9192c0011624701b0de328868fe0c32601368cd337e77cd1a"},
|
839
|
+
{file = "dulwich-0.22.7-cp313-cp313-win32.whl", hash = "sha256:a64e61fa6ab60db0f897f1c30f32b26b330d3a9dc264f089ee9c44f5900fb657"},
|
840
|
+
{file = "dulwich-0.22.7-cp313-cp313-win_amd64.whl", hash = "sha256:9f5954cd491313743d7bd3623d323b72afceb83d2c2a47921f621bdd9d4c615b"},
|
841
|
+
{file = "dulwich-0.22.7-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6bea11b98e854ff2abec390eeac752586b83921a22091dae65470ccbb003fc1b"},
|
842
|
+
{file = "dulwich-0.22.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdbcf206d4b1e5ba2affc6189948cb292cc647593876b96a0b71db44e79a05a1"},
|
843
|
+
{file = "dulwich-0.22.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa0bb9afa799c0301b2760e9af99083a2b08f655c55037945b6a5e227566adc1"},
|
844
|
+
{file = "dulwich-0.22.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62027dfccee97268eadf0c54df3d72ce30e4402cf5cf06c021e474b9a9eb3536"},
|
845
|
+
{file = "dulwich-0.22.7-cp39-cp39-win32.whl", hash = "sha256:637a9ac27512b8c04e6a29bf92e3f73386cd85dfe8609f523ffbc96e659bde4b"},
|
846
|
+
{file = "dulwich-0.22.7-cp39-cp39-win_amd64.whl", hash = "sha256:986943e27a5c94c0be42fdcc688be1ae1a1349a3dbaa773fa7f9bdada1232b68"},
|
847
|
+
{file = "dulwich-0.22.7-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:b25848041c51d09affafd2708236205cc4483bed8f7f43ecbe63b6a66b447604"},
|
848
|
+
{file = "dulwich-0.22.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:71b20bd6a25658e968e813eb69164332d3a2ab6029b51d3c6af8b64f2471847a"},
|
849
|
+
{file = "dulwich-0.22.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c68ab3540809bedcdd9b99e51c12adf11c2ab26554f74d899d8cf55bfa2639a6"},
|
850
|
+
{file = "dulwich-0.22.7-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:257abd49a768a52cf7f508daf2d30fe73f54fd32b7a674abd43817f66b0ca17b"},
|
851
|
+
{file = "dulwich-0.22.7-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:8dd5df3919c648887e550e836f87b4b83f1429876adce5ead5b5977e333c874d"},
|
852
|
+
{file = "dulwich-0.22.7-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:5ada6a2fd400a4f51adfedd0267bfb08c61e2d9846c18ea653b0eb88a7b851d0"},
|
853
|
+
{file = "dulwich-0.22.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:007d8160b511bb149d31c08548307982f6ce752a46e7088b020517de00c3bd46"},
|
854
|
+
{file = "dulwich-0.22.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40260034a6ecc3141a0d42360e888a73e58b9c0c9363c454cae182957fe602ac"},
|
855
|
+
{file = "dulwich-0.22.7-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:753eec461434f0ccbe0956ec825250e12230e8f1b365c8be1604386d94c2d8d0"},
|
856
|
+
{file = "dulwich-0.22.7-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7649f0c9b4760d72768805155e66579761f282fdca123e351019c85efce811eb"},
|
857
|
+
{file = "dulwich-0.22.7-py3-none-any.whl", hash = "sha256:10c5ee20430714ea6a79dde22c1f77078848930d27021aa810204738bc175e95"},
|
858
|
+
{file = "dulwich-0.22.7.tar.gz", hash = "sha256:d53935832dd182d4c1415042187093efcee988af5cd397fb1f394f5bb27f0707"},
|
859
|
+
]
|
860
|
+
|
861
|
+
[package.dependencies]
|
862
|
+
urllib3 = ">=1.25"
|
863
|
+
|
864
|
+
[package.extras]
|
865
|
+
dev = ["mypy (==1.13.0)", "ruff (==0.8.3)"]
|
866
|
+
fastimport = ["fastimport"]
|
867
|
+
https = ["urllib3 (>=1.24.1)"]
|
868
|
+
paramiko = ["paramiko"]
|
869
|
+
pgp = ["gpg"]
|
870
|
+
|
693
871
|
[[package]]
|
694
872
|
name = "ecdsa"
|
695
873
|
version = "0.19.0"
|
696
874
|
description = "ECDSA cryptographic signature library (pure python)"
|
697
875
|
optional = false
|
698
876
|
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.6"
|
877
|
+
groups = ["main"]
|
699
878
|
files = [
|
700
879
|
{file = "ecdsa-0.19.0-py2.py3-none-any.whl", hash = "sha256:2cea9b88407fdac7bbeca0833b189e4c9c53f2ef1e1eaa29f6224dbc809b707a"},
|
701
880
|
{file = "ecdsa-0.19.0.tar.gz", hash = "sha256:60eaad1199659900dd0af521ed462b793bbdf867432b3948e87416ae4caf6bf8"},
|
@@ -714,6 +893,7 @@ version = "1.6.6"
|
|
714
893
|
description = "🖋 Open the default text editor 🖋"
|
715
894
|
optional = false
|
716
895
|
python-versions = ">=3.8"
|
896
|
+
groups = ["main"]
|
717
897
|
files = [
|
718
898
|
{file = "editor-1.6.6-py3-none-any.whl", hash = "sha256:e818e6913f26c2a81eadef503a2741d7cca7f235d20e217274a009ecd5a74abf"},
|
719
899
|
{file = "editor-1.6.6.tar.gz", hash = "sha256:bb6989e872638cd119db9a4fce284cd8e13c553886a1c044c6b8d8a160c871f8"},
|
@@ -729,6 +909,7 @@ version = "4.8.1"
|
|
729
909
|
description = "A serial utility to communicate & flash code to Espressif chips."
|
730
910
|
optional = false
|
731
911
|
python-versions = ">=3.7"
|
912
|
+
groups = ["main"]
|
732
913
|
files = [
|
733
914
|
{file = "esptool-4.8.1.tar.gz", hash = "sha256:dc4ef26b659e1a8dcb019147c0ea6d94980b34de99fbe09121c7941c8b254531"},
|
734
915
|
]
|
@@ -753,6 +934,8 @@ version = "1.2.2"
|
|
753
934
|
description = "Backport of PEP 654 (exception groups)"
|
754
935
|
optional = false
|
755
936
|
python-versions = ">=3.7"
|
937
|
+
groups = ["test"]
|
938
|
+
markers = "python_version < \"3.11\""
|
756
939
|
files = [
|
757
940
|
{file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"},
|
758
941
|
{file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"},
|
@@ -767,17 +950,51 @@ version = "0.19"
|
|
767
950
|
description = "A python package that provides useful locks"
|
768
951
|
optional = false
|
769
952
|
python-versions = ">=3.6"
|
953
|
+
groups = ["test"]
|
770
954
|
files = [
|
771
955
|
{file = "fasteners-0.19-py3-none-any.whl", hash = "sha256:758819cb5d94cdedf4e836988b74de396ceacb8e2794d21f82d131fd9ee77237"},
|
772
956
|
{file = "fasteners-0.19.tar.gz", hash = "sha256:b4f37c3ac52d8a445af3a66bce57b33b5e90b97c696b7b984f530cf8f0ded09c"},
|
773
957
|
]
|
774
958
|
|
959
|
+
[[package]]
|
960
|
+
name = "fastjsonschema"
|
961
|
+
version = "2.21.1"
|
962
|
+
description = "Fastest Python implementation of JSON schema"
|
963
|
+
optional = false
|
964
|
+
python-versions = "*"
|
965
|
+
groups = ["main"]
|
966
|
+
files = [
|
967
|
+
{file = "fastjsonschema-2.21.1-py3-none-any.whl", hash = "sha256:c9e5b7e908310918cf494a434eeb31384dd84a98b57a30bcb1f535015b554667"},
|
968
|
+
{file = "fastjsonschema-2.21.1.tar.gz", hash = "sha256:794d4f0a58f848961ba16af7b9c85a3e88cd360df008c59aac6fc5ae9323b5d4"},
|
969
|
+
]
|
970
|
+
|
971
|
+
[package.extras]
|
972
|
+
devel = ["colorama", "json-spec", "jsonschema", "pylint", "pytest", "pytest-benchmark", "pytest-cache", "validictory"]
|
973
|
+
|
974
|
+
[[package]]
|
975
|
+
name = "filelock"
|
976
|
+
version = "3.17.0"
|
977
|
+
description = "A platform independent file lock."
|
978
|
+
optional = false
|
979
|
+
python-versions = ">=3.9"
|
980
|
+
groups = ["main"]
|
981
|
+
files = [
|
982
|
+
{file = "filelock-3.17.0-py3-none-any.whl", hash = "sha256:533dc2f7ba78dc2f0f531fc6c4940addf7b70a481e269a5a3b93be94ffbe8338"},
|
983
|
+
{file = "filelock-3.17.0.tar.gz", hash = "sha256:ee4e77401ef576ebb38cd7f13b9b28893194acc20a8e68e18730ba9c0e54660e"},
|
984
|
+
]
|
985
|
+
|
986
|
+
[package.extras]
|
987
|
+
docs = ["furo (>=2024.8.6)", "sphinx (>=8.1.3)", "sphinx-autodoc-typehints (>=3)"]
|
988
|
+
testing = ["covdefaults (>=2.3)", "coverage (>=7.6.10)", "diff-cover (>=9.2.1)", "pytest (>=8.3.4)", "pytest-asyncio (>=0.25.2)", "pytest-cov (>=6)", "pytest-mock (>=3.14)", "pytest-timeout (>=2.3.1)", "virtualenv (>=20.28.1)"]
|
989
|
+
typing = ["typing-extensions (>=4.12.2)"]
|
990
|
+
|
775
991
|
[[package]]
|
776
992
|
name = "humanfriendly"
|
777
993
|
version = "10.0"
|
778
994
|
description = "Human friendly output for text interfaces using Python"
|
779
995
|
optional = false
|
780
996
|
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
|
997
|
+
groups = ["main"]
|
781
998
|
files = [
|
782
999
|
{file = "humanfriendly-10.0-py2.py3-none-any.whl", hash = "sha256:1697e1a8a8f550fd43c2865cd84542fc175a61dcb779b6fee18cf6b6ccba1477"},
|
783
1000
|
{file = "humanfriendly-10.0.tar.gz", hash = "sha256:6b0b831ce8f15f7300721aa49829fc4e83921a9a301cc7f606be6686a2288ddc"},
|
@@ -792,6 +1009,7 @@ version = "3.10"
|
|
792
1009
|
description = "Internationalized Domain Names in Applications (IDNA)"
|
793
1010
|
optional = false
|
794
1011
|
python-versions = ">=3.6"
|
1012
|
+
groups = ["main"]
|
795
1013
|
files = [
|
796
1014
|
{file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"},
|
797
1015
|
{file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"},
|
@@ -800,12 +1018,38 @@ files = [
|
|
800
1018
|
[package.extras]
|
801
1019
|
all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"]
|
802
1020
|
|
1021
|
+
[[package]]
|
1022
|
+
name = "importlib-metadata"
|
1023
|
+
version = "8.6.1"
|
1024
|
+
description = "Read metadata from Python packages"
|
1025
|
+
optional = false
|
1026
|
+
python-versions = ">=3.9"
|
1027
|
+
groups = ["main"]
|
1028
|
+
markers = "python_version < \"3.12\""
|
1029
|
+
files = [
|
1030
|
+
{file = "importlib_metadata-8.6.1-py3-none-any.whl", hash = "sha256:02a89390c1e15fdfdc0d7c6b25cb3e62650d0494005c97d6f148bf5b9787525e"},
|
1031
|
+
{file = "importlib_metadata-8.6.1.tar.gz", hash = "sha256:310b41d755445d74569f993ccfc22838295d9fe005425094fad953d7f15c8580"},
|
1032
|
+
]
|
1033
|
+
|
1034
|
+
[package.dependencies]
|
1035
|
+
zipp = ">=3.20"
|
1036
|
+
|
1037
|
+
[package.extras]
|
1038
|
+
check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)"]
|
1039
|
+
cover = ["pytest-cov"]
|
1040
|
+
doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"]
|
1041
|
+
enabler = ["pytest-enabler (>=2.2)"]
|
1042
|
+
perf = ["ipython"]
|
1043
|
+
test = ["flufl.flake8", "importlib_resources (>=1.3)", "jaraco.test (>=5.4)", "packaging", "pyfakefs", "pytest (>=6,!=8.1.*)", "pytest-perf (>=0.9.2)"]
|
1044
|
+
type = ["pytest-mypy"]
|
1045
|
+
|
803
1046
|
[[package]]
|
804
1047
|
name = "iniconfig"
|
805
1048
|
version = "2.0.0"
|
806
1049
|
description = "brain-dead simple config-ini parsing"
|
807
1050
|
optional = false
|
808
1051
|
python-versions = ">=3.7"
|
1052
|
+
groups = ["test"]
|
809
1053
|
files = [
|
810
1054
|
{file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"},
|
811
1055
|
{file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"},
|
@@ -817,6 +1061,7 @@ version = "3.4.0"
|
|
817
1061
|
description = "Collection of common interactive command line user interfaces, based on Inquirer.js"
|
818
1062
|
optional = false
|
819
1063
|
python-versions = ">=3.8.1"
|
1064
|
+
groups = ["main"]
|
820
1065
|
files = [
|
821
1066
|
{file = "inquirer-3.4.0-py3-none-any.whl", hash = "sha256:bb0ec93c833e4ce7b51b98b1644b0a4d2bb39755c39787f6a504e4fee7a11b60"},
|
822
1067
|
{file = "inquirer-3.4.0.tar.gz", hash = "sha256:8edc99c076386ee2d2204e5e3653c2488244e82cb197b2d498b3c1b5ffb25d0b"},
|
@@ -827,23 +1072,116 @@ blessed = ">=1.19.0"
|
|
827
1072
|
editor = ">=1.6.0"
|
828
1073
|
readchar = ">=4.2.0"
|
829
1074
|
|
1075
|
+
[[package]]
|
1076
|
+
name = "installer"
|
1077
|
+
version = "0.7.0"
|
1078
|
+
description = "A library for installing Python wheels."
|
1079
|
+
optional = false
|
1080
|
+
python-versions = ">=3.7"
|
1081
|
+
groups = ["main"]
|
1082
|
+
files = [
|
1083
|
+
{file = "installer-0.7.0-py3-none-any.whl", hash = "sha256:05d1933f0a5ba7d8d6296bb6d5018e7c94fa473ceb10cf198a92ccea19c27b53"},
|
1084
|
+
{file = "installer-0.7.0.tar.gz", hash = "sha256:a26d3e3116289bb08216e0d0f7d925fcef0b0194eedfa0c944bcaaa106c4b631"},
|
1085
|
+
]
|
1086
|
+
|
830
1087
|
[[package]]
|
831
1088
|
name = "intelhex"
|
832
1089
|
version = "2.3.0"
|
833
1090
|
description = "Python library for Intel HEX files manipulations"
|
834
1091
|
optional = false
|
835
1092
|
python-versions = "*"
|
1093
|
+
groups = ["main"]
|
836
1094
|
files = [
|
837
1095
|
{file = "intelhex-2.3.0-py2.py3-none-any.whl", hash = "sha256:87cc5225657524ec6361354be928adfd56bcf2a3dcc646c40f8f094c39c07db4"},
|
838
1096
|
{file = "intelhex-2.3.0.tar.gz", hash = "sha256:892b7361a719f4945237da8ccf754e9513db32f5628852785aea108dcd250093"},
|
839
1097
|
]
|
840
1098
|
|
1099
|
+
[[package]]
|
1100
|
+
name = "jaraco-classes"
|
1101
|
+
version = "3.4.0"
|
1102
|
+
description = "Utility functions for Python class constructs"
|
1103
|
+
optional = false
|
1104
|
+
python-versions = ">=3.8"
|
1105
|
+
groups = ["main"]
|
1106
|
+
files = [
|
1107
|
+
{file = "jaraco.classes-3.4.0-py3-none-any.whl", hash = "sha256:f662826b6bed8cace05e7ff873ce0f9283b5c924470fe664fff1c2f00f581790"},
|
1108
|
+
{file = "jaraco.classes-3.4.0.tar.gz", hash = "sha256:47a024b51d0239c0dd8c8540c6c7f484be3b8fcf0b2d85c13825780d3b3f3acd"},
|
1109
|
+
]
|
1110
|
+
|
1111
|
+
[package.dependencies]
|
1112
|
+
more-itertools = "*"
|
1113
|
+
|
1114
|
+
[package.extras]
|
1115
|
+
docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"]
|
1116
|
+
testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy", "pytest-ruff (>=0.2.1)"]
|
1117
|
+
|
1118
|
+
[[package]]
|
1119
|
+
name = "jaraco-context"
|
1120
|
+
version = "6.0.1"
|
1121
|
+
description = "Useful decorators and context managers"
|
1122
|
+
optional = false
|
1123
|
+
python-versions = ">=3.8"
|
1124
|
+
groups = ["main"]
|
1125
|
+
files = [
|
1126
|
+
{file = "jaraco.context-6.0.1-py3-none-any.whl", hash = "sha256:f797fc481b490edb305122c9181830a3a5b76d84ef6d1aef2fb9b47ab956f9e4"},
|
1127
|
+
{file = "jaraco_context-6.0.1.tar.gz", hash = "sha256:9bae4ea555cf0b14938dc0aee7c9f32ed303aa20a3b73e7dc80111628792d1b3"},
|
1128
|
+
]
|
1129
|
+
|
1130
|
+
[package.dependencies]
|
1131
|
+
"backports.tarfile" = {version = "*", markers = "python_version < \"3.12\""}
|
1132
|
+
|
1133
|
+
[package.extras]
|
1134
|
+
doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"]
|
1135
|
+
test = ["portend", "pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy", "pytest-ruff (>=0.2.1)"]
|
1136
|
+
|
1137
|
+
[[package]]
|
1138
|
+
name = "jaraco-functools"
|
1139
|
+
version = "4.1.0"
|
1140
|
+
description = "Functools like those found in stdlib"
|
1141
|
+
optional = false
|
1142
|
+
python-versions = ">=3.8"
|
1143
|
+
groups = ["main"]
|
1144
|
+
files = [
|
1145
|
+
{file = "jaraco.functools-4.1.0-py3-none-any.whl", hash = "sha256:ad159f13428bc4acbf5541ad6dec511f91573b90fba04df61dafa2a1231cf649"},
|
1146
|
+
{file = "jaraco_functools-4.1.0.tar.gz", hash = "sha256:70f7e0e2ae076498e212562325e805204fc092d7b4c17e0e86c959e249701a9d"},
|
1147
|
+
]
|
1148
|
+
|
1149
|
+
[package.dependencies]
|
1150
|
+
more-itertools = "*"
|
1151
|
+
|
1152
|
+
[package.extras]
|
1153
|
+
check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)"]
|
1154
|
+
cover = ["pytest-cov"]
|
1155
|
+
doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"]
|
1156
|
+
enabler = ["pytest-enabler (>=2.2)"]
|
1157
|
+
test = ["jaraco.classes", "pytest (>=6,!=8.1.*)"]
|
1158
|
+
type = ["pytest-mypy"]
|
1159
|
+
|
1160
|
+
[[package]]
|
1161
|
+
name = "jeepney"
|
1162
|
+
version = "0.8.0"
|
1163
|
+
description = "Low-level, pure Python DBus protocol wrapper."
|
1164
|
+
optional = false
|
1165
|
+
python-versions = ">=3.7"
|
1166
|
+
groups = ["main"]
|
1167
|
+
markers = "sys_platform == \"linux\""
|
1168
|
+
files = [
|
1169
|
+
{file = "jeepney-0.8.0-py3-none-any.whl", hash = "sha256:c0a454ad016ca575060802ee4d590dd912e35c122fa04e70306de3d076cce755"},
|
1170
|
+
{file = "jeepney-0.8.0.tar.gz", hash = "sha256:5efe48d255973902f6badc3ce55e2aa6c5c3b3bc642059ef3a91247bcfcc5806"},
|
1171
|
+
]
|
1172
|
+
|
1173
|
+
[package.extras]
|
1174
|
+
test = ["async-timeout", "pytest", "pytest-asyncio (>=0.17)", "pytest-trio", "testpath", "trio"]
|
1175
|
+
trio = ["async_generator", "trio"]
|
1176
|
+
|
841
1177
|
[[package]]
|
842
1178
|
name = "jinxed"
|
843
1179
|
version = "1.3.0"
|
844
1180
|
description = "Jinxed Terminal Library"
|
845
1181
|
optional = false
|
846
1182
|
python-versions = "*"
|
1183
|
+
groups = ["main"]
|
1184
|
+
markers = "platform_system == \"Windows\""
|
847
1185
|
files = [
|
848
1186
|
{file = "jinxed-1.3.0-py2.py3-none-any.whl", hash = "sha256:b993189f39dc2d7504d802152671535b06d380b26d78070559551cbf92df4fc5"},
|
849
1187
|
{file = "jinxed-1.3.0.tar.gz", hash = "sha256:1593124b18a41b7a3da3b078471442e51dbad3d77b4d4f2b0c26ab6f7d660dbf"},
|
@@ -858,6 +1196,7 @@ version = "4.0.0"
|
|
858
1196
|
description = "Library with helpers for the jsonlines file format"
|
859
1197
|
optional = false
|
860
1198
|
python-versions = ">=3.8"
|
1199
|
+
groups = ["main"]
|
861
1200
|
files = [
|
862
1201
|
{file = "jsonlines-4.0.0-py3-none-any.whl", hash = "sha256:185b334ff2ca5a91362993f42e83588a360cf95ce4b71a73548502bda52a7c55"},
|
863
1202
|
{file = "jsonlines-4.0.0.tar.gz", hash = "sha256:0c6d2c09117550c089995247f605ae4cf77dd1533041d366351f6f298822ea74"},
|
@@ -872,6 +1211,7 @@ version = "1.6.3"
|
|
872
1211
|
description = "For serializing Python objects to JSON (dicts) and back"
|
873
1212
|
optional = false
|
874
1213
|
python-versions = ">=3.5"
|
1214
|
+
groups = ["main"]
|
875
1215
|
files = [
|
876
1216
|
{file = "jsons-1.6.3-py3-none-any.whl", hash = "sha256:f07f8919316f72a3843c7ca6cc6c900513089f10092626934d1bfe4b5cf15401"},
|
877
1217
|
{file = "jsons-1.6.3.tar.gz", hash = "sha256:cd5815c7c6790ae11c70ad9978e0aa850d0d08a643a5105cc604eac8b29a30d7"},
|
@@ -883,12 +1223,44 @@ typish = ">=1.9.2"
|
|
883
1223
|
[package.extras]
|
884
1224
|
test = ["attrs", "codecov", "coverage", "dataclasses", "pytest", "scons", "tzdata"]
|
885
1225
|
|
1226
|
+
[[package]]
|
1227
|
+
name = "keyring"
|
1228
|
+
version = "25.6.0"
|
1229
|
+
description = "Store and access your passwords safely."
|
1230
|
+
optional = false
|
1231
|
+
python-versions = ">=3.9"
|
1232
|
+
groups = ["main"]
|
1233
|
+
files = [
|
1234
|
+
{file = "keyring-25.6.0-py3-none-any.whl", hash = "sha256:552a3f7af126ece7ed5c89753650eec89c7eaae8617d0aa4d9ad2b75111266bd"},
|
1235
|
+
{file = "keyring-25.6.0.tar.gz", hash = "sha256:0b39998aa941431eb3d9b0d4b2460bc773b9df6fed7621c2dfb291a7e0187a66"},
|
1236
|
+
]
|
1237
|
+
|
1238
|
+
[package.dependencies]
|
1239
|
+
importlib_metadata = {version = ">=4.11.4", markers = "python_version < \"3.12\""}
|
1240
|
+
"jaraco.classes" = "*"
|
1241
|
+
"jaraco.context" = "*"
|
1242
|
+
"jaraco.functools" = "*"
|
1243
|
+
jeepney = {version = ">=0.4.2", markers = "sys_platform == \"linux\""}
|
1244
|
+
pywin32-ctypes = {version = ">=0.2.0", markers = "sys_platform == \"win32\""}
|
1245
|
+
SecretStorage = {version = ">=3.2", markers = "sys_platform == \"linux\""}
|
1246
|
+
|
1247
|
+
[package.extras]
|
1248
|
+
check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)"]
|
1249
|
+
completion = ["shtab (>=1.1.0)"]
|
1250
|
+
cover = ["pytest-cov"]
|
1251
|
+
doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"]
|
1252
|
+
enabler = ["pytest-enabler (>=2.2)"]
|
1253
|
+
test = ["pyfakefs", "pytest (>=6,!=8.1.*)"]
|
1254
|
+
type = ["pygobject-stubs", "pytest-mypy", "shtab", "types-pywin32"]
|
1255
|
+
|
886
1256
|
[[package]]
|
887
1257
|
name = "libusb"
|
888
1258
|
version = "1.0.27"
|
889
1259
|
description = "Python binding for the libusb C library."
|
890
1260
|
optional = false
|
891
1261
|
python-versions = "<4.0.0,>=3.8.1"
|
1262
|
+
groups = ["main"]
|
1263
|
+
markers = "sys_platform == \"win32\""
|
892
1264
|
files = [
|
893
1265
|
{file = "libusb-1.0.27-py3-none-any.whl", hash = "sha256:cf547ebd01044014f2073ffea58a1b4c0172b958e3aed36c1d42e683eed71114"},
|
894
1266
|
{file = "libusb-1.0.27.zip", hash = "sha256:3f8055df52d797d2da70ff3b9983e51ab6299c915afdea26988146ec7f6a4170"},
|
@@ -904,13 +1276,14 @@ test = ["deepdiff (>=6.7.1)", "rich (>=13.7.0)"]
|
|
904
1276
|
|
905
1277
|
[[package]]
|
906
1278
|
name = "loguru"
|
907
|
-
version = "0.7.
|
1279
|
+
version = "0.7.3"
|
908
1280
|
description = "Python logging made (stupidly) simple"
|
909
1281
|
optional = false
|
910
|
-
python-versions = "
|
1282
|
+
python-versions = "<4.0,>=3.5"
|
1283
|
+
groups = ["main"]
|
911
1284
|
files = [
|
912
|
-
{file = "loguru-0.7.
|
913
|
-
{file = "loguru-0.7.
|
1285
|
+
{file = "loguru-0.7.3-py3-none-any.whl", hash = "sha256:31a33c10c8e1e10422bfd431aeb5d351c7cf7fa671e3c4df004162264b28220c"},
|
1286
|
+
{file = "loguru-0.7.3.tar.gz", hash = "sha256:19480589e77d47b8d85b2c827ad95d49bf31b0dcde16593892eb51dd18706eb6"},
|
914
1287
|
]
|
915
1288
|
|
916
1289
|
[package.dependencies]
|
@@ -918,7 +1291,7 @@ colorama = {version = ">=0.3.4", markers = "sys_platform == \"win32\""}
|
|
918
1291
|
win32-setctime = {version = ">=1.0.0", markers = "sys_platform == \"win32\""}
|
919
1292
|
|
920
1293
|
[package.extras]
|
921
|
-
dev = ["Sphinx (==
|
1294
|
+
dev = ["Sphinx (==8.1.3)", "build (==1.2.2)", "colorama (==0.4.5)", "colorama (==0.4.6)", "exceptiongroup (==1.1.3)", "freezegun (==1.1.0)", "freezegun (==1.5.0)", "mypy (==v0.910)", "mypy (==v0.971)", "mypy (==v1.13.0)", "mypy (==v1.4.1)", "myst-parser (==4.0.0)", "pre-commit (==4.0.1)", "pytest (==6.1.2)", "pytest (==8.3.2)", "pytest-cov (==2.12.1)", "pytest-cov (==5.0.0)", "pytest-cov (==6.0.0)", "pytest-mypy-plugins (==1.9.3)", "pytest-mypy-plugins (==3.1.0)", "sphinx-rtd-theme (==3.0.2)", "tox (==3.27.1)", "tox (==4.23.2)", "twine (==6.0.1)"]
|
922
1295
|
|
923
1296
|
[[package]]
|
924
1297
|
name = "markdown-it-py"
|
@@ -926,6 +1299,7 @@ version = "3.0.0"
|
|
926
1299
|
description = "Python port of markdown-it. Markdown parsing, done right!"
|
927
1300
|
optional = false
|
928
1301
|
python-versions = ">=3.8"
|
1302
|
+
groups = ["main"]
|
929
1303
|
files = [
|
930
1304
|
{file = "markdown-it-py-3.0.0.tar.gz", hash = "sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb"},
|
931
1305
|
{file = "markdown_it_py-3.0.0-py3-none-any.whl", hash = "sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1"},
|
@@ -950,6 +1324,7 @@ version = "0.1.2"
|
|
950
1324
|
description = "Markdown URL utilities"
|
951
1325
|
optional = false
|
952
1326
|
python-versions = ">=3.7"
|
1327
|
+
groups = ["main"]
|
953
1328
|
files = [
|
954
1329
|
{file = "mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8"},
|
955
1330
|
{file = "mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba"},
|
@@ -961,6 +1336,7 @@ version = "4.0.3"
|
|
961
1336
|
description = "Rolling backport of unittest.mock for all Pythons"
|
962
1337
|
optional = false
|
963
1338
|
python-versions = ">=3.6"
|
1339
|
+
groups = ["test"]
|
964
1340
|
files = [
|
965
1341
|
{file = "mock-4.0.3-py3-none-any.whl", hash = "sha256:122fcb64ee37cfad5b3f48d7a7d51875d7031aaf3d8be7c42e2bee25044eee62"},
|
966
1342
|
{file = "mock-4.0.3.tar.gz", hash = "sha256:7d3fbbde18228f4ff2f1f119a45cdffa458b4c0dee32eb4d2bb2f82554bac7bc"},
|
@@ -971,29 +1347,117 @@ build = ["blurb", "twine", "wheel"]
|
|
971
1347
|
docs = ["sphinx"]
|
972
1348
|
test = ["pytest (<5.4)", "pytest-cov"]
|
973
1349
|
|
1350
|
+
[[package]]
|
1351
|
+
name = "more-itertools"
|
1352
|
+
version = "10.6.0"
|
1353
|
+
description = "More routines for operating on iterables, beyond itertools"
|
1354
|
+
optional = false
|
1355
|
+
python-versions = ">=3.9"
|
1356
|
+
groups = ["main"]
|
1357
|
+
files = [
|
1358
|
+
{file = "more-itertools-10.6.0.tar.gz", hash = "sha256:2cd7fad1009c31cc9fb6a035108509e6547547a7a738374f10bd49a09eb3ee3b"},
|
1359
|
+
{file = "more_itertools-10.6.0-py3-none-any.whl", hash = "sha256:6eb054cb4b6db1473f6e15fcc676a08e4732548acd47c708f0e179c2c7c01e89"},
|
1360
|
+
]
|
1361
|
+
|
974
1362
|
[[package]]
|
975
1363
|
name = "mpremote"
|
976
|
-
version = "1.24.
|
1364
|
+
version = "1.24.1"
|
977
1365
|
description = "Tool for interacting remotely with MicroPython devices"
|
978
1366
|
optional = false
|
979
1367
|
python-versions = ">=3.4"
|
1368
|
+
groups = ["main"]
|
980
1369
|
files = [
|
981
|
-
{file = "mpremote-1.24.
|
982
|
-
{file = "mpremote-1.24.
|
1370
|
+
{file = "mpremote-1.24.1-py3-none-any.whl", hash = "sha256:d3ae3d0a0ae7713c537be2b6afadd11c7cde5f1750ea1260f6667bb80071b15b"},
|
1371
|
+
{file = "mpremote-1.24.1.tar.gz", hash = "sha256:1a3c16d255748cfe54d4a897908651fc8286233173f7c7b2a0e56ae4b9fa940e"},
|
983
1372
|
]
|
984
1373
|
|
985
1374
|
[package.dependencies]
|
986
1375
|
pyserial = ">=3.3"
|
987
1376
|
|
1377
|
+
[[package]]
|
1378
|
+
name = "msgpack"
|
1379
|
+
version = "1.1.0"
|
1380
|
+
description = "MessagePack serializer"
|
1381
|
+
optional = false
|
1382
|
+
python-versions = ">=3.8"
|
1383
|
+
groups = ["main"]
|
1384
|
+
files = [
|
1385
|
+
{file = "msgpack-1.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7ad442d527a7e358a469faf43fda45aaf4ac3249c8310a82f0ccff9164e5dccd"},
|
1386
|
+
{file = "msgpack-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:74bed8f63f8f14d75eec75cf3d04ad581da6b914001b474a5d3cd3372c8cc27d"},
|
1387
|
+
{file = "msgpack-1.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:914571a2a5b4e7606997e169f64ce53a8b1e06f2cf2c3a7273aa106236d43dd5"},
|
1388
|
+
{file = "msgpack-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c921af52214dcbb75e6bdf6a661b23c3e6417f00c603dd2070bccb5c3ef499f5"},
|
1389
|
+
{file = "msgpack-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d8ce0b22b890be5d252de90d0e0d119f363012027cf256185fc3d474c44b1b9e"},
|
1390
|
+
{file = "msgpack-1.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:73322a6cc57fcee3c0c57c4463d828e9428275fb85a27aa2aa1a92fdc42afd7b"},
|
1391
|
+
{file = "msgpack-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e1f3c3d21f7cf67bcf2da8e494d30a75e4cf60041d98b3f79875afb5b96f3a3f"},
|
1392
|
+
{file = "msgpack-1.1.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:64fc9068d701233effd61b19efb1485587560b66fe57b3e50d29c5d78e7fef68"},
|
1393
|
+
{file = "msgpack-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:42f754515e0f683f9c79210a5d1cad631ec3d06cea5172214d2176a42e67e19b"},
|
1394
|
+
{file = "msgpack-1.1.0-cp310-cp310-win32.whl", hash = "sha256:3df7e6b05571b3814361e8464f9304c42d2196808e0119f55d0d3e62cd5ea044"},
|
1395
|
+
{file = "msgpack-1.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:685ec345eefc757a7c8af44a3032734a739f8c45d1b0ac45efc5d8977aa4720f"},
|
1396
|
+
{file = "msgpack-1.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3d364a55082fb2a7416f6c63ae383fbd903adb5a6cf78c5b96cc6316dc1cedc7"},
|
1397
|
+
{file = "msgpack-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:79ec007767b9b56860e0372085f8504db5d06bd6a327a335449508bbee9648fa"},
|
1398
|
+
{file = "msgpack-1.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6ad622bf7756d5a497d5b6836e7fc3752e2dd6f4c648e24b1803f6048596f701"},
|
1399
|
+
{file = "msgpack-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e59bca908d9ca0de3dc8684f21ebf9a690fe47b6be93236eb40b99af28b6ea6"},
|
1400
|
+
{file = "msgpack-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e1da8f11a3dd397f0a32c76165cf0c4eb95b31013a94f6ecc0b280c05c91b59"},
|
1401
|
+
{file = "msgpack-1.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:452aff037287acb1d70a804ffd022b21fa2bb7c46bee884dbc864cc9024128a0"},
|
1402
|
+
{file = "msgpack-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8da4bf6d54ceed70e8861f833f83ce0814a2b72102e890cbdfe4b34764cdd66e"},
|
1403
|
+
{file = "msgpack-1.1.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:41c991beebf175faf352fb940bf2af9ad1fb77fd25f38d9142053914947cdbf6"},
|
1404
|
+
{file = "msgpack-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a52a1f3a5af7ba1c9ace055b659189f6c669cf3657095b50f9602af3a3ba0fe5"},
|
1405
|
+
{file = "msgpack-1.1.0-cp311-cp311-win32.whl", hash = "sha256:58638690ebd0a06427c5fe1a227bb6b8b9fdc2bd07701bec13c2335c82131a88"},
|
1406
|
+
{file = "msgpack-1.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:fd2906780f25c8ed5d7b323379f6138524ba793428db5d0e9d226d3fa6aa1788"},
|
1407
|
+
{file = "msgpack-1.1.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:d46cf9e3705ea9485687aa4001a76e44748b609d260af21c4ceea7f2212a501d"},
|
1408
|
+
{file = "msgpack-1.1.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5dbad74103df937e1325cc4bfeaf57713be0b4f15e1c2da43ccdd836393e2ea2"},
|
1409
|
+
{file = "msgpack-1.1.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:58dfc47f8b102da61e8949708b3eafc3504509a5728f8b4ddef84bd9e16ad420"},
|
1410
|
+
{file = "msgpack-1.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4676e5be1b472909b2ee6356ff425ebedf5142427842aa06b4dfd5117d1ca8a2"},
|
1411
|
+
{file = "msgpack-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17fb65dd0bec285907f68b15734a993ad3fc94332b5bb21b0435846228de1f39"},
|
1412
|
+
{file = "msgpack-1.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a51abd48c6d8ac89e0cfd4fe177c61481aca2d5e7ba42044fd218cfd8ea9899f"},
|
1413
|
+
{file = "msgpack-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2137773500afa5494a61b1208619e3871f75f27b03bcfca7b3a7023284140247"},
|
1414
|
+
{file = "msgpack-1.1.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:398b713459fea610861c8a7b62a6fec1882759f308ae0795b5413ff6a160cf3c"},
|
1415
|
+
{file = "msgpack-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:06f5fd2f6bb2a7914922d935d3b8bb4a7fff3a9a91cfce6d06c13bc42bec975b"},
|
1416
|
+
{file = "msgpack-1.1.0-cp312-cp312-win32.whl", hash = "sha256:ad33e8400e4ec17ba782f7b9cf868977d867ed784a1f5f2ab46e7ba53b6e1e1b"},
|
1417
|
+
{file = "msgpack-1.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:115a7af8ee9e8cddc10f87636767857e7e3717b7a2e97379dc2054712693e90f"},
|
1418
|
+
{file = "msgpack-1.1.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:071603e2f0771c45ad9bc65719291c568d4edf120b44eb36324dcb02a13bfddf"},
|
1419
|
+
{file = "msgpack-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:0f92a83b84e7c0749e3f12821949d79485971f087604178026085f60ce109330"},
|
1420
|
+
{file = "msgpack-1.1.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4a1964df7b81285d00a84da4e70cb1383f2e665e0f1f2a7027e683956d04b734"},
|
1421
|
+
{file = "msgpack-1.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:59caf6a4ed0d164055ccff8fe31eddc0ebc07cf7326a2aaa0dbf7a4001cd823e"},
|
1422
|
+
{file = "msgpack-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0907e1a7119b337971a689153665764adc34e89175f9a34793307d9def08e6ca"},
|
1423
|
+
{file = "msgpack-1.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:65553c9b6da8166e819a6aa90ad15288599b340f91d18f60b2061f402b9a4915"},
|
1424
|
+
{file = "msgpack-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:7a946a8992941fea80ed4beae6bff74ffd7ee129a90b4dd5cf9c476a30e9708d"},
|
1425
|
+
{file = "msgpack-1.1.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4b51405e36e075193bc051315dbf29168d6141ae2500ba8cd80a522964e31434"},
|
1426
|
+
{file = "msgpack-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b4c01941fd2ff87c2a934ee6055bda4ed353a7846b8d4f341c428109e9fcde8c"},
|
1427
|
+
{file = "msgpack-1.1.0-cp313-cp313-win32.whl", hash = "sha256:7c9a35ce2c2573bada929e0b7b3576de647b0defbd25f5139dcdaba0ae35a4cc"},
|
1428
|
+
{file = "msgpack-1.1.0-cp313-cp313-win_amd64.whl", hash = "sha256:bce7d9e614a04d0883af0b3d4d501171fbfca038f12c77fa838d9f198147a23f"},
|
1429
|
+
{file = "msgpack-1.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c40ffa9a15d74e05ba1fe2681ea33b9caffd886675412612d93ab17b58ea2fec"},
|
1430
|
+
{file = "msgpack-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f1ba6136e650898082d9d5a5217d5906d1e138024f836ff48691784bbe1adf96"},
|
1431
|
+
{file = "msgpack-1.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e0856a2b7e8dcb874be44fea031d22e5b3a19121be92a1e098f46068a11b0870"},
|
1432
|
+
{file = "msgpack-1.1.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:471e27a5787a2e3f974ba023f9e265a8c7cfd373632247deb225617e3100a3c7"},
|
1433
|
+
{file = "msgpack-1.1.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:646afc8102935a388ffc3914b336d22d1c2d6209c773f3eb5dd4d6d3b6f8c1cb"},
|
1434
|
+
{file = "msgpack-1.1.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:13599f8829cfbe0158f6456374e9eea9f44eee08076291771d8ae93eda56607f"},
|
1435
|
+
{file = "msgpack-1.1.0-cp38-cp38-win32.whl", hash = "sha256:8a84efb768fb968381e525eeeb3d92857e4985aacc39f3c47ffd00eb4509315b"},
|
1436
|
+
{file = "msgpack-1.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:879a7b7b0ad82481c52d3c7eb99bf6f0645dbdec5134a4bddbd16f3506947feb"},
|
1437
|
+
{file = "msgpack-1.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:53258eeb7a80fc46f62fd59c876957a2d0e15e6449a9e71842b6d24419d88ca1"},
|
1438
|
+
{file = "msgpack-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7e7b853bbc44fb03fbdba34feb4bd414322180135e2cb5164f20ce1c9795ee48"},
|
1439
|
+
{file = "msgpack-1.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f3e9b4936df53b970513eac1758f3882c88658a220b58dcc1e39606dccaaf01c"},
|
1440
|
+
{file = "msgpack-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:46c34e99110762a76e3911fc923222472c9d681f1094096ac4102c18319e6468"},
|
1441
|
+
{file = "msgpack-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8a706d1e74dd3dea05cb54580d9bd8b2880e9264856ce5068027eed09680aa74"},
|
1442
|
+
{file = "msgpack-1.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:534480ee5690ab3cbed89d4c8971a5c631b69a8c0883ecfea96c19118510c846"},
|
1443
|
+
{file = "msgpack-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8cf9e8c3a2153934a23ac160cc4cba0ec035f6867c8013cc6077a79823370346"},
|
1444
|
+
{file = "msgpack-1.1.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3180065ec2abbe13a4ad37688b61b99d7f9e012a535b930e0e683ad6bc30155b"},
|
1445
|
+
{file = "msgpack-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:c5a91481a3cc573ac8c0d9aace09345d989dc4a0202b7fcb312c88c26d4e71a8"},
|
1446
|
+
{file = "msgpack-1.1.0-cp39-cp39-win32.whl", hash = "sha256:f80bc7d47f76089633763f952e67f8214cb7b3ee6bfa489b3cb6a84cfac114cd"},
|
1447
|
+
{file = "msgpack-1.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:4d1b7ff2d6146e16e8bd665ac726a89c74163ef8cd39fa8c1087d4e52d3a2325"},
|
1448
|
+
{file = "msgpack-1.1.0.tar.gz", hash = "sha256:dd432ccc2c72b914e4cb77afce64aab761c1137cc698be3984eee260bcb2896e"},
|
1449
|
+
]
|
1450
|
+
|
988
1451
|
[[package]]
|
989
1452
|
name = "packaging"
|
990
|
-
version = "
|
1453
|
+
version = "24.2"
|
991
1454
|
description = "Core utilities for Python packages"
|
992
1455
|
optional = false
|
993
|
-
python-versions = ">=3.
|
1456
|
+
python-versions = ">=3.8"
|
1457
|
+
groups = ["main", "test"]
|
994
1458
|
files = [
|
995
|
-
{file = "packaging-
|
996
|
-
{file = "packaging-
|
1459
|
+
{file = "packaging-24.2-py3-none-any.whl", hash = "sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759"},
|
1460
|
+
{file = "packaging-24.2.tar.gz", hash = "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f"},
|
997
1461
|
]
|
998
1462
|
|
999
1463
|
[[package]]
|
@@ -1002,6 +1466,8 @@ version = "1.1.5"
|
|
1002
1466
|
description = "Shares Python package metadata at runtime."
|
1003
1467
|
optional = false
|
1004
1468
|
python-versions = "<4.0.0,>=3.8.1"
|
1469
|
+
groups = ["main"]
|
1470
|
+
markers = "sys_platform == \"win32\""
|
1005
1471
|
files = [
|
1006
1472
|
{file = "pkg-about-1.1.5.zip", hash = "sha256:079bbe889baa1edbf80651a1756a98c417d2f3dfd2d3539798bc83390ada1dfa"},
|
1007
1473
|
{file = "pkg_about-1.1.5-py3-none-any.whl", hash = "sha256:09caff4ae4cbec14b28579199106f295a62472c20c0621e358b9b12395e23ee4"},
|
@@ -1016,12 +1482,28 @@ tomli = {version = ">=2.0.1", markers = "python_version < \"3.11\""}
|
|
1016
1482
|
doc = ["Sphinx (>=7.1.2)", "nbsphinx (>=0.8.10)", "restructuredtext-lint (>=1.4.0)", "sphinx-copybutton (>=0.5.1)", "sphinx-lint (>=0.6.7)", "sphinx-tabs (>=3.4.1)", "sphinx-toolbox (>=3.5.0)", "sphinxcontrib-spelling (>=7.7.0)"]
|
1017
1483
|
test = ["deepdiff (>=6.7.1)", "rich (>=13.7.0)"]
|
1018
1484
|
|
1485
|
+
[[package]]
|
1486
|
+
name = "pkginfo"
|
1487
|
+
version = "1.12.0"
|
1488
|
+
description = "Query metadata from sdists / bdists / installed packages."
|
1489
|
+
optional = false
|
1490
|
+
python-versions = ">=3.8"
|
1491
|
+
groups = ["main"]
|
1492
|
+
files = [
|
1493
|
+
{file = "pkginfo-1.12.0-py3-none-any.whl", hash = "sha256:dcd589c9be4da8973eceffa247733c144812759aa67eaf4bbf97016a02f39088"},
|
1494
|
+
{file = "pkginfo-1.12.0.tar.gz", hash = "sha256:8ad91a0445a036782b9366ef8b8c2c50291f83a553478ba8580c73d3215700cf"},
|
1495
|
+
]
|
1496
|
+
|
1497
|
+
[package.extras]
|
1498
|
+
testing = ["pytest", "pytest-cov", "wheel"]
|
1499
|
+
|
1019
1500
|
[[package]]
|
1020
1501
|
name = "platformdirs"
|
1021
1502
|
version = "4.3.6"
|
1022
1503
|
description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`."
|
1023
1504
|
optional = false
|
1024
1505
|
python-versions = ">=3.8"
|
1506
|
+
groups = ["main"]
|
1025
1507
|
files = [
|
1026
1508
|
{file = "platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb"},
|
1027
1509
|
{file = "platformdirs-4.3.6.tar.gz", hash = "sha256:357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907"},
|
@@ -1038,6 +1520,7 @@ version = "1.5.0"
|
|
1038
1520
|
description = "plugin and hook calling mechanisms for python"
|
1039
1521
|
optional = false
|
1040
1522
|
python-versions = ">=3.8"
|
1523
|
+
groups = ["test"]
|
1041
1524
|
files = [
|
1042
1525
|
{file = "pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669"},
|
1043
1526
|
{file = "pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1"},
|
@@ -1047,12 +1530,60 @@ files = [
|
|
1047
1530
|
dev = ["pre-commit", "tox"]
|
1048
1531
|
testing = ["pytest", "pytest-benchmark"]
|
1049
1532
|
|
1533
|
+
[[package]]
|
1534
|
+
name = "poetry"
|
1535
|
+
version = "2.0.1"
|
1536
|
+
description = "Python dependency management and packaging made easy."
|
1537
|
+
optional = false
|
1538
|
+
python-versions = "<4.0,>=3.9"
|
1539
|
+
groups = ["main"]
|
1540
|
+
files = [
|
1541
|
+
{file = "poetry-2.0.1-py3-none-any.whl", hash = "sha256:eb780a8acbd6eec4bc95e8ba104058c5129ea5a44115fc9b1fc0a2235412734d"},
|
1542
|
+
{file = "poetry-2.0.1.tar.gz", hash = "sha256:a2987c3162f6ded6db890701a6fc657d2cfcc702e9421ef4c345211c8bffc5d5"},
|
1543
|
+
]
|
1544
|
+
|
1545
|
+
[package.dependencies]
|
1546
|
+
build = ">=1.2.1,<2.0.0"
|
1547
|
+
cachecontrol = {version = ">=0.14.0,<0.15.0", extras = ["filecache"]}
|
1548
|
+
cleo = ">=2.1.0,<3.0.0"
|
1549
|
+
dulwich = ">=0.22.6,<0.23.0"
|
1550
|
+
fastjsonschema = ">=2.18.0,<3.0.0"
|
1551
|
+
importlib-metadata = {version = ">=4.4", markers = "python_version < \"3.10\""}
|
1552
|
+
installer = ">=0.7.0,<0.8.0"
|
1553
|
+
keyring = ">=25.1.0,<26.0.0"
|
1554
|
+
packaging = ">=24.0"
|
1555
|
+
pkginfo = ">=1.12,<2.0"
|
1556
|
+
platformdirs = ">=3.0.0,<5"
|
1557
|
+
poetry-core = "2.0.1"
|
1558
|
+
pyproject-hooks = ">=1.0.0,<2.0.0"
|
1559
|
+
requests = ">=2.26,<3.0"
|
1560
|
+
requests-toolbelt = ">=1.0.0,<2.0.0"
|
1561
|
+
shellingham = ">=1.5,<2.0"
|
1562
|
+
tomli = {version = ">=2.0.1,<3.0.0", markers = "python_version < \"3.11\""}
|
1563
|
+
tomlkit = ">=0.11.4,<1.0.0"
|
1564
|
+
trove-classifiers = ">=2022.5.19"
|
1565
|
+
virtualenv = ">=20.26.6,<21.0.0"
|
1566
|
+
xattr = {version = ">=1.0.0,<2.0.0", markers = "sys_platform == \"darwin\""}
|
1567
|
+
|
1568
|
+
[[package]]
|
1569
|
+
name = "poetry-core"
|
1570
|
+
version = "2.0.1"
|
1571
|
+
description = "Poetry PEP 517 Build Backend"
|
1572
|
+
optional = false
|
1573
|
+
python-versions = "<4.0,>=3.9"
|
1574
|
+
groups = ["main"]
|
1575
|
+
files = [
|
1576
|
+
{file = "poetry_core-2.0.1-py3-none-any.whl", hash = "sha256:a3c7009536522cda4eb0fb3805c9dc935b5537f8727dd01efb9c15e51a17552b"},
|
1577
|
+
{file = "poetry_core-2.0.1.tar.gz", hash = "sha256:10177c2772469d9032a49f0d8707af761b1c597cea3b4fb31546e5cd436eb157"},
|
1578
|
+
]
|
1579
|
+
|
1050
1580
|
[[package]]
|
1051
1581
|
name = "psutil"
|
1052
1582
|
version = "5.9.8"
|
1053
1583
|
description = "Cross-platform lib for process and system monitoring in Python."
|
1054
1584
|
optional = false
|
1055
1585
|
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*"
|
1586
|
+
groups = ["main"]
|
1056
1587
|
files = [
|
1057
1588
|
{file = "psutil-5.9.8-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:26bd09967ae00920df88e0352a91cff1a78f8d69b3ecabbfe733610c0af486c8"},
|
1058
1589
|
{file = "psutil-5.9.8-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:05806de88103b25903dff19bb6692bd2e714ccf9e668d050d144012055cbca73"},
|
@@ -1081,6 +1612,7 @@ version = "2.22"
|
|
1081
1612
|
description = "C parser in Python"
|
1082
1613
|
optional = false
|
1083
1614
|
python-versions = ">=3.8"
|
1615
|
+
groups = ["main"]
|
1084
1616
|
files = [
|
1085
1617
|
{file = "pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc"},
|
1086
1618
|
{file = "pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6"},
|
@@ -1092,6 +1624,7 @@ version = "0.31"
|
|
1092
1624
|
description = "Library for analyzing ELF files and DWARF debugging information"
|
1093
1625
|
optional = false
|
1094
1626
|
python-versions = "*"
|
1627
|
+
groups = ["main"]
|
1095
1628
|
files = [
|
1096
1629
|
{file = "pyelftools-0.31-py3-none-any.whl", hash = "sha256:f52de7b3c7e8c64c8abc04a79a1cf37ac5fb0b8a49809827130b858944840607"},
|
1097
1630
|
{file = "pyelftools-0.31.tar.gz", hash = "sha256:c774416b10310156879443b81187d182d8d9ee499660380e645918b50bc88f99"},
|
@@ -1103,6 +1636,7 @@ version = "2.5.0"
|
|
1103
1636
|
description = "Use the full Github API v3"
|
1104
1637
|
optional = false
|
1105
1638
|
python-versions = ">=3.8"
|
1639
|
+
groups = ["main"]
|
1106
1640
|
files = [
|
1107
1641
|
{file = "PyGithub-2.5.0-py3-none-any.whl", hash = "sha256:b0b635999a658ab8e08720bdd3318893ff20e2275f6446fcf35bf3f44f2c0fd2"},
|
1108
1642
|
{file = "pygithub-2.5.0.tar.gz", hash = "sha256:e1613ac508a9be710920d26eb18b1905ebd9926aa49398e88151c1b526aad3cf"},
|
@@ -1122,6 +1656,7 @@ version = "2.18.0"
|
|
1122
1656
|
description = "Pygments is a syntax highlighting package written in Python."
|
1123
1657
|
optional = false
|
1124
1658
|
python-versions = ">=3.8"
|
1659
|
+
groups = ["main"]
|
1125
1660
|
files = [
|
1126
1661
|
{file = "pygments-2.18.0-py3-none-any.whl", hash = "sha256:b8e6aca0523f3ab76fee51799c488e38782ac06eafcf95e7ba832985c8e7b13a"},
|
1127
1662
|
{file = "pygments-2.18.0.tar.gz", hash = "sha256:786ff802f32e91311bff3889f6e9a86e81505fe99f2735bb6d60ae0c5004f199"},
|
@@ -1136,6 +1671,7 @@ version = "2.9.0"
|
|
1136
1671
|
description = "JSON Web Token implementation in Python"
|
1137
1672
|
optional = false
|
1138
1673
|
python-versions = ">=3.8"
|
1674
|
+
groups = ["main"]
|
1139
1675
|
files = [
|
1140
1676
|
{file = "PyJWT-2.9.0-py3-none-any.whl", hash = "sha256:3b02fb0f44517787776cf48f2ae25d8e14f300e6d7545a4315cee571a415e850"},
|
1141
1677
|
{file = "pyjwt-2.9.0.tar.gz", hash = "sha256:7e1e5b56cc735432a7369cbfa0efe50fa113ebecdc04ae6922deba8b84582d0c"},
|
@@ -1156,6 +1692,7 @@ version = "1.5.0"
|
|
1156
1692
|
description = "Python binding to the Networking and Cryptography (NaCl) library"
|
1157
1693
|
optional = false
|
1158
1694
|
python-versions = ">=3.6"
|
1695
|
+
groups = ["main"]
|
1159
1696
|
files = [
|
1160
1697
|
{file = "PyNaCl-1.5.0-cp36-abi3-macosx_10_10_universal2.whl", hash = "sha256:401002a4aaa07c9414132aaed7f6836ff98f59277a234704ff66878c2ee4a0d1"},
|
1161
1698
|
{file = "PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:52cb72a79269189d4e0dc537556f4740f7f0a9ec41c1322598799b0bdad4ef92"},
|
@@ -1176,12 +1713,26 @@ cffi = ">=1.4.1"
|
|
1176
1713
|
docs = ["sphinx (>=1.6.5)", "sphinx-rtd-theme"]
|
1177
1714
|
tests = ["hypothesis (>=3.27.0)", "pytest (>=3.2.1,!=3.3.0)"]
|
1178
1715
|
|
1716
|
+
[[package]]
|
1717
|
+
name = "pyproject-hooks"
|
1718
|
+
version = "1.2.0"
|
1719
|
+
description = "Wrappers to call pyproject.toml-based build backend hooks."
|
1720
|
+
optional = false
|
1721
|
+
python-versions = ">=3.7"
|
1722
|
+
groups = ["main"]
|
1723
|
+
files = [
|
1724
|
+
{file = "pyproject_hooks-1.2.0-py3-none-any.whl", hash = "sha256:9e5c6bfa8dcc30091c74b0cf803c81fdd29d94f01992a7707bc97babb1141913"},
|
1725
|
+
{file = "pyproject_hooks-1.2.0.tar.gz", hash = "sha256:1e859bd5c40fae9448642dd871adf459e5e2084186e8d2c2a79a824c970da1f8"},
|
1726
|
+
]
|
1727
|
+
|
1179
1728
|
[[package]]
|
1180
1729
|
name = "pyreadline3"
|
1181
1730
|
version = "3.5.4"
|
1182
1731
|
description = "A python implementation of GNU readline."
|
1183
1732
|
optional = false
|
1184
1733
|
python-versions = ">=3.8"
|
1734
|
+
groups = ["main"]
|
1735
|
+
markers = "sys_platform == \"win32\""
|
1185
1736
|
files = [
|
1186
1737
|
{file = "pyreadline3-3.5.4-py3-none-any.whl", hash = "sha256:eaf8e6cc3c49bcccf145fc6067ba8643d1df34d604a1ec0eccbf7a18e6d3fae6"},
|
1187
1738
|
{file = "pyreadline3-3.5.4.tar.gz", hash = "sha256:8d57d53039a1c75adba8e50dd3d992b28143480816187ea5efbd5c78e6c885b7"},
|
@@ -1196,6 +1747,7 @@ version = "3.5"
|
|
1196
1747
|
description = "Python Serial Port Extension"
|
1197
1748
|
optional = false
|
1198
1749
|
python-versions = "*"
|
1750
|
+
groups = ["main"]
|
1199
1751
|
files = [
|
1200
1752
|
{file = "pyserial-3.5-py2.py3-none-any.whl", hash = "sha256:c4451db6ba391ca6ca299fb3ec7bae67a5c55dde170964c7a14ceefec02f2cf0"},
|
1201
1753
|
{file = "pyserial-3.5.tar.gz", hash = "sha256:3c77e014170dfffbd816e6ffc205e9842efb10be9f58ec16d3e8675b4925cddb"},
|
@@ -1210,6 +1762,7 @@ version = "7.4.4"
|
|
1210
1762
|
description = "pytest: simple powerful testing with Python"
|
1211
1763
|
optional = false
|
1212
1764
|
python-versions = ">=3.7"
|
1765
|
+
groups = ["test"]
|
1213
1766
|
files = [
|
1214
1767
|
{file = "pytest-7.4.4-py3-none-any.whl", hash = "sha256:b090cdf5ed60bf4c45261be03239c2c1c22df034fbffe691abe93cd80cea01d8"},
|
1215
1768
|
{file = "pytest-7.4.4.tar.gz", hash = "sha256:2cf0005922c6ace4a3e2ec8b4080eb0d9753fdc93107415332f50ce9e7994280"},
|
@@ -1232,6 +1785,7 @@ version = "0.2.0"
|
|
1232
1785
|
description = "pytest plugin to annotate failed tests with a workflow command for GitHub Actions"
|
1233
1786
|
optional = false
|
1234
1787
|
python-versions = ">=3.7"
|
1788
|
+
groups = ["test"]
|
1235
1789
|
files = [
|
1236
1790
|
{file = "pytest-github-actions-annotate-failures-0.2.0.tar.gz", hash = "sha256:844ab626d389496e44f960b42f0a72cce29ae06d363426d17ea9ae1b4bef2288"},
|
1237
1791
|
{file = "pytest_github_actions_annotate_failures-0.2.0-py3-none-any.whl", hash = "sha256:8bcef65fed503faaa0524b59cfeccc8995130972dd7b008d64193cc41b9cde85"},
|
@@ -1246,6 +1800,7 @@ version = "1.5.0"
|
|
1246
1800
|
description = "A pytest plugin to report test results as JSON files"
|
1247
1801
|
optional = false
|
1248
1802
|
python-versions = "*"
|
1803
|
+
groups = ["test"]
|
1249
1804
|
files = [
|
1250
1805
|
{file = "pytest-json-report-1.5.0.tar.gz", hash = "sha256:2dde3c647851a19b5f3700729e8310a6e66efb2077d674f27ddea3d34dc615de"},
|
1251
1806
|
{file = "pytest_json_report-1.5.0-py3-none-any.whl", hash = "sha256:9897b68c910b12a2e48dd849f9a284b2c79a732a8a9cb398452ddd23d3c8c325"},
|
@@ -1261,6 +1816,7 @@ version = "3.1.1"
|
|
1261
1816
|
description = "pytest plugin for test session metadata"
|
1262
1817
|
optional = false
|
1263
1818
|
python-versions = ">=3.8"
|
1819
|
+
groups = ["test"]
|
1264
1820
|
files = [
|
1265
1821
|
{file = "pytest_metadata-3.1.1-py3-none-any.whl", hash = "sha256:c8e0844db684ee1c798cfa38908d20d67d0463ecb6137c72e91f418558dd5f4b"},
|
1266
1822
|
{file = "pytest_metadata-3.1.1.tar.gz", hash = "sha256:d2a29b0355fbc03f168aa96d41ff88b1a3b44a3b02acbe491801c98a048017c8"},
|
@@ -1278,6 +1834,7 @@ version = "3.14.0"
|
|
1278
1834
|
description = "Thin-wrapper around the mock package for easier use with pytest"
|
1279
1835
|
optional = false
|
1280
1836
|
python-versions = ">=3.8"
|
1837
|
+
groups = ["test"]
|
1281
1838
|
files = [
|
1282
1839
|
{file = "pytest-mock-3.14.0.tar.gz", hash = "sha256:2719255a1efeceadbc056d6bf3df3d1c5015530fb40cf347c0f9afac88410bd0"},
|
1283
1840
|
{file = "pytest_mock-3.14.0-py3-none-any.whl", hash = "sha256:0b72c38033392a5f4621342fe11e9219ac11ec9d375f8e2a0c164539e0d70f6f"},
|
@@ -1295,17 +1852,32 @@ version = "1.2.1"
|
|
1295
1852
|
description = "Python USB access module"
|
1296
1853
|
optional = false
|
1297
1854
|
python-versions = ">=3.6.0"
|
1855
|
+
groups = ["main"]
|
1298
1856
|
files = [
|
1299
1857
|
{file = "pyusb-1.2.1-py3-none-any.whl", hash = "sha256:2b4c7cb86dbadf044dfb9d3a4ff69fd217013dbe78a792177a3feb172449ea36"},
|
1300
1858
|
{file = "pyusb-1.2.1.tar.gz", hash = "sha256:a4cc7404a203144754164b8b40994e2849fde1cfff06b08492f12fff9d9de7b9"},
|
1301
1859
|
]
|
1302
1860
|
|
1861
|
+
[[package]]
|
1862
|
+
name = "pywin32-ctypes"
|
1863
|
+
version = "0.2.3"
|
1864
|
+
description = "A (partial) reimplementation of pywin32 using ctypes/cffi"
|
1865
|
+
optional = false
|
1866
|
+
python-versions = ">=3.6"
|
1867
|
+
groups = ["main"]
|
1868
|
+
markers = "sys_platform == \"win32\""
|
1869
|
+
files = [
|
1870
|
+
{file = "pywin32-ctypes-0.2.3.tar.gz", hash = "sha256:d162dc04946d704503b2edc4d55f3dba5c1d539ead017afa00142c38b9885755"},
|
1871
|
+
{file = "pywin32_ctypes-0.2.3-py3-none-any.whl", hash = "sha256:8a1513379d709975552d202d942d9837758905c8d01eb82b8bcc30918929e7b8"},
|
1872
|
+
]
|
1873
|
+
|
1303
1874
|
[[package]]
|
1304
1875
|
name = "pyyaml"
|
1305
1876
|
version = "6.0.2"
|
1306
1877
|
description = "YAML parser and emitter for Python"
|
1307
1878
|
optional = false
|
1308
1879
|
python-versions = ">=3.8"
|
1880
|
+
groups = ["main"]
|
1309
1881
|
files = [
|
1310
1882
|
{file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086"},
|
1311
1883
|
{file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf"},
|
@@ -1362,12 +1934,114 @@ files = [
|
|
1362
1934
|
{file = "pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"},
|
1363
1935
|
]
|
1364
1936
|
|
1937
|
+
[[package]]
|
1938
|
+
name = "rapidfuzz"
|
1939
|
+
version = "3.11.0"
|
1940
|
+
description = "rapid fuzzy string matching"
|
1941
|
+
optional = false
|
1942
|
+
python-versions = ">=3.9"
|
1943
|
+
groups = ["main"]
|
1944
|
+
files = [
|
1945
|
+
{file = "rapidfuzz-3.11.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:eb8a54543d16ab1b69e2c5ed96cabbff16db044a50eddfc028000138ca9ddf33"},
|
1946
|
+
{file = "rapidfuzz-3.11.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:231c8b2efbd7f8d2ecd1ae900363ba168b8870644bb8f2b5aa96e4a7573bde19"},
|
1947
|
+
{file = "rapidfuzz-3.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54e7f442fb9cca81e9df32333fb075ef729052bcabe05b0afc0441f462299114"},
|
1948
|
+
{file = "rapidfuzz-3.11.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:906f1f2a1b91c06599b3dd1be207449c5d4fc7bd1e1fa2f6aef161ea6223f165"},
|
1949
|
+
{file = "rapidfuzz-3.11.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8ed59044aea9eb6c663112170f2399b040d5d7b162828b141f2673e822093fa8"},
|
1950
|
+
{file = "rapidfuzz-3.11.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1cb1965a28b0fa64abdee130c788a0bc0bb3cf9ef7e3a70bf055c086c14a3d7e"},
|
1951
|
+
{file = "rapidfuzz-3.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b488b244931d0291412917e6e46ee9f6a14376625e150056fe7c4426ef28225"},
|
1952
|
+
{file = "rapidfuzz-3.11.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f0ba13557fec9d5ffc0a22826754a7457cc77f1b25145be10b7bb1d143ce84c6"},
|
1953
|
+
{file = "rapidfuzz-3.11.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3871fa7dfcef00bad3c7e8ae8d8fd58089bad6fb21f608d2bf42832267ca9663"},
|
1954
|
+
{file = "rapidfuzz-3.11.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:b2669eafee38c5884a6e7cc9769d25c19428549dcdf57de8541cf9e82822e7db"},
|
1955
|
+
{file = "rapidfuzz-3.11.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:ffa1bb0e26297b0f22881b219ffc82a33a3c84ce6174a9d69406239b14575bd5"},
|
1956
|
+
{file = "rapidfuzz-3.11.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:45b15b8a118856ac9caac6877f70f38b8a0d310475d50bc814698659eabc1cdb"},
|
1957
|
+
{file = "rapidfuzz-3.11.0-cp310-cp310-win32.whl", hash = "sha256:22033677982b9c4c49676f215b794b0404073f8974f98739cb7234e4a9ade9ad"},
|
1958
|
+
{file = "rapidfuzz-3.11.0-cp310-cp310-win_amd64.whl", hash = "sha256:be15496e7244361ff0efcd86e52559bacda9cd975eccf19426a0025f9547c792"},
|
1959
|
+
{file = "rapidfuzz-3.11.0-cp310-cp310-win_arm64.whl", hash = "sha256:714a7ba31ba46b64d30fccfe95f8013ea41a2e6237ba11a805a27cdd3bce2573"},
|
1960
|
+
{file = "rapidfuzz-3.11.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:8724a978f8af7059c5323d523870bf272a097478e1471295511cf58b2642ff83"},
|
1961
|
+
{file = "rapidfuzz-3.11.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8b63cb1f2eb371ef20fb155e95efd96e060147bdd4ab9fc400c97325dfee9fe1"},
|
1962
|
+
{file = "rapidfuzz-3.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82497f244aac10b20710448645f347d862364cc4f7d8b9ba14bd66b5ce4dec18"},
|
1963
|
+
{file = "rapidfuzz-3.11.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:339607394941801e6e3f6c1ecd413a36e18454e7136ed1161388de674f47f9d9"},
|
1964
|
+
{file = "rapidfuzz-3.11.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:84819390a36d6166cec706b9d8f0941f115f700b7faecab5a7e22fc367408bc3"},
|
1965
|
+
{file = "rapidfuzz-3.11.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:eea8d9e20632d68f653455265b18c35f90965e26f30d4d92f831899d6682149b"},
|
1966
|
+
{file = "rapidfuzz-3.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5b659e1e2ea2784a9a397075a7fc395bfa4fe66424042161c4bcaf6e4f637b38"},
|
1967
|
+
{file = "rapidfuzz-3.11.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1315cd2a351144572e31fe3df68340d4b83ddec0af8b2e207cd32930c6acd037"},
|
1968
|
+
{file = "rapidfuzz-3.11.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:a7743cca45b4684c54407e8638f6d07b910d8d811347b9d42ff21262c7c23245"},
|
1969
|
+
{file = "rapidfuzz-3.11.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:5bb636b0150daa6d3331b738f7c0f8b25eadc47f04a40e5c23c4bfb4c4e20ae3"},
|
1970
|
+
{file = "rapidfuzz-3.11.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:42f4dd264ada7a9aa0805ea0da776dc063533917773cf2df5217f14eb4429eae"},
|
1971
|
+
{file = "rapidfuzz-3.11.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:51f24cb39e64256221e6952f22545b8ce21cacd59c0d3e367225da8fc4b868d8"},
|
1972
|
+
{file = "rapidfuzz-3.11.0-cp311-cp311-win32.whl", hash = "sha256:aaf391fb6715866bc14681c76dc0308f46877f7c06f61d62cc993b79fc3c4a2a"},
|
1973
|
+
{file = "rapidfuzz-3.11.0-cp311-cp311-win_amd64.whl", hash = "sha256:ebadd5b8624d8ad503e505a99b8eb26fe3ea9f8e9c2234e805a27b269e585842"},
|
1974
|
+
{file = "rapidfuzz-3.11.0-cp311-cp311-win_arm64.whl", hash = "sha256:d895998fec712544c13cfe833890e0226585cf0391dd3948412441d5d68a2b8c"},
|
1975
|
+
{file = "rapidfuzz-3.11.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:f382fec4a7891d66fb7163c90754454030bb9200a13f82ee7860b6359f3f2fa8"},
|
1976
|
+
{file = "rapidfuzz-3.11.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:dfaefe08af2a928e72344c800dcbaf6508e86a4ed481e28355e8d4b6a6a5230e"},
|
1977
|
+
{file = "rapidfuzz-3.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:92ebb7c12f682b5906ed98429f48a3dd80dd0f9721de30c97a01473d1a346576"},
|
1978
|
+
{file = "rapidfuzz-3.11.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9a1b3ebc62d4bcdfdeba110944a25ab40916d5383c5e57e7c4a8dc0b6c17211a"},
|
1979
|
+
{file = "rapidfuzz-3.11.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9c6d7fea39cb33e71de86397d38bf7ff1a6273e40367f31d05761662ffda49e4"},
|
1980
|
+
{file = "rapidfuzz-3.11.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:99aebef8268f2bc0b445b5640fd3312e080bd17efd3fbae4486b20ac00466308"},
|
1981
|
+
{file = "rapidfuzz-3.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4469307f464ae3089acf3210b8fc279110d26d10f79e576f385a98f4429f7d97"},
|
1982
|
+
{file = "rapidfuzz-3.11.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:eb97c53112b593f89a90b4f6218635a9d1eea1d7f9521a3b7d24864228bbc0aa"},
|
1983
|
+
{file = "rapidfuzz-3.11.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:ef8937dae823b889c0273dfa0f0f6c46a3658ac0d851349c464d1b00e7ff4252"},
|
1984
|
+
{file = "rapidfuzz-3.11.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:d95f9e9f3777b96241d8a00d6377cc9c716981d828b5091082d0fe3a2924b43e"},
|
1985
|
+
{file = "rapidfuzz-3.11.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:b1d67d67f89e4e013a5295e7523bc34a7a96f2dba5dd812c7c8cb65d113cbf28"},
|
1986
|
+
{file = "rapidfuzz-3.11.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d994cf27e2f874069884d9bddf0864f9b90ad201fcc9cb2f5b82bacc17c8d5f2"},
|
1987
|
+
{file = "rapidfuzz-3.11.0-cp312-cp312-win32.whl", hash = "sha256:ba26d87fe7fcb56c4a53b549a9e0e9143f6b0df56d35fe6ad800c902447acd5b"},
|
1988
|
+
{file = "rapidfuzz-3.11.0-cp312-cp312-win_amd64.whl", hash = "sha256:b1f7efdd7b7adb32102c2fa481ad6f11923e2deb191f651274be559d56fc913b"},
|
1989
|
+
{file = "rapidfuzz-3.11.0-cp312-cp312-win_arm64.whl", hash = "sha256:ed78c8e94f57b44292c1a0350f580e18d3a3c5c0800e253f1583580c1b417ad2"},
|
1990
|
+
{file = "rapidfuzz-3.11.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e60814edd0c9b511b5f377d48b9782b88cfe8be07a98f99973669299c8bb318a"},
|
1991
|
+
{file = "rapidfuzz-3.11.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3f28952da055dbfe75828891cd3c9abf0984edc8640573c18b48c14c68ca5e06"},
|
1992
|
+
{file = "rapidfuzz-3.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e8f93bc736020351a6f8e71666e1f486bb8bd5ce8112c443a30c77bfde0eb68"},
|
1993
|
+
{file = "rapidfuzz-3.11.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:76a4a11ba8f678c9e5876a7d465ab86def047a4fcc043617578368755d63a1bc"},
|
1994
|
+
{file = "rapidfuzz-3.11.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc0e0d41ad8a056a9886bac91ff9d9978e54a244deb61c2972cc76b66752de9c"},
|
1995
|
+
{file = "rapidfuzz-3.11.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5e8ea35f2419c7d56b3e75fbde2698766daedb374f20eea28ac9b1f668ef4f74"},
|
1996
|
+
{file = "rapidfuzz-3.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cd340bbd025302276b5aa221dccfe43040c7babfc32f107c36ad783f2ffd8775"},
|
1997
|
+
{file = "rapidfuzz-3.11.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:494eef2c68305ab75139034ea25328a04a548d297712d9cf887bf27c158c388b"},
|
1998
|
+
{file = "rapidfuzz-3.11.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:5a167344c1d6db06915fb0225592afdc24d8bafaaf02de07d4788ddd37f4bc2f"},
|
1999
|
+
{file = "rapidfuzz-3.11.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:8c7af25bda96ac799378ac8aba54a8ece732835c7b74cfc201b688a87ed11152"},
|
2000
|
+
{file = "rapidfuzz-3.11.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:d2a0f7e17f33e7890257367a1662b05fecaf56625f7dbb6446227aaa2b86448b"},
|
2001
|
+
{file = "rapidfuzz-3.11.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4d0d26c7172bdb64f86ee0765c5b26ea1dc45c52389175888ec073b9b28f4305"},
|
2002
|
+
{file = "rapidfuzz-3.11.0-cp313-cp313-win32.whl", hash = "sha256:6ad02bab756751c90fa27f3069d7b12146613061341459abf55f8190d899649f"},
|
2003
|
+
{file = "rapidfuzz-3.11.0-cp313-cp313-win_amd64.whl", hash = "sha256:b1472986fd9c5d318399a01a0881f4a0bf4950264131bb8e2deba9df6d8c362b"},
|
2004
|
+
{file = "rapidfuzz-3.11.0-cp313-cp313-win_arm64.whl", hash = "sha256:c408f09649cbff8da76f8d3ad878b64ba7f7abdad1471efb293d2c075e80c822"},
|
2005
|
+
{file = "rapidfuzz-3.11.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1bac4873f6186f5233b0084b266bfb459e997f4c21fc9f029918f44a9eccd304"},
|
2006
|
+
{file = "rapidfuzz-3.11.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4f9f12c2d0aa52b86206d2059916153876a9b1cf9dfb3cf2f344913167f1c3d4"},
|
2007
|
+
{file = "rapidfuzz-3.11.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8dd501de6f7a8f83557d20613b58734d1cb5f0be78d794cde64fe43cfc63f5f2"},
|
2008
|
+
{file = "rapidfuzz-3.11.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4416ca69af933d4a8ad30910149d3db6d084781d5c5fdedb713205389f535385"},
|
2009
|
+
{file = "rapidfuzz-3.11.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f0821b9bdf18c5b7d51722b906b233a39b17f602501a966cfbd9b285f8ab83cd"},
|
2010
|
+
{file = "rapidfuzz-3.11.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d0edecc3f90c2653298d380f6ea73b536944b767520c2179ec5d40b9145e47aa"},
|
2011
|
+
{file = "rapidfuzz-3.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4513dd01cee11e354c31b75f652d4d466c9440b6859f84e600bdebfccb17735a"},
|
2012
|
+
{file = "rapidfuzz-3.11.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d9727b85511b912571a76ce53c7640ba2c44c364e71cef6d7359b5412739c570"},
|
2013
|
+
{file = "rapidfuzz-3.11.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:ab9eab33ee3213f7751dc07a1a61b8d9a3d748ca4458fffddd9defa6f0493c16"},
|
2014
|
+
{file = "rapidfuzz-3.11.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:6b01c1ddbb054283797967ddc5433d5c108d680e8fa2684cf368be05407b07e4"},
|
2015
|
+
{file = "rapidfuzz-3.11.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:3857e335f97058c4b46fa39ca831290b70de554a5c5af0323d2f163b19c5f2a6"},
|
2016
|
+
{file = "rapidfuzz-3.11.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:d98a46cf07c0c875d27e8a7ed50f304d83063e49b9ab63f21c19c154b4c0d08d"},
|
2017
|
+
{file = "rapidfuzz-3.11.0-cp39-cp39-win32.whl", hash = "sha256:c36539ed2c0173b053dafb221458812e178cfa3224ade0960599bec194637048"},
|
2018
|
+
{file = "rapidfuzz-3.11.0-cp39-cp39-win_amd64.whl", hash = "sha256:ec8d7d8567e14af34a7911c98f5ac74a3d4a743cd848643341fc92b12b3784ff"},
|
2019
|
+
{file = "rapidfuzz-3.11.0-cp39-cp39-win_arm64.whl", hash = "sha256:62171b270ecc4071be1c1f99960317db261d4c8c83c169e7f8ad119211fe7397"},
|
2020
|
+
{file = "rapidfuzz-3.11.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:f06e3c4c0a8badfc4910b9fd15beb1ad8f3b8fafa8ea82c023e5e607b66a78e4"},
|
2021
|
+
{file = "rapidfuzz-3.11.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:fe7aaf5a54821d340d21412f7f6e6272a9b17a0cbafc1d68f77f2fc11009dcd5"},
|
2022
|
+
{file = "rapidfuzz-3.11.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:25398d9ac7294e99876a3027ffc52c6bebeb2d702b1895af6ae9c541ee676702"},
|
2023
|
+
{file = "rapidfuzz-3.11.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9a52eea839e4bdc72c5e60a444d26004da00bb5bc6301e99b3dde18212e41465"},
|
2024
|
+
{file = "rapidfuzz-3.11.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2c87319b0ab9d269ab84f6453601fd49b35d9e4a601bbaef43743f26fabf496c"},
|
2025
|
+
{file = "rapidfuzz-3.11.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:3048c6ed29d693fba7d2a7caf165f5e0bb2b9743a0989012a98a47b975355cca"},
|
2026
|
+
{file = "rapidfuzz-3.11.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:b04f29735bad9f06bb731c214f27253bd8bedb248ef9b8a1b4c5bde65b838454"},
|
2027
|
+
{file = "rapidfuzz-3.11.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:7864e80a0d4e23eb6194254a81ee1216abdc53f9dc85b7f4d56668eced022eb8"},
|
2028
|
+
{file = "rapidfuzz-3.11.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3794df87313dfb56fafd679b962e0613c88a293fd9bd5dd5c2793d66bf06a101"},
|
2029
|
+
{file = "rapidfuzz-3.11.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d71da0012face6f45432a11bc59af19e62fac5a41f8ce489e80c0add8153c3d1"},
|
2030
|
+
{file = "rapidfuzz-3.11.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ff38378346b7018f42cbc1f6d1d3778e36e16d8595f79a312b31e7c25c50bd08"},
|
2031
|
+
{file = "rapidfuzz-3.11.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:6668321f90aa02a5a789d4e16058f2e4f2692c5230252425c3532a8a62bc3424"},
|
2032
|
+
{file = "rapidfuzz-3.11.0.tar.gz", hash = "sha256:a53ca4d3f52f00b393fab9b5913c5bafb9afc27d030c8a1db1283da6917a860f"},
|
2033
|
+
]
|
2034
|
+
|
2035
|
+
[package.extras]
|
2036
|
+
all = ["numpy"]
|
2037
|
+
|
1365
2038
|
[[package]]
|
1366
2039
|
name = "readchar"
|
1367
2040
|
version = "4.2.1"
|
1368
2041
|
description = "Library to easily read single chars and key strokes"
|
1369
2042
|
optional = false
|
1370
2043
|
python-versions = ">=3.8"
|
2044
|
+
groups = ["main"]
|
1371
2045
|
files = [
|
1372
2046
|
{file = "readchar-4.2.1-py3-none-any.whl", hash = "sha256:a769305cd3994bb5fa2764aa4073452dc105a4ec39068ffe6efd3c20c60acc77"},
|
1373
2047
|
{file = "readchar-4.2.1.tar.gz", hash = "sha256:91ce3faf07688de14d800592951e5575e9c7a3213738ed01d394dcc949b79adb"},
|
@@ -1379,6 +2053,7 @@ version = "1.7.0"
|
|
1379
2053
|
description = "Pure-Python Reed Solomon encoder/decoder"
|
1380
2054
|
optional = false
|
1381
2055
|
python-versions = "*"
|
2056
|
+
groups = ["main"]
|
1382
2057
|
files = [
|
1383
2058
|
{file = "reedsolo-1.7.0-py3-none-any.whl", hash = "sha256:2b6a3e402a1ee3e1eea3f932f81e6c0b7bbc615588074dca1dbbcdeb055002bd"},
|
1384
2059
|
{file = "reedsolo-1.7.0.tar.gz", hash = "sha256:c1359f02742751afe0f1c0de9f0772cc113835aa2855d2db420ea24393c87732"},
|
@@ -1390,6 +2065,7 @@ version = "2.32.3"
|
|
1390
2065
|
description = "Python HTTP for Humans."
|
1391
2066
|
optional = false
|
1392
2067
|
python-versions = ">=3.8"
|
2068
|
+
groups = ["main"]
|
1393
2069
|
files = [
|
1394
2070
|
{file = "requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6"},
|
1395
2071
|
{file = "requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760"},
|
@@ -1405,12 +2081,28 @@ urllib3 = ">=1.21.1,<3"
|
|
1405
2081
|
socks = ["PySocks (>=1.5.6,!=1.5.7)"]
|
1406
2082
|
use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"]
|
1407
2083
|
|
2084
|
+
[[package]]
|
2085
|
+
name = "requests-toolbelt"
|
2086
|
+
version = "1.0.0"
|
2087
|
+
description = "A utility belt for advanced users of python-requests"
|
2088
|
+
optional = false
|
2089
|
+
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
|
2090
|
+
groups = ["main"]
|
2091
|
+
files = [
|
2092
|
+
{file = "requests-toolbelt-1.0.0.tar.gz", hash = "sha256:7681a0a3d047012b5bdc0ee37d7f8f07ebe76ab08caeccfc3921ce23c88d5bc6"},
|
2093
|
+
{file = "requests_toolbelt-1.0.0-py2.py3-none-any.whl", hash = "sha256:cccfdd665f0a24fcf4726e690f65639d272bb0637b9b92dfd91a5568ccf6bd06"},
|
2094
|
+
]
|
2095
|
+
|
2096
|
+
[package.dependencies]
|
2097
|
+
requests = ">=2.0.1,<3.0.0"
|
2098
|
+
|
1408
2099
|
[[package]]
|
1409
2100
|
name = "rich"
|
1410
2101
|
version = "13.9.4"
|
1411
2102
|
description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal"
|
1412
2103
|
optional = false
|
1413
2104
|
python-versions = ">=3.8.0"
|
2105
|
+
groups = ["main"]
|
1414
2106
|
files = [
|
1415
2107
|
{file = "rich-13.9.4-py3-none-any.whl", hash = "sha256:6049d5e6ec054bf2779ab3358186963bac2ea89175919d699e378b99738c2a90"},
|
1416
2108
|
{file = "rich-13.9.4.tar.gz", hash = "sha256:439594978a49a09530cff7ebc4b5c7103ef57baf48d5ea3184f21d9a2befa098"},
|
@@ -1426,23 +2118,24 @@ jupyter = ["ipywidgets (>=7.5.1,<9)"]
|
|
1426
2118
|
|
1427
2119
|
[[package]]
|
1428
2120
|
name = "rich-click"
|
1429
|
-
version = "1.8.
|
2121
|
+
version = "1.8.5"
|
1430
2122
|
description = "Format click help output nicely with rich"
|
1431
2123
|
optional = false
|
1432
2124
|
python-versions = ">=3.7"
|
2125
|
+
groups = ["main"]
|
1433
2126
|
files = [
|
1434
|
-
{file = "rich_click-1.8.
|
1435
|
-
{file = "rich_click-1.8.
|
2127
|
+
{file = "rich_click-1.8.5-py3-none-any.whl", hash = "sha256:0fab7bb5b66c15da17c210b4104277cd45f3653a7322e0098820a169880baee0"},
|
2128
|
+
{file = "rich_click-1.8.5.tar.gz", hash = "sha256:a3eebe81da1c9da3c32f3810017c79bd687ff1b3fa35bfc9d8a3338797f1d1a1"},
|
1436
2129
|
]
|
1437
2130
|
|
1438
2131
|
[package.dependencies]
|
1439
2132
|
click = ">=7"
|
1440
2133
|
rich = ">=10.7"
|
1441
|
-
|
2134
|
+
typing_extensions = ">=4"
|
1442
2135
|
|
1443
2136
|
[package.extras]
|
1444
2137
|
dev = ["mypy", "packaging", "pre-commit", "pytest", "pytest-cov", "rich-codex", "ruff", "types-setuptools"]
|
1445
|
-
docs = ["
|
2138
|
+
docs = ["markdown_include", "mkdocs", "mkdocs-glightbox", "mkdocs-material-extensions", "mkdocs-material[imaging] (>=9.5.18,<9.6.0)", "mkdocs-rss-plugin", "mkdocstrings[python]", "rich-codex"]
|
1446
2139
|
|
1447
2140
|
[[package]]
|
1448
2141
|
name = "runs"
|
@@ -1450,6 +2143,7 @@ version = "1.2.2"
|
|
1450
2143
|
description = "🏃 Run a block of text as a subprocess 🏃"
|
1451
2144
|
optional = false
|
1452
2145
|
python-versions = ">=3.8"
|
2146
|
+
groups = ["main"]
|
1453
2147
|
files = [
|
1454
2148
|
{file = "runs-1.2.2-py3-none-any.whl", hash = "sha256:0980dcbc25aba1505f307ac4f0e9e92cbd0be2a15a1e983ee86c24c87b839dfd"},
|
1455
2149
|
{file = "runs-1.2.2.tar.gz", hash = "sha256:9dc1815e2895cfb3a48317b173b9f1eac9ba5549b36a847b5cc60c3bf82ecef1"},
|
@@ -1458,12 +2152,31 @@ files = [
|
|
1458
2152
|
[package.dependencies]
|
1459
2153
|
xmod = "*"
|
1460
2154
|
|
2155
|
+
[[package]]
|
2156
|
+
name = "secretstorage"
|
2157
|
+
version = "3.3.3"
|
2158
|
+
description = "Python bindings to FreeDesktop.org Secret Service API"
|
2159
|
+
optional = false
|
2160
|
+
python-versions = ">=3.6"
|
2161
|
+
groups = ["main"]
|
2162
|
+
markers = "sys_platform == \"linux\""
|
2163
|
+
files = [
|
2164
|
+
{file = "SecretStorage-3.3.3-py3-none-any.whl", hash = "sha256:f356e6628222568e3af06f2eba8df495efa13b3b63081dafd4f7d9a7b7bc9f99"},
|
2165
|
+
{file = "SecretStorage-3.3.3.tar.gz", hash = "sha256:2403533ef369eca6d2ba81718576c5e0f564d5cca1b58f73a8b23e7d4eeebd77"},
|
2166
|
+
]
|
2167
|
+
|
2168
|
+
[package.dependencies]
|
2169
|
+
cryptography = ">=2.0"
|
2170
|
+
jeepney = ">=0.6"
|
2171
|
+
|
1461
2172
|
[[package]]
|
1462
2173
|
name = "setuptools"
|
1463
2174
|
version = "75.3.0"
|
1464
2175
|
description = "Easily download, build, install, upgrade, and uninstall Python packages"
|
1465
2176
|
optional = false
|
1466
2177
|
python-versions = ">=3.8"
|
2178
|
+
groups = ["main"]
|
2179
|
+
markers = "sys_platform == \"win32\""
|
1467
2180
|
files = [
|
1468
2181
|
{file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"},
|
1469
2182
|
{file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"},
|
@@ -1478,15 +2191,28 @@ enabler = ["pytest-enabler (>=2.2)"]
|
|
1478
2191
|
test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"]
|
1479
2192
|
type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"]
|
1480
2193
|
|
2194
|
+
[[package]]
|
2195
|
+
name = "shellingham"
|
2196
|
+
version = "1.5.4"
|
2197
|
+
description = "Tool to Detect Surrounding Shell"
|
2198
|
+
optional = false
|
2199
|
+
python-versions = ">=3.7"
|
2200
|
+
groups = ["main"]
|
2201
|
+
files = [
|
2202
|
+
{file = "shellingham-1.5.4-py2.py3-none-any.whl", hash = "sha256:7ecfff8f2fd72616f7481040475a65b2bf8af90a56c89140852d1120324e8686"},
|
2203
|
+
{file = "shellingham-1.5.4.tar.gz", hash = "sha256:8dbca0739d487e5bd35ab3ca4b36e11c4078f3a234bfce294b0a0291363404de"},
|
2204
|
+
]
|
2205
|
+
|
1481
2206
|
[[package]]
|
1482
2207
|
name = "six"
|
1483
|
-
version = "1.
|
2208
|
+
version = "1.17.0"
|
1484
2209
|
description = "Python 2 and 3 compatibility utilities"
|
1485
2210
|
optional = false
|
1486
|
-
python-versions = "
|
2211
|
+
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7"
|
2212
|
+
groups = ["main"]
|
1487
2213
|
files = [
|
1488
|
-
{file = "six-1.
|
1489
|
-
{file = "six-1.
|
2214
|
+
{file = "six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274"},
|
2215
|
+
{file = "six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81"},
|
1490
2216
|
]
|
1491
2217
|
|
1492
2218
|
[[package]]
|
@@ -1495,6 +2221,7 @@ version = "2.6"
|
|
1495
2221
|
description = "A modern CSS selector implementation for Beautiful Soup."
|
1496
2222
|
optional = false
|
1497
2223
|
python-versions = ">=3.8"
|
2224
|
+
groups = ["main"]
|
1498
2225
|
files = [
|
1499
2226
|
{file = "soupsieve-2.6-py3-none-any.whl", hash = "sha256:e72c4ff06e4fb6e4b5a9f0f55fe6e81514581fca1515028625d0f299c602ccc9"},
|
1500
2227
|
{file = "soupsieve-2.6.tar.gz", hash = "sha256:e2e68417777af359ec65daac1057404a3c8a5455bb8abc36f1a9866ab1a51abb"},
|
@@ -1506,6 +2233,7 @@ version = "8.2.3"
|
|
1506
2233
|
description = "Retry code until it succeeds"
|
1507
2234
|
optional = false
|
1508
2235
|
python-versions = ">=3.7"
|
2236
|
+
groups = ["main"]
|
1509
2237
|
files = [
|
1510
2238
|
{file = "tenacity-8.2.3-py3-none-any.whl", hash = "sha256:ce510e327a630c9e1beaf17d42e6ffacc88185044ad85cf74c0a8887c6a0f88c"},
|
1511
2239
|
{file = "tenacity-8.2.3.tar.gz", hash = "sha256:5398ef0d78e63f40007c1fb4c0bff96e1911394d2fa8d194f77619c05ff6cc8a"},
|
@@ -1516,13 +2244,69 @@ doc = ["reno", "sphinx", "tornado (>=4.5)"]
|
|
1516
2244
|
|
1517
2245
|
[[package]]
|
1518
2246
|
name = "tomli"
|
1519
|
-
version = "2.
|
2247
|
+
version = "2.2.1"
|
1520
2248
|
description = "A lil' TOML parser"
|
1521
2249
|
optional = false
|
1522
2250
|
python-versions = ">=3.8"
|
2251
|
+
groups = ["main", "test"]
|
2252
|
+
markers = "python_version < \"3.11\""
|
2253
|
+
files = [
|
2254
|
+
{file = "tomli-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:678e4fa69e4575eb77d103de3df8a895e1591b48e740211bd1067378c69e8249"},
|
2255
|
+
{file = "tomli-2.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:023aa114dd824ade0100497eb2318602af309e5a55595f76b626d6d9f3b7b0a6"},
|
2256
|
+
{file = "tomli-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ece47d672db52ac607a3d9599a9d48dcb2f2f735c6c2d1f34130085bb12b112a"},
|
2257
|
+
{file = "tomli-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6972ca9c9cc9f0acaa56a8ca1ff51e7af152a9f87fb64623e31d5c83700080ee"},
|
2258
|
+
{file = "tomli-2.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c954d2250168d28797dd4e3ac5cf812a406cd5a92674ee4c8f123c889786aa8e"},
|
2259
|
+
{file = "tomli-2.2.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8dd28b3e155b80f4d54beb40a441d366adcfe740969820caf156c019fb5c7ec4"},
|
2260
|
+
{file = "tomli-2.2.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:e59e304978767a54663af13c07b3d1af22ddee3bb2fb0618ca1593e4f593a106"},
|
2261
|
+
{file = "tomli-2.2.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:33580bccab0338d00994d7f16f4c4ec25b776af3ffaac1ed74e0b3fc95e885a8"},
|
2262
|
+
{file = "tomli-2.2.1-cp311-cp311-win32.whl", hash = "sha256:465af0e0875402f1d226519c9904f37254b3045fc5084697cefb9bdde1ff99ff"},
|
2263
|
+
{file = "tomli-2.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:2d0f2fdd22b02c6d81637a3c95f8cd77f995846af7414c5c4b8d0545afa1bc4b"},
|
2264
|
+
{file = "tomli-2.2.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:4a8f6e44de52d5e6c657c9fe83b562f5f4256d8ebbfe4ff922c495620a7f6cea"},
|
2265
|
+
{file = "tomli-2.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8d57ca8095a641b8237d5b079147646153d22552f1c637fd3ba7f4b0b29167a8"},
|
2266
|
+
{file = "tomli-2.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4e340144ad7ae1533cb897d406382b4b6fede8890a03738ff1683af800d54192"},
|
2267
|
+
{file = "tomli-2.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:db2b95f9de79181805df90bedc5a5ab4c165e6ec3fe99f970d0e302f384ad222"},
|
2268
|
+
{file = "tomli-2.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:40741994320b232529c802f8bc86da4e1aa9f413db394617b9a256ae0f9a7f77"},
|
2269
|
+
{file = "tomli-2.2.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:400e720fe168c0f8521520190686ef8ef033fb19fc493da09779e592861b78c6"},
|
2270
|
+
{file = "tomli-2.2.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:02abe224de6ae62c19f090f68da4e27b10af2b93213d36cf44e6e1c5abd19fdd"},
|
2271
|
+
{file = "tomli-2.2.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:b82ebccc8c8a36f2094e969560a1b836758481f3dc360ce9a3277c65f374285e"},
|
2272
|
+
{file = "tomli-2.2.1-cp312-cp312-win32.whl", hash = "sha256:889f80ef92701b9dbb224e49ec87c645ce5df3fa2cc548664eb8a25e03127a98"},
|
2273
|
+
{file = "tomli-2.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:7fc04e92e1d624a4a63c76474610238576942d6b8950a2d7f908a340494e67e4"},
|
2274
|
+
{file = "tomli-2.2.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f4039b9cbc3048b2416cc57ab3bda989a6fcf9b36cf8937f01a6e731b64f80d7"},
|
2275
|
+
{file = "tomli-2.2.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:286f0ca2ffeeb5b9bd4fcc8d6c330534323ec51b2f52da063b11c502da16f30c"},
|
2276
|
+
{file = "tomli-2.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a92ef1a44547e894e2a17d24e7557a5e85a9e1d0048b0b5e7541f76c5032cb13"},
|
2277
|
+
{file = "tomli-2.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9316dc65bed1684c9a98ee68759ceaed29d229e985297003e494aa825ebb0281"},
|
2278
|
+
{file = "tomli-2.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e85e99945e688e32d5a35c1ff38ed0b3f41f43fad8df0bdf79f72b2ba7bc5272"},
|
2279
|
+
{file = "tomli-2.2.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:ac065718db92ca818f8d6141b5f66369833d4a80a9d74435a268c52bdfa73140"},
|
2280
|
+
{file = "tomli-2.2.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:d920f33822747519673ee656a4b6ac33e382eca9d331c87770faa3eef562aeb2"},
|
2281
|
+
{file = "tomli-2.2.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a198f10c4d1b1375d7687bc25294306e551bf1abfa4eace6650070a5c1ae2744"},
|
2282
|
+
{file = "tomli-2.2.1-cp313-cp313-win32.whl", hash = "sha256:d3f5614314d758649ab2ab3a62d4f2004c825922f9e370b29416484086b264ec"},
|
2283
|
+
{file = "tomli-2.2.1-cp313-cp313-win_amd64.whl", hash = "sha256:a38aa0308e754b0e3c67e344754dff64999ff9b513e691d0e786265c93583c69"},
|
2284
|
+
{file = "tomli-2.2.1-py3-none-any.whl", hash = "sha256:cb55c73c5f4408779d0cf3eef9f762b9c9f147a77de7b258bef0a5628adc85cc"},
|
2285
|
+
{file = "tomli-2.2.1.tar.gz", hash = "sha256:cd45e1dc79c835ce60f7404ec8119f2eb06d38b1deba146f07ced3bbc44505ff"},
|
2286
|
+
]
|
2287
|
+
|
2288
|
+
[[package]]
|
2289
|
+
name = "tomlkit"
|
2290
|
+
version = "0.13.2"
|
2291
|
+
description = "Style preserving TOML library"
|
2292
|
+
optional = false
|
2293
|
+
python-versions = ">=3.8"
|
2294
|
+
groups = ["main"]
|
2295
|
+
files = [
|
2296
|
+
{file = "tomlkit-0.13.2-py3-none-any.whl", hash = "sha256:7a974427f6e119197f670fbbbeae7bef749a6c14e793db934baefc1b5f03efde"},
|
2297
|
+
{file = "tomlkit-0.13.2.tar.gz", hash = "sha256:fff5fe59a87295b278abd31bec92c15d9bc4a06885ab12bcea52c71119392e79"},
|
2298
|
+
]
|
2299
|
+
|
2300
|
+
[[package]]
|
2301
|
+
name = "trove-classifiers"
|
2302
|
+
version = "2025.1.15.22"
|
2303
|
+
description = "Canonical source for classifiers on PyPI (pypi.org)."
|
2304
|
+
optional = false
|
2305
|
+
python-versions = "*"
|
2306
|
+
groups = ["main"]
|
1523
2307
|
files = [
|
1524
|
-
{file = "
|
1525
|
-
{file = "
|
2308
|
+
{file = "trove_classifiers-2025.1.15.22-py3-none-any.whl", hash = "sha256:5f19c789d4f17f501d36c94dbbf969fb3e8c2784d008e6f5164dd2c3d6a2b07c"},
|
2309
|
+
{file = "trove_classifiers-2025.1.15.22.tar.gz", hash = "sha256:90af74358d3a01b3532bc7b3c88d8c6a094c2fd50a563d13d9576179326d7ed9"},
|
1526
2310
|
]
|
1527
2311
|
|
1528
2312
|
[[package]]
|
@@ -1531,6 +2315,7 @@ version = "4.12.2"
|
|
1531
2315
|
description = "Backported and Experimental Type Hints for Python 3.8+"
|
1532
2316
|
optional = false
|
1533
2317
|
python-versions = ">=3.8"
|
2318
|
+
groups = ["main"]
|
1534
2319
|
files = [
|
1535
2320
|
{file = "typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d"},
|
1536
2321
|
{file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"},
|
@@ -1542,6 +2327,7 @@ version = "1.9.3"
|
|
1542
2327
|
description = "Functionality for types"
|
1543
2328
|
optional = false
|
1544
2329
|
python-versions = "*"
|
2330
|
+
groups = ["main"]
|
1545
2331
|
files = [
|
1546
2332
|
{file = "typish-1.9.3-py3-none-any.whl", hash = "sha256:03cfee5e6eb856dbf90244e18f4e4c41044c8790d5779f4e775f63f982e2f896"},
|
1547
2333
|
]
|
@@ -1555,6 +2341,7 @@ version = "2.2.3"
|
|
1555
2341
|
description = "HTTP library with thread-safe connection pooling, file post, and more."
|
1556
2342
|
optional = false
|
1557
2343
|
python-versions = ">=3.8"
|
2344
|
+
groups = ["main"]
|
1558
2345
|
files = [
|
1559
2346
|
{file = "urllib3-2.2.3-py3-none-any.whl", hash = "sha256:ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac"},
|
1560
2347
|
{file = "urllib3-2.2.3.tar.gz", hash = "sha256:e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9"},
|
@@ -1566,12 +2353,34 @@ h2 = ["h2 (>=4,<5)"]
|
|
1566
2353
|
socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"]
|
1567
2354
|
zstd = ["zstandard (>=0.18.0)"]
|
1568
2355
|
|
2356
|
+
[[package]]
|
2357
|
+
name = "virtualenv"
|
2358
|
+
version = "20.29.1"
|
2359
|
+
description = "Virtual Python Environment builder"
|
2360
|
+
optional = false
|
2361
|
+
python-versions = ">=3.8"
|
2362
|
+
groups = ["main"]
|
2363
|
+
files = [
|
2364
|
+
{file = "virtualenv-20.29.1-py3-none-any.whl", hash = "sha256:4e4cb403c0b0da39e13b46b1b2476e505cb0046b25f242bee80f62bf990b2779"},
|
2365
|
+
{file = "virtualenv-20.29.1.tar.gz", hash = "sha256:b8b8970138d32fb606192cb97f6cd4bb644fa486be9308fb9b63f81091b5dc35"},
|
2366
|
+
]
|
2367
|
+
|
2368
|
+
[package.dependencies]
|
2369
|
+
distlib = ">=0.3.7,<1"
|
2370
|
+
filelock = ">=3.12.2,<4"
|
2371
|
+
platformdirs = ">=3.9.1,<5"
|
2372
|
+
|
2373
|
+
[package.extras]
|
2374
|
+
docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.2,!=7.3)", "sphinx-argparse (>=0.4)", "sphinxcontrib-towncrier (>=0.2.1a0)", "towncrier (>=23.6)"]
|
2375
|
+
test = ["covdefaults (>=2.3)", "coverage (>=7.2.7)", "coverage-enable-subprocess (>=1)", "flaky (>=3.7)", "packaging (>=23.1)", "pytest (>=7.4)", "pytest-env (>=0.8.2)", "pytest-freezer (>=0.4.8)", "pytest-mock (>=3.11.1)", "pytest-randomly (>=3.12)", "pytest-timeout (>=2.1)", "setuptools (>=68)", "time-machine (>=2.10)"]
|
2376
|
+
|
1569
2377
|
[[package]]
|
1570
2378
|
name = "wcwidth"
|
1571
2379
|
version = "0.2.13"
|
1572
2380
|
description = "Measures the displayed width of unicode strings in a terminal"
|
1573
2381
|
optional = false
|
1574
2382
|
python-versions = "*"
|
2383
|
+
groups = ["main"]
|
1575
2384
|
files = [
|
1576
2385
|
{file = "wcwidth-0.2.13-py2.py3-none-any.whl", hash = "sha256:3da69048e4540d84af32131829ff948f1e022c1c6bdb8d6102117aac784f6859"},
|
1577
2386
|
{file = "wcwidth-0.2.13.tar.gz", hash = "sha256:72ea0c06399eb286d978fdedb6923a9eb47e1c486ce63e9b4e64fc18303972b5"},
|
@@ -1579,13 +2388,15 @@ files = [
|
|
1579
2388
|
|
1580
2389
|
[[package]]
|
1581
2390
|
name = "win32-setctime"
|
1582
|
-
version = "1.
|
2391
|
+
version = "1.2.0"
|
1583
2392
|
description = "A small Python utility to set file creation time on Windows"
|
1584
2393
|
optional = false
|
1585
2394
|
python-versions = ">=3.5"
|
2395
|
+
groups = ["main"]
|
2396
|
+
markers = "sys_platform == \"win32\""
|
1586
2397
|
files = [
|
1587
|
-
{file = "win32_setctime-1.
|
1588
|
-
{file = "win32_setctime-1.
|
2398
|
+
{file = "win32_setctime-1.2.0-py3-none-any.whl", hash = "sha256:95d644c4e708aba81dc3704a116d8cbc974d70b3bdb8be1d150e36be6e9d1390"},
|
2399
|
+
{file = "win32_setctime-1.2.0.tar.gz", hash = "sha256:ae1fdf948f5640aae05c511ade119313fb6a30d7eabe25fef9764dca5873c4c0"},
|
1589
2400
|
]
|
1590
2401
|
|
1591
2402
|
[package.extras]
|
@@ -1593,95 +2404,200 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"]
|
|
1593
2404
|
|
1594
2405
|
[[package]]
|
1595
2406
|
name = "wrapt"
|
1596
|
-
version = "1.
|
2407
|
+
version = "1.17.0"
|
1597
2408
|
description = "Module for decorators, wrappers and monkey patching."
|
1598
2409
|
optional = false
|
1599
|
-
python-versions = ">=3.
|
1600
|
-
|
1601
|
-
|
1602
|
-
{file = "wrapt-1.
|
1603
|
-
{file = "wrapt-1.
|
1604
|
-
{file = "wrapt-1.
|
1605
|
-
{file = "wrapt-1.
|
1606
|
-
{file = "wrapt-1.
|
1607
|
-
{file = "wrapt-1.
|
1608
|
-
{file = "wrapt-1.
|
1609
|
-
{file = "wrapt-1.
|
1610
|
-
{file = "wrapt-1.
|
1611
|
-
{file = "wrapt-1.
|
1612
|
-
{file = "wrapt-1.
|
1613
|
-
{file = "wrapt-1.
|
1614
|
-
{file = "wrapt-1.
|
1615
|
-
{file = "wrapt-1.
|
1616
|
-
{file = "wrapt-1.
|
1617
|
-
{file = "wrapt-1.
|
1618
|
-
{file = "wrapt-1.
|
1619
|
-
{file = "wrapt-1.
|
1620
|
-
{file = "wrapt-1.
|
1621
|
-
{file = "wrapt-1.
|
1622
|
-
{file = "wrapt-1.
|
1623
|
-
{file = "wrapt-1.
|
1624
|
-
{file = "wrapt-1.
|
1625
|
-
{file = "wrapt-1.
|
1626
|
-
{file = "wrapt-1.
|
1627
|
-
{file = "wrapt-1.
|
1628
|
-
{file = "wrapt-1.
|
1629
|
-
{file = "wrapt-1.
|
1630
|
-
{file = "wrapt-1.
|
1631
|
-
{file = "wrapt-1.
|
1632
|
-
{file = "wrapt-1.
|
1633
|
-
{file = "wrapt-1.
|
1634
|
-
{file = "wrapt-1.
|
1635
|
-
{file = "wrapt-1.
|
1636
|
-
{file = "wrapt-1.
|
1637
|
-
{file = "wrapt-1.
|
1638
|
-
{file = "wrapt-1.
|
1639
|
-
{file = "wrapt-1.
|
1640
|
-
{file = "wrapt-1.
|
1641
|
-
{file = "wrapt-1.
|
1642
|
-
{file = "wrapt-1.
|
1643
|
-
{file = "wrapt-1.
|
1644
|
-
{file = "wrapt-1.
|
1645
|
-
{file = "wrapt-1.
|
1646
|
-
{file = "wrapt-1.
|
1647
|
-
{file = "wrapt-1.
|
1648
|
-
{file = "wrapt-1.
|
1649
|
-
{file = "wrapt-1.
|
1650
|
-
{file = "wrapt-1.
|
1651
|
-
{file = "wrapt-1.
|
1652
|
-
{file = "wrapt-1.
|
1653
|
-
{file = "wrapt-1.
|
1654
|
-
{file = "wrapt-1.
|
1655
|
-
{file = "wrapt-1.
|
1656
|
-
{file = "wrapt-1.
|
1657
|
-
{file = "wrapt-1.
|
1658
|
-
{file = "wrapt-1.
|
1659
|
-
{file = "wrapt-1.
|
1660
|
-
{file = "wrapt-1.
|
1661
|
-
{file = "wrapt-1.
|
1662
|
-
{file = "wrapt-1.
|
1663
|
-
{file = "wrapt-1.
|
1664
|
-
{file = "wrapt-1.
|
1665
|
-
{file = "wrapt-1.
|
1666
|
-
{file = "wrapt-1.
|
1667
|
-
|
1668
|
-
|
1669
|
-
|
1670
|
-
|
2410
|
+
python-versions = ">=3.8"
|
2411
|
+
groups = ["main"]
|
2412
|
+
files = [
|
2413
|
+
{file = "wrapt-1.17.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2a0c23b8319848426f305f9cb0c98a6e32ee68a36264f45948ccf8e7d2b941f8"},
|
2414
|
+
{file = "wrapt-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b1ca5f060e205f72bec57faae5bd817a1560fcfc4af03f414b08fa29106b7e2d"},
|
2415
|
+
{file = "wrapt-1.17.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e185ec6060e301a7e5f8461c86fb3640a7beb1a0f0208ffde7a65ec4074931df"},
|
2416
|
+
{file = "wrapt-1.17.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bb90765dd91aed05b53cd7a87bd7f5c188fcd95960914bae0d32c5e7f899719d"},
|
2417
|
+
{file = "wrapt-1.17.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:879591c2b5ab0a7184258274c42a126b74a2c3d5a329df16d69f9cee07bba6ea"},
|
2418
|
+
{file = "wrapt-1.17.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:fce6fee67c318fdfb7f285c29a82d84782ae2579c0e1b385b7f36c6e8074fffb"},
|
2419
|
+
{file = "wrapt-1.17.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:0698d3a86f68abc894d537887b9bbf84d29bcfbc759e23f4644be27acf6da301"},
|
2420
|
+
{file = "wrapt-1.17.0-cp310-cp310-win32.whl", hash = "sha256:69d093792dc34a9c4c8a70e4973a3361c7a7578e9cd86961b2bbf38ca71e4e22"},
|
2421
|
+
{file = "wrapt-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:f28b29dc158ca5d6ac396c8e0a2ef45c4e97bb7e65522bfc04c989e6fe814575"},
|
2422
|
+
{file = "wrapt-1.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:74bf625b1b4caaa7bad51d9003f8b07a468a704e0644a700e936c357c17dd45a"},
|
2423
|
+
{file = "wrapt-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0f2a28eb35cf99d5f5bd12f5dd44a0f41d206db226535b37b0c60e9da162c3ed"},
|
2424
|
+
{file = "wrapt-1.17.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:81b1289e99cf4bad07c23393ab447e5e96db0ab50974a280f7954b071d41b489"},
|
2425
|
+
{file = "wrapt-1.17.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9f2939cd4a2a52ca32bc0b359015718472d7f6de870760342e7ba295be9ebaf9"},
|
2426
|
+
{file = "wrapt-1.17.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6a9653131bda68a1f029c52157fd81e11f07d485df55410401f745007bd6d339"},
|
2427
|
+
{file = "wrapt-1.17.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4e4b4385363de9052dac1a67bfb535c376f3d19c238b5f36bddc95efae15e12d"},
|
2428
|
+
{file = "wrapt-1.17.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bdf62d25234290db1837875d4dceb2151e4ea7f9fff2ed41c0fde23ed542eb5b"},
|
2429
|
+
{file = "wrapt-1.17.0-cp311-cp311-win32.whl", hash = "sha256:5d8fd17635b262448ab8f99230fe4dac991af1dabdbb92f7a70a6afac8a7e346"},
|
2430
|
+
{file = "wrapt-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:92a3d214d5e53cb1db8b015f30d544bc9d3f7179a05feb8f16df713cecc2620a"},
|
2431
|
+
{file = "wrapt-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:89fc28495896097622c3fc238915c79365dd0ede02f9a82ce436b13bd0ab7569"},
|
2432
|
+
{file = "wrapt-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:875d240fdbdbe9e11f9831901fb8719da0bd4e6131f83aa9f69b96d18fae7504"},
|
2433
|
+
{file = "wrapt-1.17.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e5ed16d95fd142e9c72b6c10b06514ad30e846a0d0917ab406186541fe68b451"},
|
2434
|
+
{file = "wrapt-1.17.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18b956061b8db634120b58f668592a772e87e2e78bc1f6a906cfcaa0cc7991c1"},
|
2435
|
+
{file = "wrapt-1.17.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:daba396199399ccabafbfc509037ac635a6bc18510ad1add8fd16d4739cdd106"},
|
2436
|
+
{file = "wrapt-1.17.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:4d63f4d446e10ad19ed01188d6c1e1bb134cde8c18b0aa2acfd973d41fcc5ada"},
|
2437
|
+
{file = "wrapt-1.17.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8a5e7cc39a45fc430af1aefc4d77ee6bad72c5bcdb1322cfde852c15192b8bd4"},
|
2438
|
+
{file = "wrapt-1.17.0-cp312-cp312-win32.whl", hash = "sha256:0a0a1a1ec28b641f2a3a2c35cbe86c00051c04fffcfcc577ffcdd707df3f8635"},
|
2439
|
+
{file = "wrapt-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:3c34f6896a01b84bab196f7119770fd8466c8ae3dfa73c59c0bb281e7b588ce7"},
|
2440
|
+
{file = "wrapt-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:714c12485aa52efbc0fc0ade1e9ab3a70343db82627f90f2ecbc898fdf0bb181"},
|
2441
|
+
{file = "wrapt-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da427d311782324a376cacb47c1a4adc43f99fd9d996ffc1b3e8529c4074d393"},
|
2442
|
+
{file = "wrapt-1.17.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ba1739fb38441a27a676f4de4123d3e858e494fac05868b7a281c0a383c098f4"},
|
2443
|
+
{file = "wrapt-1.17.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e711fc1acc7468463bc084d1b68561e40d1eaa135d8c509a65dd534403d83d7b"},
|
2444
|
+
{file = "wrapt-1.17.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:140ea00c87fafc42739bd74a94a5a9003f8e72c27c47cd4f61d8e05e6dec8721"},
|
2445
|
+
{file = "wrapt-1.17.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:73a96fd11d2b2e77d623a7f26e004cc31f131a365add1ce1ce9a19e55a1eef90"},
|
2446
|
+
{file = "wrapt-1.17.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:0b48554952f0f387984da81ccfa73b62e52817a4386d070c75e4db7d43a28c4a"},
|
2447
|
+
{file = "wrapt-1.17.0-cp313-cp313-win32.whl", hash = "sha256:498fec8da10e3e62edd1e7368f4b24aa362ac0ad931e678332d1b209aec93045"},
|
2448
|
+
{file = "wrapt-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:fd136bb85f4568fffca995bd3c8d52080b1e5b225dbf1c2b17b66b4c5fa02838"},
|
2449
|
+
{file = "wrapt-1.17.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:17fcf043d0b4724858f25b8826c36e08f9fb2e475410bece0ec44a22d533da9b"},
|
2450
|
+
{file = "wrapt-1.17.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4a557d97f12813dc5e18dad9fa765ae44ddd56a672bb5de4825527c847d6379"},
|
2451
|
+
{file = "wrapt-1.17.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0229b247b0fc7dee0d36176cbb79dbaf2a9eb7ecc50ec3121f40ef443155fb1d"},
|
2452
|
+
{file = "wrapt-1.17.0-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8425cfce27b8b20c9b89d77fb50e368d8306a90bf2b6eef2cdf5cd5083adf83f"},
|
2453
|
+
{file = "wrapt-1.17.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:9c900108df470060174108012de06d45f514aa4ec21a191e7ab42988ff42a86c"},
|
2454
|
+
{file = "wrapt-1.17.0-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:4e547b447073fc0dbfcbff15154c1be8823d10dab4ad401bdb1575e3fdedff1b"},
|
2455
|
+
{file = "wrapt-1.17.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:914f66f3b6fc7b915d46c1cc424bc2441841083de01b90f9e81109c9759e43ab"},
|
2456
|
+
{file = "wrapt-1.17.0-cp313-cp313t-win32.whl", hash = "sha256:a4192b45dff127c7d69b3bdfb4d3e47b64179a0b9900b6351859f3001397dabf"},
|
2457
|
+
{file = "wrapt-1.17.0-cp313-cp313t-win_amd64.whl", hash = "sha256:4f643df3d4419ea3f856c5c3f40fec1d65ea2e89ec812c83f7767c8730f9827a"},
|
2458
|
+
{file = "wrapt-1.17.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:69c40d4655e078ede067a7095544bcec5a963566e17503e75a3a3e0fe2803b13"},
|
2459
|
+
{file = "wrapt-1.17.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2f495b6754358979379f84534f8dd7a43ff8cff2558dcdea4a148a6e713a758f"},
|
2460
|
+
{file = "wrapt-1.17.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:baa7ef4e0886a6f482e00d1d5bcd37c201b383f1d314643dfb0367169f94f04c"},
|
2461
|
+
{file = "wrapt-1.17.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8fc931382e56627ec4acb01e09ce66e5c03c384ca52606111cee50d931a342d"},
|
2462
|
+
{file = "wrapt-1.17.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:8f8909cdb9f1b237786c09a810e24ee5e15ef17019f7cecb207ce205b9b5fcce"},
|
2463
|
+
{file = "wrapt-1.17.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:ad47b095f0bdc5585bced35bd088cbfe4177236c7df9984b3cc46b391cc60627"},
|
2464
|
+
{file = "wrapt-1.17.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:948a9bd0fb2c5120457b07e59c8d7210cbc8703243225dbd78f4dfc13c8d2d1f"},
|
2465
|
+
{file = "wrapt-1.17.0-cp38-cp38-win32.whl", hash = "sha256:5ae271862b2142f4bc687bdbfcc942e2473a89999a54231aa1c2c676e28f29ea"},
|
2466
|
+
{file = "wrapt-1.17.0-cp38-cp38-win_amd64.whl", hash = "sha256:f335579a1b485c834849e9075191c9898e0731af45705c2ebf70e0cd5d58beed"},
|
2467
|
+
{file = "wrapt-1.17.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d751300b94e35b6016d4b1e7d0e7bbc3b5e1751e2405ef908316c2a9024008a1"},
|
2468
|
+
{file = "wrapt-1.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7264cbb4a18dc4acfd73b63e4bcfec9c9802614572025bdd44d0721983fc1d9c"},
|
2469
|
+
{file = "wrapt-1.17.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:33539c6f5b96cf0b1105a0ff4cf5db9332e773bb521cc804a90e58dc49b10578"},
|
2470
|
+
{file = "wrapt-1.17.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c30970bdee1cad6a8da2044febd824ef6dc4cc0b19e39af3085c763fdec7de33"},
|
2471
|
+
{file = "wrapt-1.17.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:bc7f729a72b16ee21795a943f85c6244971724819819a41ddbaeb691b2dd85ad"},
|
2472
|
+
{file = "wrapt-1.17.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:6ff02a91c4fc9b6a94e1c9c20f62ea06a7e375f42fe57587f004d1078ac86ca9"},
|
2473
|
+
{file = "wrapt-1.17.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2dfb7cff84e72e7bf975b06b4989477873dcf160b2fd89959c629535df53d4e0"},
|
2474
|
+
{file = "wrapt-1.17.0-cp39-cp39-win32.whl", hash = "sha256:2399408ac33ffd5b200480ee858baa58d77dd30e0dd0cab6a8a9547135f30a88"},
|
2475
|
+
{file = "wrapt-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:4f763a29ee6a20c529496a20a7bcb16a73de27f5da6a843249c7047daf135977"},
|
2476
|
+
{file = "wrapt-1.17.0-py3-none-any.whl", hash = "sha256:d2c63b93548eda58abf5188e505ffed0229bf675f7c3090f8e36ad55b8cbc371"},
|
2477
|
+
{file = "wrapt-1.17.0.tar.gz", hash = "sha256:16187aa2317c731170a88ef35e8937ae0f533c402872c1ee5e6d079fcf320801"},
|
2478
|
+
]
|
2479
|
+
|
2480
|
+
[[package]]
|
2481
|
+
name = "xattr"
|
2482
|
+
version = "1.1.4"
|
2483
|
+
description = "Python wrapper for extended filesystem attributes"
|
2484
|
+
optional = false
|
2485
|
+
python-versions = ">=3.8"
|
2486
|
+
groups = ["main"]
|
2487
|
+
markers = "sys_platform == \"darwin\""
|
2488
|
+
files = [
|
2489
|
+
{file = "xattr-1.1.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:acb85b6249e9f3ea10cbb56df1021d43f4027212f0d004304bc9075dc7f54769"},
|
2490
|
+
{file = "xattr-1.1.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1a848ab125c0fafdc501ccd83b4c9018bba576a037a4ca5960a22f39e295552e"},
|
2491
|
+
{file = "xattr-1.1.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:467ee77471d26ae5187ee7081b82175b5ca56ead4b71467ec2e6119d1b08beed"},
|
2492
|
+
{file = "xattr-1.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0fd35f46cb0154f7033f9d5d0960f226857acb0d1e0d71fd7af18ed84663007c"},
|
2493
|
+
{file = "xattr-1.1.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7d956478e9bb98a1efd20ebc6e5703497c1d2d690d5a13c4df4abf59881eed50"},
|
2494
|
+
{file = "xattr-1.1.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3f25dfdcd974b700fb04a40e14a664a80227ee58e02ea062ac241f0d7dc54b4e"},
|
2495
|
+
{file = "xattr-1.1.4-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:33b63365c1fcbc80a79f601575bac0d6921732e0245b776876f3db3fcfefe22d"},
|
2496
|
+
{file = "xattr-1.1.4-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:544542be95c9b49e211f0a463758f200de88ba6d5a94d3c4f42855a484341acd"},
|
2497
|
+
{file = "xattr-1.1.4-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ac14c9893f3ea046784b7702be30889b200d31adcd2e6781a8a190b6423f9f2d"},
|
2498
|
+
{file = "xattr-1.1.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:bb4bbe37ba95542081890dd34fa5347bef4651e276647adaa802d5d0d7d86452"},
|
2499
|
+
{file = "xattr-1.1.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3da489ecef798705f9a39ea8cea4ead0d1eeed55f92c345add89740bd930bab6"},
|
2500
|
+
{file = "xattr-1.1.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:798dd0cbe696635a6f74b06fc430818bf9c3b24314e1502eadf67027ab60c9b0"},
|
2501
|
+
{file = "xattr-1.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7b2b6361626efad5eb5a6bf8172c6c67339e09397ee8140ec41258737bea9681"},
|
2502
|
+
{file = "xattr-1.1.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6e7fa20a0c9ce022d19123b1c5b848d00a68b837251835a7929fe041ee81dcd0"},
|
2503
|
+
{file = "xattr-1.1.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e20eeb08e2c57fc7e71f050b1cfae35cbb46105449853a582bf53fd23c5379e"},
|
2504
|
+
{file = "xattr-1.1.4-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:477370e75821bded901487e5e752cffe554d1bd3bd4839b627d4d1ee8c95a093"},
|
2505
|
+
{file = "xattr-1.1.4-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:a8682091cd34a9f4a93c8aaea4101aae99f1506e24da00a3cc3dd2eca9566f21"},
|
2506
|
+
{file = "xattr-1.1.4-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:2e079b3b1a274ba2121cf0da38bbe5c8d2fb1cc49ecbceb395ce20eb7d69556d"},
|
2507
|
+
{file = "xattr-1.1.4-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:ae6579dea05bf9f335a082f711d5924a98da563cac72a2d550f5b940c401c0e9"},
|
2508
|
+
{file = "xattr-1.1.4-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:cd6038ec9df2e67af23c212693751481d5f7e858156924f14340376c48ed9ac7"},
|
2509
|
+
{file = "xattr-1.1.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:608b2877526674eb15df4150ef4b70b7b292ae00e65aecaae2f192af224be200"},
|
2510
|
+
{file = "xattr-1.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c54dad1a6a998c6a23edfd25e99f4d38e9b942d54e518570044edf8c767687ea"},
|
2511
|
+
{file = "xattr-1.1.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c0dab6ff72bb2b508f3850c368f8e53bd706585012676e1f71debba3310acde8"},
|
2512
|
+
{file = "xattr-1.1.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7a3c54c6af7cf09432b2c461af257d5f4b1cb2d59eee045f91bacef44421a46d"},
|
2513
|
+
{file = "xattr-1.1.4-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e346e05a158d554639fbf7a0db169dc693c2d2260c7acb3239448f1ff4a9d67f"},
|
2514
|
+
{file = "xattr-1.1.4-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:3ff6d9e2103d0d6e5fcd65b85a2005b66ea81c0720a37036445faadc5bbfa424"},
|
2515
|
+
{file = "xattr-1.1.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:7a2ee4563c6414dfec0d1ac610f59d39d5220531ae06373eeb1a06ee37cd193f"},
|
2516
|
+
{file = "xattr-1.1.4-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:878df1b38cfdadf3184ad8c7b0f516311128d5597b60ac0b3486948953658a83"},
|
2517
|
+
{file = "xattr-1.1.4-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:0c9b8350244a1c5454f93a8d572628ff71d7e2fc2f7480dcf4c4f0e8af3150fe"},
|
2518
|
+
{file = "xattr-1.1.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a46bf48fb662b8bd745b78bef1074a1e08f41a531168de62b5d7bd331dadb11a"},
|
2519
|
+
{file = "xattr-1.1.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83fc3c07b583777b1dda6355329f75ca6b7179fe0d1002f1afe0ef96f7e3b5de"},
|
2520
|
+
{file = "xattr-1.1.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6308b19cff71441513258699f0538394fad5d66e1d324635207a97cb076fd439"},
|
2521
|
+
{file = "xattr-1.1.4-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48c00ddc15ddadc9c729cd9504dabf50adb3d9c28f647d4ac9a3df45a046b1a0"},
|
2522
|
+
{file = "xattr-1.1.4-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a06136196f26293758e1b244200b73156a0274af9a7349fa201c71c7af3bb9e8"},
|
2523
|
+
{file = "xattr-1.1.4-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:8fc2631a3c6cfcdc71f7f0f847461839963754e76a2015de71e7e71e3304abc0"},
|
2524
|
+
{file = "xattr-1.1.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:d6e1e835f9c938d129dd45e7eb52ebf7d2d6816323dab93ce311bf331f7d2328"},
|
2525
|
+
{file = "xattr-1.1.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:60dea2d369a6484e8b7136224fc2971e10e2c46340d83ab780924afe78c90066"},
|
2526
|
+
{file = "xattr-1.1.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:85c2b778b09d919523f80f244d799a142302582d76da18903dc693207c4020b0"},
|
2527
|
+
{file = "xattr-1.1.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:ee0abba9e1b890d39141714ff43e9666864ca635ea8a5a2194d989e6b17fe862"},
|
2528
|
+
{file = "xattr-1.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e4174ba7f51f46b95ea7918d907c91cd579575d59e6a2f22ca36a0551026737"},
|
2529
|
+
{file = "xattr-1.1.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b2b05e52e99d82d87528c54c2c5c8c5fb0ba435f85ac6545511aeea136e49925"},
|
2530
|
+
{file = "xattr-1.1.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a3696fad746be37de34eb73c60ea67144162bd08106a5308a90ce9dea9a3287"},
|
2531
|
+
{file = "xattr-1.1.4-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:a3a7149439a26b68904c14fdc4587cde4ac7d80303e9ff0fefcfd893b698c976"},
|
2532
|
+
{file = "xattr-1.1.4-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:507b36a126ce900dbfa35d4e2c2db92570c933294cba5d161ecd6a89f7b52f43"},
|
2533
|
+
{file = "xattr-1.1.4-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:9392b417b54923e031041940d396b1d709df1d3779c6744454e1f1c1f4dad4f5"},
|
2534
|
+
{file = "xattr-1.1.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:e9f00315e6c02943893b77f544776b49c756ac76960bea7cb8d7e1b96aefc284"},
|
2535
|
+
{file = "xattr-1.1.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c8f98775065260140efb348b1ff8d50fd66ddcbf0c685b76eb1e87b380aaffb3"},
|
2536
|
+
{file = "xattr-1.1.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b471c6a515f434a167ca16c5c15ff34ee42d11956baa749173a8a4e385ff23e7"},
|
2537
|
+
{file = "xattr-1.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ee0763a1b7ceb78ba2f78bee5f30d1551dc26daafcce4ac125115fa1def20519"},
|
2538
|
+
{file = "xattr-1.1.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:099e6e9ce7999b403d36d9cf943105a3d25d8233486b54ec9d1b78623b050433"},
|
2539
|
+
{file = "xattr-1.1.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3e56faef9dde8d969f0d646fb6171883693f88ae39163ecd919ec707fbafa85"},
|
2540
|
+
{file = "xattr-1.1.4-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:328156d4e594c9ae63e1072503c168849e601a153ad37f0290743544332d6b6f"},
|
2541
|
+
{file = "xattr-1.1.4-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:a57a55a27c7864d6916344c9a91776afda6c3b8b2209f8a69b79cdba93fbe128"},
|
2542
|
+
{file = "xattr-1.1.4-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:3c19cdde08b040df1e99d2500bf8a9cff775ab0e6fa162bf8afe6d84aa93ed04"},
|
2543
|
+
{file = "xattr-1.1.4-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:7c72667f19d3a9acf324aed97f58861d398d87e42314731e7c6ab3ac7850c971"},
|
2544
|
+
{file = "xattr-1.1.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:67ae934d75ea2563fc48a27c5945749575c74a6de19fdd38390917ddcb0e4f24"},
|
2545
|
+
{file = "xattr-1.1.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2a1b0c348dd8523554dc535540d2046c0c8a535bb086561d8359f3667967b6ca"},
|
2546
|
+
{file = "xattr-1.1.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:22284255d2a8e8f3da195bd8e8d43ce674dbc7c38d38cb6ecfb37fae7755d31f"},
|
2547
|
+
{file = "xattr-1.1.4-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b38aac5ef4381c26d3ce147ca98fba5a78b1e5bcd6be6755b4908659f2705c6d"},
|
2548
|
+
{file = "xattr-1.1.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:803f864af528f6f763a5be1e7b1ccab418e55ae0e4abc8bda961d162f850c991"},
|
2549
|
+
{file = "xattr-1.1.4-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:40354ebfb5cecd60a5fbb9833a8a452d147486b0ffec547823658556625d98b5"},
|
2550
|
+
{file = "xattr-1.1.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2abaf5d06be3361bfa8e0db2ee123ba8e92beab5bceed5e9d7847f2145a32e04"},
|
2551
|
+
{file = "xattr-1.1.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3e638e5ffedc3565242b5fa3296899d35161bad771f88d66277b58f03a1ba9fe"},
|
2552
|
+
{file = "xattr-1.1.4-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0597e919d116ec39997804288d77bec3777228368efc0f2294b84a527fc4f9c2"},
|
2553
|
+
{file = "xattr-1.1.4-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:3cee9455c501d19f065527afda974418b3ef7c61e85d9519d122cd6eb3cb7a00"},
|
2554
|
+
{file = "xattr-1.1.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:89ed62ce430f5789e15cfc1ccabc172fd8b349c3a17c52d9e6c64ecedf08c265"},
|
2555
|
+
{file = "xattr-1.1.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e25b824f4b9259cd8bb6e83c4873cf8bf080f6e4fa034a02fe778e07aba8d345"},
|
2556
|
+
{file = "xattr-1.1.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8fba66faa0016dfc0af3dd7ac5782b5786a1dfb851f9f3455e266f94c2a05a04"},
|
2557
|
+
{file = "xattr-1.1.4-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4ec4b0c3e0a7bcd103f3cf31dd40c349940b2d4223ce43d384a3548992138ef1"},
|
2558
|
+
{file = "xattr-1.1.4.tar.gz", hash = "sha256:b7b02ecb2270da5b7e7deaeea8f8b528c17368401c2b9d5f63e91f545b45d372"},
|
1671
2559
|
]
|
1672
2560
|
|
2561
|
+
[package.dependencies]
|
2562
|
+
cffi = ">=1.16.0"
|
2563
|
+
|
2564
|
+
[package.extras]
|
2565
|
+
test = ["pytest"]
|
2566
|
+
|
1673
2567
|
[[package]]
|
1674
2568
|
name = "xmod"
|
1675
2569
|
version = "1.8.1"
|
1676
2570
|
description = "🌱 Turn any object into a module 🌱"
|
1677
2571
|
optional = false
|
1678
2572
|
python-versions = ">=3.8"
|
2573
|
+
groups = ["main"]
|
1679
2574
|
files = [
|
1680
2575
|
{file = "xmod-1.8.1-py3-none-any.whl", hash = "sha256:a24e9458a4853489042522bdca9e50ee2eac5ab75c809a91150a8a7f40670d48"},
|
1681
2576
|
{file = "xmod-1.8.1.tar.gz", hash = "sha256:38c76486b9d672c546d57d8035df0beb7f4a9b088bc3fb2de5431ae821444377"},
|
1682
2577
|
]
|
1683
2578
|
|
2579
|
+
[[package]]
|
2580
|
+
name = "zipp"
|
2581
|
+
version = "3.21.0"
|
2582
|
+
description = "Backport of pathlib-compatible object wrapper for zip files"
|
2583
|
+
optional = false
|
2584
|
+
python-versions = ">=3.9"
|
2585
|
+
groups = ["main"]
|
2586
|
+
markers = "python_version < \"3.12\""
|
2587
|
+
files = [
|
2588
|
+
{file = "zipp-3.21.0-py3-none-any.whl", hash = "sha256:ac1bbe05fd2991f160ebce24ffbac5f6d11d83dc90891255885223d42b3cd931"},
|
2589
|
+
{file = "zipp-3.21.0.tar.gz", hash = "sha256:2c9958f6430a2040341a52eb608ed6dd93ef4392e02ffe219417c1b28b5dd1f4"},
|
2590
|
+
]
|
2591
|
+
|
2592
|
+
[package.extras]
|
2593
|
+
check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)"]
|
2594
|
+
cover = ["pytest-cov"]
|
2595
|
+
doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"]
|
2596
|
+
enabler = ["pytest-enabler (>=2.2)"]
|
2597
|
+
test = ["big-O", "importlib-resources", "jaraco.functools", "jaraco.itertools", "jaraco.test", "more-itertools", "pytest (>=6,!=8.1.*)", "pytest-ignore-flaky"]
|
2598
|
+
type = ["pytest-mypy"]
|
2599
|
+
|
1684
2600
|
[metadata]
|
1685
|
-
lock-version = "2.
|
1686
|
-
python-versions = ">=3.
|
1687
|
-
content-hash = "
|
2601
|
+
lock-version = "2.1"
|
2602
|
+
python-versions = ">=3.9,<4.0"
|
2603
|
+
content-hash = "cc51bc687506c0db253516ac35965babf2e5e083ffcfc6ab0a29820ae88d1c93"
|