2025-01-10 16:45:36 -08:00
# This file is automatically @generated by Poetry 1.8.5 and should not be changed by hand.
2024-10-30 17:54:51 -07:00
2024-10-06 18:21:43 -07:00
[ [ package ] ]
name = "accelerate"
2025-09-11 18:44:18 -07:00
version = "1.10.1"
2024-10-06 18:21:43 -07:00
description = "Accelerate"
optional = false
2024-11-07 22:11:00 -06:00
python-versions = ">=3.9.0"
2024-10-06 18:21:43 -07:00
files = [
2025-09-11 18:44:18 -07:00
{ file = "accelerate-1.10.1-py3-none-any.whl" , hash = "sha256:3621cff60b9a27ce798857ece05e2b9f56fcc71631cfb31ccf71f0359c311f11" } ,
{ file = "accelerate-1.10.1.tar.gz" , hash = "sha256:3dea89e433420e4bfac0369cae7e36dcd6a56adfcfd38cdda145c6225eab5df8" } ,
2024-10-06 18:21:43 -07:00
]
[ package . dependencies ]
2025-07-08 00:59:33 -07:00
huggingface_hub = ">=0.21.0"
2024-10-06 18:21:43 -07:00
numpy = ">=1.17,<3.0.0"
packaging = ">=20.0"
psutil = "*"
pyyaml = "*"
safetensors = ">=0.4.3"
2025-02-14 20:02:59 -08:00
torch = ">=2.0.0"
2024-10-06 18:21:43 -07:00
[ package . extras ]
deepspeed = [ "deepspeed" ]
2025-04-06 01:24:01 -07:00
dev = [ "bitsandbytes" , "black (>=23.1,<24.0)" , "datasets" , "diffusers" , "evaluate" , "hf-doc-builder (>=0.3.0)" , "parameterized" , "pytest (>=7.2.0,<=8.0.0)" , "pytest-order" , "pytest-subtests" , "pytest-xdist" , "rich" , "ruff (>=0.11.2,<0.12.0)" , "scikit-learn" , "scipy" , "timm" , "torchdata (>=0.8.0)" , "torchpippy (>=0.2.0)" , "tqdm" , "transformers" ]
quality = [ "black (>=23.1,<24.0)" , "hf-doc-builder (>=0.3.0)" , "ruff (>=0.11.2,<0.12.0)" ]
2024-10-06 18:21:43 -07:00
rich = [ "rich" ]
sagemaker = [ "sagemaker" ]
test-dev = [ "bitsandbytes" , "datasets" , "diffusers" , "evaluate" , "scikit-learn" , "scipy" , "timm" , "torchdata (>=0.8.0)" , "torchpippy (>=0.2.0)" , "tqdm" , "transformers" ]
2025-05-23 09:52:23 -07:00
test-fp8 = [ "torchao" ]
2025-04-06 01:24:01 -07:00
test-prod = [ "parameterized" , "pytest (>=7.2.0,<=8.0.0)" , "pytest-order" , "pytest-subtests" , "pytest-xdist" ]
2025-07-21 10:09:22 -07:00
test-trackers = [ "comet-ml" , "dvclive" , "matplotlib" , "mlflow" , "swanlab" , "tensorboard" , "trackio" , "wandb" ]
2025-04-06 01:24:01 -07:00
testing = [ "bitsandbytes" , "datasets" , "diffusers" , "evaluate" , "parameterized" , "pytest (>=7.2.0,<=8.0.0)" , "pytest-order" , "pytest-subtests" , "pytest-xdist" , "scikit-learn" , "scipy" , "timm" , "torchdata (>=0.8.0)" , "torchpippy (>=0.2.0)" , "tqdm" , "transformers" ]
2024-10-06 18:21:43 -07:00
[ [ package ] ]
name = "annotated-types"
version = "0.7.0"
description = "Reusable constraint types to use with typing.Annotated"
optional = false
python-versions = ">=3.8"
files = [
{ file = "annotated_types-0.7.0-py3-none-any.whl" , hash = "sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53" } ,
{ file = "annotated_types-0.7.0.tar.gz" , hash = "sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89" } ,
]
[ [ package ] ]
name = "anyio"
2025-08-11 13:23:40 -07:00
version = "4.10.0"
description = "High-level concurrency and networking framework on top of asyncio or Trio"
2024-10-06 18:21:43 -07:00
optional = false
python-versions = ">=3.9"
files = [
2025-08-11 13:23:40 -07:00
{ file = "anyio-4.10.0-py3-none-any.whl" , hash = "sha256:60e474ac86736bbfd6f210f7a61218939c318f43f9972497381f1c5e930ed3d1" } ,
{ file = "anyio-4.10.0.tar.gz" , hash = "sha256:3f3fae35c96039744587aa5b8371e7e8e603c0702999535961dd336026973ba6" } ,
2024-10-06 18:21:43 -07:00
]
[ package . dependencies ]
2025-01-10 16:45:36 -08:00
exceptiongroup = { version = ">=1.0.2" , markers = "python_version < \"3.11\"" }
2024-10-06 18:21:43 -07:00
idna = ">=2.8"
sniffio = ">=1.1"
2024-12-06 14:37:33 -08:00
typing_extensions = { version = ">=4.5" , markers = "python_version < \"3.13\"" }
2024-10-06 18:21:43 -07:00
[ package . extras ]
trio = [ "trio (>=0.26.1)" ]
2024-11-07 22:11:00 -06:00
[ [ package ] ]
name = "asgiref"
2025-07-11 17:24:21 -07:00
version = "3.9.1"
2024-11-07 22:11:00 -06:00
description = "ASGI specs, helper code, and adapters"
optional = false
2025-07-08 00:59:33 -07:00
python-versions = ">=3.9"
2024-11-07 22:11:00 -06:00
files = [
2025-07-11 17:24:21 -07:00
{ file = "asgiref-3.9.1-py3-none-any.whl" , hash = "sha256:f3bba7092a48005b5f5bacd747d36ee4a5a61f4a269a6df590b43144355ebd2c" } ,
{ file = "asgiref-3.9.1.tar.gz" , hash = "sha256:a5ab6582236218e5ef1648f242fd9f10626cfd4de8dc377db215d5d5098e3142" } ,
2024-11-07 22:11:00 -06:00
]
2025-01-10 16:45:36 -08:00
[ package . dependencies ]
2025-07-08 00:59:33 -07:00
typing_extensions = { version = ">=4" , markers = "python_version < \"3.11\"" }
2025-01-10 16:45:36 -08:00
2024-11-07 22:11:00 -06:00
[ package . extras ]
2025-07-08 00:59:33 -07:00
tests = [ "mypy (>=1.14.0)" , "pytest" , "pytest-asyncio" ]
2024-11-07 22:11:00 -06:00
2025-07-21 10:09:22 -07:00
[ [ package ] ]
name = "backports-asyncio-runner"
version = "1.2.0"
description = "Backport of asyncio.Runner, a context manager that controls event loop life cycle."
optional = false
python-versions = "<3.11,>=3.8"
files = [
{ file = "backports_asyncio_runner-1.2.0-py3-none-any.whl" , hash = "sha256:0da0a936a8aeb554eccb426dc55af3ba63bcdc69fa1a600b5bb305413a4477b5" } ,
{ file = "backports_asyncio_runner-1.2.0.tar.gz" , hash = "sha256:a5aa7b2b7d8f8bfcaa2b57313f70792df84e32a2a746f585213373f900b42162" } ,
]
2024-10-06 18:21:43 -07:00
[ [ package ] ]
name = "certifi"
2025-08-11 13:23:40 -07:00
version = "2025.8.3"
2024-10-06 18:21:43 -07:00
description = "Python package for providing Mozilla's CA Bundle."
optional = false
2025-07-08 00:59:33 -07:00
python-versions = ">=3.7"
2024-10-06 18:21:43 -07:00
files = [
2025-08-11 13:23:40 -07:00
{ file = "certifi-2025.8.3-py3-none-any.whl" , hash = "sha256:f6c12493cfb1b06ba2ff328595af9350c65d6644968e5d3a2ffd78699af217a5" } ,
{ file = "certifi-2025.8.3.tar.gz" , hash = "sha256:e564105f78ded564e3ae7c923924435e1daa7463faeab5bb932bc53ffae63407" } ,
2024-10-06 18:21:43 -07:00
]
[ [ package ] ]
name = "charset-normalizer"
2025-08-11 13:23:40 -07:00
version = "3.4.3"
2024-10-06 18:21:43 -07:00
description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet."
optional = false
2025-01-10 16:45:36 -08:00
python-versions = ">=3.7"
files = [
2025-08-11 13:23:40 -07:00
{ file = "charset_normalizer-3.4.3-cp310-cp310-macosx_10_9_universal2.whl" , hash = "sha256:fb7f67a1bfa6e40b438170ebdc8158b78dc465a5a67b6dde178a46987b244a72" } ,
{ file = "charset_normalizer-3.4.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl" , hash = "sha256:cc9370a2da1ac13f0153780040f465839e6cccb4a1e44810124b4e22483c93fe" } ,
{ file = "charset_normalizer-3.4.3-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl" , hash = "sha256:07a0eae9e2787b586e129fdcbe1af6997f8d0e5abaa0bc98c0e20e124d67e601" } ,
{ file = "charset_normalizer-3.4.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl" , hash = "sha256:74d77e25adda8581ffc1c720f1c81ca082921329452eba58b16233ab1842141c" } ,
{ file = "charset_normalizer-3.4.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl" , hash = "sha256:d0e909868420b7049dafd3a31d45125b31143eec59235311fc4c57ea26a4acd2" } ,
{ file = "charset_normalizer-3.4.3-cp310-cp310-musllinux_1_2_aarch64.whl" , hash = "sha256:c6f162aabe9a91a309510d74eeb6507fab5fff92337a15acbe77753d88d9dcf0" } ,
{ file = "charset_normalizer-3.4.3-cp310-cp310-musllinux_1_2_ppc64le.whl" , hash = "sha256:4ca4c094de7771a98d7fbd67d9e5dbf1eb73efa4f744a730437d8a3a5cf994f0" } ,
{ file = "charset_normalizer-3.4.3-cp310-cp310-musllinux_1_2_s390x.whl" , hash = "sha256:02425242e96bcf29a49711b0ca9f37e451da7c70562bc10e8ed992a5a7a25cc0" } ,
{ file = "charset_normalizer-3.4.3-cp310-cp310-musllinux_1_2_x86_64.whl" , hash = "sha256:78deba4d8f9590fe4dae384aeff04082510a709957e968753ff3c48399f6f92a" } ,
{ file = "charset_normalizer-3.4.3-cp310-cp310-win32.whl" , hash = "sha256:d79c198e27580c8e958906f803e63cddb77653731be08851c7df0b1a14a8fc0f" } ,
{ file = "charset_normalizer-3.4.3-cp310-cp310-win_amd64.whl" , hash = "sha256:c6e490913a46fa054e03699c70019ab869e990270597018cef1d8562132c2669" } ,
{ file = "charset_normalizer-3.4.3-cp311-cp311-macosx_10_9_universal2.whl" , hash = "sha256:b256ee2e749283ef3ddcff51a675ff43798d92d746d1a6e4631bf8c707d22d0b" } ,
{ file = "charset_normalizer-3.4.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl" , hash = "sha256:13faeacfe61784e2559e690fc53fa4c5ae97c6fcedb8eb6fb8d0a15b475d2c64" } ,
{ file = "charset_normalizer-3.4.3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl" , hash = "sha256:00237675befef519d9af72169d8604a067d92755e84fe76492fef5441db05b91" } ,
{ file = "charset_normalizer-3.4.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl" , hash = "sha256:585f3b2a80fbd26b048a0be90c5aae8f06605d3c92615911c3a2b03a8a3b796f" } ,
{ file = "charset_normalizer-3.4.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl" , hash = "sha256:0e78314bdc32fa80696f72fa16dc61168fda4d6a0c014e0380f9d02f0e5d8a07" } ,
{ file = "charset_normalizer-3.4.3-cp311-cp311-musllinux_1_2_aarch64.whl" , hash = "sha256:96b2b3d1a83ad55310de8c7b4a2d04d9277d5591f40761274856635acc5fcb30" } ,
{ file = "charset_normalizer-3.4.3-cp311-cp311-musllinux_1_2_ppc64le.whl" , hash = "sha256:939578d9d8fd4299220161fdd76e86c6a251987476f5243e8864a7844476ba14" } ,
{ file = "charset_normalizer-3.4.3-cp311-cp311-musllinux_1_2_s390x.whl" , hash = "sha256:fd10de089bcdcd1be95a2f73dbe6254798ec1bda9f450d5828c96f93e2536b9c" } ,
{ file = "charset_normalizer-3.4.3-cp311-cp311-musllinux_1_2_x86_64.whl" , hash = "sha256:1e8ac75d72fa3775e0b7cb7e4629cec13b7514d928d15ef8ea06bca03ef01cae" } ,
{ file = "charset_normalizer-3.4.3-cp311-cp311-win32.whl" , hash = "sha256:6cf8fd4c04756b6b60146d98cd8a77d0cdae0e1ca20329da2ac85eed779b6849" } ,
{ file = "charset_normalizer-3.4.3-cp311-cp311-win_amd64.whl" , hash = "sha256:31a9a6f775f9bcd865d88ee350f0ffb0e25936a7f930ca98995c05abf1faf21c" } ,
{ file = "charset_normalizer-3.4.3-cp312-cp312-macosx_10_13_universal2.whl" , hash = "sha256:e28e334d3ff134e88989d90ba04b47d84382a828c061d0d1027b1b12a62b39b1" } ,
{ file = "charset_normalizer-3.4.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl" , hash = "sha256:0cacf8f7297b0c4fcb74227692ca46b4a5852f8f4f24b3c766dd94a1075c4884" } ,
{ file = "charset_normalizer-3.4.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl" , hash = "sha256:c6fd51128a41297f5409deab284fecbe5305ebd7e5a1f959bee1c054622b7018" } ,
{ file = "charset_normalizer-3.4.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl" , hash = "sha256:3cfb2aad70f2c6debfbcb717f23b7eb55febc0bb23dcffc0f076009da10c6392" } ,
{ file = "charset_normalizer-3.4.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl" , hash = "sha256:1606f4a55c0fd363d754049cdf400175ee96c992b1f8018b993941f221221c5f" } ,
{ file = "charset_normalizer-3.4.3-cp312-cp312-musllinux_1_2_aarch64.whl" , hash = "sha256:027b776c26d38b7f15b26a5da1044f376455fb3766df8fc38563b4efbc515154" } ,
{ file = "charset_normalizer-3.4.3-cp312-cp312-musllinux_1_2_ppc64le.whl" , hash = "sha256:42e5088973e56e31e4fa58eb6bd709e42fc03799c11c42929592889a2e54c491" } ,
{ file = "charset_normalizer-3.4.3-cp312-cp312-musllinux_1_2_s390x.whl" , hash = "sha256:cc34f233c9e71701040d772aa7490318673aa7164a0efe3172b2981218c26d93" } ,
{ file = "charset_normalizer-3.4.3-cp312-cp312-musllinux_1_2_x86_64.whl" , hash = "sha256:320e8e66157cc4e247d9ddca8e21f427efc7a04bbd0ac8a9faf56583fa543f9f" } ,
{ file = "charset_normalizer-3.4.3-cp312-cp312-win32.whl" , hash = "sha256:fb6fecfd65564f208cbf0fba07f107fb661bcd1a7c389edbced3f7a493f70e37" } ,
{ file = "charset_normalizer-3.4.3-cp312-cp312-win_amd64.whl" , hash = "sha256:86df271bf921c2ee3818f0522e9a5b8092ca2ad8b065ece5d7d9d0e9f4849bcc" } ,
{ file = "charset_normalizer-3.4.3-cp313-cp313-macosx_10_13_universal2.whl" , hash = "sha256:14c2a87c65b351109f6abfc424cab3927b3bdece6f706e4d12faaf3d52ee5efe" } ,
{ file = "charset_normalizer-3.4.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl" , hash = "sha256:41d1fc408ff5fdfb910200ec0e74abc40387bccb3252f3f27c0676731df2b2c8" } ,
{ file = "charset_normalizer-3.4.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl" , hash = "sha256:1bb60174149316da1c35fa5233681f7c0f9f514509b8e399ab70fea5f17e45c9" } ,
{ file = "charset_normalizer-3.4.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl" , hash = "sha256:30d006f98569de3459c2fc1f2acde170b7b2bd265dc1943e87e1a4efe1b67c31" } ,
{ file = "charset_normalizer-3.4.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl" , hash = "sha256:416175faf02e4b0810f1f38bcb54682878a4af94059a1cd63b8747244420801f" } ,
{ file = "charset_normalizer-3.4.3-cp313-cp313-musllinux_1_2_aarch64.whl" , hash = "sha256:6aab0f181c486f973bc7262a97f5aca3ee7e1437011ef0c2ec04b5a11d16c927" } ,
{ file = "charset_normalizer-3.4.3-cp313-cp313-musllinux_1_2_ppc64le.whl" , hash = "sha256:fdabf8315679312cfa71302f9bd509ded4f2f263fb5b765cf1433b39106c3cc9" } ,
{ file = "charset_normalizer-3.4.3-cp313-cp313-musllinux_1_2_s390x.whl" , hash = "sha256:bd28b817ea8c70215401f657edef3a8aa83c29d447fb0b622c35403780ba11d5" } ,
{ file = "charset_normalizer-3.4.3-cp313-cp313-musllinux_1_2_x86_64.whl" , hash = "sha256:18343b2d246dc6761a249ba1fb13f9ee9a2bcd95decc767319506056ea4ad4dc" } ,
{ file = "charset_normalizer-3.4.3-cp313-cp313-win32.whl" , hash = "sha256:6fb70de56f1859a3f71261cbe41005f56a7842cc348d3aeb26237560bfa5e0ce" } ,
{ file = "charset_normalizer-3.4.3-cp313-cp313-win_amd64.whl" , hash = "sha256:cf1ebb7d78e1ad8ec2a8c4732c7be2e736f6e5123a4146c5b89c9d1f585f8cef" } ,
{ file = "charset_normalizer-3.4.3-cp314-cp314-macosx_10_13_universal2.whl" , hash = "sha256:3cd35b7e8aedeb9e34c41385fda4f73ba609e561faedfae0a9e75e44ac558a15" } ,
{ file = "charset_normalizer-3.4.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl" , hash = "sha256:b89bc04de1d83006373429975f8ef9e7932534b8cc9ca582e4db7d20d91816db" } ,
{ file = "charset_normalizer-3.4.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl" , hash = "sha256:2001a39612b241dae17b4687898843f254f8748b796a2e16f1051a17078d991d" } ,
{ file = "charset_normalizer-3.4.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl" , hash = "sha256:8dcfc373f888e4fb39a7bc57e93e3b845e7f462dacc008d9749568b1c4ece096" } ,
{ file = "charset_normalizer-3.4.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl" , hash = "sha256:18b97b8404387b96cdbd30ad660f6407799126d26a39ca65729162fd810a99aa" } ,
{ file = "charset_normalizer-3.4.3-cp314-cp314-musllinux_1_2_aarch64.whl" , hash = "sha256:ccf600859c183d70eb47e05a44cd80a4ce77394d1ac0f79dbd2dd90a69a3a049" } ,
{ file = "charset_normalizer-3.4.3-cp314-cp314-musllinux_1_2_ppc64le.whl" , hash = "sha256:53cd68b185d98dde4ad8990e56a58dea83a4162161b1ea9272e5c9182ce415e0" } ,
{ file = "charset_normalizer-3.4.3-cp314-cp314-musllinux_1_2_s390x.whl" , hash = "sha256:30a96e1e1f865f78b030d65241c1ee850cdf422d869e9028e2fc1d5e4db73b92" } ,
{ file = "charset_normalizer-3.4.3-cp314-cp314-musllinux_1_2_x86_64.whl" , hash = "sha256:d716a916938e03231e86e43782ca7878fb602a125a91e7acb8b5112e2e96ac16" } ,
{ file = "charset_normalizer-3.4.3-cp314-cp314-win32.whl" , hash = "sha256:c6dbd0ccdda3a2ba7c2ecd9d77b37f3b5831687d8dc1b6ca5f56a4880cc7b7ce" } ,
{ file = "charset_normalizer-3.4.3-cp314-cp314-win_amd64.whl" , hash = "sha256:73dc19b562516fc9bcf6e5d6e596df0b4eb98d87e4f79f3ae71840e6ed21361c" } ,
{ file = "charset_normalizer-3.4.3-cp38-cp38-macosx_10_9_universal2.whl" , hash = "sha256:0f2be7e0cf7754b9a30eb01f4295cc3d4358a479843b31f328afd210e2c7598c" } ,
{ file = "charset_normalizer-3.4.3-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl" , hash = "sha256:c60e092517a73c632ec38e290eba714e9627abe9d301c8c8a12ec32c314a2a4b" } ,
{ file = "charset_normalizer-3.4.3-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl" , hash = "sha256:252098c8c7a873e17dd696ed98bbe91dbacd571da4b87df3736768efa7a792e4" } ,
{ file = "charset_normalizer-3.4.3-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl" , hash = "sha256:3653fad4fe3ed447a596ae8638b437f827234f01a8cd801842e43f3d0a6b281b" } ,
{ file = "charset_normalizer-3.4.3-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl" , hash = "sha256:8999f965f922ae054125286faf9f11bc6932184b93011d138925a1773830bbe9" } ,
{ file = "charset_normalizer-3.4.3-cp38-cp38-musllinux_1_2_aarch64.whl" , hash = "sha256:d95bfb53c211b57198bb91c46dd5a2d8018b3af446583aab40074bf7988401cb" } ,
{ file = "charset_normalizer-3.4.3-cp38-cp38-musllinux_1_2_ppc64le.whl" , hash = "sha256:5b413b0b1bfd94dbf4023ad6945889f374cd24e3f62de58d6bb102c4d9ae534a" } ,
{ file = "charset_normalizer-3.4.3-cp38-cp38-musllinux_1_2_s390x.whl" , hash = "sha256:b5e3b2d152e74e100a9e9573837aba24aab611d39428ded46f4e4022ea7d1942" } ,
{ file = "charset_normalizer-3.4.3-cp38-cp38-musllinux_1_2_x86_64.whl" , hash = "sha256:a2d08ac246bb48479170408d6c19f6385fa743e7157d716e144cad849b2dd94b" } ,
{ file = "charset_normalizer-3.4.3-cp38-cp38-win32.whl" , hash = "sha256:ec557499516fc90fd374bf2e32349a2887a876fbf162c160e3c01b6849eaf557" } ,
{ file = "charset_normalizer-3.4.3-cp38-cp38-win_amd64.whl" , hash = "sha256:5d8d01eac18c423815ed4f4a2ec3b439d654e55ee4ad610e153cf02faf67ea40" } ,
{ file = "charset_normalizer-3.4.3-cp39-cp39-macosx_10_9_universal2.whl" , hash = "sha256:70bfc5f2c318afece2f5838ea5e4c3febada0be750fcf4775641052bbba14d05" } ,
{ file = "charset_normalizer-3.4.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl" , hash = "sha256:23b6b24d74478dc833444cbd927c338349d6ae852ba53a0d02a2de1fce45b96e" } ,
{ file = "charset_normalizer-3.4.3-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl" , hash = "sha256:34a7f768e3f985abdb42841e20e17b330ad3aaf4bb7e7aeeb73db2e70f077b99" } ,
{ file = "charset_normalizer-3.4.3-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl" , hash = "sha256:fb731e5deb0c7ef82d698b0f4c5bb724633ee2a489401594c5c88b02e6cb15f7" } ,
{ file = "charset_normalizer-3.4.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl" , hash = "sha256:257f26fed7d7ff59921b78244f3cd93ed2af1800ff048c33f624c87475819dd7" } ,
{ file = "charset_normalizer-3.4.3-cp39-cp39-musllinux_1_2_aarch64.whl" , hash = "sha256:1ef99f0456d3d46a50945c98de1774da86f8e992ab5c77865ea8b8195341fc19" } ,
{ file = "charset_normalizer-3.4.3-cp39-cp39-musllinux_1_2_ppc64le.whl" , hash = "sha256:2c322db9c8c89009a990ef07c3bcc9f011a3269bc06782f916cd3d9eed7c9312" } ,
{ file = "charset_normalizer-3.4.3-cp39-cp39-musllinux_1_2_s390x.whl" , hash = "sha256:511729f456829ef86ac41ca78c63a5cb55240ed23b4b737faca0eb1abb1c41bc" } ,
{ file = "charset_normalizer-3.4.3-cp39-cp39-musllinux_1_2_x86_64.whl" , hash = "sha256:88ab34806dea0671532d3f82d82b85e8fc23d7b2dd12fa837978dad9bb392a34" } ,
{ file = "charset_normalizer-3.4.3-cp39-cp39-win32.whl" , hash = "sha256:16a8770207946ac75703458e2c743631c79c59c5890c80011d536248f8eaa432" } ,
{ file = "charset_normalizer-3.4.3-cp39-cp39-win_amd64.whl" , hash = "sha256:d22dbedd33326a4a5190dd4fe9e9e693ef12160c77382d9e87919bce54f3d4ca" } ,
{ file = "charset_normalizer-3.4.3-py3-none-any.whl" , hash = "sha256:ce571ab16d890d23b5c278547ba694193a45011ff86a9162a71307ed9f86759a" } ,
{ file = "charset_normalizer-3.4.3.tar.gz" , hash = "sha256:6fce4b8500244f6fcb71465d4a4930d132ba9ab8e71a7859e6a5d59851068d14" } ,
2024-10-06 18:21:43 -07:00
]
[ [ package ] ]
name = "click"
2025-05-23 09:52:23 -07:00
version = "8.2.1"
2024-10-06 18:21:43 -07:00
description = "Composable command line interface toolkit"
optional = false
2025-05-23 09:52:23 -07:00
python-versions = ">=3.10"
2024-10-06 18:21:43 -07:00
files = [
2025-05-23 09:52:23 -07:00
{ file = "click-8.2.1-py3-none-any.whl" , hash = "sha256:61a3265b914e850b85317d0b3109c7f8cd35a670f963866005d6ef1d5175a12b" } ,
{ file = "click-8.2.1.tar.gz" , hash = "sha256:27c491cc05d968d271d5a1db13e3b5a184636d9d930f148c50b038f0d0646202" } ,
2024-10-06 18:21:43 -07:00
]
[ package . dependencies ]
colorama = { version = "*" , markers = "platform_system == \"Windows\"" }
[ [ package ] ]
name = "colorama"
version = "0.4.6"
description = "Cross-platform colored terminal text."
optional = false
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7"
files = [
{ file = "colorama-0.4.6-py2.py3-none-any.whl" , hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6" } ,
{ file = "colorama-0.4.6.tar.gz" , hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44" } ,
]
[ [ package ] ]
name = "dateparser"
2025-07-08 00:59:33 -07:00
version = "1.2.2"
2024-10-06 18:21:43 -07:00
description = "Date parsing library designed to parse dates from HTML pages"
optional = false
2025-02-14 20:02:59 -08:00
python-versions = ">=3.8"
2024-10-06 18:21:43 -07:00
files = [
2025-07-08 00:59:33 -07:00
{ file = "dateparser-1.2.2-py3-none-any.whl" , hash = "sha256:5a5d7211a09013499867547023a2a0c91d5a27d15dd4dbcea676ea9fe66f2482" } ,
{ file = "dateparser-1.2.2.tar.gz" , hash = "sha256:986316f17cb8cdc23ea8ce563027c5ef12fc725b6fb1d137c14ca08777c5ecf7" } ,
2024-10-06 18:21:43 -07:00
]
[ package . dependencies ]
2025-02-14 20:02:59 -08:00
python-dateutil = ">=2.7.0"
pytz = ">=2024.2"
2025-07-08 00:59:33 -07:00
regex = ">=2024.9.11"
2025-02-14 20:02:59 -08:00
tzlocal = ">=0.2"
2024-10-06 18:21:43 -07:00
[ package . extras ]
2025-02-14 20:02:59 -08:00
calendars = [ "convertdate (>=2.2.1)" , "hijridate" ]
fasttext = [ "fasttext (>=0.9.1)" , "numpy (>=1.19.3,<2)" ]
langdetect = [ "langdetect (>=1.0.0)" ]
2024-10-06 18:21:43 -07:00
2024-11-07 22:11:00 -06:00
[ [ package ] ]
name = "deprecated"
2025-02-14 20:02:59 -08:00
version = "1.2.18"
2024-11-07 22:11:00 -06:00
description = "Python @deprecated decorator to deprecate old python classes, functions or methods."
optional = false
2024-11-17 17:12:01 -08:00
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7"
2024-11-07 22:11:00 -06:00
files = [
2025-02-14 20:02:59 -08:00
{ file = "Deprecated-1.2.18-py2.py3-none-any.whl" , hash = "sha256:bd5011788200372a32418f888e326a09ff80d0214bd961147cfed01b5c018eec" } ,
{ file = "deprecated-1.2.18.tar.gz" , hash = "sha256:422b6f6d859da6f2ef57857761bfb392480502a64c3028ca9bbe86085d72115d" } ,
2024-11-07 22:11:00 -06:00
]
[ package . dependencies ]
wrapt = ">=1.10,<2"
[ package . extras ]
2025-02-14 20:02:59 -08:00
dev = [ "PyTest" , "PyTest-Cov" , "bump2version (<1)" , "setuptools" , "tox" ]
2024-11-07 22:11:00 -06:00
2024-10-06 18:21:43 -07:00
[ [ package ] ]
name = "distro"
version = "1.9.0"
description = "Distro - an OS platform information API"
optional = false
python-versions = ">=3.6"
files = [
{ file = "distro-1.9.0-py3-none-any.whl" , hash = "sha256:7bffd925d65168f85027d8da9af6bddab658135b840670a223589bc0c8ef02b2" } ,
{ file = "distro-1.9.0.tar.gz" , hash = "sha256:2fa77c6fd8940f116ee1d6b94a2f90b13b5ea8d019b98bc8bafdcabcdd9bdbed" } ,
]
2025-01-10 16:45:36 -08:00
[ [ package ] ]
name = "exceptiongroup"
2025-05-23 09:52:23 -07:00
version = "1.3.0"
2025-01-10 16:45:36 -08:00
description = "Backport of PEP 654 (exception groups)"
optional = false
python-versions = ">=3.7"
files = [
2025-05-23 09:52:23 -07:00
{ file = "exceptiongroup-1.3.0-py3-none-any.whl" , hash = "sha256:4d111e6e0c13d0644cad6ddaa7ed0261a0b36971f6d23e7ec9b4b9097da78a10" } ,
{ file = "exceptiongroup-1.3.0.tar.gz" , hash = "sha256:b241f5885f560bc56a59ee63ca4c6a8bfa46ae4ad651af316d4e81817bb9fd88" } ,
2025-01-10 16:45:36 -08:00
]
2025-05-23 09:52:23 -07:00
[ package . dependencies ]
typing-extensions = { version = ">=4.6.0" , markers = "python_version < \"3.13\"" }
2025-01-10 16:45:36 -08:00
[ package . extras ]
test = [ "pytest (>=6)" ]
2024-10-06 18:21:43 -07:00
[ [ package ] ]
name = "fastapi"
version = "0.115.0"
description = "FastAPI framework, high performance, easy to learn, fast to code, ready for production"
optional = false
python-versions = ">=3.8"
files = [
{ file = "fastapi-0.115.0-py3-none-any.whl" , hash = "sha256:17ea427674467486e997206a5ab25760f6b09e069f099b96f5b55a32fb6f1631" } ,
{ file = "fastapi-0.115.0.tar.gz" , hash = "sha256:f93b4ca3529a8ebc6fc3fcf710e5efa8de3df9b41570958abf1d97d843138004" } ,
]
[ package . dependencies ]
pydantic = ">=1.7.4,<1.8 || >1.8,<1.8.1 || >1.8.1,<2.0.0 || >2.0.0,<2.0.1 || >2.0.1,<2.1.0 || >2.1.0,<3.0.0"
starlette = ">=0.37.2,<0.39.0"
typing-extensions = ">=4.8.0"
[ package . extras ]
all = [ "email-validator (>=2.0.0)" , "fastapi-cli[standard] (>=0.0.5)" , "httpx (>=0.23.0)" , "itsdangerous (>=1.1.0)" , "jinja2 (>=2.11.2)" , "orjson (>=3.2.1)" , "pydantic-extra-types (>=2.0.0)" , "pydantic-settings (>=2.0.0)" , "python-multipart (>=0.0.7)" , "pyyaml (>=5.3.1)" , "ujson (>=4.0.1,!=4.0.2,!=4.1.0,!=4.2.0,!=4.3.0,!=5.0.0,!=5.1.0)" , "uvicorn[standard] (>=0.12.0)" ]
standard = [ "email-validator (>=2.0.0)" , "fastapi-cli[standard] (>=0.0.5)" , "httpx (>=0.23.0)" , "jinja2 (>=2.11.2)" , "python-multipart (>=0.0.7)" , "uvicorn[standard] (>=0.12.0)" ]
[ [ package ] ]
name = "filelock"
2025-09-11 18:44:18 -07:00
version = "3.19.1"
2024-10-06 18:21:43 -07:00
description = "A platform independent file lock."
optional = false
2025-02-14 20:02:59 -08:00
python-versions = ">=3.9"
2024-10-06 18:21:43 -07:00
files = [
2025-09-11 18:44:18 -07:00
{ file = "filelock-3.19.1-py3-none-any.whl" , hash = "sha256:d38e30481def20772f5baf097c122c3babc4fcdb7e14e57049eb9d88c6dc017d" } ,
{ file = "filelock-3.19.1.tar.gz" , hash = "sha256:66eda1888b0171c998b35be2bcc0f6d75c388a7ce20c3f3f37aa8e96c2dddf58" } ,
2024-10-06 18:21:43 -07:00
]
[ [ package ] ]
name = "fsspec"
2025-09-11 18:44:18 -07:00
version = "2025.9.0"
2024-10-06 18:21:43 -07:00
description = "File-system specification"
optional = false
2025-04-06 01:24:01 -07:00
python-versions = ">=3.9"
2024-10-06 18:21:43 -07:00
files = [
2025-09-11 18:44:18 -07:00
{ file = "fsspec-2025.9.0-py3-none-any.whl" , hash = "sha256:530dc2a2af60a414a832059574df4a6e10cce927f6f4a78209390fe38955cfb7" } ,
{ file = "fsspec-2025.9.0.tar.gz" , hash = "sha256:19fd429483d25d28b65ec68f9f4adc16c17ea2c7c7bf54ec61360d478fb19c19" } ,
2024-10-06 18:21:43 -07:00
]
[ package . extras ]
abfs = [ "adlfs" ]
adl = [ "adlfs" ]
arrow = [ "pyarrow (>=1)" ]
dask = [ "dask" , "distributed" ]
2025-07-21 10:09:22 -07:00
dev = [ "pre-commit" , "ruff (>=0.5)" ]
2024-10-06 18:21:43 -07:00
doc = [ "numpydoc" , "sphinx" , "sphinx-design" , "sphinx-rtd-theme" , "yarl" ]
dropbox = [ "dropbox" , "dropboxdrivefs" , "requests" ]
full = [ "adlfs" , "aiohttp (!=4.0.0a0,!=4.0.0a1)" , "dask" , "distributed" , "dropbox" , "dropboxdrivefs" , "fusepy" , "gcsfs" , "libarchive-c" , "ocifs" , "panel" , "paramiko" , "pyarrow (>=1)" , "pygit2" , "requests" , "s3fs" , "smbprotocol" , "tqdm" ]
fuse = [ "fusepy" ]
gcs = [ "gcsfs" ]
git = [ "pygit2" ]
github = [ "requests" ]
gs = [ "gcsfs" ]
gui = [ "panel" ]
hdfs = [ "pyarrow (>=1)" ]
http = [ "aiohttp (!=4.0.0a0,!=4.0.0a1)" ]
libarchive = [ "libarchive-c" ]
oci = [ "ocifs" ]
s3 = [ "s3fs" ]
sftp = [ "paramiko" ]
smb = [ "smbprotocol" ]
ssh = [ "paramiko" ]
test = [ "aiohttp (!=4.0.0a0,!=4.0.0a1)" , "numpy" , "pytest" , "pytest-asyncio (!=0.22.0)" , "pytest-benchmark" , "pytest-cov" , "pytest-mock" , "pytest-recording" , "pytest-rerunfailures" , "requests" ]
2025-02-14 20:02:59 -08:00
test-downstream = [ "aiobotocore (>=2.5.4,<3.0.0)" , "dask[dataframe,test]" , "moto[server] (>4,<5)" , "pytest-timeout" , "xarray" ]
2024-10-06 18:21:43 -07:00
test-full = [ "adlfs" , "aiohttp (!=4.0.0a0,!=4.0.0a1)" , "cloudpickle" , "dask" , "distributed" , "dropbox" , "dropboxdrivefs" , "fastparquet" , "fusepy" , "gcsfs" , "jinja2" , "kerchunk" , "libarchive-c" , "lz4" , "notebook" , "numpy" , "ocifs" , "pandas" , "panel" , "paramiko" , "pyarrow" , "pyarrow (>=1)" , "pyftpdlib" , "pygit2" , "pytest" , "pytest-asyncio (!=0.22.0)" , "pytest-benchmark" , "pytest-cov" , "pytest-mock" , "pytest-recording" , "pytest-rerunfailures" , "python-snappy" , "requests" , "smbprotocol" , "tqdm" , "urllib3" , "zarr" , "zstandard" ]
tqdm = [ "tqdm" ]
2024-11-07 22:11:00 -06:00
[ [ package ] ]
name = "googleapis-common-protos"
2025-04-15 14:50:09 -07:00
version = "1.70.0"
2024-11-07 22:11:00 -06:00
description = "Common protobufs used in Google APIs"
optional = false
python-versions = ">=3.7"
files = [
2025-04-15 14:50:09 -07:00
{ file = "googleapis_common_protos-1.70.0-py3-none-any.whl" , hash = "sha256:b8bfcca8c25a2bb253e0e0b0adaf8c00773e5e6af6fd92397576680b807e0fd8" } ,
{ file = "googleapis_common_protos-1.70.0.tar.gz" , hash = "sha256:0e1b44e0ea153e6594f9f394fef15193a68aaaea2d843f83e2742717ca753257" } ,
2024-11-07 22:11:00 -06:00
]
[ package . dependencies ]
2025-04-06 01:24:01 -07:00
protobuf = ">=3.20.2,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<7.0.0"
2024-11-07 22:11:00 -06:00
[ package . extras ]
2025-04-06 01:24:01 -07:00
grpc = [ "grpcio (>=1.44.0,<2.0.0)" ]
2024-11-07 22:11:00 -06:00
2024-10-30 17:54:51 -07:00
[ [ package ] ]
name = "grpcio"
2025-07-25 19:08:24 -07:00
version = "1.74.0"
2024-10-30 17:54:51 -07:00
description = "HTTP/2-based RPC framework"
optional = false
2025-04-06 01:24:01 -07:00
python-versions = ">=3.9"
2024-10-30 17:54:51 -07:00
files = [
2025-07-25 19:08:24 -07:00
{ file = "grpcio-1.74.0-cp310-cp310-linux_armv7l.whl" , hash = "sha256:85bd5cdf4ed7b2d6438871adf6afff9af7096486fcf51818a81b77ef4dd30907" } ,
{ file = "grpcio-1.74.0-cp310-cp310-macosx_11_0_universal2.whl" , hash = "sha256:68c8ebcca945efff9d86d8d6d7bfb0841cf0071024417e2d7f45c5e46b5b08eb" } ,
{ file = "grpcio-1.74.0-cp310-cp310-manylinux_2_17_aarch64.whl" , hash = "sha256:e154d230dc1bbbd78ad2fdc3039fa50ad7ffcf438e4eb2fa30bce223a70c7486" } ,
{ file = "grpcio-1.74.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:e8978003816c7b9eabe217f88c78bc26adc8f9304bf6a594b02e5a49b2ef9c11" } ,
{ file = "grpcio-1.74.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:c3d7bd6e3929fd2ea7fbc3f562e4987229ead70c9ae5f01501a46701e08f1ad9" } ,
{ file = "grpcio-1.74.0-cp310-cp310-musllinux_1_1_aarch64.whl" , hash = "sha256:136b53c91ac1d02c8c24201bfdeb56f8b3ac3278668cbb8e0ba49c88069e1bdc" } ,
{ file = "grpcio-1.74.0-cp310-cp310-musllinux_1_1_i686.whl" , hash = "sha256:fe0f540750a13fd8e5da4b3eaba91a785eea8dca5ccd2bc2ffe978caa403090e" } ,
{ file = "grpcio-1.74.0-cp310-cp310-musllinux_1_1_x86_64.whl" , hash = "sha256:4e4181bfc24413d1e3a37a0b7889bea68d973d4b45dd2bc68bb766c140718f82" } ,
{ file = "grpcio-1.74.0-cp310-cp310-win32.whl" , hash = "sha256:1733969040989f7acc3d94c22f55b4a9501a30f6aaacdbccfaba0a3ffb255ab7" } ,
{ file = "grpcio-1.74.0-cp310-cp310-win_amd64.whl" , hash = "sha256:9e912d3c993a29df6c627459af58975b2e5c897d93287939b9d5065f000249b5" } ,
{ file = "grpcio-1.74.0-cp311-cp311-linux_armv7l.whl" , hash = "sha256:69e1a8180868a2576f02356565f16635b99088da7df3d45aaa7e24e73a054e31" } ,
{ file = "grpcio-1.74.0-cp311-cp311-macosx_11_0_universal2.whl" , hash = "sha256:8efe72fde5500f47aca1ef59495cb59c885afe04ac89dd11d810f2de87d935d4" } ,
{ file = "grpcio-1.74.0-cp311-cp311-manylinux_2_17_aarch64.whl" , hash = "sha256:a8f0302f9ac4e9923f98d8e243939a6fb627cd048f5cd38595c97e38020dffce" } ,
{ file = "grpcio-1.74.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:2f609a39f62a6f6f05c7512746798282546358a37ea93c1fcbadf8b2fed162e3" } ,
{ file = "grpcio-1.74.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:c98e0b7434a7fa4e3e63f250456eaef52499fba5ae661c58cc5b5477d11e7182" } ,
{ file = "grpcio-1.74.0-cp311-cp311-musllinux_1_1_aarch64.whl" , hash = "sha256:662456c4513e298db6d7bd9c3b8df6f75f8752f0ba01fb653e252ed4a59b5a5d" } ,
{ file = "grpcio-1.74.0-cp311-cp311-musllinux_1_1_i686.whl" , hash = "sha256:3d14e3c4d65e19d8430a4e28ceb71ace4728776fd6c3ce34016947474479683f" } ,
{ file = "grpcio-1.74.0-cp311-cp311-musllinux_1_1_x86_64.whl" , hash = "sha256:1bf949792cee20d2078323a9b02bacbbae002b9e3b9e2433f2741c15bdeba1c4" } ,
{ file = "grpcio-1.74.0-cp311-cp311-win32.whl" , hash = "sha256:55b453812fa7c7ce2f5c88be3018fb4a490519b6ce80788d5913f3f9d7da8c7b" } ,
{ file = "grpcio-1.74.0-cp311-cp311-win_amd64.whl" , hash = "sha256:86ad489db097141a907c559988c29718719aa3e13370d40e20506f11b4de0d11" } ,
{ file = "grpcio-1.74.0-cp312-cp312-linux_armv7l.whl" , hash = "sha256:8533e6e9c5bd630ca98062e3a1326249e6ada07d05acf191a77bc33f8948f3d8" } ,
{ file = "grpcio-1.74.0-cp312-cp312-macosx_11_0_universal2.whl" , hash = "sha256:2918948864fec2a11721d91568effffbe0a02b23ecd57f281391d986847982f6" } ,
{ file = "grpcio-1.74.0-cp312-cp312-manylinux_2_17_aarch64.whl" , hash = "sha256:60d2d48b0580e70d2e1954d0d19fa3c2e60dd7cbed826aca104fff518310d1c5" } ,
{ file = "grpcio-1.74.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:3601274bc0523f6dc07666c0e01682c94472402ac2fd1226fd96e079863bfa49" } ,
{ file = "grpcio-1.74.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:176d60a5168d7948539def20b2a3adcce67d72454d9ae05969a2e73f3a0feee7" } ,
{ file = "grpcio-1.74.0-cp312-cp312-musllinux_1_1_aarch64.whl" , hash = "sha256:e759f9e8bc908aaae0412642afe5416c9f983a80499448fcc7fab8692ae044c3" } ,
{ file = "grpcio-1.74.0-cp312-cp312-musllinux_1_1_i686.whl" , hash = "sha256:9e7c4389771855a92934b2846bd807fc25a3dfa820fd912fe6bd8136026b2707" } ,
{ file = "grpcio-1.74.0-cp312-cp312-musllinux_1_1_x86_64.whl" , hash = "sha256:cce634b10aeab37010449124814b05a62fb5f18928ca878f1bf4750d1f0c815b" } ,
{ file = "grpcio-1.74.0-cp312-cp312-win32.whl" , hash = "sha256:885912559974df35d92219e2dc98f51a16a48395f37b92865ad45186f294096c" } ,
{ file = "grpcio-1.74.0-cp312-cp312-win_amd64.whl" , hash = "sha256:42f8fee287427b94be63d916c90399ed310ed10aadbf9e2e5538b3e497d269bc" } ,
{ file = "grpcio-1.74.0-cp313-cp313-linux_armv7l.whl" , hash = "sha256:2bc2d7d8d184e2362b53905cb1708c84cb16354771c04b490485fa07ce3a1d89" } ,
{ file = "grpcio-1.74.0-cp313-cp313-macosx_11_0_universal2.whl" , hash = "sha256:c14e803037e572c177ba54a3e090d6eb12efd795d49327c5ee2b3bddb836bf01" } ,
{ file = "grpcio-1.74.0-cp313-cp313-manylinux_2_17_aarch64.whl" , hash = "sha256:f6ec94f0e50eb8fa1744a731088b966427575e40c2944a980049798b127a687e" } ,
{ file = "grpcio-1.74.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:566b9395b90cc3d0d0c6404bc8572c7c18786ede549cdb540ae27b58afe0fb91" } ,
{ file = "grpcio-1.74.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:e1ea6176d7dfd5b941ea01c2ec34de9531ba494d541fe2057c904e601879f249" } ,
{ file = "grpcio-1.74.0-cp313-cp313-musllinux_1_1_aarch64.whl" , hash = "sha256:64229c1e9cea079420527fa8ac45d80fc1e8d3f94deaa35643c381fa8d98f362" } ,
{ file = "grpcio-1.74.0-cp313-cp313-musllinux_1_1_i686.whl" , hash = "sha256:0f87bddd6e27fc776aacf7ebfec367b6d49cad0455123951e4488ea99d9b9b8f" } ,
{ file = "grpcio-1.74.0-cp313-cp313-musllinux_1_1_x86_64.whl" , hash = "sha256:3b03d8f2a07f0fea8c8f74deb59f8352b770e3900d143b3d1475effcb08eec20" } ,
{ file = "grpcio-1.74.0-cp313-cp313-win32.whl" , hash = "sha256:b6a73b2ba83e663b2480a90b82fdae6a7aa6427f62bf43b29912c0cfd1aa2bfa" } ,
{ file = "grpcio-1.74.0-cp313-cp313-win_amd64.whl" , hash = "sha256:fd3c71aeee838299c5887230b8a1822795325ddfea635edd82954c1eaa831e24" } ,
{ file = "grpcio-1.74.0-cp39-cp39-linux_armv7l.whl" , hash = "sha256:4bc5fca10aaf74779081e16c2bcc3d5ec643ffd528d9e7b1c9039000ead73bae" } ,
{ file = "grpcio-1.74.0-cp39-cp39-macosx_11_0_universal2.whl" , hash = "sha256:6bab67d15ad617aff094c382c882e0177637da73cbc5532d52c07b4ee887a87b" } ,
{ file = "grpcio-1.74.0-cp39-cp39-manylinux_2_17_aarch64.whl" , hash = "sha256:655726919b75ab3c34cdad39da5c530ac6fa32696fb23119e36b64adcfca174a" } ,
{ file = "grpcio-1.74.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:1a2b06afe2e50ebfd46247ac3ba60cac523f54ec7792ae9ba6073c12daf26f0a" } ,
{ file = "grpcio-1.74.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:5f251c355167b2360537cf17bea2cf0197995e551ab9da6a0a59b3da5e8704f9" } ,
{ file = "grpcio-1.74.0-cp39-cp39-musllinux_1_1_aarch64.whl" , hash = "sha256:8f7b5882fb50632ab1e48cb3122d6df55b9afabc265582808036b6e51b9fd6b7" } ,
{ file = "grpcio-1.74.0-cp39-cp39-musllinux_1_1_i686.whl" , hash = "sha256:834988b6c34515545b3edd13e902c1acdd9f2465d386ea5143fb558f153a7176" } ,
{ file = "grpcio-1.74.0-cp39-cp39-musllinux_1_1_x86_64.whl" , hash = "sha256:22b834cef33429ca6cc28303c9c327ba9a3fafecbf62fae17e9a7b7163cc43ac" } ,
{ file = "grpcio-1.74.0-cp39-cp39-win32.whl" , hash = "sha256:7d95d71ff35291bab3f1c52f52f474c632db26ea12700c2ff0ea0532cb0b5854" } ,
{ file = "grpcio-1.74.0-cp39-cp39-win_amd64.whl" , hash = "sha256:ecde9ab49f58433abe02f9ed076c7b5be839cf0153883a6d23995937a82392fa" } ,
{ file = "grpcio-1.74.0.tar.gz" , hash = "sha256:80d1f4fbb35b0742d3e3d3bb654b7381cd5f015f8497279a1e9c21ba623e01b1" } ,
2024-10-30 17:54:51 -07:00
]
[ package . extras ]
2025-07-25 19:08:24 -07:00
protobuf = [ "grpcio-tools (>=1.74.0)" ]
2024-10-30 17:54:51 -07:00
2024-10-06 18:21:43 -07:00
[ [ package ] ]
name = "h11"
2025-05-23 09:52:23 -07:00
version = "0.16.0"
2024-10-06 18:21:43 -07:00
description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1"
optional = false
2025-05-23 09:52:23 -07:00
python-versions = ">=3.8"
2024-10-06 18:21:43 -07:00
files = [
2025-05-23 09:52:23 -07:00
{ file = "h11-0.16.0-py3-none-any.whl" , hash = "sha256:63cf8bbe7522de3bf65932fda1d9c2772064ffb3dae62d55932da54b31cb6c86" } ,
{ file = "h11-0.16.0.tar.gz" , hash = "sha256:4e35b956cf45792e4caa5885e69fba00bdbc6ffafbfa020300e549b208ee5ff1" } ,
2024-10-06 18:21:43 -07:00
]
2025-05-23 09:52:23 -07:00
[ [ package ] ]
name = "hf-xet"
2025-09-11 18:44:18 -07:00
version = "1.1.9"
2025-05-23 09:52:23 -07:00
description = "Fast transfer of large files with the Hugging Face Hub."
optional = false
python-versions = ">=3.8"
files = [
2025-09-11 18:44:18 -07:00
{ file = "hf_xet-1.1.9-cp37-abi3-macosx_10_12_x86_64.whl" , hash = "sha256:a3b6215f88638dd7a6ff82cb4e738dcbf3d863bf667997c093a3c990337d1160" } ,
{ file = "hf_xet-1.1.9-cp37-abi3-macosx_11_0_arm64.whl" , hash = "sha256:9b486de7a64a66f9a172f4b3e0dfe79c9f0a93257c501296a2521a13495a698a" } ,
{ file = "hf_xet-1.1.9-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:a4c5a840c2c4e6ec875ed13703a60e3523bc7f48031dfd750923b2a4d1a5fc3c" } ,
{ file = "hf_xet-1.1.9-cp37-abi3-manylinux_2_28_aarch64.whl" , hash = "sha256:96a6139c9e44dad1c52c52520db0fffe948f6bce487cfb9d69c125f254bb3790" } ,
{ file = "hf_xet-1.1.9-cp37-abi3-musllinux_1_2_aarch64.whl" , hash = "sha256:ad1022e9a998e784c97b2173965d07fe33ee26e4594770b7785a8cc8f922cd95" } ,
{ file = "hf_xet-1.1.9-cp37-abi3-musllinux_1_2_x86_64.whl" , hash = "sha256:86754c2d6d5afb11b0a435e6e18911a4199262fe77553f8c50d75e21242193ea" } ,
{ file = "hf_xet-1.1.9-cp37-abi3-win_amd64.whl" , hash = "sha256:5aad3933de6b725d61d51034e04174ed1dce7a57c63d530df0014dea15a40127" } ,
{ file = "hf_xet-1.1.9.tar.gz" , hash = "sha256:c99073ce404462e909f1d5839b2d14a3827b8fe75ed8aed551ba6609c026c803" } ,
2025-05-23 09:52:23 -07:00
]
[ package . extras ]
tests = [ "pytest" ]
2024-10-06 18:21:43 -07:00
[ [ package ] ]
name = "httpcore"
2025-05-23 09:52:23 -07:00
version = "1.0.9"
2024-10-06 18:21:43 -07:00
description = "A minimal low-level HTTP client."
optional = false
python-versions = ">=3.8"
files = [
2025-05-23 09:52:23 -07:00
{ file = "httpcore-1.0.9-py3-none-any.whl" , hash = "sha256:2d400746a40668fc9dec9810239072b40b4484b640a8c38fd654a024c7a1bf55" } ,
{ file = "httpcore-1.0.9.tar.gz" , hash = "sha256:6e34463af53fd2ab5d807f399a9b45ea31c3dfa2276f15a2c3f00afff6e176e8" } ,
2024-10-06 18:21:43 -07:00
]
[ package . dependencies ]
certifi = "*"
2025-05-23 09:52:23 -07:00
h11 = ">=0.16"
2024-10-06 18:21:43 -07:00
[ package . extras ]
asyncio = [ "anyio (>=4.0,<5.0)" ]
http2 = [ "h2 (>=3,<5)" ]
socks = [ "socksio (==1.*)" ]
trio = [ "trio (>=0.22.0,<1.0)" ]
[ [ package ] ]
name = "httpx"
version = "0.27.2"
description = "The next generation HTTP client."
optional = false
python-versions = ">=3.8"
files = [
{ file = "httpx-0.27.2-py3-none-any.whl" , hash = "sha256:7bb2708e112d8fdd7829cd4243970f0c223274051cb35ee80c03301ee29a3df0" } ,
{ file = "httpx-0.27.2.tar.gz" , hash = "sha256:f7c2be1d2f3c3c3160d441802406b206c2b76f5947b11115e6df10c6c65e66c2" } ,
]
[ package . dependencies ]
anyio = "*"
certifi = "*"
httpcore = "==1.*"
idna = "*"
sniffio = "*"
[ package . extras ]
brotli = [ "brotli" , "brotlicffi" ]
cli = [ "click (==8.*)" , "pygments (==2.*)" , "rich (>=10,<14)" ]
http2 = [ "h2 (>=3,<5)" ]
socks = [ "socksio (==1.*)" ]
zstd = [ "zstandard (>=0.18.0)" ]
[ [ package ] ]
name = "huggingface-hub"
2025-08-11 13:23:40 -07:00
version = "0.34.4"
2024-10-06 18:21:43 -07:00
description = "Client library to download and publish models, datasets and other repos on the huggingface.co hub"
optional = false
python-versions = ">=3.8.0"
files = [
2025-08-11 13:23:40 -07:00
{ file = "huggingface_hub-0.34.4-py3-none-any.whl" , hash = "sha256:9b365d781739c93ff90c359844221beef048403f1bc1f1c123c191257c3c890a" } ,
{ file = "huggingface_hub-0.34.4.tar.gz" , hash = "sha256:a4228daa6fb001be3f4f4bdaf9a0db00e1739235702848df00885c9b5742c85c" } ,
2024-10-06 18:21:43 -07:00
]
[ package . dependencies ]
filelock = "*"
fsspec = ">=2023.5.0"
2025-07-25 19:08:24 -07:00
hf-xet = { version = ">=1.1.3,<2.0.0" , markers = "platform_machine == \"x86_64\" or platform_machine == \"amd64\" or platform_machine == \"arm64\" or platform_machine == \"aarch64\"" }
2024-10-06 18:21:43 -07:00
packaging = ">=20.9"
pyyaml = ">=5.1"
requests = "*"
tqdm = ">=4.42.1"
typing-extensions = ">=3.7.4.3"
[ package . extras ]
2025-07-25 19:08:24 -07:00
all = [ "InquirerPy (==0.3.4)" , "Jinja2" , "Pillow" , "aiohttp" , "authlib (>=1.3.2)" , "fastapi" , "gradio (>=4.0.0)" , "httpx" , "itsdangerous" , "jedi" , "libcst (>=1.4.0)" , "mypy (==1.15.0)" , "mypy (>=1.14.1,<1.15.0)" , "numpy" , "pytest (>=8.1.1,<8.2.2)" , "pytest-asyncio" , "pytest-cov" , "pytest-env" , "pytest-mock" , "pytest-rerunfailures" , "pytest-vcr" , "pytest-xdist" , "ruff (>=0.9.0)" , "soundfile" , "types-PyYAML" , "types-requests" , "types-simplejson" , "types-toml" , "types-tqdm" , "types-urllib3" , "typing-extensions (>=4.8.0)" , "urllib3 (<2.0)" ]
2024-10-06 18:21:43 -07:00
cli = [ "InquirerPy (==0.3.4)" ]
2025-07-25 19:08:24 -07:00
dev = [ "InquirerPy (==0.3.4)" , "Jinja2" , "Pillow" , "aiohttp" , "authlib (>=1.3.2)" , "fastapi" , "gradio (>=4.0.0)" , "httpx" , "itsdangerous" , "jedi" , "libcst (>=1.4.0)" , "mypy (==1.15.0)" , "mypy (>=1.14.1,<1.15.0)" , "numpy" , "pytest (>=8.1.1,<8.2.2)" , "pytest-asyncio" , "pytest-cov" , "pytest-env" , "pytest-mock" , "pytest-rerunfailures" , "pytest-vcr" , "pytest-xdist" , "ruff (>=0.9.0)" , "soundfile" , "types-PyYAML" , "types-requests" , "types-simplejson" , "types-toml" , "types-tqdm" , "types-urllib3" , "typing-extensions (>=4.8.0)" , "urllib3 (<2.0)" ]
2024-10-06 18:21:43 -07:00
fastai = [ "fastai (>=2.4)" , "fastcore (>=1.3.27)" , "toml" ]
hf-transfer = [ "hf-transfer (>=0.1.4)" ]
2025-05-23 09:52:23 -07:00
hf-xet = [ "hf-xet (>=1.1.2,<2.0.0)" ]
2024-10-23 14:32:40 -07:00
inference = [ "aiohttp" ]
2025-05-23 09:52:23 -07:00
mcp = [ "aiohttp" , "mcp (>=1.8.0)" , "typer" ]
oauth = [ "authlib (>=1.3.2)" , "fastapi" , "httpx" , "itsdangerous" ]
2025-07-25 19:08:24 -07:00
quality = [ "libcst (>=1.4.0)" , "mypy (==1.15.0)" , "mypy (>=1.14.1,<1.15.0)" , "ruff (>=0.9.0)" ]
2024-10-06 18:21:43 -07:00
tensorflow = [ "graphviz" , "pydot" , "tensorflow" ]
tensorflow-testing = [ "keras (<3.0)" , "tensorflow" ]
2025-05-23 09:52:23 -07:00
testing = [ "InquirerPy (==0.3.4)" , "Jinja2" , "Pillow" , "aiohttp" , "authlib (>=1.3.2)" , "fastapi" , "gradio (>=4.0.0)" , "httpx" , "itsdangerous" , "jedi" , "numpy" , "pytest (>=8.1.1,<8.2.2)" , "pytest-asyncio" , "pytest-cov" , "pytest-env" , "pytest-mock" , "pytest-rerunfailures" , "pytest-vcr" , "pytest-xdist" , "soundfile" , "urllib3 (<2.0)" ]
2024-10-06 18:21:43 -07:00
torch = [ "safetensors[torch]" , "torch" ]
typing = [ "types-PyYAML" , "types-requests" , "types-simplejson" , "types-toml" , "types-tqdm" , "types-urllib3" , "typing-extensions (>=4.8.0)" ]
[ [ package ] ]
name = "idna"
version = "3.10"
description = "Internationalized Domain Names in Applications (IDNA)"
optional = false
python-versions = ">=3.6"
files = [
{ file = "idna-3.10-py3-none-any.whl" , hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3" } ,
{ file = "idna-3.10.tar.gz" , hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9" } ,
]
[ package . extras ]
all = [ "flake8 (>=7.1.1)" , "mypy (>=1.11.2)" , "pytest (>=8.3.2)" , "ruff (>=0.6.2)" ]
2024-11-07 22:11:00 -06:00
[ [ package ] ]
name = "importlib-metadata"
version = "8.5.0"
description = "Read metadata from Python packages"
optional = false
python-versions = ">=3.8"
files = [
{ file = "importlib_metadata-8.5.0-py3-none-any.whl" , hash = "sha256:45e54197d28b7a7f1559e60b95e7c567032b602131fbd588f1497f47880aa68b" } ,
{ file = "importlib_metadata-8.5.0.tar.gz" , hash = "sha256:71522656f0abace1d072b9e5481a48f07c138e00f079c38c8f883823f9c26bd7" } ,
]
[ package . dependencies ]
zipp = ">=3.20"
[ package . extras ]
check = [ "pytest-checkdocs (>=2.4)" , "pytest-ruff (>=0.2.1)" ]
cover = [ "pytest-cov" ]
doc = [ "furo" , "jaraco.packaging (>=9.3)" , "jaraco.tidelift (>=1.4)" , "rst.linker (>=1.9)" , "sphinx (>=3.5)" , "sphinx-lint" ]
enabler = [ "pytest-enabler (>=2.2)" ]
perf = [ "ipython" ]
test = [ "flufl.flake8" , "importlib-resources (>=1.3)" , "jaraco.test (>=5.4)" , "packaging" , "pyfakefs" , "pytest (>=6,!=8.1.*)" , "pytest-perf (>=0.9.2)" ]
type = [ "pytest-mypy" ]
2024-10-17 10:42:15 -07:00
[ [ package ] ]
name = "iniconfig"
2025-04-06 01:24:01 -07:00
version = "2.1.0"
2024-10-17 10:42:15 -07:00
description = "brain-dead simple config-ini parsing"
optional = false
2025-04-06 01:24:01 -07:00
python-versions = ">=3.8"
2024-10-17 10:42:15 -07:00
files = [
2025-04-06 01:24:01 -07:00
{ file = "iniconfig-2.1.0-py3-none-any.whl" , hash = "sha256:9deba5723312380e77435581c6bf4935c94cbfab9b1ed33ef8d238ea168eb760" } ,
{ file = "iniconfig-2.1.0.tar.gz" , hash = "sha256:3abbd2e30b36733fee78f9c7f7308f2d0050e88f0087fd25c2645f63c773e1c7" } ,
2024-10-17 10:42:15 -07:00
]
2024-10-06 18:21:43 -07:00
[ [ package ] ]
name = "jinja2"
2025-04-06 01:24:01 -07:00
version = "3.1.6"
2024-10-06 18:21:43 -07:00
description = "A very fast and expressive template engine."
optional = false
python-versions = ">=3.7"
files = [
2025-04-06 01:24:01 -07:00
{ file = "jinja2-3.1.6-py3-none-any.whl" , hash = "sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67" } ,
{ file = "jinja2-3.1.6.tar.gz" , hash = "sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d" } ,
2024-10-06 18:21:43 -07:00
]
[ package . dependencies ]
MarkupSafe = ">=2.0"
[ package . extras ]
i18n = [ "Babel (>=2.7)" ]
[ [ package ] ]
name = "jiter"
2025-05-23 09:52:23 -07:00
version = "0.10.0"
2024-10-06 18:21:43 -07:00
description = "Fast iterable JSON parser."
optional = false
2025-05-23 09:52:23 -07:00
python-versions = ">=3.9"
2024-10-06 18:21:43 -07:00
files = [
2025-05-23 09:52:23 -07:00
{ file = "jiter-0.10.0-cp310-cp310-macosx_10_12_x86_64.whl" , hash = "sha256:cd2fb72b02478f06a900a5782de2ef47e0396b3e1f7d5aba30daeb1fce66f303" } ,
{ file = "jiter-0.10.0-cp310-cp310-macosx_11_0_arm64.whl" , hash = "sha256:32bb468e3af278f095d3fa5b90314728a6916d89ba3d0ffb726dd9bf7367285e" } ,
{ file = "jiter-0.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:aa8b3e0068c26ddedc7abc6fac37da2d0af16b921e288a5a613f4b86f050354f" } ,
{ file = "jiter-0.10.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl" , hash = "sha256:286299b74cc49e25cd42eea19b72aa82c515d2f2ee12d11392c56d8701f52224" } ,
{ file = "jiter-0.10.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" , hash = "sha256:6ed5649ceeaeffc28d87fb012d25a4cd356dcd53eff5acff1f0466b831dda2a7" } ,
{ file = "jiter-0.10.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:b2ab0051160cb758a70716448908ef14ad476c3774bd03ddce075f3c1f90a3d6" } ,
{ file = "jiter-0.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:03997d2f37f6b67d2f5c475da4412be584e1cec273c1cfc03d642c46db43f8cf" } ,
{ file = "jiter-0.10.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl" , hash = "sha256:c404a99352d839fed80d6afd6c1d66071f3bacaaa5c4268983fc10f769112e90" } ,
{ file = "jiter-0.10.0-cp310-cp310-musllinux_1_1_aarch64.whl" , hash = "sha256:66e989410b6666d3ddb27a74c7e50d0829704ede652fd4c858e91f8d64b403d0" } ,
{ file = "jiter-0.10.0-cp310-cp310-musllinux_1_1_x86_64.whl" , hash = "sha256:b532d3af9ef4f6374609a3bcb5e05a1951d3bf6190dc6b176fdb277c9bbf15ee" } ,
{ file = "jiter-0.10.0-cp310-cp310-win32.whl" , hash = "sha256:da9be20b333970e28b72edc4dff63d4fec3398e05770fb3205f7fb460eb48dd4" } ,
{ file = "jiter-0.10.0-cp310-cp310-win_amd64.whl" , hash = "sha256:f59e533afed0c5b0ac3eba20d2548c4a550336d8282ee69eb07b37ea526ee4e5" } ,
{ file = "jiter-0.10.0-cp311-cp311-macosx_10_12_x86_64.whl" , hash = "sha256:3bebe0c558e19902c96e99217e0b8e8b17d570906e72ed8a87170bc290b1e978" } ,
{ file = "jiter-0.10.0-cp311-cp311-macosx_11_0_arm64.whl" , hash = "sha256:558cc7e44fd8e507a236bee6a02fa17199ba752874400a0ca6cd6e2196cdb7dc" } ,
{ file = "jiter-0.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:4d613e4b379a07d7c8453c5712ce7014e86c6ac93d990a0b8e7377e18505e98d" } ,
{ file = "jiter-0.10.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl" , hash = "sha256:f62cf8ba0618eda841b9bf61797f21c5ebd15a7a1e19daab76e4e4b498d515b2" } ,
{ file = "jiter-0.10.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" , hash = "sha256:919d139cdfa8ae8945112398511cb7fca58a77382617d279556b344867a37e61" } ,
{ file = "jiter-0.10.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:13ddbc6ae311175a3b03bd8994881bc4635c923754932918e18da841632349db" } ,
{ file = "jiter-0.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:4c440ea003ad10927a30521a9062ce10b5479592e8a70da27f21eeb457b4a9c5" } ,
{ file = "jiter-0.10.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl" , hash = "sha256:dc347c87944983481e138dea467c0551080c86b9d21de6ea9306efb12ca8f606" } ,
{ file = "jiter-0.10.0-cp311-cp311-musllinux_1_1_aarch64.whl" , hash = "sha256:13252b58c1f4d8c5b63ab103c03d909e8e1e7842d302473f482915d95fefd605" } ,
{ file = "jiter-0.10.0-cp311-cp311-musllinux_1_1_x86_64.whl" , hash = "sha256:7d1bbf3c465de4a24ab12fb7766a0003f6f9bce48b8b6a886158c4d569452dc5" } ,
{ file = "jiter-0.10.0-cp311-cp311-win32.whl" , hash = "sha256:db16e4848b7e826edca4ccdd5b145939758dadf0dc06e7007ad0e9cfb5928ae7" } ,
{ file = "jiter-0.10.0-cp311-cp311-win_amd64.whl" , hash = "sha256:9c9c1d5f10e18909e993f9641f12fe1c77b3e9b533ee94ffa970acc14ded3812" } ,
{ file = "jiter-0.10.0-cp312-cp312-macosx_10_12_x86_64.whl" , hash = "sha256:1e274728e4a5345a6dde2d343c8da018b9d4bd4350f5a472fa91f66fda44911b" } ,
{ file = "jiter-0.10.0-cp312-cp312-macosx_11_0_arm64.whl" , hash = "sha256:7202ae396446c988cb2a5feb33a543ab2165b786ac97f53b59aafb803fef0744" } ,
{ file = "jiter-0.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:23ba7722d6748b6920ed02a8f1726fb4b33e0fd2f3f621816a8b486c66410ab2" } ,
{ file = "jiter-0.10.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl" , hash = "sha256:371eab43c0a288537d30e1f0b193bc4eca90439fc08a022dd83e5e07500ed026" } ,
{ file = "jiter-0.10.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" , hash = "sha256:6c675736059020365cebc845a820214765162728b51ab1e03a1b7b3abb70f74c" } ,
{ file = "jiter-0.10.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:0c5867d40ab716e4684858e4887489685968a47e3ba222e44cde6e4a2154f959" } ,
{ file = "jiter-0.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:395bb9a26111b60141757d874d27fdea01b17e8fac958b91c20128ba8f4acc8a" } ,
{ file = "jiter-0.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl" , hash = "sha256:6842184aed5cdb07e0c7e20e5bdcfafe33515ee1741a6835353bb45fe5d1bd95" } ,
{ file = "jiter-0.10.0-cp312-cp312-musllinux_1_1_aarch64.whl" , hash = "sha256:62755d1bcea9876770d4df713d82606c8c1a3dca88ff39046b85a048566d56ea" } ,
{ file = "jiter-0.10.0-cp312-cp312-musllinux_1_1_x86_64.whl" , hash = "sha256:533efbce2cacec78d5ba73a41756beff8431dfa1694b6346ce7af3a12c42202b" } ,
{ file = "jiter-0.10.0-cp312-cp312-win32.whl" , hash = "sha256:8be921f0cadd245e981b964dfbcd6fd4bc4e254cdc069490416dd7a2632ecc01" } ,
{ file = "jiter-0.10.0-cp312-cp312-win_amd64.whl" , hash = "sha256:a7c7d785ae9dda68c2678532a5a1581347e9c15362ae9f6e68f3fdbfb64f2e49" } ,
{ file = "jiter-0.10.0-cp313-cp313-macosx_10_12_x86_64.whl" , hash = "sha256:e0588107ec8e11b6f5ef0e0d656fb2803ac6cf94a96b2b9fc675c0e3ab5e8644" } ,
{ file = "jiter-0.10.0-cp313-cp313-macosx_11_0_arm64.whl" , hash = "sha256:cafc4628b616dc32530c20ee53d71589816cf385dd9449633e910d596b1f5c8a" } ,
{ file = "jiter-0.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:520ef6d981172693786a49ff5b09eda72a42e539f14788124a07530f785c3ad6" } ,
{ file = "jiter-0.10.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl" , hash = "sha256:554dedfd05937f8fc45d17ebdf298fe7e0c77458232bcb73d9fbbf4c6455f5b3" } ,
{ file = "jiter-0.10.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" , hash = "sha256:5bc299da7789deacf95f64052d97f75c16d4fc8c4c214a22bf8d859a4288a1c2" } ,
{ file = "jiter-0.10.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:5161e201172de298a8a1baad95eb85db4fb90e902353b1f6a41d64ea64644e25" } ,
{ file = "jiter-0.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:2e2227db6ba93cb3e2bf67c87e594adde0609f146344e8207e8730364db27041" } ,
{ file = "jiter-0.10.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl" , hash = "sha256:15acb267ea5e2c64515574b06a8bf393fbfee6a50eb1673614aa45f4613c0cca" } ,
{ file = "jiter-0.10.0-cp313-cp313-musllinux_1_1_aarch64.whl" , hash = "sha256:901b92f2e2947dc6dfcb52fd624453862e16665ea909a08398dde19c0731b7f4" } ,
{ file = "jiter-0.10.0-cp313-cp313-musllinux_1_1_x86_64.whl" , hash = "sha256:d0cb9a125d5a3ec971a094a845eadde2db0de85b33c9f13eb94a0c63d463879e" } ,
{ file = "jiter-0.10.0-cp313-cp313-win32.whl" , hash = "sha256:48a403277ad1ee208fb930bdf91745e4d2d6e47253eedc96e2559d1e6527006d" } ,
{ file = "jiter-0.10.0-cp313-cp313-win_amd64.whl" , hash = "sha256:75f9eb72ecb640619c29bf714e78c9c46c9c4eaafd644bf78577ede459f330d4" } ,
{ file = "jiter-0.10.0-cp313-cp313t-macosx_11_0_arm64.whl" , hash = "sha256:28ed2a4c05a1f32ef0e1d24c2611330219fed727dae01789f4a335617634b1ca" } ,
{ file = "jiter-0.10.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:14a4c418b1ec86a195f1ca69da8b23e8926c752b685af665ce30777233dfe070" } ,
{ file = "jiter-0.10.0-cp313-cp313t-win_amd64.whl" , hash = "sha256:d7bfed2fe1fe0e4dda6ef682cee888ba444b21e7a6553e03252e4feb6cf0adca" } ,
{ file = "jiter-0.10.0-cp314-cp314-macosx_10_12_x86_64.whl" , hash = "sha256:5e9251a5e83fab8d87799d3e1a46cb4b7f2919b895c6f4483629ed2446f66522" } ,
{ file = "jiter-0.10.0-cp314-cp314-macosx_11_0_arm64.whl" , hash = "sha256:023aa0204126fe5b87ccbcd75c8a0d0261b9abdbbf46d55e7ae9f8e22424eeb8" } ,
{ file = "jiter-0.10.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:3c189c4f1779c05f75fc17c0c1267594ed918996a231593a21a5ca5438445216" } ,
{ file = "jiter-0.10.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl" , hash = "sha256:15720084d90d1098ca0229352607cd68256c76991f6b374af96f36920eae13c4" } ,
{ file = "jiter-0.10.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" , hash = "sha256:e4f2fb68e5f1cfee30e2b2a09549a00683e0fde4c6a2ab88c94072fc33cb7426" } ,
{ file = "jiter-0.10.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:ce541693355fc6da424c08b7edf39a2895f58d6ea17d92cc2b168d20907dee12" } ,
{ file = "jiter-0.10.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:31c50c40272e189d50006ad5c73883caabb73d4e9748a688b216e85a9a9ca3b9" } ,
{ file = "jiter-0.10.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl" , hash = "sha256:fa3402a2ff9815960e0372a47b75c76979d74402448509ccd49a275fa983ef8a" } ,
{ file = "jiter-0.10.0-cp314-cp314-musllinux_1_1_aarch64.whl" , hash = "sha256:1956f934dca32d7bb647ea21d06d93ca40868b505c228556d3373cbd255ce853" } ,
{ file = "jiter-0.10.0-cp314-cp314-musllinux_1_1_x86_64.whl" , hash = "sha256:fcedb049bdfc555e261d6f65a6abe1d5ad68825b7202ccb9692636c70fcced86" } ,
{ file = "jiter-0.10.0-cp314-cp314-win32.whl" , hash = "sha256:ac509f7eccca54b2a29daeb516fb95b6f0bd0d0d8084efaf8ed5dfc7b9f0b357" } ,
{ file = "jiter-0.10.0-cp314-cp314t-macosx_11_0_arm64.whl" , hash = "sha256:5ed975b83a2b8639356151cef5c0d597c68376fc4922b45d0eb384ac058cfa00" } ,
{ file = "jiter-0.10.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:3aa96f2abba33dc77f79b4cf791840230375f9534e5fac927ccceb58c5e604a5" } ,
{ file = "jiter-0.10.0-cp39-cp39-macosx_10_12_x86_64.whl" , hash = "sha256:bd6292a43c0fc09ce7c154ec0fa646a536b877d1e8f2f96c19707f65355b5a4d" } ,
{ file = "jiter-0.10.0-cp39-cp39-macosx_11_0_arm64.whl" , hash = "sha256:39de429dcaeb6808d75ffe9effefe96a4903c6a4b376b2f6d08d77c1aaee2f18" } ,
{ file = "jiter-0.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:52ce124f13a7a616fad3bb723f2bfb537d78239d1f7f219566dc52b6f2a9e48d" } ,
{ file = "jiter-0.10.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl" , hash = "sha256:166f3606f11920f9a1746b2eea84fa2c0a5d50fd313c38bdea4edc072000b0af" } ,
{ file = "jiter-0.10.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" , hash = "sha256:28dcecbb4ba402916034fc14eba7709f250c4d24b0c43fc94d187ee0580af181" } ,
{ file = "jiter-0.10.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:86c5aa6910f9bebcc7bc4f8bc461aff68504388b43bfe5e5c0bd21efa33b52f4" } ,
{ file = "jiter-0.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:ceeb52d242b315d7f1f74b441b6a167f78cea801ad7c11c36da77ff2d42e8a28" } ,
{ file = "jiter-0.10.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl" , hash = "sha256:ff76d8887c8c8ee1e772274fcf8cc1071c2c58590d13e33bd12d02dc9a560397" } ,
{ file = "jiter-0.10.0-cp39-cp39-musllinux_1_1_aarch64.whl" , hash = "sha256:a9be4d0fa2b79f7222a88aa488bd89e2ae0a0a5b189462a12def6ece2faa45f1" } ,
{ file = "jiter-0.10.0-cp39-cp39-musllinux_1_1_x86_64.whl" , hash = "sha256:9ab7fd8738094139b6c1ab1822d6f2000ebe41515c537235fd45dabe13ec9324" } ,
{ file = "jiter-0.10.0-cp39-cp39-win32.whl" , hash = "sha256:5f51e048540dd27f204ff4a87f5d79294ea0aa3aa552aca34934588cf27023cf" } ,
{ file = "jiter-0.10.0-cp39-cp39-win_amd64.whl" , hash = "sha256:1b28302349dc65703a9e4ead16f163b1c339efffbe1049c30a44b001a2a4fff9" } ,
{ file = "jiter-0.10.0.tar.gz" , hash = "sha256:07a7142c38aacc85194391108dc91b5b57093c978a9932bd86a36862759d9500" } ,
2024-10-06 18:21:43 -07:00
]
[ [ package ] ]
name = "markupsafe"
2024-10-23 14:32:40 -07:00
version = "3.0.2"
2024-10-06 18:21:43 -07:00
description = "Safely add untrusted strings to HTML/XML markup."
optional = false
2024-10-08 18:16:00 -07:00
python-versions = ">=3.9"
2024-10-06 18:21:43 -07:00
files = [
2024-10-23 14:32:40 -07:00
{ file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl" , hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8" } ,
{ file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl" , hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158" } ,
{ file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579" } ,
{ file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d" } ,
{ file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb" } ,
{ file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl" , hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b" } ,
{ file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl" , hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c" } ,
{ file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl" , hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171" } ,
{ file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl" , hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50" } ,
{ file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl" , hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a" } ,
{ file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl" , hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d" } ,
{ file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl" , hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93" } ,
{ file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832" } ,
{ file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84" } ,
{ file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca" } ,
{ file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl" , hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798" } ,
{ file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl" , hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e" } ,
{ file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl" , hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4" } ,
{ file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl" , hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d" } ,
{ file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl" , hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b" } ,
{ file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl" , hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf" } ,
{ file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl" , hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225" } ,
{ file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028" } ,
{ file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8" } ,
{ file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c" } ,
{ file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl" , hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557" } ,
{ file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl" , hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22" } ,
{ file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl" , hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48" } ,
{ file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl" , hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30" } ,
{ file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl" , hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87" } ,
{ file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl" , hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd" } ,
{ file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl" , hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430" } ,
{ file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094" } ,
{ file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396" } ,
{ file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79" } ,
{ file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl" , hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a" } ,
{ file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl" , hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca" } ,
{ file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl" , hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c" } ,
{ file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl" , hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1" } ,
{ file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl" , hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f" } ,
{ file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl" , hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c" } ,
{ file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl" , hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb" } ,
{ file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c" } ,
{ file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d" } ,
{ file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe" } ,
{ file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl" , hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5" } ,
{ file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl" , hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a" } ,
{ file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl" , hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9" } ,
{ file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl" , hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6" } ,
{ file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl" , hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f" } ,
{ file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl" , hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a" } ,
{ file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl" , hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff" } ,
{ file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13" } ,
{ file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144" } ,
{ file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29" } ,
{ file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl" , hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0" } ,
{ file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl" , hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0" } ,
{ file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl" , hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178" } ,
{ file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl" , hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f" } ,
{ file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl" , hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a" } ,
{ file = "markupsafe-3.0.2.tar.gz" , hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0" } ,
2024-10-06 18:21:43 -07:00
]
[ [ package ] ]
name = "mpmath"
version = "1.3.0"
description = "Python library for arbitrary-precision floating-point arithmetic"
optional = false
python-versions = "*"
files = [
{ file = "mpmath-1.3.0-py3-none-any.whl" , hash = "sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c" } ,
{ file = "mpmath-1.3.0.tar.gz" , hash = "sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f" } ,
]
[ package . extras ]
develop = [ "codecov" , "pycodestyle" , "pytest (>=4.6)" , "pytest-cov" , "wheel" ]
docs = [ "sphinx" ]
gmpy = [ "gmpy2 (>=2.1.0a4)" ]
tests = [ "pytest (>=4.6)" ]
[ [ package ] ]
name = "networkx"
2024-10-23 14:32:40 -07:00
version = "3.4.2"
2024-10-06 18:21:43 -07:00
description = "Python package for creating and manipulating graphs and networks"
optional = false
python-versions = ">=3.10"
files = [
2024-10-23 14:32:40 -07:00
{ file = "networkx-3.4.2-py3-none-any.whl" , hash = "sha256:df5d4365b724cf81b8c6a7312509d0c22386097011ad1abe274afd5e9d3bbc5f" } ,
{ file = "networkx-3.4.2.tar.gz" , hash = "sha256:307c3669428c5362aab27c8a1260aa8f47c4e91d3891f48be0141738d8d053e1" } ,
2024-10-06 18:21:43 -07:00
]
[ package . extras ]
2024-10-17 10:42:15 -07:00
default = [ "matplotlib (>=3.7)" , "numpy (>=1.24)" , "pandas (>=2.0)" , "scipy (>=1.10,!=1.11.0,!=1.11.1)" ]
2024-10-06 18:21:43 -07:00
developer = [ "changelist (==0.5)" , "mypy (>=1.1)" , "pre-commit (>=3.2)" , "rtoml" ]
2024-10-17 10:42:15 -07:00
doc = [ "intersphinx-registry" , "myst-nb (>=1.1)" , "numpydoc (>=1.8.0)" , "pillow (>=9.4)" , "pydata-sphinx-theme (>=0.15)" , "sphinx (>=7.3)" , "sphinx-gallery (>=0.16)" , "texext (>=0.6.7)" ]
example = [ "cairocffi (>=1.7)" , "contextily (>=1.6)" , "igraph (>=0.11)" , "momepy (>=0.7.2)" , "osmnx (>=1.9)" , "scikit-learn (>=1.5)" , "seaborn (>=0.13)" ]
extra = [ "lxml (>=4.6)" , "pydot (>=3.0.1)" , "pygraphviz (>=1.14)" , "sympy (>=1.10)" ]
2024-10-06 18:21:43 -07:00
test = [ "pytest (>=7.2)" , "pytest-cov (>=4.0)" ]
[ [ package ] ]
name = "numpy"
2025-05-23 09:52:23 -07:00
version = "2.2.6"
2024-10-06 18:21:43 -07:00
description = "Fundamental package for array computing in Python"
optional = false
2024-12-20 13:25:01 -08:00
python-versions = ">=3.10"
2024-10-06 18:21:43 -07:00
files = [
2025-05-23 09:52:23 -07:00
{ file = "numpy-2.2.6-cp310-cp310-macosx_10_9_x86_64.whl" , hash = "sha256:b412caa66f72040e6d268491a59f2c43bf03eb6c96dd8f0307829feb7fa2b6fb" } ,
{ file = "numpy-2.2.6-cp310-cp310-macosx_11_0_arm64.whl" , hash = "sha256:8e41fd67c52b86603a91c1a505ebaef50b3314de0213461c7a6e99c9a3beff90" } ,
{ file = "numpy-2.2.6-cp310-cp310-macosx_14_0_arm64.whl" , hash = "sha256:37e990a01ae6ec7fe7fa1c26c55ecb672dd98b19c3d0e1d1f326fa13cb38d163" } ,
{ file = "numpy-2.2.6-cp310-cp310-macosx_14_0_x86_64.whl" , hash = "sha256:5a6429d4be8ca66d889b7cf70f536a397dc45ba6faeb5f8c5427935d9592e9cf" } ,
{ file = "numpy-2.2.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:efd28d4e9cd7d7a8d39074a4d44c63eda73401580c5c76acda2ce969e0a38e83" } ,
{ file = "numpy-2.2.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:fc7b73d02efb0e18c000e9ad8b83480dfcd5dfd11065997ed4c6747470ae8915" } ,
{ file = "numpy-2.2.6-cp310-cp310-musllinux_1_2_aarch64.whl" , hash = "sha256:74d4531beb257d2c3f4b261bfb0fc09e0f9ebb8842d82a7b4209415896adc680" } ,
{ file = "numpy-2.2.6-cp310-cp310-musllinux_1_2_x86_64.whl" , hash = "sha256:8fc377d995680230e83241d8a96def29f204b5782f371c532579b4f20607a289" } ,
{ file = "numpy-2.2.6-cp310-cp310-win32.whl" , hash = "sha256:b093dd74e50a8cba3e873868d9e93a85b78e0daf2e98c6797566ad8044e8363d" } ,
{ file = "numpy-2.2.6-cp310-cp310-win_amd64.whl" , hash = "sha256:f0fd6321b839904e15c46e0d257fdd101dd7f530fe03fd6359c1ea63738703f3" } ,
{ file = "numpy-2.2.6-cp311-cp311-macosx_10_9_x86_64.whl" , hash = "sha256:f9f1adb22318e121c5c69a09142811a201ef17ab257a1e66ca3025065b7f53ae" } ,
{ file = "numpy-2.2.6-cp311-cp311-macosx_11_0_arm64.whl" , hash = "sha256:c820a93b0255bc360f53eca31a0e676fd1101f673dda8da93454a12e23fc5f7a" } ,
{ file = "numpy-2.2.6-cp311-cp311-macosx_14_0_arm64.whl" , hash = "sha256:3d70692235e759f260c3d837193090014aebdf026dfd167834bcba43e30c2a42" } ,
{ file = "numpy-2.2.6-cp311-cp311-macosx_14_0_x86_64.whl" , hash = "sha256:481b49095335f8eed42e39e8041327c05b0f6f4780488f61286ed3c01368d491" } ,
{ file = "numpy-2.2.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:b64d8d4d17135e00c8e346e0a738deb17e754230d7e0810ac5012750bbd85a5a" } ,
{ file = "numpy-2.2.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:ba10f8411898fc418a521833e014a77d3ca01c15b0c6cdcce6a0d2897e6dbbdf" } ,
{ file = "numpy-2.2.6-cp311-cp311-musllinux_1_2_aarch64.whl" , hash = "sha256:bd48227a919f1bafbdda0583705e547892342c26fb127219d60a5c36882609d1" } ,
{ file = "numpy-2.2.6-cp311-cp311-musllinux_1_2_x86_64.whl" , hash = "sha256:9551a499bf125c1d4f9e250377c1ee2eddd02e01eac6644c080162c0c51778ab" } ,
{ file = "numpy-2.2.6-cp311-cp311-win32.whl" , hash = "sha256:0678000bb9ac1475cd454c6b8c799206af8107e310843532b04d49649c717a47" } ,
{ file = "numpy-2.2.6-cp311-cp311-win_amd64.whl" , hash = "sha256:e8213002e427c69c45a52bbd94163084025f533a55a59d6f9c5b820774ef3303" } ,
{ file = "numpy-2.2.6-cp312-cp312-macosx_10_13_x86_64.whl" , hash = "sha256:41c5a21f4a04fa86436124d388f6ed60a9343a6f767fced1a8a71c3fbca038ff" } ,
{ file = "numpy-2.2.6-cp312-cp312-macosx_11_0_arm64.whl" , hash = "sha256:de749064336d37e340f640b05f24e9e3dd678c57318c7289d222a8a2f543e90c" } ,
{ file = "numpy-2.2.6-cp312-cp312-macosx_14_0_arm64.whl" , hash = "sha256:894b3a42502226a1cac872f840030665f33326fc3dac8e57c607905773cdcde3" } ,
{ file = "numpy-2.2.6-cp312-cp312-macosx_14_0_x86_64.whl" , hash = "sha256:71594f7c51a18e728451bb50cc60a3ce4e6538822731b2933209a1f3614e9282" } ,
{ file = "numpy-2.2.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:f2618db89be1b4e05f7a1a847a9c1c0abd63e63a1607d892dd54668dd92faf87" } ,
{ file = "numpy-2.2.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:fd83c01228a688733f1ded5201c678f0c53ecc1006ffbc404db9f7a899ac6249" } ,
{ file = "numpy-2.2.6-cp312-cp312-musllinux_1_2_aarch64.whl" , hash = "sha256:37c0ca431f82cd5fa716eca9506aefcabc247fb27ba69c5062a6d3ade8cf8f49" } ,
{ file = "numpy-2.2.6-cp312-cp312-musllinux_1_2_x86_64.whl" , hash = "sha256:fe27749d33bb772c80dcd84ae7e8df2adc920ae8297400dabec45f0dedb3f6de" } ,
{ file = "numpy-2.2.6-cp312-cp312-win32.whl" , hash = "sha256:4eeaae00d789f66c7a25ac5f34b71a7035bb474e679f410e5e1a94deb24cf2d4" } ,
{ file = "numpy-2.2.6-cp312-cp312-win_amd64.whl" , hash = "sha256:c1f9540be57940698ed329904db803cf7a402f3fc200bfe599334c9bd84a40b2" } ,
{ file = "numpy-2.2.6-cp313-cp313-macosx_10_13_x86_64.whl" , hash = "sha256:0811bb762109d9708cca4d0b13c4f67146e3c3b7cf8d34018c722adb2d957c84" } ,
{ file = "numpy-2.2.6-cp313-cp313-macosx_11_0_arm64.whl" , hash = "sha256:287cc3162b6f01463ccd86be154f284d0893d2b3ed7292439ea97eafa8170e0b" } ,
{ file = "numpy-2.2.6-cp313-cp313-macosx_14_0_arm64.whl" , hash = "sha256:f1372f041402e37e5e633e586f62aa53de2eac8d98cbfb822806ce4bbefcb74d" } ,
{ file = "numpy-2.2.6-cp313-cp313-macosx_14_0_x86_64.whl" , hash = "sha256:55a4d33fa519660d69614a9fad433be87e5252f4b03850642f88993f7b2ca566" } ,
{ file = "numpy-2.2.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:f92729c95468a2f4f15e9bb94c432a9229d0d50de67304399627a943201baa2f" } ,
{ file = "numpy-2.2.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:1bc23a79bfabc5d056d106f9befb8d50c31ced2fbc70eedb8155aec74a45798f" } ,
{ file = "numpy-2.2.6-cp313-cp313-musllinux_1_2_aarch64.whl" , hash = "sha256:e3143e4451880bed956e706a3220b4e5cf6172ef05fcc397f6f36a550b1dd868" } ,
{ file = "numpy-2.2.6-cp313-cp313-musllinux_1_2_x86_64.whl" , hash = "sha256:b4f13750ce79751586ae2eb824ba7e1e8dba64784086c98cdbbcc6a42112ce0d" } ,
{ file = "numpy-2.2.6-cp313-cp313-win32.whl" , hash = "sha256:5beb72339d9d4fa36522fc63802f469b13cdbe4fdab4a288f0c441b74272ebfd" } ,
{ file = "numpy-2.2.6-cp313-cp313-win_amd64.whl" , hash = "sha256:b0544343a702fa80c95ad5d3d608ea3599dd54d4632df855e4c8d24eb6ecfa1c" } ,
{ file = "numpy-2.2.6-cp313-cp313t-macosx_10_13_x86_64.whl" , hash = "sha256:0bca768cd85ae743b2affdc762d617eddf3bcf8724435498a1e80132d04879e6" } ,
{ file = "numpy-2.2.6-cp313-cp313t-macosx_11_0_arm64.whl" , hash = "sha256:fc0c5673685c508a142ca65209b4e79ed6740a4ed6b2267dbba90f34b0b3cfda" } ,
{ file = "numpy-2.2.6-cp313-cp313t-macosx_14_0_arm64.whl" , hash = "sha256:5bd4fc3ac8926b3819797a7c0e2631eb889b4118a9898c84f585a54d475b7e40" } ,
{ file = "numpy-2.2.6-cp313-cp313t-macosx_14_0_x86_64.whl" , hash = "sha256:fee4236c876c4e8369388054d02d0e9bb84821feb1a64dd59e137e6511a551f8" } ,
{ file = "numpy-2.2.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:e1dda9c7e08dc141e0247a5b8f49cf05984955246a327d4c48bda16821947b2f" } ,
{ file = "numpy-2.2.6-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:f447e6acb680fd307f40d3da4852208af94afdfab89cf850986c3ca00562f4fa" } ,
{ file = "numpy-2.2.6-cp313-cp313t-musllinux_1_2_aarch64.whl" , hash = "sha256:389d771b1623ec92636b0786bc4ae56abafad4a4c513d36a55dce14bd9ce8571" } ,
{ file = "numpy-2.2.6-cp313-cp313t-musllinux_1_2_x86_64.whl" , hash = "sha256:8e9ace4a37db23421249ed236fdcdd457d671e25146786dfc96835cd951aa7c1" } ,
{ file = "numpy-2.2.6-cp313-cp313t-win32.whl" , hash = "sha256:038613e9fb8c72b0a41f025a7e4c3f0b7a1b5d768ece4796b674c8f3fe13efff" } ,
{ file = "numpy-2.2.6-cp313-cp313t-win_amd64.whl" , hash = "sha256:6031dd6dfecc0cf9f668681a37648373bddd6421fff6c66ec1624eed0180ee06" } ,
{ file = "numpy-2.2.6-pp310-pypy310_pp73-macosx_10_15_x86_64.whl" , hash = "sha256:0b605b275d7bd0c640cad4e5d30fa701a8d59302e127e5f79138ad62762c3e3d" } ,
{ file = "numpy-2.2.6-pp310-pypy310_pp73-macosx_14_0_x86_64.whl" , hash = "sha256:7befc596a7dc9da8a337f79802ee8adb30a552a94f792b9c9d18c840055907db" } ,
{ file = "numpy-2.2.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:ce47521a4754c8f4593837384bd3424880629f718d87c5d44f8ed763edd63543" } ,
{ file = "numpy-2.2.6-pp310-pypy310_pp73-win_amd64.whl" , hash = "sha256:d042d24c90c41b54fd506da306759e06e568864df8ec17ccc17e9e884634fd00" } ,
{ file = "numpy-2.2.6.tar.gz" , hash = "sha256:e29554e2bef54a90aa5cc07da6ce955accb83f21ab5de01a62c8478897b264fd" } ,
2024-10-06 18:21:43 -07:00
]
[ [ package ] ]
name = "nvidia-cublas-cu12"
2025-08-11 13:23:40 -07:00
version = "12.4.5.8"
2024-10-06 18:21:43 -07:00
description = "CUBLAS native runtime libraries"
optional = false
python-versions = ">=3"
files = [
2025-08-11 13:23:40 -07:00
{ file = "nvidia_cublas_cu12-12.4.5.8-py3-none-manylinux2014_aarch64.whl" , hash = "sha256:0f8aa1706812e00b9f19dfe0cdb3999b092ccb8ca168c0db5b8ea712456fd9b3" } ,
{ file = "nvidia_cublas_cu12-12.4.5.8-py3-none-manylinux2014_x86_64.whl" , hash = "sha256:2fc8da60df463fdefa81e323eef2e36489e1c94335b5358bcb38360adf75ac9b" } ,
{ file = "nvidia_cublas_cu12-12.4.5.8-py3-none-win_amd64.whl" , hash = "sha256:5a796786da89203a0657eda402bcdcec6180254a8ac22d72213abc42069522dc" } ,
2024-10-06 18:21:43 -07:00
]
[ [ package ] ]
name = "nvidia-cuda-cupti-cu12"
2025-08-11 13:23:40 -07:00
version = "12.4.127"
2024-10-06 18:21:43 -07:00
description = "CUDA profiling tools runtime libs."
optional = false
python-versions = ">=3"
files = [
2025-08-11 13:23:40 -07:00
{ file = "nvidia_cuda_cupti_cu12-12.4.127-py3-none-manylinux2014_aarch64.whl" , hash = "sha256:79279b35cf6f91da114182a5ce1864997fd52294a87a16179ce275773799458a" } ,
{ file = "nvidia_cuda_cupti_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl" , hash = "sha256:9dec60f5ac126f7bb551c055072b69d85392b13311fcc1bcda2202d172df30fb" } ,
{ file = "nvidia_cuda_cupti_cu12-12.4.127-py3-none-win_amd64.whl" , hash = "sha256:5688d203301ab051449a2b1cb6690fbe90d2b372f411521c86018b950f3d7922" } ,
2024-10-06 18:21:43 -07:00
]
[ [ package ] ]
name = "nvidia-cuda-nvrtc-cu12"
2025-08-11 13:23:40 -07:00
version = "12.4.127"
2024-10-06 18:21:43 -07:00
description = "NVRTC native runtime libraries"
optional = false
python-versions = ">=3"
files = [
2025-08-11 13:23:40 -07:00
{ file = "nvidia_cuda_nvrtc_cu12-12.4.127-py3-none-manylinux2014_aarch64.whl" , hash = "sha256:0eedf14185e04b76aa05b1fea04133e59f465b6f960c0cbf4e37c3cb6b0ea198" } ,
{ file = "nvidia_cuda_nvrtc_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl" , hash = "sha256:a178759ebb095827bd30ef56598ec182b85547f1508941a3d560eb7ea1fbf338" } ,
{ file = "nvidia_cuda_nvrtc_cu12-12.4.127-py3-none-win_amd64.whl" , hash = "sha256:a961b2f1d5f17b14867c619ceb99ef6fcec12e46612711bcec78eb05068a60ec" } ,
2024-10-06 18:21:43 -07:00
]
[ [ package ] ]
name = "nvidia-cuda-runtime-cu12"
2025-08-11 13:23:40 -07:00
version = "12.4.127"
2024-10-06 18:21:43 -07:00
description = "CUDA Runtime native Libraries"
optional = false
python-versions = ">=3"
files = [
2025-08-11 13:23:40 -07:00
{ file = "nvidia_cuda_runtime_cu12-12.4.127-py3-none-manylinux2014_aarch64.whl" , hash = "sha256:961fe0e2e716a2a1d967aab7caee97512f71767f852f67432d572e36cb3a11f3" } ,
{ file = "nvidia_cuda_runtime_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl" , hash = "sha256:64403288fa2136ee8e467cdc9c9427e0434110899d07c779f25b5c068934faa5" } ,
{ file = "nvidia_cuda_runtime_cu12-12.4.127-py3-none-win_amd64.whl" , hash = "sha256:09c2e35f48359752dfa822c09918211844a3d93c100a715d79b59591130c5e1e" } ,
2024-10-06 18:21:43 -07:00
]
[ [ package ] ]
name = "nvidia-cudnn-cu12"
version = "9.1.0.70"
description = "cuDNN runtime libraries"
optional = false
python-versions = ">=3"
files = [
{ file = "nvidia_cudnn_cu12-9.1.0.70-py3-none-manylinux2014_x86_64.whl" , hash = "sha256:165764f44ef8c61fcdfdfdbe769d687e06374059fbb388b6c89ecb0e28793a6f" } ,
{ file = "nvidia_cudnn_cu12-9.1.0.70-py3-none-win_amd64.whl" , hash = "sha256:6278562929433d68365a07a4a1546c237ba2849852c0d4b2262a486e805b977a" } ,
]
[ package . dependencies ]
nvidia-cublas-cu12 = "*"
[ [ package ] ]
name = "nvidia-cufft-cu12"
2025-08-11 13:23:40 -07:00
version = "11.2.1.3"
2024-10-06 18:21:43 -07:00
description = "CUFFT native runtime libraries"
optional = false
python-versions = ">=3"
files = [
2025-08-11 13:23:40 -07:00
{ file = "nvidia_cufft_cu12-11.2.1.3-py3-none-manylinux2014_aarch64.whl" , hash = "sha256:5dad8008fc7f92f5ddfa2101430917ce2ffacd86824914c82e28990ad7f00399" } ,
{ file = "nvidia_cufft_cu12-11.2.1.3-py3-none-manylinux2014_x86_64.whl" , hash = "sha256:f083fc24912aa410be21fa16d157fed2055dab1cc4b6934a0e03cba69eb242b9" } ,
{ file = "nvidia_cufft_cu12-11.2.1.3-py3-none-win_amd64.whl" , hash = "sha256:d802f4954291101186078ccbe22fc285a902136f974d369540fd4a5333d1440b" } ,
2024-10-06 18:21:43 -07:00
]
2025-08-11 13:23:40 -07:00
[ package . dependencies ]
nvidia-nvjitlink-cu12 = "*"
2024-10-06 18:21:43 -07:00
[ [ package ] ]
name = "nvidia-curand-cu12"
2025-08-11 13:23:40 -07:00
version = "10.3.5.147"
2024-10-06 18:21:43 -07:00
description = "CURAND native runtime libraries"
optional = false
python-versions = ">=3"
files = [
2025-08-11 13:23:40 -07:00
{ file = "nvidia_curand_cu12-10.3.5.147-py3-none-manylinux2014_aarch64.whl" , hash = "sha256:1f173f09e3e3c76ab084aba0de819c49e56614feae5c12f69883f4ae9bb5fad9" } ,
{ file = "nvidia_curand_cu12-10.3.5.147-py3-none-manylinux2014_x86_64.whl" , hash = "sha256:a88f583d4e0bb643c49743469964103aa59f7f708d862c3ddb0fc07f851e3b8b" } ,
{ file = "nvidia_curand_cu12-10.3.5.147-py3-none-win_amd64.whl" , hash = "sha256:f307cc191f96efe9e8f05a87096abc20d08845a841889ef78cb06924437f6771" } ,
2024-10-06 18:21:43 -07:00
]
[ [ package ] ]
name = "nvidia-cusolver-cu12"
2025-08-11 13:23:40 -07:00
version = "11.6.1.9"
2024-10-06 18:21:43 -07:00
description = "CUDA solver native runtime libraries"
optional = false
python-versions = ">=3"
files = [
2025-08-11 13:23:40 -07:00
{ file = "nvidia_cusolver_cu12-11.6.1.9-py3-none-manylinux2014_aarch64.whl" , hash = "sha256:d338f155f174f90724bbde3758b7ac375a70ce8e706d70b018dd3375545fc84e" } ,
{ file = "nvidia_cusolver_cu12-11.6.1.9-py3-none-manylinux2014_x86_64.whl" , hash = "sha256:19e33fa442bcfd085b3086c4ebf7e8debc07cfe01e11513cc6d332fd918ac260" } ,
{ file = "nvidia_cusolver_cu12-11.6.1.9-py3-none-win_amd64.whl" , hash = "sha256:e77314c9d7b694fcebc84f58989f3aa4fb4cb442f12ca1a9bde50f5e8f6d1b9c" } ,
2024-10-06 18:21:43 -07:00
]
[ package . dependencies ]
nvidia-cublas-cu12 = "*"
nvidia-cusparse-cu12 = "*"
nvidia-nvjitlink-cu12 = "*"
[ [ package ] ]
name = "nvidia-cusparse-cu12"
2025-08-11 13:23:40 -07:00
version = "12.3.1.170"
2024-10-06 18:21:43 -07:00
description = "CUSPARSE native runtime libraries"
optional = false
python-versions = ">=3"
files = [
2025-08-11 13:23:40 -07:00
{ file = "nvidia_cusparse_cu12-12.3.1.170-py3-none-manylinux2014_aarch64.whl" , hash = "sha256:9d32f62896231ebe0480efd8a7f702e143c98cfaa0e8a76df3386c1ba2b54df3" } ,
{ file = "nvidia_cusparse_cu12-12.3.1.170-py3-none-manylinux2014_x86_64.whl" , hash = "sha256:ea4f11a2904e2a8dc4b1833cc1b5181cde564edd0d5cd33e3c168eff2d1863f1" } ,
{ file = "nvidia_cusparse_cu12-12.3.1.170-py3-none-win_amd64.whl" , hash = "sha256:9bc90fb087bc7b4c15641521f31c0371e9a612fc2ba12c338d3ae032e6b6797f" } ,
2024-10-06 18:21:43 -07:00
]
[ package . dependencies ]
nvidia-nvjitlink-cu12 = "*"
2025-08-11 13:23:40 -07:00
[ [ package ] ]
name = "nvidia-cusparselt-cu12"
version = "0.6.2"
description = "NVIDIA cuSPARSELt"
optional = false
python-versions = "*"
files = [
{ file = "nvidia_cusparselt_cu12-0.6.2-py3-none-manylinux2014_aarch64.whl" , hash = "sha256:067a7f6d03ea0d4841c85f0c6f1991c5dda98211f6302cb83a4ab234ee95bef8" } ,
{ file = "nvidia_cusparselt_cu12-0.6.2-py3-none-manylinux2014_x86_64.whl" , hash = "sha256:df2c24502fd76ebafe7457dbc4716b2fec071aabaed4fb7691a201cde03704d9" } ,
{ file = "nvidia_cusparselt_cu12-0.6.2-py3-none-win_amd64.whl" , hash = "sha256:0057c91d230703924c0422feabe4ce768841f9b4b44d28586b6f6d2eb86fbe70" } ,
]
2024-10-06 18:21:43 -07:00
[ [ package ] ]
name = "nvidia-nccl-cu12"
2025-08-11 13:23:40 -07:00
version = "2.21.5"
2024-10-06 18:21:43 -07:00
description = "NVIDIA Collective Communication Library (NCCL) Runtime"
optional = false
python-versions = ">=3"
files = [
2025-08-11 13:23:40 -07:00
{ file = "nvidia_nccl_cu12-2.21.5-py3-none-manylinux2014_x86_64.whl" , hash = "sha256:8579076d30a8c24988834445f8d633c697d42397e92ffc3f63fa26766d25e0a0" } ,
2024-10-06 18:21:43 -07:00
]
[ [ package ] ]
name = "nvidia-nvjitlink-cu12"
2025-08-11 13:23:40 -07:00
version = "12.4.127"
2024-10-06 18:21:43 -07:00
description = "Nvidia JIT LTO Library"
optional = false
python-versions = ">=3"
files = [
2025-08-11 13:23:40 -07:00
{ file = "nvidia_nvjitlink_cu12-12.4.127-py3-none-manylinux2014_aarch64.whl" , hash = "sha256:4abe7fef64914ccfa909bc2ba39739670ecc9e820c83ccc7a6ed414122599b83" } ,
{ file = "nvidia_nvjitlink_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl" , hash = "sha256:06b3b9b25bf3f8af351d664978ca26a16d2c5127dbd53c0497e28d1fb9611d57" } ,
{ file = "nvidia_nvjitlink_cu12-12.4.127-py3-none-win_amd64.whl" , hash = "sha256:fd9020c501d27d135f983c6d3e244b197a7ccad769e34df53a42e276b0e25fa1" } ,
2024-10-06 18:21:43 -07:00
]
[ [ package ] ]
name = "nvidia-nvtx-cu12"
2025-08-11 13:23:40 -07:00
version = "12.4.127"
2024-10-06 18:21:43 -07:00
description = "NVIDIA Tools Extension"
optional = false
python-versions = ">=3"
files = [
2025-08-11 13:23:40 -07:00
{ file = "nvidia_nvtx_cu12-12.4.127-py3-none-manylinux2014_aarch64.whl" , hash = "sha256:7959ad635db13edf4fc65c06a6e9f9e55fc2f92596db928d169c0bb031e88ef3" } ,
{ file = "nvidia_nvtx_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl" , hash = "sha256:781e950d9b9f60d8241ccea575b32f5105a5baf4c2351cab5256a24869f12a1a" } ,
{ file = "nvidia_nvtx_cu12-12.4.127-py3-none-win_amd64.whl" , hash = "sha256:641dccaaa1139f3ffb0d3164b4b84f9d253397e38246a4f2f36728b48566d485" } ,
2024-10-06 18:21:43 -07:00
]
[ [ package ] ]
name = "openai"
2025-09-11 18:44:18 -07:00
version = "1.107.1"
2024-10-06 18:21:43 -07:00
description = "The official Python library for the openai API"
optional = false
2025-01-10 16:45:36 -08:00
python-versions = ">=3.8"
2024-10-06 18:21:43 -07:00
files = [
2025-09-11 18:44:18 -07:00
{ file = "openai-1.107.1-py3-none-any.whl" , hash = "sha256:168f9885b1b70d13ada0868a0d0adfd538c16a02f7fd9fe063851a2c9a025e72" } ,
{ file = "openai-1.107.1.tar.gz" , hash = "sha256:7c51b6b8adadfcf5cada08a613423575258b180af5ad4bc2954b36ebc0d3ad48" } ,
2024-10-06 18:21:43 -07:00
]
[ package . dependencies ]
anyio = ">=3.5.0,<5"
distro = ">=1.7.0,<2"
httpx = ">=0.23.0,<1"
jiter = ">=0.4.0,<1"
pydantic = ">=1.9.0,<3"
sniffio = "*"
tqdm = ">4"
typing-extensions = ">=4.11,<5"
[ package . extras ]
2025-07-11 17:24:21 -07:00
aiohttp = [ "aiohttp" , "httpx-aiohttp (>=0.1.8)" ]
2024-10-06 18:21:43 -07:00
datalib = [ "numpy (>=1)" , "pandas (>=1.2.3)" , "pandas-stubs (>=1.1.0.11)" ]
2025-04-15 14:50:09 -07:00
realtime = [ "websockets (>=13,<16)" ]
2025-04-06 01:24:01 -07:00
voice-helpers = [ "numpy (>=2.0.2)" , "sounddevice (>=0.5.1)" ]
2024-10-06 18:21:43 -07:00
2024-11-07 22:11:00 -06:00
[ [ package ] ]
name = "opentelemetry-api"
2024-12-06 14:37:33 -08:00
version = "1.28.2"
2024-11-07 22:11:00 -06:00
description = "OpenTelemetry Python API"
optional = false
python-versions = ">=3.8"
files = [
2024-12-06 14:37:33 -08:00
{ file = "opentelemetry_api-1.28.2-py3-none-any.whl" , hash = "sha256:6fcec89e265beb258fe6b1acaaa3c8c705a934bd977b9f534a2b7c0d2d4275a6" } ,
{ file = "opentelemetry_api-1.28.2.tar.gz" , hash = "sha256:ecdc70c7139f17f9b0cf3742d57d7020e3e8315d6cffcdf1a12a905d45b19cc0" } ,
2024-11-07 22:11:00 -06:00
]
[ package . dependencies ]
deprecated = ">=1.2.6"
importlib-metadata = ">=6.0,<=8.5.0"
[ [ package ] ]
name = "opentelemetry-exporter-otlp"
2024-12-06 14:37:33 -08:00
version = "1.28.2"
2024-11-07 22:11:00 -06:00
description = "OpenTelemetry Collector Exporters"
optional = false
python-versions = ">=3.8"
files = [
2024-12-06 14:37:33 -08:00
{ file = "opentelemetry_exporter_otlp-1.28.2-py3-none-any.whl" , hash = "sha256:b50f6d4a80e6bcd329e36f360ac486ecfa106ea704d6226ceea05d3a48455f70" } ,
{ file = "opentelemetry_exporter_otlp-1.28.2.tar.gz" , hash = "sha256:45f8d7fe4cdd41526464b542ce91b1fd1ae661be92d2c6cba71a3d948b2bdf70" } ,
2024-11-07 22:11:00 -06:00
]
[ package . dependencies ]
2024-12-06 14:37:33 -08:00
opentelemetry-exporter-otlp-proto-grpc = "1.28.2"
opentelemetry-exporter-otlp-proto-http = "1.28.2"
2024-11-07 22:11:00 -06:00
[ [ package ] ]
name = "opentelemetry-exporter-otlp-proto-common"
2024-12-06 14:37:33 -08:00
version = "1.28.2"
2024-11-07 22:11:00 -06:00
description = "OpenTelemetry Protobuf encoding"
optional = false
python-versions = ">=3.8"
files = [
2024-12-06 14:37:33 -08:00
{ file = "opentelemetry_exporter_otlp_proto_common-1.28.2-py3-none-any.whl" , hash = "sha256:545b1943b574f666c35b3d6cc67cb0b111060727e93a1e2866e346b33bff2a12" } ,
{ file = "opentelemetry_exporter_otlp_proto_common-1.28.2.tar.gz" , hash = "sha256:7aebaa5fc9ff6029374546df1f3a62616fda07fccd9c6a8b7892ec130dd8baca" } ,
2024-11-07 22:11:00 -06:00
]
[ package . dependencies ]
2024-12-06 14:37:33 -08:00
opentelemetry-proto = "1.28.2"
2024-11-07 22:11:00 -06:00
[ [ package ] ]
name = "opentelemetry-exporter-otlp-proto-grpc"
2024-12-06 14:37:33 -08:00
version = "1.28.2"
2024-11-07 22:11:00 -06:00
description = "OpenTelemetry Collector Protobuf over gRPC Exporter"
optional = false
python-versions = ">=3.8"
files = [
2024-12-06 14:37:33 -08:00
{ file = "opentelemetry_exporter_otlp_proto_grpc-1.28.2-py3-none-any.whl" , hash = "sha256:6083d9300863aab35bfce7c172d5fc1007686e6f8dff366eae460cd9a21592e2" } ,
{ file = "opentelemetry_exporter_otlp_proto_grpc-1.28.2.tar.gz" , hash = "sha256:07c10378380bbb01a7f621a5ce833fc1fab816e971140cd3ea1cd587840bc0e6" } ,
2024-11-07 22:11:00 -06:00
]
[ package . dependencies ]
deprecated = ">=1.2.6"
googleapis-common-protos = ">=1.52,<2.0"
grpcio = ">=1.63.2,<2.0.0"
opentelemetry-api = ">=1.15,<2.0"
2024-12-06 14:37:33 -08:00
opentelemetry-exporter-otlp-proto-common = "1.28.2"
opentelemetry-proto = "1.28.2"
opentelemetry-sdk = ">=1.28.2,<1.29.0"
2024-11-07 22:11:00 -06:00
[ [ package ] ]
name = "opentelemetry-exporter-otlp-proto-http"
2024-12-06 14:37:33 -08:00
version = "1.28.2"
2024-11-07 22:11:00 -06:00
description = "OpenTelemetry Collector Protobuf over HTTP Exporter"
optional = false
python-versions = ">=3.8"
files = [
2024-12-06 14:37:33 -08:00
{ file = "opentelemetry_exporter_otlp_proto_http-1.28.2-py3-none-any.whl" , hash = "sha256:af921c18212a56ef4be68458ba475791c0517ebfd8a2ff04669c9cd477d90ff2" } ,
{ file = "opentelemetry_exporter_otlp_proto_http-1.28.2.tar.gz" , hash = "sha256:d9b353d67217f091aaf4cfe8693c170973bb3e90a558992570d97020618fda79" } ,
2024-11-07 22:11:00 -06:00
]
[ package . dependencies ]
deprecated = ">=1.2.6"
googleapis-common-protos = ">=1.52,<2.0"
opentelemetry-api = ">=1.15,<2.0"
2024-12-06 14:37:33 -08:00
opentelemetry-exporter-otlp-proto-common = "1.28.2"
opentelemetry-proto = "1.28.2"
opentelemetry-sdk = ">=1.28.2,<1.29.0"
2024-11-07 22:11:00 -06:00
requests = ">=2.7,<3.0"
[ [ package ] ]
name = "opentelemetry-instrumentation"
2024-12-06 14:37:33 -08:00
version = "0.49b2"
2024-11-07 22:11:00 -06:00
description = "Instrumentation Tools & Auto Instrumentation for OpenTelemetry Python"
optional = false
python-versions = ">=3.8"
files = [
2024-12-06 14:37:33 -08:00
{ file = "opentelemetry_instrumentation-0.49b2-py3-none-any.whl" , hash = "sha256:f6d782b0ef9fef4a4c745298651c65f5c532c34cd4c40d230ab5b9f3b3b4d151" } ,
{ file = "opentelemetry_instrumentation-0.49b2.tar.gz" , hash = "sha256:8cf00cc8d9d479e4b72adb9bd267ec544308c602b7188598db5a687e77b298e2" } ,
2024-11-07 22:11:00 -06:00
]
[ package . dependencies ]
opentelemetry-api = ">=1.4,<2.0"
2024-12-06 14:37:33 -08:00
opentelemetry-semantic-conventions = "0.49b2"
2024-11-07 22:11:00 -06:00
packaging = ">=18.0"
wrapt = ">=1.0.0,<2.0.0"
[ [ package ] ]
name = "opentelemetry-instrumentation-asgi"
2024-12-06 14:37:33 -08:00
version = "0.49b2"
2024-11-07 22:11:00 -06:00
description = "ASGI instrumentation for OpenTelemetry"
optional = false
python-versions = ">=3.8"
files = [
2024-12-06 14:37:33 -08:00
{ file = "opentelemetry_instrumentation_asgi-0.49b2-py3-none-any.whl" , hash = "sha256:c8ede13ed781402458a800411cb7ec16a25386dc21de8e5b9a568b386a1dc5f4" } ,
{ file = "opentelemetry_instrumentation_asgi-0.49b2.tar.gz" , hash = "sha256:2af5faf062878330714efe700127b837038c4d9d3b70b451ab2424d5076d6c1c" } ,
2024-11-07 22:11:00 -06:00
]
[ package . dependencies ]
asgiref = ">=3.0,<4.0"
opentelemetry-api = ">=1.12,<2.0"
2024-12-06 14:37:33 -08:00
opentelemetry-instrumentation = "0.49b2"
opentelemetry-semantic-conventions = "0.49b2"
opentelemetry-util-http = "0.49b2"
2024-11-07 22:11:00 -06:00
[ package . extras ]
instruments = [ "asgiref (>=3.0,<4.0)" ]
[ [ package ] ]
name = "opentelemetry-instrumentation-fastapi"
2024-12-06 14:37:33 -08:00
version = "0.49b2"
2024-11-07 22:11:00 -06:00
description = "OpenTelemetry FastAPI Instrumentation"
optional = false
python-versions = ">=3.8"
files = [
2024-12-06 14:37:33 -08:00
{ file = "opentelemetry_instrumentation_fastapi-0.49b2-py3-none-any.whl" , hash = "sha256:c66331d05bf806d7ca4f9579c1db7383aad31a9f6665dbaa2b7c9a4c1e830892" } ,
{ file = "opentelemetry_instrumentation_fastapi-0.49b2.tar.gz" , hash = "sha256:3aa81ed7acf6aa5236d96e90a1218c5e84a9c0dce8fa63bf34ceee6218354b63" } ,
2024-11-07 22:11:00 -06:00
]
[ package . dependencies ]
opentelemetry-api = ">=1.12,<2.0"
2024-12-06 14:37:33 -08:00
opentelemetry-instrumentation = "0.49b2"
opentelemetry-instrumentation-asgi = "0.49b2"
opentelemetry-semantic-conventions = "0.49b2"
opentelemetry-util-http = "0.49b2"
2024-11-07 22:11:00 -06:00
[ package . extras ]
instruments = [ "fastapi (>=0.58,<1.0)" ]
[ [ package ] ]
name = "opentelemetry-proto"
2024-12-06 14:37:33 -08:00
version = "1.28.2"
2024-11-07 22:11:00 -06:00
description = "OpenTelemetry Python Proto"
optional = false
python-versions = ">=3.8"
files = [
2024-12-06 14:37:33 -08:00
{ file = "opentelemetry_proto-1.28.2-py3-none-any.whl" , hash = "sha256:0837498f59db55086462915e5898d0b1a18c1392f6db4d7e937143072a72370c" } ,
{ file = "opentelemetry_proto-1.28.2.tar.gz" , hash = "sha256:7c0d125a6b71af88bfeeda16bfdd0ff63dc2cf0039baf6f49fa133b203e3f566" } ,
2024-11-07 22:11:00 -06:00
]
[ package . dependencies ]
protobuf = ">=5.0,<6.0"
[ [ package ] ]
name = "opentelemetry-sdk"
2024-12-06 14:37:33 -08:00
version = "1.28.2"
2024-11-07 22:11:00 -06:00
description = "OpenTelemetry Python SDK"
optional = false
python-versions = ">=3.8"
files = [
2024-12-06 14:37:33 -08:00
{ file = "opentelemetry_sdk-1.28.2-py3-none-any.whl" , hash = "sha256:93336c129556f1e3ccd21442b94d3521759541521861b2214c499571b85cb71b" } ,
{ file = "opentelemetry_sdk-1.28.2.tar.gz" , hash = "sha256:5fed24c5497e10df30282456fe2910f83377797511de07d14cec0d3e0a1a3110" } ,
2024-11-07 22:11:00 -06:00
]
[ package . dependencies ]
2024-12-06 14:37:33 -08:00
opentelemetry-api = "1.28.2"
opentelemetry-semantic-conventions = "0.49b2"
2024-11-07 22:11:00 -06:00
typing-extensions = ">=3.7.4"
[ [ package ] ]
name = "opentelemetry-semantic-conventions"
2024-12-06 14:37:33 -08:00
version = "0.49b2"
2024-11-07 22:11:00 -06:00
description = "OpenTelemetry Semantic Conventions"
optional = false
python-versions = ">=3.8"
files = [
2024-12-06 14:37:33 -08:00
{ file = "opentelemetry_semantic_conventions-0.49b2-py3-none-any.whl" , hash = "sha256:51e7e1d0daa958782b6c2a8ed05e5f0e7dd0716fc327ac058777b8659649ee54" } ,
{ file = "opentelemetry_semantic_conventions-0.49b2.tar.gz" , hash = "sha256:44e32ce6a5bb8d7c0c617f84b9dc1c8deda1045a07dc16a688cc7cbeab679997" } ,
2024-11-07 22:11:00 -06:00
]
[ package . dependencies ]
deprecated = ">=1.2.6"
2024-12-06 14:37:33 -08:00
opentelemetry-api = "1.28.2"
2024-11-07 22:11:00 -06:00
[ [ package ] ]
name = "opentelemetry-util-http"
2024-12-06 14:37:33 -08:00
version = "0.49b2"
2024-11-07 22:11:00 -06:00
description = "Web util for OpenTelemetry"
optional = false
python-versions = ">=3.8"
files = [
2024-12-06 14:37:33 -08:00
{ file = "opentelemetry_util_http-0.49b2-py3-none-any.whl" , hash = "sha256:e325d6511c6bee7b43170eb0c93261a210ec57e20ab1d7a99838515ef6d2bf58" } ,
{ file = "opentelemetry_util_http-0.49b2.tar.gz" , hash = "sha256:5958c7009f79146bbe98b0fdb23d9d7bf1ea9cd154a1c199029b1a89e0557199" } ,
2024-11-07 22:11:00 -06:00
]
2024-10-06 18:21:43 -07:00
[ [ package ] ]
2024-12-20 13:25:01 -08:00
name = "overrides"
version = "7.7.0"
description = "A decorator to automatically detect mismatch when overriding a method."
2024-10-06 18:21:43 -07:00
optional = false
2024-12-20 13:25:01 -08:00
python-versions = ">=3.6"
2024-10-30 17:54:51 -07:00
files = [
2024-12-20 13:25:01 -08:00
{ file = "overrides-7.7.0-py3-none-any.whl" , hash = "sha256:c7ed9d062f78b8e4c1a7b70bd8796b35ead4d9f510227ef9c5dc7626c60d7e49" } ,
{ file = "overrides-7.7.0.tar.gz" , hash = "sha256:55158fa3d93b98cc75299b1e67078ad9003ca27945c76162c1c0766d6f91820a" } ,
2024-10-30 17:54:51 -07:00
]
2024-10-06 18:21:43 -07:00
[ [ package ] ]
name = "packaging"
2025-04-21 17:02:36 -07:00
version = "25.0"
2024-10-06 18:21:43 -07:00
description = "Core utilities for Python packages"
optional = false
python-versions = ">=3.8"
files = [
2025-04-21 17:02:36 -07:00
{ file = "packaging-25.0-py3-none-any.whl" , hash = "sha256:29572ef2b1f17581046b3a2227d5c611fb25ec70ca1ba8554b24b0e69331a484" } ,
{ file = "packaging-25.0.tar.gz" , hash = "sha256:d443872c98d677bf60f6a1f2f8c1cb748e8fe762d2bf9d3148b5599295b0fc4f" } ,
2024-10-06 18:21:43 -07:00
]
2024-10-17 10:42:15 -07:00
[ [ package ] ]
name = "pluggy"
2025-05-23 09:52:23 -07:00
version = "1.6.0"
2024-10-17 10:42:15 -07:00
description = "plugin and hook calling mechanisms for python"
optional = false
2025-05-23 09:52:23 -07:00
python-versions = ">=3.9"
2024-10-17 10:42:15 -07:00
files = [
2025-05-23 09:52:23 -07:00
{ file = "pluggy-1.6.0-py3-none-any.whl" , hash = "sha256:e920276dd6813095e9377c0bc5566d94c932c33b27a3e3945d8389c374dd4746" } ,
{ file = "pluggy-1.6.0.tar.gz" , hash = "sha256:7dcc130b76258d33b90f61b658791dede3486c3e6bfb003ee5c9bfb396dd22f3" } ,
2024-10-17 10:42:15 -07:00
]
[ package . extras ]
dev = [ "pre-commit" , "tox" ]
2025-05-23 09:52:23 -07:00
testing = [ "coverage" , "pytest" , "pytest-benchmark" ]
2024-10-17 10:42:15 -07:00
2024-10-06 18:21:43 -07:00
[ [ package ] ]
name = "protobuf"
2025-05-30 17:47:59 -07:00
version = "5.29.5"
2024-10-06 18:21:43 -07:00
description = ""
optional = false
python-versions = ">=3.8"
files = [
2025-05-30 17:47:59 -07:00
{ file = "protobuf-5.29.5-cp310-abi3-win32.whl" , hash = "sha256:3f1c6468a2cfd102ff4703976138844f78ebd1fb45f49011afc5139e9e283079" } ,
{ file = "protobuf-5.29.5-cp310-abi3-win_amd64.whl" , hash = "sha256:3f76e3a3675b4a4d867b52e4a5f5b78a2ef9565549d4037e06cf7b0942b1d3fc" } ,
{ file = "protobuf-5.29.5-cp38-abi3-macosx_10_9_universal2.whl" , hash = "sha256:e38c5add5a311f2a6eb0340716ef9b039c1dfa428b28f25a7838ac329204a671" } ,
{ file = "protobuf-5.29.5-cp38-abi3-manylinux2014_aarch64.whl" , hash = "sha256:fa18533a299d7ab6c55a238bf8629311439995f2e7eca5caaff08663606e9015" } ,
{ file = "protobuf-5.29.5-cp38-abi3-manylinux2014_x86_64.whl" , hash = "sha256:63848923da3325e1bf7e9003d680ce6e14b07e55d0473253a690c3a8b8fd6e61" } ,
{ file = "protobuf-5.29.5-cp38-cp38-win32.whl" , hash = "sha256:ef91363ad4faba7b25d844ef1ada59ff1604184c0bcd8b39b8a6bef15e1af238" } ,
{ file = "protobuf-5.29.5-cp38-cp38-win_amd64.whl" , hash = "sha256:7318608d56b6402d2ea7704ff1e1e4597bee46d760e7e4dd42a3d45e24b87f2e" } ,
{ file = "protobuf-5.29.5-cp39-cp39-win32.whl" , hash = "sha256:6f642dc9a61782fa72b90878af134c5afe1917c89a568cd3476d758d3c3a0736" } ,
{ file = "protobuf-5.29.5-cp39-cp39-win_amd64.whl" , hash = "sha256:470f3af547ef17847a28e1f47200a1cbf0ba3ff57b7de50d22776607cd2ea353" } ,
{ file = "protobuf-5.29.5-py3-none-any.whl" , hash = "sha256:6cf42630262c59b2d8de33954443d94b746c952b01434fc58a417fdbd2e84bd5" } ,
{ file = "protobuf-5.29.5.tar.gz" , hash = "sha256:bc1463bafd4b0929216c35f437a8e28731a2b7fe3d98bb77a600efced5a15c84" } ,
2024-10-06 18:21:43 -07:00
]
[ [ package ] ]
name = "psutil"
2025-02-14 20:02:59 -08:00
version = "7.0.0"
description = "Cross-platform lib for process and system monitoring in Python. NOTE: the syntax of this script MUST be kept compatible with Python 2.7."
optional = false
python-versions = ">=3.6"
files = [
{ file = "psutil-7.0.0-cp36-abi3-macosx_10_9_x86_64.whl" , hash = "sha256:101d71dc322e3cffd7cea0650b09b3d08b8e7c4109dd6809fe452dfd00e58b25" } ,
{ file = "psutil-7.0.0-cp36-abi3-macosx_11_0_arm64.whl" , hash = "sha256:39db632f6bb862eeccf56660871433e111b6ea58f2caea825571951d4b6aa3da" } ,
{ file = "psutil-7.0.0-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:1fcee592b4c6f146991ca55919ea3d1f8926497a713ed7faaf8225e174581e91" } ,
{ file = "psutil-7.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:4b1388a4f6875d7e2aff5c4ca1cc16c545ed41dd8bb596cefea80111db353a34" } ,
{ file = "psutil-7.0.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:a5f098451abc2828f7dc6b58d44b532b22f2088f4999a937557b603ce72b1993" } ,
{ file = "psutil-7.0.0-cp36-cp36m-win32.whl" , hash = "sha256:84df4eb63e16849689f76b1ffcb36db7b8de703d1bc1fe41773db487621b6c17" } ,
{ file = "psutil-7.0.0-cp36-cp36m-win_amd64.whl" , hash = "sha256:1e744154a6580bc968a0195fd25e80432d3afec619daf145b9e5ba16cc1d688e" } ,
{ file = "psutil-7.0.0-cp37-abi3-win32.whl" , hash = "sha256:ba3fcef7523064a6c9da440fc4d6bd07da93ac726b5733c29027d7dc95b39d99" } ,
{ file = "psutil-7.0.0-cp37-abi3-win_amd64.whl" , hash = "sha256:4cf3d4eb1aa9b348dec30105c55cd9b7d4629285735a102beb4441e38db90553" } ,
{ file = "psutil-7.0.0.tar.gz" , hash = "sha256:7be9c3eba38beccb6495ea33afd982a44074b78f28c434a1f51cc07fd315c456" } ,
2024-10-06 18:21:43 -07:00
]
[ package . extras ]
2025-02-14 20:02:59 -08:00
dev = [ "abi3audit" , "black (==24.10.0)" , "check-manifest" , "coverage" , "packaging" , "pylint" , "pyperf" , "pypinfo" , "pytest" , "pytest-cov" , "pytest-xdist" , "requests" , "rstcheck" , "ruff" , "setuptools" , "sphinx" , "sphinx_rtd_theme" , "toml-sort" , "twine" , "virtualenv" , "vulture" , "wheel" ]
2025-01-10 16:45:36 -08:00
test = [ "pytest" , "pytest-xdist" , "setuptools" ]
2024-10-06 18:21:43 -07:00
[ [ package ] ]
name = "pydantic"
2025-07-08 00:59:33 -07:00
version = "2.11.7"
2024-10-06 18:21:43 -07:00
description = "Data validation using Python type hints"
optional = false
2025-04-06 01:24:01 -07:00
python-versions = ">=3.9"
2024-10-06 18:21:43 -07:00
files = [
2025-07-08 00:59:33 -07:00
{ file = "pydantic-2.11.7-py3-none-any.whl" , hash = "sha256:dde5df002701f6de26248661f6835bbe296a47bf73990135c7d07ce741b9623b" } ,
{ file = "pydantic-2.11.7.tar.gz" , hash = "sha256:d989c3c6cb79469287b1569f7447a17848c998458d49ebe294e975b9baf0f0db" } ,
2024-10-06 18:21:43 -07:00
]
[ package . dependencies ]
annotated-types = ">=0.6.0"
2025-05-23 09:52:23 -07:00
pydantic-core = "2.33.2"
2024-12-06 14:37:33 -08:00
typing-extensions = ">=4.12.2"
2025-04-06 01:24:01 -07:00
typing-inspection = ">=0.4.0"
2024-10-06 18:21:43 -07:00
[ package . extras ]
email = [ "email-validator (>=2.0.0)" ]
timezone = [ "tzdata" ]
[ [ package ] ]
name = "pydantic-core"
2025-05-23 09:52:23 -07:00
version = "2.33.2"
2024-10-06 18:21:43 -07:00
description = "Core functionality for Pydantic validation and serialization"
optional = false
2025-04-06 01:24:01 -07:00
python-versions = ">=3.9"
2024-10-06 18:21:43 -07:00
files = [
2025-05-23 09:52:23 -07:00
{ file = "pydantic_core-2.33.2-cp310-cp310-macosx_10_12_x86_64.whl" , hash = "sha256:2b3d326aaef0c0399d9afffeb6367d5e26ddc24d351dbc9c636840ac355dc5d8" } ,
{ file = "pydantic_core-2.33.2-cp310-cp310-macosx_11_0_arm64.whl" , hash = "sha256:0e5b2671f05ba48b94cb90ce55d8bdcaaedb8ba00cc5359f6810fc918713983d" } ,
{ file = "pydantic_core-2.33.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:0069c9acc3f3981b9ff4cdfaf088e98d83440a4c7ea1bc07460af3d4dc22e72d" } ,
{ file = "pydantic_core-2.33.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl" , hash = "sha256:d53b22f2032c42eaaf025f7c40c2e3b94568ae077a606f006d206a463bc69572" } ,
{ file = "pydantic_core-2.33.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" , hash = "sha256:0405262705a123b7ce9f0b92f123334d67b70fd1f20a9372b907ce1080c7ba02" } ,
{ file = "pydantic_core-2.33.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:4b25d91e288e2c4e0662b8038a28c6a07eaac3e196cfc4ff69de4ea3db992a1b" } ,
{ file = "pydantic_core-2.33.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:6bdfe4b3789761f3bcb4b1ddf33355a71079858958e3a552f16d5af19768fef2" } ,
{ file = "pydantic_core-2.33.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl" , hash = "sha256:efec8db3266b76ef9607c2c4c419bdb06bf335ae433b80816089ea7585816f6a" } ,
{ file = "pydantic_core-2.33.2-cp310-cp310-musllinux_1_1_aarch64.whl" , hash = "sha256:031c57d67ca86902726e0fae2214ce6770bbe2f710dc33063187a68744a5ecac" } ,
{ file = "pydantic_core-2.33.2-cp310-cp310-musllinux_1_1_armv7l.whl" , hash = "sha256:f8de619080e944347f5f20de29a975c2d815d9ddd8be9b9b7268e2e3ef68605a" } ,
{ file = "pydantic_core-2.33.2-cp310-cp310-musllinux_1_1_x86_64.whl" , hash = "sha256:73662edf539e72a9440129f231ed3757faab89630d291b784ca99237fb94db2b" } ,
{ file = "pydantic_core-2.33.2-cp310-cp310-win32.whl" , hash = "sha256:0a39979dcbb70998b0e505fb1556a1d550a0781463ce84ebf915ba293ccb7e22" } ,
{ file = "pydantic_core-2.33.2-cp310-cp310-win_amd64.whl" , hash = "sha256:b0379a2b24882fef529ec3b4987cb5d003b9cda32256024e6fe1586ac45fc640" } ,
{ file = "pydantic_core-2.33.2-cp311-cp311-macosx_10_12_x86_64.whl" , hash = "sha256:4c5b0a576fb381edd6d27f0a85915c6daf2f8138dc5c267a57c08a62900758c7" } ,
{ file = "pydantic_core-2.33.2-cp311-cp311-macosx_11_0_arm64.whl" , hash = "sha256:e799c050df38a639db758c617ec771fd8fb7a5f8eaaa4b27b101f266b216a246" } ,
{ file = "pydantic_core-2.33.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:dc46a01bf8d62f227d5ecee74178ffc448ff4e5197c756331f71efcc66dc980f" } ,
{ file = "pydantic_core-2.33.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl" , hash = "sha256:a144d4f717285c6d9234a66778059f33a89096dfb9b39117663fd8413d582dcc" } ,
{ file = "pydantic_core-2.33.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" , hash = "sha256:73cf6373c21bc80b2e0dc88444f41ae60b2f070ed02095754eb5a01df12256de" } ,
{ file = "pydantic_core-2.33.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:3dc625f4aa79713512d1976fe9f0bc99f706a9dee21dfd1810b4bbbf228d0e8a" } ,
{ file = "pydantic_core-2.33.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:881b21b5549499972441da4758d662aeea93f1923f953e9cbaff14b8b9565aef" } ,
{ file = "pydantic_core-2.33.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl" , hash = "sha256:bdc25f3681f7b78572699569514036afe3c243bc3059d3942624e936ec93450e" } ,
{ file = "pydantic_core-2.33.2-cp311-cp311-musllinux_1_1_aarch64.whl" , hash = "sha256:fe5b32187cbc0c862ee201ad66c30cf218e5ed468ec8dc1cf49dec66e160cc4d" } ,
{ file = "pydantic_core-2.33.2-cp311-cp311-musllinux_1_1_armv7l.whl" , hash = "sha256:bc7aee6f634a6f4a95676fcb5d6559a2c2a390330098dba5e5a5f28a2e4ada30" } ,
{ file = "pydantic_core-2.33.2-cp311-cp311-musllinux_1_1_x86_64.whl" , hash = "sha256:235f45e5dbcccf6bd99f9f472858849f73d11120d76ea8707115415f8e5ebebf" } ,
{ file = "pydantic_core-2.33.2-cp311-cp311-win32.whl" , hash = "sha256:6368900c2d3ef09b69cb0b913f9f8263b03786e5b2a387706c5afb66800efd51" } ,
{ file = "pydantic_core-2.33.2-cp311-cp311-win_amd64.whl" , hash = "sha256:1e063337ef9e9820c77acc768546325ebe04ee38b08703244c1309cccc4f1bab" } ,
{ file = "pydantic_core-2.33.2-cp311-cp311-win_arm64.whl" , hash = "sha256:6b99022f1d19bc32a4c2a0d544fc9a76e3be90f0b3f4af413f87d38749300e65" } ,
{ file = "pydantic_core-2.33.2-cp312-cp312-macosx_10_12_x86_64.whl" , hash = "sha256:a7ec89dc587667f22b6a0b6579c249fca9026ce7c333fc142ba42411fa243cdc" } ,
{ file = "pydantic_core-2.33.2-cp312-cp312-macosx_11_0_arm64.whl" , hash = "sha256:3c6db6e52c6d70aa0d00d45cdb9b40f0433b96380071ea80b09277dba021ddf7" } ,
{ file = "pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:4e61206137cbc65e6d5256e1166f88331d3b6238e082d9f74613b9b765fb9025" } ,
{ file = "pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl" , hash = "sha256:eb8c529b2819c37140eb51b914153063d27ed88e3bdc31b71198a198e921e011" } ,
{ file = "pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" , hash = "sha256:c52b02ad8b4e2cf14ca7b3d918f3eb0ee91e63b3167c32591e57c4317e134f8f" } ,
{ file = "pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:96081f1605125ba0855dfda83f6f3df5ec90c61195421ba72223de35ccfb2f88" } ,
{ file = "pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:8f57a69461af2a5fa6e6bbd7a5f60d3b7e6cebb687f55106933188e79ad155c1" } ,
{ file = "pydantic_core-2.33.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl" , hash = "sha256:572c7e6c8bb4774d2ac88929e3d1f12bc45714ae5ee6d9a788a9fb35e60bb04b" } ,
{ file = "pydantic_core-2.33.2-cp312-cp312-musllinux_1_1_aarch64.whl" , hash = "sha256:db4b41f9bd95fbe5acd76d89920336ba96f03e149097365afe1cb092fceb89a1" } ,
{ file = "pydantic_core-2.33.2-cp312-cp312-musllinux_1_1_armv7l.whl" , hash = "sha256:fa854f5cf7e33842a892e5c73f45327760bc7bc516339fda888c75ae60edaeb6" } ,
{ file = "pydantic_core-2.33.2-cp312-cp312-musllinux_1_1_x86_64.whl" , hash = "sha256:5f483cfb75ff703095c59e365360cb73e00185e01aaea067cd19acffd2ab20ea" } ,
{ file = "pydantic_core-2.33.2-cp312-cp312-win32.whl" , hash = "sha256:9cb1da0f5a471435a7bc7e439b8a728e8b61e59784b2af70d7c169f8dd8ae290" } ,
{ file = "pydantic_core-2.33.2-cp312-cp312-win_amd64.whl" , hash = "sha256:f941635f2a3d96b2973e867144fde513665c87f13fe0e193c158ac51bfaaa7b2" } ,
{ file = "pydantic_core-2.33.2-cp312-cp312-win_arm64.whl" , hash = "sha256:cca3868ddfaccfbc4bfb1d608e2ccaaebe0ae628e1416aeb9c4d88c001bb45ab" } ,
{ file = "pydantic_core-2.33.2-cp313-cp313-macosx_10_12_x86_64.whl" , hash = "sha256:1082dd3e2d7109ad8b7da48e1d4710c8d06c253cbc4a27c1cff4fbcaa97a9e3f" } ,
{ file = "pydantic_core-2.33.2-cp313-cp313-macosx_11_0_arm64.whl" , hash = "sha256:f517ca031dfc037a9c07e748cefd8d96235088b83b4f4ba8939105d20fa1dcd6" } ,
{ file = "pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:0a9f2c9dd19656823cb8250b0724ee9c60a82f3cdf68a080979d13092a3b0fef" } ,
{ file = "pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl" , hash = "sha256:2b0a451c263b01acebe51895bfb0e1cc842a5c666efe06cdf13846c7418caa9a" } ,
{ file = "pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" , hash = "sha256:1ea40a64d23faa25e62a70ad163571c0b342b8bf66d5fa612ac0dec4f069d916" } ,
{ file = "pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:0fb2d542b4d66f9470e8065c5469ec676978d625a8b7a363f07d9a501a9cb36a" } ,
{ file = "pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:9fdac5d6ffa1b5a83bca06ffe7583f5576555e6c8b3a91fbd25ea7780f825f7d" } ,
{ file = "pydantic_core-2.33.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl" , hash = "sha256:04a1a413977ab517154eebb2d326da71638271477d6ad87a769102f7c2488c56" } ,
{ file = "pydantic_core-2.33.2-cp313-cp313-musllinux_1_1_aarch64.whl" , hash = "sha256:c8e7af2f4e0194c22b5b37205bfb293d166a7344a5b0d0eaccebc376546d77d5" } ,
{ file = "pydantic_core-2.33.2-cp313-cp313-musllinux_1_1_armv7l.whl" , hash = "sha256:5c92edd15cd58b3c2d34873597a1e20f13094f59cf88068adb18947df5455b4e" } ,
{ file = "pydantic_core-2.33.2-cp313-cp313-musllinux_1_1_x86_64.whl" , hash = "sha256:65132b7b4a1c0beded5e057324b7e16e10910c106d43675d9bd87d4f38dde162" } ,
{ file = "pydantic_core-2.33.2-cp313-cp313-win32.whl" , hash = "sha256:52fb90784e0a242bb96ec53f42196a17278855b0f31ac7c3cc6f5c1ec4811849" } ,
{ file = "pydantic_core-2.33.2-cp313-cp313-win_amd64.whl" , hash = "sha256:c083a3bdd5a93dfe480f1125926afcdbf2917ae714bdb80b36d34318b2bec5d9" } ,
{ file = "pydantic_core-2.33.2-cp313-cp313-win_arm64.whl" , hash = "sha256:e80b087132752f6b3d714f041ccf74403799d3b23a72722ea2e6ba2e892555b9" } ,
{ file = "pydantic_core-2.33.2-cp313-cp313t-macosx_11_0_arm64.whl" , hash = "sha256:61c18fba8e5e9db3ab908620af374db0ac1baa69f0f32df4f61ae23f15e586ac" } ,
{ file = "pydantic_core-2.33.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:95237e53bb015f67b63c91af7518a62a8660376a6a0db19b89acc77a4d6199f5" } ,
{ file = "pydantic_core-2.33.2-cp313-cp313t-win_amd64.whl" , hash = "sha256:c2fc0a768ef76c15ab9238afa6da7f69895bb5d1ee83aeea2e3509af4472d0b9" } ,
{ file = "pydantic_core-2.33.2-cp39-cp39-macosx_10_12_x86_64.whl" , hash = "sha256:a2b911a5b90e0374d03813674bf0a5fbbb7741570dcd4b4e85a2e48d17def29d" } ,
{ file = "pydantic_core-2.33.2-cp39-cp39-macosx_11_0_arm64.whl" , hash = "sha256:6fa6dfc3e4d1f734a34710f391ae822e0a8eb8559a85c6979e14e65ee6ba2954" } ,
{ file = "pydantic_core-2.33.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:c54c939ee22dc8e2d545da79fc5381f1c020d6d3141d3bd747eab59164dc89fb" } ,
{ file = "pydantic_core-2.33.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl" , hash = "sha256:53a57d2ed685940a504248187d5685e49eb5eef0f696853647bf37c418c538f7" } ,
{ file = "pydantic_core-2.33.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" , hash = "sha256:09fb9dd6571aacd023fe6aaca316bd01cf60ab27240d7eb39ebd66a3a15293b4" } ,
{ file = "pydantic_core-2.33.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:0e6116757f7959a712db11f3e9c0a99ade00a5bbedae83cb801985aa154f071b" } ,
{ file = "pydantic_core-2.33.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:8d55ab81c57b8ff8548c3e4947f119551253f4e3787a7bbc0b6b3ca47498a9d3" } ,
{ file = "pydantic_core-2.33.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl" , hash = "sha256:c20c462aa4434b33a2661701b861604913f912254e441ab8d78d30485736115a" } ,
{ file = "pydantic_core-2.33.2-cp39-cp39-musllinux_1_1_aarch64.whl" , hash = "sha256:44857c3227d3fb5e753d5fe4a3420d6376fa594b07b621e220cd93703fe21782" } ,
{ file = "pydantic_core-2.33.2-cp39-cp39-musllinux_1_1_armv7l.whl" , hash = "sha256:eb9b459ca4df0e5c87deb59d37377461a538852765293f9e6ee834f0435a93b9" } ,
{ file = "pydantic_core-2.33.2-cp39-cp39-musllinux_1_1_x86_64.whl" , hash = "sha256:9fcd347d2cc5c23b06de6d3b7b8275be558a0c90549495c699e379a80bf8379e" } ,
{ file = "pydantic_core-2.33.2-cp39-cp39-win32.whl" , hash = "sha256:83aa99b1285bc8f038941ddf598501a86f1536789740991d7d8756e34f1e74d9" } ,
{ file = "pydantic_core-2.33.2-cp39-cp39-win_amd64.whl" , hash = "sha256:f481959862f57f29601ccced557cc2e817bce7533ab8e01a797a48b49c9692b3" } ,
{ file = "pydantic_core-2.33.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl" , hash = "sha256:5c4aa4e82353f65e548c476b37e64189783aa5384903bfea4f41580f255fddfa" } ,
{ file = "pydantic_core-2.33.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl" , hash = "sha256:d946c8bf0d5c24bf4fe333af284c59a19358aa3ec18cb3dc4370080da1e8ad29" } ,
{ file = "pydantic_core-2.33.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:87b31b6846e361ef83fedb187bb5b4372d0da3f7e28d85415efa92d6125d6e6d" } ,
{ file = "pydantic_core-2.33.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:aa9d91b338f2df0508606f7009fde642391425189bba6d8c653afd80fd6bb64e" } ,
{ file = "pydantic_core-2.33.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl" , hash = "sha256:2058a32994f1fde4ca0480ab9d1e75a0e8c87c22b53a3ae66554f9af78f2fe8c" } ,
{ file = "pydantic_core-2.33.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl" , hash = "sha256:0e03262ab796d986f978f79c943fc5f620381be7287148b8010b4097f79a39ec" } ,
{ file = "pydantic_core-2.33.2-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl" , hash = "sha256:1a8695a8d00c73e50bff9dfda4d540b7dee29ff9b8053e38380426a85ef10052" } ,
{ file = "pydantic_core-2.33.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl" , hash = "sha256:fa754d1850735a0b0e03bcffd9d4b4343eb417e47196e4485d9cca326073a42c" } ,
{ file = "pydantic_core-2.33.2-pp310-pypy310_pp73-win_amd64.whl" , hash = "sha256:a11c8d26a50bfab49002947d3d237abe4d9e4b5bdc8846a63537b6488e197808" } ,
{ file = "pydantic_core-2.33.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl" , hash = "sha256:dd14041875d09cc0f9308e37a6f8b65f5585cf2598a53aa0123df8b129d481f8" } ,
{ file = "pydantic_core-2.33.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl" , hash = "sha256:d87c561733f66531dced0da6e864f44ebf89a8fba55f31407b00c2f7f9449593" } ,
{ file = "pydantic_core-2.33.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:2f82865531efd18d6e07a04a17331af02cb7a651583c418df8266f17a63c6612" } ,
{ file = "pydantic_core-2.33.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:2bfb5112df54209d820d7bf9317c7a6c9025ea52e49f46b6a2060104bba37de7" } ,
{ file = "pydantic_core-2.33.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl" , hash = "sha256:64632ff9d614e5eecfb495796ad51b0ed98c453e447a76bcbeeb69615079fc7e" } ,
{ file = "pydantic_core-2.33.2-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl" , hash = "sha256:f889f7a40498cc077332c7ab6b4608d296d852182211787d4f3ee377aaae66e8" } ,
{ file = "pydantic_core-2.33.2-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl" , hash = "sha256:de4b83bb311557e439b9e186f733f6c645b9417c84e2eb8203f3f820a4b988bf" } ,
{ file = "pydantic_core-2.33.2-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl" , hash = "sha256:82f68293f055f51b51ea42fafc74b6aad03e70e191799430b90c13d643059ebb" } ,
{ file = "pydantic_core-2.33.2-pp311-pypy311_pp73-win_amd64.whl" , hash = "sha256:329467cecfb529c925cf2bbd4d60d2c509bc2fb52a20c1045bf09bb70971a9c1" } ,
{ file = "pydantic_core-2.33.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl" , hash = "sha256:87acbfcf8e90ca885206e98359d7dca4bcbb35abdc0ff66672a293e1d7a19101" } ,
{ file = "pydantic_core-2.33.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl" , hash = "sha256:7f92c15cd1e97d4b12acd1cc9004fa092578acfa57b67ad5e43a197175d01a64" } ,
{ file = "pydantic_core-2.33.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:d3f26877a748dc4251cfcfda9dfb5f13fcb034f5308388066bcfe9031b63ae7d" } ,
{ file = "pydantic_core-2.33.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:dac89aea9af8cd672fa7b510e7b8c33b0bba9a43186680550ccf23020f32d535" } ,
{ file = "pydantic_core-2.33.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl" , hash = "sha256:970919794d126ba8645f3837ab6046fb4e72bbc057b3709144066204c19a455d" } ,
{ file = "pydantic_core-2.33.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl" , hash = "sha256:3eb3fe62804e8f859c49ed20a8451342de53ed764150cb14ca71357c765dc2a6" } ,
{ file = "pydantic_core-2.33.2-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl" , hash = "sha256:3abcd9392a36025e3bd55f9bd38d908bd17962cc49bc6da8e7e96285336e2bca" } ,
{ file = "pydantic_core-2.33.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl" , hash = "sha256:3a1c81334778f9e3af2f8aeb7a960736e5cab1dfebfb26aabca09afd2906c039" } ,
{ file = "pydantic_core-2.33.2-pp39-pypy39_pp73-win_amd64.whl" , hash = "sha256:2807668ba86cb38c6817ad9bc66215ab8584d1d304030ce4f0887336f28a5e27" } ,
{ file = "pydantic_core-2.33.2.tar.gz" , hash = "sha256:7cb8bc3605c29176e1b105350d2e6474142d7c1bd1d9327c4a9bdb46bf827acc" } ,
2024-10-06 18:21:43 -07:00
]
[ package . dependencies ]
typing-extensions = ">=4.6.0,<4.7.0 || >4.7.0"
2025-06-13 17:02:20 -07:00
[ [ package ] ]
name = "pygments"
2025-07-08 00:59:33 -07:00
version = "2.19.2"
2025-06-13 17:02:20 -07:00
description = "Pygments is a syntax highlighting package written in Python."
optional = false
python-versions = ">=3.8"
files = [
2025-07-08 00:59:33 -07:00
{ file = "pygments-2.19.2-py3-none-any.whl" , hash = "sha256:86540386c03d588bb81d44bc3928634ff26449851e99741617ecb9037ee5ec0b" } ,
{ file = "pygments-2.19.2.tar.gz" , hash = "sha256:636cb2477cec7f8952536970bc533bc43743542f70392ae026374600add5b887" } ,
2025-06-13 17:02:20 -07:00
]
[ package . extras ]
windows-terminal = [ "colorama (>=0.4.6)" ]
2024-10-17 10:42:15 -07:00
[ [ package ] ]
name = "pytest"
2025-09-11 18:44:18 -07:00
version = "8.4.2"
2024-10-17 10:42:15 -07:00
description = "pytest: simple powerful testing with Python"
optional = false
2025-06-13 17:02:20 -07:00
python-versions = ">=3.9"
2024-10-17 10:42:15 -07:00
files = [
2025-09-11 18:44:18 -07:00
{ file = "pytest-8.4.2-py3-none-any.whl" , hash = "sha256:872f880de3fc3a5bdc88a11b39c9710c3497a547cfa9320bc3c5e62fbf272e79" } ,
{ file = "pytest-8.4.2.tar.gz" , hash = "sha256:86c0d0b93306b961d58d62a4db4879f27fe25513d4b969df351abdddb3c30e01" } ,
2024-10-17 10:42:15 -07:00
]
[ package . dependencies ]
2025-06-13 17:02:20 -07:00
colorama = { version = ">=0.4" , markers = "sys_platform == \"win32\"" }
exceptiongroup = { version = ">=1" , markers = "python_version < \"3.11\"" }
iniconfig = ">=1"
packaging = ">=20"
2024-10-17 10:42:15 -07:00
pluggy = ">=1.5,<2"
2025-06-13 17:02:20 -07:00
pygments = ">=2.7.2"
2025-01-10 16:45:36 -08:00
tomli = { version = ">=1" , markers = "python_version < \"3.11\"" }
2024-10-17 10:42:15 -07:00
[ package . extras ]
2025-06-13 17:02:20 -07:00
dev = [ "argcomplete" , "attrs (>=19.2)" , "hypothesis (>=3.56)" , "mock" , "requests" , "setuptools" , "xmlschema" ]
2024-10-17 10:42:15 -07:00
[ [ package ] ]
name = "pytest-asyncio"
2025-07-21 10:09:22 -07:00
version = "1.1.0"
2024-10-17 10:42:15 -07:00
description = "Pytest support for asyncio"
optional = false
2024-12-20 13:25:01 -08:00
python-versions = ">=3.9"
2024-10-17 10:42:15 -07:00
files = [
2025-07-21 10:09:22 -07:00
{ file = "pytest_asyncio-1.1.0-py3-none-any.whl" , hash = "sha256:5fe2d69607b0bd75c656d1211f969cadba035030156745ee09e7d71740e58ecf" } ,
{ file = "pytest_asyncio-1.1.0.tar.gz" , hash = "sha256:796aa822981e01b68c12e4827b8697108f7205020f24b5793b3c41555dab68ea" } ,
2024-10-17 10:42:15 -07:00
]
[ package . dependencies ]
2025-07-21 10:09:22 -07:00
backports-asyncio-runner = { version = ">=1.1,<2" , markers = "python_version < \"3.11\"" }
2024-10-17 10:42:15 -07:00
pytest = ">=8.2,<9"
[ package . extras ]
2024-12-20 13:25:01 -08:00
docs = [ "sphinx (>=5.3)" , "sphinx-rtd-theme (>=1)" ]
2024-10-17 10:42:15 -07:00
testing = [ "coverage (>=6.2)" , "hypothesis (>=5.7.1)" ]
2024-12-20 13:25:01 -08:00
[ [ package ] ]
name = "pytest-httpserver"
2025-04-15 14:50:09 -07:00
version = "1.1.3"
2024-12-20 13:25:01 -08:00
description = "pytest-httpserver is a httpserver for pytest"
optional = false
2025-03-04 14:30:44 -08:00
python-versions = ">=3.9"
2024-12-20 13:25:01 -08:00
files = [
2025-04-15 14:50:09 -07:00
{ file = "pytest_httpserver-1.1.3-py3-none-any.whl" , hash = "sha256:5f84757810233e19e2bb5287f3826a71c97a3740abe3a363af9155c0f82fdbb9" } ,
{ file = "pytest_httpserver-1.1.3.tar.gz" , hash = "sha256:af819d6b533f84b4680b9416a5b3f67f1df3701f1da54924afd4d6e4ba5917ec" } ,
2024-12-20 13:25:01 -08:00
]
[ package . dependencies ]
Werkzeug = ">=2.0.0"
[ [ package ] ]
name = "pytest-retry"
2025-02-14 20:02:59 -08:00
version = "1.7.0"
2024-12-20 13:25:01 -08:00
description = "Adds the ability to retry flaky tests in CI environments"
optional = false
python-versions = ">=3.9"
files = [
2025-02-14 20:02:59 -08:00
{ file = "pytest_retry-1.7.0-py3-none-any.whl" , hash = "sha256:a2dac85b79a4e2375943f1429479c65beb6c69553e7dae6b8332be47a60954f4" } ,
{ file = "pytest_retry-1.7.0.tar.gz" , hash = "sha256:f8d52339f01e949df47c11ba9ee8d5b362f5824dff580d3870ec9ae0057df80f" } ,
2024-12-20 13:25:01 -08:00
]
[ package . dependencies ]
pytest = ">=7.0.0"
[ package . extras ]
dev = [ "black" , "flake8" , "isort" , "mypy" ]
2024-10-06 18:21:43 -07:00
[ [ package ] ]
name = "python-dateutil"
version = "2.9.0.post0"
description = "Extensions to the standard Python datetime module"
optional = false
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7"
files = [
{ file = "python-dateutil-2.9.0.post0.tar.gz" , hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3" } ,
{ file = "python_dateutil-2.9.0.post0-py2.py3-none-any.whl" , hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427" } ,
]
[ package . dependencies ]
six = ">=1.5"
[ [ package ] ]
name = "pytz"
2025-04-06 01:24:01 -07:00
version = "2025.2"
2024-10-06 18:21:43 -07:00
description = "World timezone definitions, modern and historical"
optional = false
python-versions = "*"
files = [
2025-04-06 01:24:01 -07:00
{ file = "pytz-2025.2-py2.py3-none-any.whl" , hash = "sha256:5ddf76296dd8c44c26eb8f4b6f35488f3ccbf6fbbd7adee0b7262d43f0ec2f00" } ,
{ file = "pytz-2025.2.tar.gz" , hash = "sha256:360b9e3dbb49a209c21ad61809c7fb453643e048b38924c765813546746e81c3" } ,
2024-10-06 18:21:43 -07:00
]
[ [ package ] ]
name = "pyyaml"
version = "6.0.2"
description = "YAML parser and emitter for Python"
optional = false
python-versions = ">=3.8"
files = [
{ file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl" , hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086" } ,
{ file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl" , hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf" } ,
{ file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237" } ,
{ file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b" } ,
{ file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed" } ,
{ file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl" , hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180" } ,
{ file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl" , hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68" } ,
{ file = "PyYAML-6.0.2-cp310-cp310-win32.whl" , hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99" } ,
{ file = "PyYAML-6.0.2-cp310-cp310-win_amd64.whl" , hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e" } ,
{ file = "PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl" , hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774" } ,
{ file = "PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl" , hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee" } ,
{ file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c" } ,
{ file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317" } ,
{ file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85" } ,
{ file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl" , hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4" } ,
{ file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl" , hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e" } ,
{ file = "PyYAML-6.0.2-cp311-cp311-win32.whl" , hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5" } ,
{ file = "PyYAML-6.0.2-cp311-cp311-win_amd64.whl" , hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44" } ,
{ file = "PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl" , hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab" } ,
{ file = "PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl" , hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725" } ,
{ file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5" } ,
{ file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425" } ,
{ file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476" } ,
{ file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl" , hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48" } ,
{ file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl" , hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b" } ,
{ file = "PyYAML-6.0.2-cp312-cp312-win32.whl" , hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4" } ,
{ file = "PyYAML-6.0.2-cp312-cp312-win_amd64.whl" , hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8" } ,
{ file = "PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl" , hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba" } ,
{ file = "PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl" , hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1" } ,
{ file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133" } ,
{ file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484" } ,
{ file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5" } ,
{ file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl" , hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc" } ,
{ file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl" , hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652" } ,
{ file = "PyYAML-6.0.2-cp313-cp313-win32.whl" , hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183" } ,
{ file = "PyYAML-6.0.2-cp313-cp313-win_amd64.whl" , hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563" } ,
{ file = "PyYAML-6.0.2-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a" } ,
{ file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5" } ,
{ file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d" } ,
{ file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083" } ,
{ file = "PyYAML-6.0.2-cp38-cp38-musllinux_1_1_x86_64.whl" , hash = "sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706" } ,
{ file = "PyYAML-6.0.2-cp38-cp38-win32.whl" , hash = "sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a" } ,
{ file = "PyYAML-6.0.2-cp38-cp38-win_amd64.whl" , hash = "sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff" } ,
{ file = "PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d" } ,
{ file = "PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl" , hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f" } ,
{ file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290" } ,
{ file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12" } ,
{ file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19" } ,
{ file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl" , hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e" } ,
{ file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl" , hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725" } ,
{ file = "PyYAML-6.0.2-cp39-cp39-win32.whl" , hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631" } ,
{ file = "PyYAML-6.0.2-cp39-cp39-win_amd64.whl" , hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8" } ,
{ file = "pyyaml-6.0.2.tar.gz" , hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e" } ,
]
[ [ package ] ]
name = "regex"
2025-09-11 18:44:18 -07:00
version = "2025.9.1"
2024-10-06 18:21:43 -07:00
description = "Alternative regular expression module, to replace re."
optional = false
2025-08-11 13:23:40 -07:00
python-versions = ">=3.9"
2024-10-06 18:21:43 -07:00
files = [
2025-09-11 18:44:18 -07:00
{ file = "regex-2025.9.1-cp310-cp310-macosx_10_9_universal2.whl" , hash = "sha256:c5aa2a6a73bf218515484b36a0d20c6ad9dc63f6339ff6224147b0e2c095ee55" } ,
{ file = "regex-2025.9.1-cp310-cp310-macosx_10_9_x86_64.whl" , hash = "sha256:8c2ff5c01d5e47ad5fc9d31bcd61e78c2fa0068ed00cab86b7320214446da766" } ,
{ file = "regex-2025.9.1-cp310-cp310-macosx_11_0_arm64.whl" , hash = "sha256:d49dc84e796b666181de8a9973284cad6616335f01b52bf099643253094920fc" } ,
{ file = "regex-2025.9.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl" , hash = "sha256:d9914fe1040874f83c15fcea86d94ea54091b0666eab330aaab69e30d106aabe" } ,
{ file = "regex-2025.9.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl" , hash = "sha256:e71bceb3947362ec5eabd2ca0870bb78eae4edfc60c6c21495133c01b6cd2df4" } ,
{ file = "regex-2025.9.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl" , hash = "sha256:67a74456f410fe5e869239ee7a5423510fe5121549af133809d9591a8075893f" } ,
{ file = "regex-2025.9.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl" , hash = "sha256:5c3b96ed0223b32dbdc53a83149b6de7ca3acd5acd9c8e64b42a166228abe29c" } ,
{ file = "regex-2025.9.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl" , hash = "sha256:113d5aa950f428faf46fd77d452df62ebb4cc6531cb619f6cc30a369d326bfbd" } ,
{ file = "regex-2025.9.1-cp310-cp310-musllinux_1_2_aarch64.whl" , hash = "sha256:fcdeb38de4f7f3d69d798f4f371189061446792a84e7c92b50054c87aae9c07c" } ,
{ file = "regex-2025.9.1-cp310-cp310-musllinux_1_2_ppc64le.whl" , hash = "sha256:4bcdff370509164b67a6c8ec23c9fb40797b72a014766fdc159bb809bd74f7d8" } ,
{ file = "regex-2025.9.1-cp310-cp310-musllinux_1_2_s390x.whl" , hash = "sha256:7383efdf6e8e8c61d85e00cfb2e2e18da1a621b8bfb4b0f1c2747db57b942b8f" } ,
{ file = "regex-2025.9.1-cp310-cp310-musllinux_1_2_x86_64.whl" , hash = "sha256:1ec2bd3bdf0f73f7e9f48dca550ba7d973692d5e5e9a90ac42cc5f16c4432d8b" } ,
{ file = "regex-2025.9.1-cp310-cp310-win32.whl" , hash = "sha256:9627e887116c4e9c0986d5c3b4f52bcfe3df09850b704f62ec3cbf177a0ae374" } ,
{ file = "regex-2025.9.1-cp310-cp310-win_amd64.whl" , hash = "sha256:94533e32dc0065eca43912ee6649c90ea0681d59f56d43c45b5bcda9a740b3dd" } ,
{ file = "regex-2025.9.1-cp310-cp310-win_arm64.whl" , hash = "sha256:a874a61bb580d48642ffd338570ee24ab13fa023779190513fcacad104a6e251" } ,
{ file = "regex-2025.9.1-cp311-cp311-macosx_10_9_universal2.whl" , hash = "sha256:e5bcf112b09bfd3646e4db6bf2e598534a17d502b0c01ea6550ba4eca780c5e6" } ,
{ file = "regex-2025.9.1-cp311-cp311-macosx_10_9_x86_64.whl" , hash = "sha256:67a0295a3c31d675a9ee0238d20238ff10a9a2fdb7a1323c798fc7029578b15c" } ,
{ file = "regex-2025.9.1-cp311-cp311-macosx_11_0_arm64.whl" , hash = "sha256:ea8267fbadc7d4bd7c1301a50e85c2ff0de293ff9452a1a9f8d82c6cafe38179" } ,
{ file = "regex-2025.9.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl" , hash = "sha256:6aeff21de7214d15e928fb5ce757f9495214367ba62875100d4c18d293750cc1" } ,
{ file = "regex-2025.9.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl" , hash = "sha256:d89f1bbbbbc0885e1c230f7770d5e98f4f00b0ee85688c871d10df8b184a6323" } ,
{ file = "regex-2025.9.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl" , hash = "sha256:ca3affe8ddea498ba9d294ab05f5f2d3b5ad5d515bc0d4a9016dd592a03afe52" } ,
{ file = "regex-2025.9.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl" , hash = "sha256:91892a7a9f0a980e4c2c85dd19bc14de2b219a3a8867c4b5664b9f972dcc0c78" } ,
{ file = "regex-2025.9.1-cp311-cp311-musllinux_1_2_aarch64.whl" , hash = "sha256:e1cb40406f4ae862710615f9f636c1e030fd6e6abe0e0f65f6a695a2721440c6" } ,
{ file = "regex-2025.9.1-cp311-cp311-musllinux_1_2_ppc64le.whl" , hash = "sha256:94f6cff6f7e2149c7e6499a6ecd4695379eeda8ccbccb9726e8149f2fe382e92" } ,
{ file = "regex-2025.9.1-cp311-cp311-musllinux_1_2_s390x.whl" , hash = "sha256:6c0226fb322b82709e78c49cc33484206647f8a39954d7e9de1567f5399becd0" } ,
{ file = "regex-2025.9.1-cp311-cp311-musllinux_1_2_x86_64.whl" , hash = "sha256:a12f59c7c380b4fcf7516e9cbb126f95b7a9518902bcf4a852423ff1dcd03e6a" } ,
{ file = "regex-2025.9.1-cp311-cp311-win32.whl" , hash = "sha256:49865e78d147a7a4f143064488da5d549be6bfc3f2579e5044cac61f5c92edd4" } ,
{ file = "regex-2025.9.1-cp311-cp311-win_amd64.whl" , hash = "sha256:d34b901f6f2f02ef60f4ad3855d3a02378c65b094efc4b80388a3aeb700a5de7" } ,
{ file = "regex-2025.9.1-cp311-cp311-win_arm64.whl" , hash = "sha256:47d7c2dab7e0b95b95fd580087b6ae196039d62306a592fa4e162e49004b6299" } ,
{ file = "regex-2025.9.1-cp312-cp312-macosx_10_13_universal2.whl" , hash = "sha256:84a25164bd8dcfa9f11c53f561ae9766e506e580b70279d05a7946510bdd6f6a" } ,
{ file = "regex-2025.9.1-cp312-cp312-macosx_10_13_x86_64.whl" , hash = "sha256:645e88a73861c64c1af558dd12294fb4e67b5c1eae0096a60d7d8a2143a611c7" } ,
{ file = "regex-2025.9.1-cp312-cp312-macosx_11_0_arm64.whl" , hash = "sha256:10a450cba5cd5409526ee1d4449f42aad38dd83ac6948cbd6d7f71ca7018f7db" } ,
{ file = "regex-2025.9.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl" , hash = "sha256:e9dc5991592933a4192c166eeb67b29d9234f9c86344481173d1bc52f73a7104" } ,
{ file = "regex-2025.9.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl" , hash = "sha256:a32291add816961aab472f4fad344c92871a2ee33c6c219b6598e98c1f0108f2" } ,
{ file = "regex-2025.9.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl" , hash = "sha256:588c161a68a383478e27442a678e3b197b13c5ba51dbba40c1ccb8c4c7bee9e9" } ,
{ file = "regex-2025.9.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl" , hash = "sha256:47829ffaf652f30d579534da9085fe30c171fa2a6744a93d52ef7195dc38218b" } ,
{ file = "regex-2025.9.1-cp312-cp312-musllinux_1_2_aarch64.whl" , hash = "sha256:1e978e5a35b293ea43f140c92a3269b6ab13fe0a2bf8a881f7ac740f5a6ade85" } ,
{ file = "regex-2025.9.1-cp312-cp312-musllinux_1_2_ppc64le.whl" , hash = "sha256:4cf09903e72411f4bf3ac1eddd624ecfd423f14b2e4bf1c8b547b72f248b7bf7" } ,
{ file = "regex-2025.9.1-cp312-cp312-musllinux_1_2_s390x.whl" , hash = "sha256:d016b0f77be63e49613c9e26aaf4a242f196cd3d7a4f15898f5f0ab55c9b24d2" } ,
{ file = "regex-2025.9.1-cp312-cp312-musllinux_1_2_x86_64.whl" , hash = "sha256:656563e620de6908cd1c9d4f7b9e0777e3341ca7db9d4383bcaa44709c90281e" } ,
{ file = "regex-2025.9.1-cp312-cp312-win32.whl" , hash = "sha256:df33f4ef07b68f7ab637b1dbd70accbf42ef0021c201660656601e8a9835de45" } ,
{ file = "regex-2025.9.1-cp312-cp312-win_amd64.whl" , hash = "sha256:5aba22dfbc60cda7c0853516104724dc904caa2db55f2c3e6e984eb858d3edf3" } ,
{ file = "regex-2025.9.1-cp312-cp312-win_arm64.whl" , hash = "sha256:ec1efb4c25e1849c2685fa95da44bfde1b28c62d356f9c8d861d4dad89ed56e9" } ,
{ file = "regex-2025.9.1-cp313-cp313-macosx_10_13_universal2.whl" , hash = "sha256:bc6834727d1b98d710a63e6c823edf6ffbf5792eba35d3fa119531349d4142ef" } ,
{ file = "regex-2025.9.1-cp313-cp313-macosx_10_13_x86_64.whl" , hash = "sha256:c3dc05b6d579875719bccc5f3037b4dc80433d64e94681a0061845bd8863c025" } ,
{ file = "regex-2025.9.1-cp313-cp313-macosx_11_0_arm64.whl" , hash = "sha256:22213527df4c985ec4a729b055a8306272d41d2f45908d7bacb79be0fa7a75ad" } ,
{ file = "regex-2025.9.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl" , hash = "sha256:8e3f6e3c5a5a1adc3f7ea1b5aec89abfc2f4fbfba55dafb4343cd1d084f715b2" } ,
{ file = "regex-2025.9.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl" , hash = "sha256:bcb89c02a0d6c2bec9b0bb2d8c78782699afe8434493bfa6b4021cc51503f249" } ,
{ file = "regex-2025.9.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl" , hash = "sha256:b0e2f95413eb0c651cd1516a670036315b91b71767af83bc8525350d4375ccba" } ,
{ file = "regex-2025.9.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl" , hash = "sha256:09a41dc039e1c97d3c2ed3e26523f748e58c4de3ea7a31f95e1cf9ff973fff5a" } ,
{ file = "regex-2025.9.1-cp313-cp313-musllinux_1_2_aarch64.whl" , hash = "sha256:4f0b4258b161094f66857a26ee938d3fe7b8a5063861e44571215c44fbf0e5df" } ,
{ file = "regex-2025.9.1-cp313-cp313-musllinux_1_2_ppc64le.whl" , hash = "sha256:bf70e18ac390e6977ea7e56f921768002cb0fa359c4199606c7219854ae332e0" } ,
{ file = "regex-2025.9.1-cp313-cp313-musllinux_1_2_s390x.whl" , hash = "sha256:b84036511e1d2bb0a4ff1aec26951caa2dea8772b223c9e8a19ed8885b32dbac" } ,
{ file = "regex-2025.9.1-cp313-cp313-musllinux_1_2_x86_64.whl" , hash = "sha256:c2e05dcdfe224047f2a59e70408274c325d019aad96227ab959403ba7d58d2d7" } ,
{ file = "regex-2025.9.1-cp313-cp313-win32.whl" , hash = "sha256:3b9a62107a7441b81ca98261808fed30ae36ba06c8b7ee435308806bd53c1ed8" } ,
{ file = "regex-2025.9.1-cp313-cp313-win_amd64.whl" , hash = "sha256:b38afecc10c177eb34cfae68d669d5161880849ba70c05cbfbe409f08cc939d7" } ,
{ file = "regex-2025.9.1-cp313-cp313-win_arm64.whl" , hash = "sha256:ec329890ad5e7ed9fc292858554d28d58d56bf62cf964faf0aa57964b21155a0" } ,
{ file = "regex-2025.9.1-cp314-cp314-macosx_10_13_universal2.whl" , hash = "sha256:72fb7a016467d364546f22b5ae86c45680a4e0de6b2a6f67441d22172ff641f1" } ,
{ file = "regex-2025.9.1-cp314-cp314-macosx_10_13_x86_64.whl" , hash = "sha256:c9527fa74eba53f98ad86be2ba003b3ebe97e94b6eb2b916b31b5f055622ef03" } ,
{ file = "regex-2025.9.1-cp314-cp314-macosx_11_0_arm64.whl" , hash = "sha256:c905d925d194c83a63f92422af7544ec188301451b292c8b487f0543726107ca" } ,
{ file = "regex-2025.9.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl" , hash = "sha256:74df7c74a63adcad314426b1f4ea6054a5ab25d05b0244f0c07ff9ce640fa597" } ,
{ file = "regex-2025.9.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl" , hash = "sha256:4f6e935e98ea48c7a2e8be44494de337b57a204470e7f9c9c42f912c414cd6f5" } ,
{ file = "regex-2025.9.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl" , hash = "sha256:4a62d033cd9ebefc7c5e466731a508dfabee827d80b13f455de68a50d3c2543d" } ,
{ file = "regex-2025.9.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl" , hash = "sha256:ef971ebf2b93bdc88d8337238be4dfb851cc97ed6808eb04870ef67589415171" } ,
{ file = "regex-2025.9.1-cp314-cp314-musllinux_1_2_aarch64.whl" , hash = "sha256:d936a1db208bdca0eca1f2bb2c1ba1d8370b226785c1e6db76e32a228ffd0ad5" } ,
{ file = "regex-2025.9.1-cp314-cp314-musllinux_1_2_ppc64le.whl" , hash = "sha256:7e786d9e4469698fc63815b8de08a89165a0aa851720eb99f5e0ea9d51dd2b6a" } ,
{ file = "regex-2025.9.1-cp314-cp314-musllinux_1_2_s390x.whl" , hash = "sha256:6b81d7dbc5466ad2c57ce3a0ddb717858fe1a29535c8866f8514d785fdb9fc5b" } ,
{ file = "regex-2025.9.1-cp314-cp314-musllinux_1_2_x86_64.whl" , hash = "sha256:cd4890e184a6feb0ef195338a6ce68906a8903a0f2eb7e0ab727dbc0a3156273" } ,
{ file = "regex-2025.9.1-cp314-cp314-win32.whl" , hash = "sha256:34679a86230e46164c9e0396b56cab13c0505972343880b9e705083cc5b8ec86" } ,
{ file = "regex-2025.9.1-cp314-cp314-win_amd64.whl" , hash = "sha256:a1196e530a6bfa5f4bde029ac5b0295a6ecfaaffbfffede4bbaf4061d9455b70" } ,
{ file = "regex-2025.9.1-cp314-cp314-win_arm64.whl" , hash = "sha256:f46d525934871ea772930e997d577d48c6983e50f206ff7b66d4ac5f8941e993" } ,
{ file = "regex-2025.9.1-cp39-cp39-macosx_10_9_universal2.whl" , hash = "sha256:a13d20007dce3c4b00af5d84f6c191ed1c0f70928c6d9b6cd7b8d2f125df7f46" } ,
{ file = "regex-2025.9.1-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:d6b046b0a01cb713fd53ef36cb59db4b0062b343db28e83b52ac6aa01ee5b368" } ,
{ file = "regex-2025.9.1-cp39-cp39-macosx_11_0_arm64.whl" , hash = "sha256:0fa9a7477288717f42dbd02ff5d13057549e9a8cdb81f224c313154cc10bab52" } ,
{ file = "regex-2025.9.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl" , hash = "sha256:b2b3ad150c6bc01a8cd5030040675060e2adbe6cbc50aadc4da42c6d32ec266e" } ,
{ file = "regex-2025.9.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl" , hash = "sha256:aa88d5a82dfe80deaf04e8c39c8b0ad166d5d527097eb9431cb932c44bf88715" } ,
{ file = "regex-2025.9.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl" , hash = "sha256:6f1dae2cf6c2dbc6fd2526653692c144721b3cf3f769d2a3c3aa44d0f38b9a58" } ,
{ file = "regex-2025.9.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl" , hash = "sha256:ff62a3022914fc19adaa76b65e03cf62bc67ea16326cbbeb170d280710a7d719" } ,
{ file = "regex-2025.9.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl" , hash = "sha256:a34ef82216189d823bc82f614d1031cb0b919abef27cecfd7b07d1e9a8bdeeb4" } ,
{ file = "regex-2025.9.1-cp39-cp39-musllinux_1_2_aarch64.whl" , hash = "sha256:6d40e6b49daae9ebbd7fa4e600697372cba85b826592408600068e83a3c47211" } ,
{ file = "regex-2025.9.1-cp39-cp39-musllinux_1_2_ppc64le.whl" , hash = "sha256:0aeb0fe80331059c152a002142699a89bf3e44352aee28261315df0c9874759b" } ,
{ file = "regex-2025.9.1-cp39-cp39-musllinux_1_2_s390x.whl" , hash = "sha256:a90014d29cb3098403d82a879105d1418edbbdf948540297435ea6e377023ea7" } ,
{ file = "regex-2025.9.1-cp39-cp39-musllinux_1_2_x86_64.whl" , hash = "sha256:6ff623271e0b0cc5a95b802666bbd70f17ddd641582d65b10fb260cc0c003529" } ,
{ file = "regex-2025.9.1-cp39-cp39-win32.whl" , hash = "sha256:d161bfdeabe236290adfd8c7588da7f835d67e9e7bf2945f1e9e120622839ba6" } ,
{ file = "regex-2025.9.1-cp39-cp39-win_amd64.whl" , hash = "sha256:43ebc77a7dfe36661192afd8d7df5e8be81ec32d2ad0c65b536f66ebfec3dece" } ,
{ file = "regex-2025.9.1-cp39-cp39-win_arm64.whl" , hash = "sha256:5d74b557cf5554001a869cda60b9a619be307df4d10155894aeaad3ee67c9899" } ,
{ file = "regex-2025.9.1.tar.gz" , hash = "sha256:88ac07b38d20b54d79e704e38aa3bd2c0f8027432164226bdee201a1c0c9c9ff" } ,
2024-10-06 18:21:43 -07:00
]
[ [ package ] ]
name = "requests"
2025-09-11 18:44:18 -07:00
version = "2.32.5"
2024-10-06 18:21:43 -07:00
description = "Python HTTP for Humans."
optional = false
2025-09-11 18:44:18 -07:00
python-versions = ">=3.9"
2024-10-06 18:21:43 -07:00
files = [
2025-09-11 18:44:18 -07:00
{ file = "requests-2.32.5-py3-none-any.whl" , hash = "sha256:2462f94637a34fd532264295e186976db0f5d453d1cdd31473c85a6a161affb6" } ,
{ file = "requests-2.32.5.tar.gz" , hash = "sha256:dbba0bac56e100853db0ea71b82b4dfd5fe2bf6d3754a8893c3af500cec7d7cf" } ,
2024-10-06 18:21:43 -07:00
]
[ package . dependencies ]
certifi = ">=2017.4.17"
2025-06-13 17:02:20 -07:00
charset_normalizer = ">=2,<4"
2024-10-06 18:21:43 -07:00
idna = ">=2.5,<4"
urllib3 = ">=1.21.1,<3"
[ package . extras ]
socks = [ "PySocks (>=1.5.6,!=1.5.7)" ]
use-chardet-on-py3 = [ "chardet (>=3.0.2,<6)" ]
[ [ package ] ]
name = "safetensors"
2025-08-11 13:23:40 -07:00
version = "0.6.2"
2024-10-06 18:21:43 -07:00
description = ""
optional = false
2025-08-11 13:23:40 -07:00
python-versions = ">=3.9"
2024-10-06 18:21:43 -07:00
files = [
2025-08-11 13:23:40 -07:00
{ file = "safetensors-0.6.2-cp38-abi3-macosx_10_12_x86_64.whl" , hash = "sha256:9c85ede8ec58f120bad982ec47746981e210492a6db876882aa021446af8ffba" } ,
{ file = "safetensors-0.6.2-cp38-abi3-macosx_11_0_arm64.whl" , hash = "sha256:d6675cf4b39c98dbd7d940598028f3742e0375a6b4d4277e76beb0c35f4b843b" } ,
{ file = "safetensors-0.6.2-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:1d2d2b3ce1e2509c68932ca03ab8f20570920cd9754b05063d4368ee52833ecd" } ,
{ file = "safetensors-0.6.2-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl" , hash = "sha256:93de35a18f46b0f5a6a1f9e26d91b442094f2df02e9fd7acf224cfec4238821a" } ,
{ file = "safetensors-0.6.2-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" , hash = "sha256:89a89b505f335640f9120fac65ddeb83e40f1fd081cb8ed88b505bdccec8d0a1" } ,
{ file = "safetensors-0.6.2-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:fc4d0d0b937e04bdf2ae6f70cd3ad51328635fe0e6214aa1fc811f3b576b3bda" } ,
{ file = "safetensors-0.6.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:8045db2c872db8f4cbe3faa0495932d89c38c899c603f21e9b6486951a5ecb8f" } ,
{ file = "safetensors-0.6.2-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.whl" , hash = "sha256:81e67e8bab9878bb568cffbc5f5e655adb38d2418351dc0859ccac158f753e19" } ,
{ file = "safetensors-0.6.2-cp38-abi3-musllinux_1_2_aarch64.whl" , hash = "sha256:b0e4d029ab0a0e0e4fdf142b194514695b1d7d3735503ba700cf36d0fc7136ce" } ,
{ file = "safetensors-0.6.2-cp38-abi3-musllinux_1_2_armv7l.whl" , hash = "sha256:fa48268185c52bfe8771e46325a1e21d317207bcabcb72e65c6e28e9ffeb29c7" } ,
{ file = "safetensors-0.6.2-cp38-abi3-musllinux_1_2_i686.whl" , hash = "sha256:d83c20c12c2d2f465997c51b7ecb00e407e5f94d7dec3ea0cc11d86f60d3fde5" } ,
{ file = "safetensors-0.6.2-cp38-abi3-musllinux_1_2_x86_64.whl" , hash = "sha256:d944cea65fad0ead848b6ec2c37cc0b197194bec228f8020054742190e9312ac" } ,
{ file = "safetensors-0.6.2-cp38-abi3-win32.whl" , hash = "sha256:cab75ca7c064d3911411461151cb69380c9225798a20e712b102edda2542ddb1" } ,
{ file = "safetensors-0.6.2-cp38-abi3-win_amd64.whl" , hash = "sha256:c7b214870df923cbc1593c3faee16bec59ea462758699bd3fee399d00aac072c" } ,
{ file = "safetensors-0.6.2.tar.gz" , hash = "sha256:43ff2aa0e6fa2dc3ea5524ac7ad93a9839256b8703761e76e2d0b2a3fa4f15d9" } ,
2024-10-06 18:21:43 -07:00
]
[ package . extras ]
all = [ "safetensors[jax]" , "safetensors[numpy]" , "safetensors[paddlepaddle]" , "safetensors[pinned-tf]" , "safetensors[quality]" , "safetensors[testing]" , "safetensors[torch]" ]
dev = [ "safetensors[all]" ]
jax = [ "flax (>=0.6.3)" , "jax (>=0.3.25)" , "jaxlib (>=0.3.25)" , "safetensors[numpy]" ]
mlx = [ "mlx (>=0.0.9)" ]
numpy = [ "numpy (>=1.21.6)" ]
paddlepaddle = [ "paddlepaddle (>=2.4.1)" , "safetensors[numpy]" ]
2025-01-10 16:45:36 -08:00
pinned-tf = [ "safetensors[numpy]" , "tensorflow (==2.18.0)" ]
2025-08-11 13:23:40 -07:00
quality = [ "ruff" ]
2024-10-06 18:21:43 -07:00
tensorflow = [ "safetensors[numpy]" , "tensorflow (>=2.11.0)" ]
testing = [ "h5py (>=3.7.0)" , "huggingface-hub (>=0.12.1)" , "hypothesis (>=6.70.2)" , "pytest (>=7.2.0)" , "pytest-benchmark (>=4.0.0)" , "safetensors[numpy]" , "setuptools-rust (>=1.5.2)" ]
2025-08-11 13:23:40 -07:00
testingfree = [ "huggingface-hub (>=0.12.1)" , "hypothesis (>=6.70.2)" , "pytest (>=7.2.0)" , "pytest-benchmark (>=4.0.0)" , "safetensors[numpy]" , "setuptools-rust (>=1.5.2)" ]
2024-10-06 18:21:43 -07:00
torch = [ "safetensors[numpy]" , "torch (>=1.10)" ]
[ [ package ] ]
name = "setuptools"
2025-03-04 14:30:44 -08:00
version = "75.5.0"
2024-10-06 18:21:43 -07:00
description = "Easily download, build, install, upgrade, and uninstall Python packages"
optional = false
2024-11-12 23:56:33 -08:00
python-versions = ">=3.9"
2024-10-06 18:21:43 -07:00
files = [
2025-03-04 14:30:44 -08:00
{ file = "setuptools-75.5.0-py3-none-any.whl" , hash = "sha256:87cb777c3b96d638ca02031192d40390e0ad97737e27b6b4fa831bea86f2f829" } ,
{ file = "setuptools-75.5.0.tar.gz" , hash = "sha256:5c4ccb41111392671f02bb5f8436dfc5a9a7185e80500531b133f5775c4163ef" } ,
2024-10-06 18:21:43 -07:00
]
[ package . extras ]
2025-03-04 14:30:44 -08:00
check = [ "pytest-checkdocs (>=2.4)" , "pytest-ruff (>=0.2.1)" , "ruff (>=0.7.0)" ]
core = [ "importlib-metadata (>=6)" , "jaraco.collections" , "jaraco.functools (>=4)" , "jaraco.text (>=3.7)" , "more-itertools" , "more-itertools (>=8.8)" , "packaging" , "packaging (>=24.2)" , "platformdirs (>=4.2.2)" , "tomli (>=2.0.1)" , "wheel (>=0.43.0)" ]
2024-10-06 18:21:43 -07:00
cover = [ "pytest-cov" ]
doc = [ "furo" , "jaraco.packaging (>=9.3)" , "jaraco.tidelift (>=1.4)" , "pygments-github-lexers (==0.0.5)" , "pyproject-hooks (!=1.1)" , "rst.linker (>=1.9)" , "sphinx (>=3.5)" , "sphinx-favicon" , "sphinx-inline-tabs" , "sphinx-lint" , "sphinx-notfound-page (>=1,<2)" , "sphinx-reredirects" , "sphinxcontrib-towncrier" , "towncrier (<24.7)" ]
enabler = [ "pytest-enabler (>=2.2)" ]
2025-03-04 14:30:44 -08:00
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 (>=24.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)" ]
type = [ "importlib-metadata (>=7.0.2)" , "jaraco.develop (>=7.21)" , "mypy (>=1.12,<1.14)" , "pytest-mypy" ]
2024-10-06 18:21:43 -07:00
[ [ package ] ]
name = "six"
2024-12-06 14:37:33 -08:00
version = "1.17.0"
2024-10-06 18:21:43 -07:00
description = "Python 2 and 3 compatibility utilities"
optional = false
2024-12-06 14:37:33 -08:00
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7"
2024-10-06 18:21:43 -07:00
files = [
2024-12-06 14:37:33 -08:00
{ file = "six-1.17.0-py2.py3-none-any.whl" , hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274" } ,
{ file = "six-1.17.0.tar.gz" , hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81" } ,
2024-10-06 18:21:43 -07:00
]
[ [ package ] ]
name = "sniffio"
version = "1.3.1"
description = "Sniff out which async library your code is running under"
optional = false
python-versions = ">=3.7"
files = [
{ file = "sniffio-1.3.1-py3-none-any.whl" , hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2" } ,
{ file = "sniffio-1.3.1.tar.gz" , hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc" } ,
]
[ [ package ] ]
name = "starlette"
version = "0.38.6"
description = "The little ASGI library that shines."
optional = false
python-versions = ">=3.8"
files = [
{ file = "starlette-0.38.6-py3-none-any.whl" , hash = "sha256:4517a1409e2e73ee4951214ba012052b9e16f60e90d73cfb06192c19203bbb05" } ,
{ file = "starlette-0.38.6.tar.gz" , hash = "sha256:863a1588f5574e70a821dadefb41e4881ea451a47a3cd1b4df359d4ffefe5ead" } ,
]
[ package . dependencies ]
anyio = ">=3.4.0,<5"
[ package . extras ]
full = [ "httpx (>=0.22.0)" , "itsdangerous" , "jinja2" , "python-multipart (>=0.0.7)" , "pyyaml" ]
[ [ package ] ]
name = "sympy"
2025-08-11 13:23:40 -07:00
version = "1.13.1"
2024-10-06 18:21:43 -07:00
description = "Computer algebra system (CAS) in Python"
optional = false
2025-08-11 13:23:40 -07:00
python-versions = ">=3.8"
2024-10-06 18:21:43 -07:00
files = [
2025-08-11 13:23:40 -07:00
{ file = "sympy-1.13.1-py3-none-any.whl" , hash = "sha256:db36cdc64bf61b9b24578b6f7bab1ecdd2452cf008f34faa33776680c26d66f8" } ,
{ file = "sympy-1.13.1.tar.gz" , hash = "sha256:9cebf7e04ff162015ce31c9c6c9144daa34a93bd082f54fd8f12deca4f47515f" } ,
2024-10-06 18:21:43 -07:00
]
[ package . dependencies ]
mpmath = ">=1.1.0,<1.4"
[ package . extras ]
dev = [ "hypothesis (>=6.70.0)" , "pytest (>=7.1.0)" ]
[ [ package ] ]
name = "tokenizers"
2025-09-11 18:44:18 -07:00
version = "0.22.0"
2024-10-06 18:21:43 -07:00
description = ""
optional = false
2025-04-06 01:24:01 -07:00
python-versions = ">=3.9"
2024-10-06 18:21:43 -07:00
files = [
2025-09-11 18:44:18 -07:00
{ file = "tokenizers-0.22.0-cp39-abi3-macosx_10_12_x86_64.whl" , hash = "sha256:eaa9620122a3fb99b943f864af95ed14c8dfc0f47afa3b404ac8c16b3f2bb484" } ,
{ file = "tokenizers-0.22.0-cp39-abi3-macosx_11_0_arm64.whl" , hash = "sha256:71784b9ab5bf0ff3075bceeb198149d2c5e068549c0d18fe32d06ba0deb63f79" } ,
{ file = "tokenizers-0.22.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:ec5b71f668a8076802b0241a42387d48289f25435b86b769ae1837cad4172a17" } ,
{ file = "tokenizers-0.22.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl" , hash = "sha256:ea8562fa7498850d02a16178105b58803ea825b50dc9094d60549a7ed63654bb" } ,
{ file = "tokenizers-0.22.0-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:4136e1558a9ef2e2f1de1555dcd573e1cbc4a320c1a06c4107a3d46dc8ac6e4b" } ,
{ file = "tokenizers-0.22.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" , hash = "sha256:cdf5954de3962a5fd9781dc12048d24a1a6f1f5df038c6e95db328cd22964206" } ,
{ file = "tokenizers-0.22.0-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:8337ca75d0731fc4860e6204cc24bb36a67d9736142aa06ed320943b50b1e7ed" } ,
{ file = "tokenizers-0.22.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:a89264e26f63c449d8cded9061adea7b5de53ba2346fc7e87311f7e4117c1cc8" } ,
{ file = "tokenizers-0.22.0-cp39-abi3-musllinux_1_2_aarch64.whl" , hash = "sha256:790bad50a1b59d4c21592f9c3cf5e5cf9c3c7ce7e1a23a739f13e01fb1be377a" } ,
{ file = "tokenizers-0.22.0-cp39-abi3-musllinux_1_2_armv7l.whl" , hash = "sha256:76cf6757c73a10ef10bf06fa937c0ec7393d90432f543f49adc8cab3fb6f26cb" } ,
{ file = "tokenizers-0.22.0-cp39-abi3-musllinux_1_2_i686.whl" , hash = "sha256:1626cb186e143720c62c6c6b5371e62bbc10af60481388c0da89bc903f37ea0c" } ,
{ file = "tokenizers-0.22.0-cp39-abi3-musllinux_1_2_x86_64.whl" , hash = "sha256:da589a61cbfea18ae267723d6b029b84598dc8ca78db9951d8f5beff72d8507c" } ,
{ file = "tokenizers-0.22.0-cp39-abi3-win32.whl" , hash = "sha256:dbf9d6851bddae3e046fedfb166f47743c1c7bd11c640f0691dd35ef0bcad3be" } ,
{ file = "tokenizers-0.22.0-cp39-abi3-win_amd64.whl" , hash = "sha256:c78174859eeaee96021f248a56c801e36bfb6bd5b067f2e95aa82445ca324f00" } ,
{ file = "tokenizers-0.22.0.tar.gz" , hash = "sha256:2e33b98525be8453f355927f3cab312c36cd3e44f4d7e9e97da2fa94d0a49dcb" } ,
2024-10-06 18:21:43 -07:00
]
[ package . dependencies ]
huggingface-hub = ">=0.16.4,<1.0"
[ package . extras ]
dev = [ "tokenizers[testing]" ]
docs = [ "setuptools-rust" , "sphinx" , "sphinx-rtd-theme" ]
2025-09-11 18:44:18 -07:00
testing = [ "black (==22.3)" , "datasets" , "numpy" , "pytest" , "pytest-asyncio" , "requests" , "ruff" ]
2024-10-06 18:21:43 -07:00
2025-01-10 16:45:36 -08:00
[ [ package ] ]
name = "tomli"
version = "2.2.1"
description = "A lil' TOML parser"
optional = false
python-versions = ">=3.8"
files = [
{ file = "tomli-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl" , hash = "sha256:678e4fa69e4575eb77d103de3df8a895e1591b48e740211bd1067378c69e8249" } ,
{ file = "tomli-2.2.1-cp311-cp311-macosx_11_0_arm64.whl" , hash = "sha256:023aa114dd824ade0100497eb2318602af309e5a55595f76b626d6d9f3b7b0a6" } ,
{ file = "tomli-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:ece47d672db52ac607a3d9599a9d48dcb2f2f735c6c2d1f34130085bb12b112a" } ,
{ file = "tomli-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:6972ca9c9cc9f0acaa56a8ca1ff51e7af152a9f87fb64623e31d5c83700080ee" } ,
{ file = "tomli-2.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:c954d2250168d28797dd4e3ac5cf812a406cd5a92674ee4c8f123c889786aa8e" } ,
{ file = "tomli-2.2.1-cp311-cp311-musllinux_1_2_aarch64.whl" , hash = "sha256:8dd28b3e155b80f4d54beb40a441d366adcfe740969820caf156c019fb5c7ec4" } ,
{ file = "tomli-2.2.1-cp311-cp311-musllinux_1_2_i686.whl" , hash = "sha256:e59e304978767a54663af13c07b3d1af22ddee3bb2fb0618ca1593e4f593a106" } ,
{ file = "tomli-2.2.1-cp311-cp311-musllinux_1_2_x86_64.whl" , hash = "sha256:33580bccab0338d00994d7f16f4c4ec25b776af3ffaac1ed74e0b3fc95e885a8" } ,
{ file = "tomli-2.2.1-cp311-cp311-win32.whl" , hash = "sha256:465af0e0875402f1d226519c9904f37254b3045fc5084697cefb9bdde1ff99ff" } ,
{ file = "tomli-2.2.1-cp311-cp311-win_amd64.whl" , hash = "sha256:2d0f2fdd22b02c6d81637a3c95f8cd77f995846af7414c5c4b8d0545afa1bc4b" } ,
{ file = "tomli-2.2.1-cp312-cp312-macosx_10_13_x86_64.whl" , hash = "sha256:4a8f6e44de52d5e6c657c9fe83b562f5f4256d8ebbfe4ff922c495620a7f6cea" } ,
{ file = "tomli-2.2.1-cp312-cp312-macosx_11_0_arm64.whl" , hash = "sha256:8d57ca8095a641b8237d5b079147646153d22552f1c637fd3ba7f4b0b29167a8" } ,
{ file = "tomli-2.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:4e340144ad7ae1533cb897d406382b4b6fede8890a03738ff1683af800d54192" } ,
{ file = "tomli-2.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:db2b95f9de79181805df90bedc5a5ab4c165e6ec3fe99f970d0e302f384ad222" } ,
{ file = "tomli-2.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:40741994320b232529c802f8bc86da4e1aa9f413db394617b9a256ae0f9a7f77" } ,
{ file = "tomli-2.2.1-cp312-cp312-musllinux_1_2_aarch64.whl" , hash = "sha256:400e720fe168c0f8521520190686ef8ef033fb19fc493da09779e592861b78c6" } ,
{ file = "tomli-2.2.1-cp312-cp312-musllinux_1_2_i686.whl" , hash = "sha256:02abe224de6ae62c19f090f68da4e27b10af2b93213d36cf44e6e1c5abd19fdd" } ,
{ file = "tomli-2.2.1-cp312-cp312-musllinux_1_2_x86_64.whl" , hash = "sha256:b82ebccc8c8a36f2094e969560a1b836758481f3dc360ce9a3277c65f374285e" } ,
{ file = "tomli-2.2.1-cp312-cp312-win32.whl" , hash = "sha256:889f80ef92701b9dbb224e49ec87c645ce5df3fa2cc548664eb8a25e03127a98" } ,
{ file = "tomli-2.2.1-cp312-cp312-win_amd64.whl" , hash = "sha256:7fc04e92e1d624a4a63c76474610238576942d6b8950a2d7f908a340494e67e4" } ,
{ file = "tomli-2.2.1-cp313-cp313-macosx_10_13_x86_64.whl" , hash = "sha256:f4039b9cbc3048b2416cc57ab3bda989a6fcf9b36cf8937f01a6e731b64f80d7" } ,
{ file = "tomli-2.2.1-cp313-cp313-macosx_11_0_arm64.whl" , hash = "sha256:286f0ca2ffeeb5b9bd4fcc8d6c330534323ec51b2f52da063b11c502da16f30c" } ,
{ file = "tomli-2.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:a92ef1a44547e894e2a17d24e7557a5e85a9e1d0048b0b5e7541f76c5032cb13" } ,
{ file = "tomli-2.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:9316dc65bed1684c9a98ee68759ceaed29d229e985297003e494aa825ebb0281" } ,
{ file = "tomli-2.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:e85e99945e688e32d5a35c1ff38ed0b3f41f43fad8df0bdf79f72b2ba7bc5272" } ,
{ file = "tomli-2.2.1-cp313-cp313-musllinux_1_2_aarch64.whl" , hash = "sha256:ac065718db92ca818f8d6141b5f66369833d4a80a9d74435a268c52bdfa73140" } ,
{ file = "tomli-2.2.1-cp313-cp313-musllinux_1_2_i686.whl" , hash = "sha256:d920f33822747519673ee656a4b6ac33e382eca9d331c87770faa3eef562aeb2" } ,
{ file = "tomli-2.2.1-cp313-cp313-musllinux_1_2_x86_64.whl" , hash = "sha256:a198f10c4d1b1375d7687bc25294306e551bf1abfa4eace6650070a5c1ae2744" } ,
{ file = "tomli-2.2.1-cp313-cp313-win32.whl" , hash = "sha256:d3f5614314d758649ab2ab3a62d4f2004c825922f9e370b29416484086b264ec" } ,
{ file = "tomli-2.2.1-cp313-cp313-win_amd64.whl" , hash = "sha256:a38aa0308e754b0e3c67e344754dff64999ff9b513e691d0e786265c93583c69" } ,
{ file = "tomli-2.2.1-py3-none-any.whl" , hash = "sha256:cb55c73c5f4408779d0cf3eef9f762b9c9f147a77de7b258bef0a5628adc85cc" } ,
{ file = "tomli-2.2.1.tar.gz" , hash = "sha256:cd45e1dc79c835ce60f7404ec8119f2eb06d38b1deba146f07ced3bbc44505ff" } ,
]
2024-10-06 18:21:43 -07:00
[ [ package ] ]
name = "torch"
2025-08-11 13:23:40 -07:00
version = "2.6.0"
2024-10-06 18:21:43 -07:00
description = "Tensors and Dynamic neural networks in Python with strong GPU acceleration"
optional = false
2025-08-11 13:23:40 -07:00
python-versions = ">=3.9.0"
2024-10-06 18:21:43 -07:00
files = [
2025-08-11 13:23:40 -07:00
{ file = "torch-2.6.0-cp310-cp310-manylinux1_x86_64.whl" , hash = "sha256:6860df13d9911ac158f4c44031609700e1eba07916fff62e21e6ffa0a9e01961" } ,
{ file = "torch-2.6.0-cp310-cp310-manylinux_2_28_aarch64.whl" , hash = "sha256:c4f103a49830ce4c7561ef4434cc7926e5a5fe4e5eb100c19ab36ea1e2b634ab" } ,
{ file = "torch-2.6.0-cp310-cp310-win_amd64.whl" , hash = "sha256:56eeaf2ecac90da5d9e35f7f35eb286da82673ec3c582e310a8d1631a1c02341" } ,
{ file = "torch-2.6.0-cp310-none-macosx_11_0_arm64.whl" , hash = "sha256:09e06f9949e1a0518c5b09fe95295bc9661f219d9ecb6f9893e5123e10696628" } ,
{ file = "torch-2.6.0-cp311-cp311-manylinux1_x86_64.whl" , hash = "sha256:7979834102cd5b7a43cc64e87f2f3b14bd0e1458f06e9f88ffa386d07c7446e1" } ,
{ file = "torch-2.6.0-cp311-cp311-manylinux_2_28_aarch64.whl" , hash = "sha256:ccbd0320411fe1a3b3fec7b4d3185aa7d0c52adac94480ab024b5c8f74a0bf1d" } ,
{ file = "torch-2.6.0-cp311-cp311-win_amd64.whl" , hash = "sha256:46763dcb051180ce1ed23d1891d9b1598e07d051ce4c9d14307029809c4d64f7" } ,
{ file = "torch-2.6.0-cp311-none-macosx_11_0_arm64.whl" , hash = "sha256:94fc63b3b4bedd327af588696559f68c264440e2503cc9e6954019473d74ae21" } ,
{ file = "torch-2.6.0-cp312-cp312-manylinux1_x86_64.whl" , hash = "sha256:2bb8987f3bb1ef2675897034402373ddfc8f5ef0e156e2d8cfc47cacafdda4a9" } ,
{ file = "torch-2.6.0-cp312-cp312-manylinux_2_28_aarch64.whl" , hash = "sha256:b789069020c5588c70d5c2158ac0aa23fd24a028f34a8b4fcb8fcb4d7efcf5fb" } ,
{ file = "torch-2.6.0-cp312-cp312-win_amd64.whl" , hash = "sha256:7e1448426d0ba3620408218b50aa6ada88aeae34f7a239ba5431f6c8774b1239" } ,
{ file = "torch-2.6.0-cp312-none-macosx_11_0_arm64.whl" , hash = "sha256:9a610afe216a85a8b9bc9f8365ed561535c93e804c2a317ef7fabcc5deda0989" } ,
{ file = "torch-2.6.0-cp313-cp313-manylinux1_x86_64.whl" , hash = "sha256:4874a73507a300a5d089ceaff616a569e7bb7c613c56f37f63ec3ffac65259cf" } ,
{ file = "torch-2.6.0-cp313-cp313-manylinux_2_28_aarch64.whl" , hash = "sha256:a0d5e1b9874c1a6c25556840ab8920569a7a4137afa8a63a32cee0bc7d89bd4b" } ,
{ file = "torch-2.6.0-cp313-cp313-win_amd64.whl" , hash = "sha256:510c73251bee9ba02ae1cb6c9d4ee0907b3ce6020e62784e2d7598e0cfa4d6cc" } ,
{ file = "torch-2.6.0-cp313-none-macosx_11_0_arm64.whl" , hash = "sha256:ff96f4038f8af9f7ec4231710ed4549da1bdebad95923953a25045dcf6fd87e2" } ,
{ file = "torch-2.6.0-cp39-cp39-manylinux1_x86_64.whl" , hash = "sha256:9ea955317cfcd3852b1402b62af258ce735c2edeee42ca9419b6bc889e5ae053" } ,
{ file = "torch-2.6.0-cp39-cp39-manylinux_2_28_aarch64.whl" , hash = "sha256:bb2c6c3e65049f081940f5ab15c9136c7de40d3f01192541c920a07c7c585b7e" } ,
{ file = "torch-2.6.0-cp39-cp39-win_amd64.whl" , hash = "sha256:683410f97984103148e31b38a8631acf31c3034c020c0f4d26171e7626d8317a" } ,
{ file = "torch-2.6.0-cp39-none-macosx_11_0_arm64.whl" , hash = "sha256:265f70de5fd45b864d924b64be1797f86e76c8e48a02c2a3a6fc7ec247d2226c" } ,
2024-10-06 18:21:43 -07:00
]
[ package . dependencies ]
filelock = "*"
fsspec = "*"
jinja2 = "*"
networkx = "*"
2025-08-11 13:23:40 -07:00
nvidia-cublas-cu12 = { version = "12.4.5.8" , markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\"" }
nvidia-cuda-cupti-cu12 = { version = "12.4.127" , markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\"" }
nvidia-cuda-nvrtc-cu12 = { version = "12.4.127" , markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\"" }
nvidia-cuda-runtime-cu12 = { version = "12.4.127" , markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\"" }
2024-10-06 18:21:43 -07:00
nvidia-cudnn-cu12 = { version = "9.1.0.70" , markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\"" }
2025-08-11 13:23:40 -07:00
nvidia-cufft-cu12 = { version = "11.2.1.3" , markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\"" }
nvidia-curand-cu12 = { version = "10.3.5.147" , markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\"" }
nvidia-cusolver-cu12 = { version = "11.6.1.9" , markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\"" }
nvidia-cusparse-cu12 = { version = "12.3.1.170" , markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\"" }
nvidia-cusparselt-cu12 = { version = "0.6.2" , markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\"" }
nvidia-nccl-cu12 = { version = "2.21.5" , markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\"" }
nvidia-nvjitlink-cu12 = { version = "12.4.127" , markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\"" }
nvidia-nvtx-cu12 = { version = "12.4.127" , markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\"" }
setuptools = { version = "*" , markers = "python_version >= \"3.12\"" }
sympy = { version = "1.13.1" , markers = "python_version >= \"3.9\"" }
triton = { version = "3.2.0" , markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\"" }
typing-extensions = ">=4.10.0"
2024-10-06 18:21:43 -07:00
[ package . extras ]
opt-einsum = [ "opt-einsum (>=3.3)" ]
2025-08-11 13:23:40 -07:00
optree = [ "optree (>=0.13.0)" ]
2024-10-06 18:21:43 -07:00
[ [ package ] ]
name = "tqdm"
2024-12-06 14:37:33 -08:00
version = "4.67.1"
2024-10-06 18:21:43 -07:00
description = "Fast, Extensible Progress Meter"
optional = false
python-versions = ">=3.7"
files = [
2024-12-06 14:37:33 -08:00
{ file = "tqdm-4.67.1-py3-none-any.whl" , hash = "sha256:26445eca388f82e72884e0d580d5464cd801a3ea01e63e5601bdff9ba6a48de2" } ,
{ file = "tqdm-4.67.1.tar.gz" , hash = "sha256:f8aef9c52c08c13a65f30ea34f4e5aac3fd1a34959879d7e59e63027286627f2" } ,
2024-10-06 18:21:43 -07:00
]
[ package . dependencies ]
colorama = { version = "*" , markers = "platform_system == \"Windows\"" }
[ package . extras ]
2024-12-06 14:37:33 -08:00
dev = [ "nbval" , "pytest (>=6)" , "pytest-asyncio (>=0.24)" , "pytest-cov" , "pytest-timeout" ]
2024-11-07 22:11:00 -06:00
discord = [ "requests" ]
2024-10-06 18:21:43 -07:00
notebook = [ "ipywidgets (>=6)" ]
slack = [ "slack-sdk" ]
telegram = [ "requests" ]
[ [ package ] ]
name = "transformers"
2025-09-11 18:44:18 -07:00
version = "4.56.1"
2024-10-06 18:21:43 -07:00
description = "State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow"
optional = false
2024-12-20 13:25:01 -08:00
python-versions = ">=3.9.0"
2024-10-06 18:21:43 -07:00
files = [
2025-09-11 18:44:18 -07:00
{ file = "transformers-4.56.1-py3-none-any.whl" , hash = "sha256:1697af6addfb6ddbce9618b763f4b52d5a756f6da4899ffd1b4febf58b779248" } ,
{ file = "transformers-4.56.1.tar.gz" , hash = "sha256:0d88b1089a563996fc5f2c34502f10516cad3ea1aa89f179f522b54c8311fe74" } ,
2024-10-06 18:21:43 -07:00
]
[ package . dependencies ]
filelock = "*"
2025-07-25 19:08:24 -07:00
huggingface-hub = ">=0.34.0,<1.0"
2024-10-06 18:21:43 -07:00
numpy = ">=1.17"
packaging = ">=20.0"
pyyaml = ">=5.1"
regex = "!=2019.12.17"
requests = "*"
2025-04-06 01:24:01 -07:00
safetensors = ">=0.4.3"
2025-09-11 18:44:18 -07:00
tokenizers = ">=0.22.0,<=0.23.0"
2024-10-06 18:21:43 -07:00
tqdm = ">=4.27"
[ package . extras ]
2024-10-17 10:42:15 -07:00
accelerate = [ "accelerate (>=0.26.0)" ]
2025-09-11 18:44:18 -07:00
all = [ "Pillow (>=10.0.1,<=15.0)" , "Pillow (>=10.0.1,<=15.0)" , "accelerate (>=0.26.0)" , "accelerate (>=0.26.0)" , "av" , "codecarbon (>=2.8.1)" , "flax (>=0.4.1,<=0.7.0)" , "jax (>=0.4.1,<=0.4.13)" , "jaxlib (>=0.4.1,<=0.4.13)" , "jinja2 (>=3.1.0)" , "kenlm" , "keras-nlp (>=0.3.1,<0.14.0)" , "kernels (>=0.6.1,<=0.9)" , "librosa" , "mistral-common[opencv] (>=1.6.3)" , "num2words" , "onnxconverter-common" , "optax (>=0.0.8,<=0.1.4)" , "optuna" , "phonemizer" , "protobuf" , "pyctcdecode (>=0.4.0)" , "ray[tune] (>=2.7.0)" , "scipy (<1.13.0)" , "sentencepiece (>=0.1.91,!=0.1.92)" , "sigopt" , "tensorflow (>2.9,<2.16)" , "tensorflow-text (<2.16)" , "tf2onnx" , "timm (!=1.0.18,<=1.0.19)" , "tokenizers (>=0.22.0,<=0.23.0)" , "torch (>=2.2)" , "torchaudio" , "torchvision" ]
2024-10-06 18:21:43 -07:00
audio = [ "kenlm" , "librosa" , "phonemizer" , "pyctcdecode (>=0.4.0)" ]
2024-10-17 10:42:15 -07:00
benchmark = [ "optimum-benchmark (>=0.3.0)" ]
2025-09-11 18:44:18 -07:00
chat-template = [ "jinja2 (>=3.1.0)" ]
2025-02-14 20:02:59 -08:00
codecarbon = [ "codecarbon (>=2.8.1)" ]
2024-10-17 10:42:15 -07:00
deepspeed = [ "accelerate (>=0.26.0)" , "deepspeed (>=0.9.3)" ]
2025-08-13 14:50:10 -07:00
deepspeed-testing = [ "GitPython (<3.1.19)" , "accelerate (>=0.26.0)" , "beautifulsoup4" , "cookiecutter (==1.7.3)" , "datasets (>=2.15.0)" , "datasets (>=2.15.0)" , "deepspeed (>=0.9.3)" , "dill (<0.3.5)" , "evaluate (>=0.2.0)" , "faiss-cpu" , "libcst" , "mistral-common[opencv] (>=1.6.3)" , "nltk (<=3.8.1)" , "optuna" , "parameterized (>=0.9)" , "protobuf" , "psutil" , "pydantic (>=2)" , "pytest (>=7.2.0)" , "pytest-asyncio" , "pytest-order" , "pytest-rerunfailures" , "pytest-rich" , "pytest-timeout" , "pytest-xdist" , "rjieba" , "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)" , "ruff (==0.11.2)" , "sacrebleu (>=1.4.12,<2.0.0)" , "sacremoses" , "sentencepiece (>=0.1.91,!=0.1.92)" , "sentencepiece (>=0.1.91,!=0.1.92)" , "tensorboard" , "timeout-decorator" ]
2025-09-11 18:44:18 -07:00
dev = [ "GitPython (<3.1.19)" , "GitPython (<3.1.19)" , "Pillow (>=10.0.1,<=15.0)" , "Pillow (>=10.0.1,<=15.0)" , "accelerate (>=0.26.0)" , "accelerate (>=0.26.0)" , "av" , "beautifulsoup4" , "codecarbon (>=2.8.1)" , "cookiecutter (==1.7.3)" , "cookiecutter (==1.7.3)" , "datasets (>=2.15.0)" , "datasets (>=2.15.0)" , "datasets (>=2.15.0)" , "dill (<0.3.5)" , "evaluate (>=0.2.0)" , "faiss-cpu" , "flax (>=0.4.1,<=0.7.0)" , "fugashi (>=1.0)" , "ipadic (>=1.0.0,<2.0)" , "jax (>=0.4.1,<=0.4.13)" , "jaxlib (>=0.4.1,<=0.4.13)" , "jinja2 (>=3.1.0)" , "kenlm" , "keras-nlp (>=0.3.1,<0.14.0)" , "kernels (>=0.6.1,<=0.9)" , "libcst" , "libcst" , "librosa" , "mistral-common[opencv] (>=1.6.3)" , "mistral-common[opencv] (>=1.6.3)" , "nltk (<=3.8.1)" , "num2words" , "onnxconverter-common" , "optax (>=0.0.8,<=0.1.4)" , "optuna" , "pandas (<2.3.0)" , "parameterized (>=0.9)" , "phonemizer" , "protobuf" , "psutil" , "pyctcdecode (>=0.4.0)" , "pydantic (>=2)" , "pytest (>=7.2.0)" , "pytest-asyncio" , "pytest-order" , "pytest-rerunfailures" , "pytest-rich" , "pytest-timeout" , "pytest-xdist" , "ray[tune] (>=2.7.0)" , "rhoknp (>=1.1.0,<1.3.1)" , "rich" , "rjieba" , "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)" , "ruff (==0.11.2)" , "ruff (==0.11.2)" , "sacrebleu (>=1.4.12,<2.0.0)" , "sacremoses" , "scikit-learn" , "scipy (<1.13.0)" , "sentencepiece (>=0.1.91,!=0.1.92)" , "sentencepiece (>=0.1.91,!=0.1.92)" , "sigopt" , "sudachidict_core (>=20220729)" , "sudachipy (>=0.6.6)" , "tensorboard" , "tensorflow (>2.9,<2.16)" , "tensorflow-text (<2.16)" , "tf2onnx" , "timeout-decorator" , "timm (!=1.0.18,<=1.0.19)" , "tokenizers (>=0.22.0,<=0.23.0)" , "torch (>=2.2)" , "torchaudio" , "torchvision" , "unidic (>=1.0.2)" , "unidic_lite (>=1.0.7)" , "urllib3 (<2.0.0)" ]
dev-tensorflow = [ "GitPython (<3.1.19)" , "GitPython (<3.1.19)" , "Pillow (>=10.0.1,<=15.0)" , "beautifulsoup4" , "cookiecutter (==1.7.3)" , "cookiecutter (==1.7.3)" , "datasets (>=2.15.0)" , "datasets (>=2.15.0)" , "datasets (>=2.15.0)" , "dill (<0.3.5)" , "evaluate (>=0.2.0)" , "faiss-cpu" , "kenlm" , "keras-nlp (>=0.3.1,<0.14.0)" , "libcst" , "libcst" , "librosa" , "mistral-common[opencv] (>=1.6.3)" , "nltk (<=3.8.1)" , "onnxconverter-common" , "onnxconverter-common" , "onnxruntime (>=1.4.0)" , "onnxruntime-tools (>=1.4.2)" , "pandas (<2.3.0)" , "parameterized (>=0.9)" , "phonemizer" , "protobuf" , "psutil" , "pyctcdecode (>=0.4.0)" , "pydantic (>=2)" , "pytest (>=7.2.0)" , "pytest-asyncio" , "pytest-order" , "pytest-rerunfailures" , "pytest-rich" , "pytest-timeout" , "pytest-xdist" , "rich" , "rjieba" , "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)" , "ruff (==0.11.2)" , "ruff (==0.11.2)" , "sacrebleu (>=1.4.12,<2.0.0)" , "sacremoses" , "scikit-learn" , "sentencepiece (>=0.1.91,!=0.1.92)" , "sentencepiece (>=0.1.91,!=0.1.92)" , "tensorboard" , "tensorflow (>2.9,<2.16)" , "tensorflow-text (<2.16)" , "tf2onnx" , "tf2onnx" , "timeout-decorator" , "tokenizers (>=0.22.0,<=0.23.0)" , "urllib3 (<2.0.0)" ]
dev-torch = [ "GitPython (<3.1.19)" , "GitPython (<3.1.19)" , "Pillow (>=10.0.1,<=15.0)" , "Pillow (>=10.0.1,<=15.0)" , "accelerate (>=0.26.0)" , "beautifulsoup4" , "codecarbon (>=2.8.1)" , "cookiecutter (==1.7.3)" , "cookiecutter (==1.7.3)" , "datasets (>=2.15.0)" , "datasets (>=2.15.0)" , "datasets (>=2.15.0)" , "dill (<0.3.5)" , "evaluate (>=0.2.0)" , "faiss-cpu" , "fugashi (>=1.0)" , "ipadic (>=1.0.0,<2.0)" , "kenlm" , "kernels (>=0.6.1,<=0.9)" , "libcst" , "libcst" , "librosa" , "mistral-common[opencv] (>=1.6.3)" , "nltk (<=3.8.1)" , "num2words" , "onnxruntime (>=1.4.0)" , "onnxruntime-tools (>=1.4.2)" , "optuna" , "pandas (<2.3.0)" , "parameterized (>=0.9)" , "phonemizer" , "protobuf" , "psutil" , "pyctcdecode (>=0.4.0)" , "pydantic (>=2)" , "pytest (>=7.2.0)" , "pytest-asyncio" , "pytest-order" , "pytest-rerunfailures" , "pytest-rich" , "pytest-timeout" , "pytest-xdist" , "ray[tune] (>=2.7.0)" , "rhoknp (>=1.1.0,<1.3.1)" , "rich" , "rjieba" , "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)" , "ruff (==0.11.2)" , "ruff (==0.11.2)" , "sacrebleu (>=1.4.12,<2.0.0)" , "sacremoses" , "scikit-learn" , "sentencepiece (>=0.1.91,!=0.1.92)" , "sentencepiece (>=0.1.91,!=0.1.92)" , "sigopt" , "sudachidict_core (>=20220729)" , "sudachipy (>=0.6.6)" , "tensorboard" , "timeout-decorator" , "timm (!=1.0.18,<=1.0.19)" , "tokenizers (>=0.22.0,<=0.23.0)" , "torch (>=2.2)" , "torchaudio" , "torchvision" , "unidic (>=1.0.2)" , "unidic_lite (>=1.0.7)" , "urllib3 (<2.0.0)" ]
2024-10-06 18:21:43 -07:00
flax = [ "flax (>=0.4.1,<=0.7.0)" , "jax (>=0.4.1,<=0.4.13)" , "jaxlib (>=0.4.1,<=0.4.13)" , "optax (>=0.0.8,<=0.1.4)" , "scipy (<1.13.0)" ]
flax-speech = [ "kenlm" , "librosa" , "phonemizer" , "pyctcdecode (>=0.4.0)" ]
ftfy = [ "ftfy" ]
2025-08-13 14:50:10 -07:00
hf-xet = [ "hf_xet" ]
2025-08-11 13:23:40 -07:00
hub-kernels = [ "kernels (>=0.6.1,<=0.9)" ]
integrations = [ "kernels (>=0.6.1,<=0.9)" , "optuna" , "ray[tune] (>=2.7.0)" , "sigopt" ]
2025-08-13 14:50:10 -07:00
ja = [ "fugashi (>=1.0)" , "ipadic (>=1.0.0,<2.0)" , "rhoknp (>=1.1.0,<1.3.1)" , "sudachidict_core (>=20220729)" , "sudachipy (>=0.6.6)" , "unidic (>=1.0.2)" , "unidic_lite (>=1.0.7)" ]
2025-07-25 19:08:24 -07:00
mistral-common = [ "mistral-common[opencv] (>=1.6.3)" ]
2024-10-06 18:21:43 -07:00
modelcreation = [ "cookiecutter (==1.7.3)" ]
natten = [ "natten (>=0.14.6,<0.15.0)" ]
2025-04-06 01:24:01 -07:00
num2words = [ "num2words" ]
2024-10-06 18:21:43 -07:00
onnx = [ "onnxconverter-common" , "onnxruntime (>=1.4.0)" , "onnxruntime-tools (>=1.4.2)" , "tf2onnx" ]
onnxruntime = [ "onnxruntime (>=1.4.0)" , "onnxruntime-tools (>=1.4.2)" ]
2025-07-08 00:59:33 -07:00
open-telemetry = [ "opentelemetry-api" , "opentelemetry-exporter-otlp" , "opentelemetry-sdk" ]
2024-10-06 18:21:43 -07:00
optuna = [ "optuna" ]
2025-07-25 19:08:24 -07:00
quality = [ "GitPython (<3.1.19)" , "datasets (>=2.15.0)" , "libcst" , "pandas (<2.3.0)" , "rich" , "ruff (==0.11.2)" , "urllib3 (<2.0.0)" ]
2024-10-06 18:21:43 -07:00
ray = [ "ray[tune] (>=2.7.0)" ]
2025-07-25 19:08:24 -07:00
retrieval = [ "datasets (>=2.15.0)" , "faiss-cpu" ]
2025-04-06 01:24:01 -07:00
ruff = [ "ruff (==0.11.2)" ]
2024-10-06 18:21:43 -07:00
sagemaker = [ "sagemaker (>=2.31.0)" ]
sentencepiece = [ "protobuf" , "sentencepiece (>=0.1.91,!=0.1.92)" ]
2025-09-11 18:44:18 -07:00
serving = [ "accelerate (>=0.26.0)" , "fastapi" , "openai (>=1.98.0)" , "pydantic (>=2)" , "starlette" , "torch (>=2.2)" , "uvicorn" ]
2024-10-06 18:21:43 -07:00
sigopt = [ "sigopt" ]
sklearn = [ "scikit-learn" ]
speech = [ "kenlm" , "librosa" , "phonemizer" , "pyctcdecode (>=0.4.0)" , "torchaudio" ]
2025-08-13 14:50:10 -07:00
testing = [ "GitPython (<3.1.19)" , "beautifulsoup4" , "cookiecutter (==1.7.3)" , "datasets (>=2.15.0)" , "datasets (>=2.15.0)" , "dill (<0.3.5)" , "evaluate (>=0.2.0)" , "faiss-cpu" , "libcst" , "mistral-common[opencv] (>=1.6.3)" , "nltk (<=3.8.1)" , "parameterized (>=0.9)" , "psutil" , "pydantic (>=2)" , "pytest (>=7.2.0)" , "pytest-asyncio" , "pytest-order" , "pytest-rerunfailures" , "pytest-rich" , "pytest-timeout" , "pytest-xdist" , "rjieba" , "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)" , "ruff (==0.11.2)" , "sacrebleu (>=1.4.12,<2.0.0)" , "sacremoses" , "sentencepiece (>=0.1.91,!=0.1.92)" , "tensorboard" , "timeout-decorator" ]
2024-10-06 18:21:43 -07:00
tf = [ "keras-nlp (>=0.3.1,<0.14.0)" , "onnxconverter-common" , "tensorflow (>2.9,<2.16)" , "tensorflow-text (<2.16)" , "tf2onnx" ]
tf-cpu = [ "keras (>2.9,<2.16)" , "keras-nlp (>=0.3.1,<0.14.0)" , "onnxconverter-common" , "tensorflow-cpu (>2.9,<2.16)" , "tensorflow-probability (<0.24)" , "tensorflow-text (<2.16)" , "tf2onnx" ]
tf-speech = [ "kenlm" , "librosa" , "phonemizer" , "pyctcdecode (>=0.4.0)" ]
2024-10-17 10:42:15 -07:00
tiktoken = [ "blobfile" , "tiktoken" ]
2025-07-25 19:08:24 -07:00
timm = [ "timm (!=1.0.18,<=1.0.19)" ]
2025-09-11 18:44:18 -07:00
tokenizers = [ "tokenizers (>=0.22.0,<=0.23.0)" ]
torch = [ "accelerate (>=0.26.0)" , "torch (>=2.2)" ]
2024-10-06 18:21:43 -07:00
torch-speech = [ "kenlm" , "librosa" , "phonemizer" , "pyctcdecode (>=0.4.0)" , "torchaudio" ]
torch-vision = [ "Pillow (>=10.0.1,<=15.0)" , "torchvision" ]
2025-09-11 18:44:18 -07:00
torchhub = [ "filelock" , "huggingface-hub (>=0.34.0,<1.0)" , "importlib_metadata" , "numpy (>=1.17)" , "packaging (>=20.0)" , "protobuf" , "regex (!=2019.12.17)" , "requests" , "sentencepiece (>=0.1.91,!=0.1.92)" , "tokenizers (>=0.22.0,<=0.23.0)" , "torch (>=2.2)" , "tqdm (>=4.27)" ]
2025-03-04 14:30:44 -08:00
video = [ "av" ]
2024-10-06 18:21:43 -07:00
vision = [ "Pillow (>=10.0.1,<=15.0)" ]
[ [ package ] ]
name = "triton"
2025-08-11 13:23:40 -07:00
version = "3.2.0"
2024-10-06 18:21:43 -07:00
description = "A language and compiler for custom Deep Learning operations"
optional = false
python-versions = "*"
files = [
2025-08-11 13:23:40 -07:00
{ file = "triton-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:b3e54983cd51875855da7c68ec05c05cf8bb08df361b1d5b69e05e40b0c9bd62" } ,
{ file = "triton-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:8009a1fb093ee8546495e96731336a33fb8856a38e45bb4ab6affd6dbc3ba220" } ,
{ file = "triton-3.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:8d9b215efc1c26fa7eefb9a157915c92d52e000d2bf83e5f69704047e63f125c" } ,
{ file = "triton-3.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:e5dfa23ba84541d7c0a531dfce76d8bcd19159d50a4a8b14ad01e91734a5c1b0" } ,
{ file = "triton-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:30ceed0eff2c4a73b14eb63e052992f44bbdf175f3fad21e1ac8097a772de7ee" } ,
2024-10-06 18:21:43 -07:00
]
[ package . extras ]
build = [ "cmake (>=3.20)" , "lit" ]
tests = [ "autopep8" , "flake8" , "isort" , "llnl-hatchet" , "numpy" , "pytest" , "scipy (>=1.7.1)" ]
tutorials = [ "matplotlib" , "pandas" , "tabulate" ]
[ [ package ] ]
name = "typing-extensions"
2025-09-11 18:44:18 -07:00
version = "4.15.0"
2025-06-13 17:02:20 -07:00
description = "Backported and Experimental Type Hints for Python 3.9+"
2024-10-06 18:21:43 -07:00
optional = false
2025-06-13 17:02:20 -07:00
python-versions = ">=3.9"
2024-10-06 18:21:43 -07:00
files = [
2025-09-11 18:44:18 -07:00
{ file = "typing_extensions-4.15.0-py3-none-any.whl" , hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548" } ,
{ file = "typing_extensions-4.15.0.tar.gz" , hash = "sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466" } ,
2024-10-06 18:21:43 -07:00
]
2025-04-06 01:24:01 -07:00
[ [ package ] ]
name = "typing-inspection"
2025-05-23 09:52:23 -07:00
version = "0.4.1"
2025-04-06 01:24:01 -07:00
description = "Runtime typing introspection tools"
optional = false
python-versions = ">=3.9"
files = [
2025-05-23 09:52:23 -07:00
{ file = "typing_inspection-0.4.1-py3-none-any.whl" , hash = "sha256:389055682238f53b04f7badcb49b989835495a96700ced5dab2d8feae4b26f51" } ,
{ file = "typing_inspection-0.4.1.tar.gz" , hash = "sha256:6ae134cc0203c33377d43188d4064e9b357dba58cff3185f22924610e70a9d28" } ,
2025-04-06 01:24:01 -07:00
]
[ package . dependencies ]
typing-extensions = ">=4.12.0"
2024-10-06 18:21:43 -07:00
[ [ package ] ]
name = "tzdata"
2025-04-06 01:24:01 -07:00
version = "2025.2"
2024-10-06 18:21:43 -07:00
description = "Provider of IANA time zone data"
optional = false
python-versions = ">=2"
files = [
2025-04-06 01:24:01 -07:00
{ file = "tzdata-2025.2-py2.py3-none-any.whl" , hash = "sha256:1a403fada01ff9221ca8044d701868fa132215d84beb92242d9acd2147f667a8" } ,
{ file = "tzdata-2025.2.tar.gz" , hash = "sha256:b60a638fcc0daffadf82fe0f57e53d06bdec2f36c4df66280ae79bce6bd6f2b9" } ,
2024-10-06 18:21:43 -07:00
]
[ [ package ] ]
name = "tzlocal"
2025-04-06 01:24:01 -07:00
version = "5.3.1"
2024-10-06 18:21:43 -07:00
description = "tzinfo object for the local timezone"
optional = false
2025-02-14 20:02:59 -08:00
python-versions = ">=3.9"
2024-10-06 18:21:43 -07:00
files = [
2025-04-06 01:24:01 -07:00
{ file = "tzlocal-5.3.1-py3-none-any.whl" , hash = "sha256:eb1a66c3ef5847adf7a834f1be0800581b683b5608e74f86ecbcef8ab91bb85d" } ,
{ file = "tzlocal-5.3.1.tar.gz" , hash = "sha256:cceffc7edecefea1f595541dbd6e990cb1ea3d19bf01b2809f362a03dd7921fd" } ,
2024-10-06 18:21:43 -07:00
]
[ package . dependencies ]
tzdata = { version = "*" , markers = "platform_system == \"Windows\"" }
[ package . extras ]
devenv = [ "check-manifest" , "pytest (>=4.3)" , "pytest-cov" , "pytest-mock (>=3.3)" , "zest.releaser" ]
[ [ package ] ]
name = "urllib3"
2025-07-08 00:59:33 -07:00
version = "2.5.0"
2024-10-06 18:21:43 -07:00
description = "HTTP library with thread-safe connection pooling, file post, and more."
optional = false
2025-01-10 16:45:36 -08:00
python-versions = ">=3.9"
2024-10-06 18:21:43 -07:00
files = [
2025-07-08 00:59:33 -07:00
{ file = "urllib3-2.5.0-py3-none-any.whl" , hash = "sha256:e6b01673c0fa6a13e374b50871808eb3bf7046c4b125b216f6bf1cc604cff0dc" } ,
{ file = "urllib3-2.5.0.tar.gz" , hash = "sha256:3fc47733c7e419d4bc3f6b3dc2b4f890bb743906a30d56ba4a5bfa4bbff92760" } ,
2024-10-06 18:21:43 -07:00
]
[ package . extras ]
brotli = [ "brotli (>=1.0.9)" , "brotlicffi (>=0.8.0)" ]
h2 = [ "h2 (>=4,<5)" ]
socks = [ "pysocks (>=1.5.6,!=1.5.7,<2.0)" ]
zstd = [ "zstandard (>=0.18.0)" ]
[ [ package ] ]
name = "uvicorn"
version = "0.31.0"
description = "The lightning-fast ASGI server."
optional = false
python-versions = ">=3.8"
files = [
{ file = "uvicorn-0.31.0-py3-none-any.whl" , hash = "sha256:cac7be4dd4d891c363cd942160a7b02e69150dcbc7a36be04d5f4af4b17c8ced" } ,
{ file = "uvicorn-0.31.0.tar.gz" , hash = "sha256:13bc21373d103859f68fe739608e2eb054a816dea79189bc3ca08ea89a275906" } ,
]
[ package . dependencies ]
click = ">=7.0"
h11 = ">=0.8"
2025-01-10 16:45:36 -08:00
typing-extensions = { version = ">=4.0" , markers = "python_version < \"3.11\"" }
2024-10-06 18:21:43 -07:00
[ package . extras ]
standard = [ "colorama (>=0.4)" , "httptools (>=0.5.0)" , "python-dotenv (>=0.13)" , "pyyaml (>=5.1)" , "uvloop (>=0.14.0,!=0.15.0,!=0.15.1)" , "watchfiles (>=0.13)" , "websockets (>=10.4)" ]
2024-10-30 17:54:51 -07:00
[ [ package ] ]
name = "werkzeug"
2024-11-12 23:56:33 -08:00
version = "3.1.3"
2024-10-30 17:54:51 -07:00
description = "The comprehensive WSGI web application library."
optional = false
2024-11-07 22:11:00 -06:00
python-versions = ">=3.9"
2024-10-30 17:54:51 -07:00
files = [
2024-11-12 23:56:33 -08:00
{ file = "werkzeug-3.1.3-py3-none-any.whl" , hash = "sha256:54b78bf3716d19a65be4fceccc0d1d7b89e608834989dfae50ea87564639213e" } ,
{ file = "werkzeug-3.1.3.tar.gz" , hash = "sha256:60723ce945c19328679790e3282cc758aa4a6040e4bb330f53d30fa546d44746" } ,
2024-10-30 17:54:51 -07:00
]
[ package . dependencies ]
MarkupSafe = ">=2.1.1"
[ package . extras ]
watchdog = [ "watchdog (>=2.3)" ]
[ [ package ] ]
name = "wrapt"
2025-08-12 13:43:43 -07:00
version = "1.17.3"
2024-10-30 17:54:51 -07:00
description = "Module for decorators, wrappers and monkey patching."
optional = false
2024-12-06 14:37:33 -08:00
python-versions = ">=3.8"
2024-10-30 17:54:51 -07:00
files = [
2025-08-12 13:43:43 -07:00
{ file = "wrapt-1.17.3-cp310-cp310-macosx_10_9_universal2.whl" , hash = "sha256:88bbae4d40d5a46142e70d58bf664a89b6b4befaea7b2ecc14e03cedb8e06c04" } ,
{ file = "wrapt-1.17.3-cp310-cp310-macosx_10_9_x86_64.whl" , hash = "sha256:e6b13af258d6a9ad602d57d889f83b9d5543acd471eee12eb51f5b01f8eb1bc2" } ,
{ file = "wrapt-1.17.3-cp310-cp310-macosx_11_0_arm64.whl" , hash = "sha256:fd341868a4b6714a5962c1af0bd44f7c404ef78720c7de4892901e540417111c" } ,
{ file = "wrapt-1.17.3-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl" , hash = "sha256:f9b2601381be482f70e5d1051a5965c25fb3625455a2bf520b5a077b22afb775" } ,
{ file = "wrapt-1.17.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl" , hash = "sha256:343e44b2a8e60e06a7e0d29c1671a0d9951f59174f3709962b5143f60a2a98bd" } ,
{ file = "wrapt-1.17.3-cp310-cp310-musllinux_1_2_aarch64.whl" , hash = "sha256:33486899acd2d7d3066156b03465b949da3fd41a5da6e394ec49d271baefcf05" } ,
{ file = "wrapt-1.17.3-cp310-cp310-musllinux_1_2_x86_64.whl" , hash = "sha256:e6f40a8aa5a92f150bdb3e1c44b7e98fb7113955b2e5394122fa5532fec4b418" } ,
{ file = "wrapt-1.17.3-cp310-cp310-win32.whl" , hash = "sha256:a36692b8491d30a8c75f1dfee65bef119d6f39ea84ee04d9f9311f83c5ad9390" } ,
{ file = "wrapt-1.17.3-cp310-cp310-win_amd64.whl" , hash = "sha256:afd964fd43b10c12213574db492cb8f73b2f0826c8df07a68288f8f19af2ebe6" } ,
{ file = "wrapt-1.17.3-cp310-cp310-win_arm64.whl" , hash = "sha256:af338aa93554be859173c39c85243970dc6a289fa907402289eeae7543e1ae18" } ,
{ file = "wrapt-1.17.3-cp311-cp311-macosx_10_9_universal2.whl" , hash = "sha256:273a736c4645e63ac582c60a56b0acb529ef07f78e08dc6bfadf6a46b19c0da7" } ,
{ file = "wrapt-1.17.3-cp311-cp311-macosx_10_9_x86_64.whl" , hash = "sha256:5531d911795e3f935a9c23eb1c8c03c211661a5060aab167065896bbf62a5f85" } ,
{ file = "wrapt-1.17.3-cp311-cp311-macosx_11_0_arm64.whl" , hash = "sha256:0610b46293c59a3adbae3dee552b648b984176f8562ee0dba099a56cfbe4df1f" } ,
{ file = "wrapt-1.17.3-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl" , hash = "sha256:b32888aad8b6e68f83a8fdccbf3165f5469702a7544472bdf41f582970ed3311" } ,
{ file = "wrapt-1.17.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl" , hash = "sha256:8cccf4f81371f257440c88faed6b74f1053eef90807b77e31ca057b2db74edb1" } ,
{ file = "wrapt-1.17.3-cp311-cp311-musllinux_1_2_aarch64.whl" , hash = "sha256:d8a210b158a34164de8bb68b0e7780041a903d7b00c87e906fb69928bf7890d5" } ,
{ file = "wrapt-1.17.3-cp311-cp311-musllinux_1_2_x86_64.whl" , hash = "sha256:79573c24a46ce11aab457b472efd8d125e5a51da2d1d24387666cd85f54c05b2" } ,
{ file = "wrapt-1.17.3-cp311-cp311-win32.whl" , hash = "sha256:c31eebe420a9a5d2887b13000b043ff6ca27c452a9a22fa71f35f118e8d4bf89" } ,
{ file = "wrapt-1.17.3-cp311-cp311-win_amd64.whl" , hash = "sha256:0b1831115c97f0663cb77aa27d381237e73ad4f721391a9bfb2fe8bc25fa6e77" } ,
{ file = "wrapt-1.17.3-cp311-cp311-win_arm64.whl" , hash = "sha256:5a7b3c1ee8265eb4c8f1b7d29943f195c00673f5ab60c192eba2d4a7eae5f46a" } ,
{ file = "wrapt-1.17.3-cp312-cp312-macosx_10_13_universal2.whl" , hash = "sha256:ab232e7fdb44cdfbf55fc3afa31bcdb0d8980b9b95c38b6405df2acb672af0e0" } ,
{ file = "wrapt-1.17.3-cp312-cp312-macosx_10_13_x86_64.whl" , hash = "sha256:9baa544e6acc91130e926e8c802a17f3b16fbea0fd441b5a60f5cf2cc5c3deba" } ,
{ file = "wrapt-1.17.3-cp312-cp312-macosx_11_0_arm64.whl" , hash = "sha256:6b538e31eca1a7ea4605e44f81a48aa24c4632a277431a6ed3f328835901f4fd" } ,
{ file = "wrapt-1.17.3-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl" , hash = "sha256:042ec3bb8f319c147b1301f2393bc19dba6e176b7da446853406d041c36c7828" } ,
{ file = "wrapt-1.17.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl" , hash = "sha256:3af60380ba0b7b5aeb329bc4e402acd25bd877e98b3727b0135cb5c2efdaefe9" } ,
{ file = "wrapt-1.17.3-cp312-cp312-musllinux_1_2_aarch64.whl" , hash = "sha256:0b02e424deef65c9f7326d8c19220a2c9040c51dc165cddb732f16198c168396" } ,
{ file = "wrapt-1.17.3-cp312-cp312-musllinux_1_2_x86_64.whl" , hash = "sha256:74afa28374a3c3a11b3b5e5fca0ae03bef8450d6aa3ab3a1e2c30e3a75d023dc" } ,
{ file = "wrapt-1.17.3-cp312-cp312-win32.whl" , hash = "sha256:4da9f45279fff3543c371d5ababc57a0384f70be244de7759c85a7f989cb4ebe" } ,
{ file = "wrapt-1.17.3-cp312-cp312-win_amd64.whl" , hash = "sha256:e71d5c6ebac14875668a1e90baf2ea0ef5b7ac7918355850c0908ae82bcb297c" } ,
{ file = "wrapt-1.17.3-cp312-cp312-win_arm64.whl" , hash = "sha256:604d076c55e2fdd4c1c03d06dc1a31b95130010517b5019db15365ec4a405fc6" } ,
{ file = "wrapt-1.17.3-cp313-cp313-macosx_10_13_universal2.whl" , hash = "sha256:a47681378a0439215912ef542c45a783484d4dd82bac412b71e59cf9c0e1cea0" } ,
{ file = "wrapt-1.17.3-cp313-cp313-macosx_10_13_x86_64.whl" , hash = "sha256:54a30837587c6ee3cd1a4d1c2ec5d24e77984d44e2f34547e2323ddb4e22eb77" } ,
{ file = "wrapt-1.17.3-cp313-cp313-macosx_11_0_arm64.whl" , hash = "sha256:16ecf15d6af39246fe33e507105d67e4b81d8f8d2c6598ff7e3ca1b8a37213f7" } ,
{ file = "wrapt-1.17.3-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl" , hash = "sha256:6fd1ad24dc235e4ab88cda009e19bf347aabb975e44fd5c2fb22a3f6e4141277" } ,
{ file = "wrapt-1.17.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl" , hash = "sha256:0ed61b7c2d49cee3c027372df5809a59d60cf1b6c2f81ee980a091f3afed6a2d" } ,
{ file = "wrapt-1.17.3-cp313-cp313-musllinux_1_2_aarch64.whl" , hash = "sha256:423ed5420ad5f5529db9ce89eac09c8a2f97da18eb1c870237e84c5a5c2d60aa" } ,
{ file = "wrapt-1.17.3-cp313-cp313-musllinux_1_2_x86_64.whl" , hash = "sha256:e01375f275f010fcbf7f643b4279896d04e571889b8a5b3f848423d91bf07050" } ,
{ file = "wrapt-1.17.3-cp313-cp313-win32.whl" , hash = "sha256:53e5e39ff71b3fc484df8a522c933ea2b7cdd0d5d15ae82e5b23fde87d44cbd8" } ,
{ file = "wrapt-1.17.3-cp313-cp313-win_amd64.whl" , hash = "sha256:1f0b2f40cf341ee8cc1a97d51ff50dddb9fcc73241b9143ec74b30fc4f44f6cb" } ,
{ file = "wrapt-1.17.3-cp313-cp313-win_arm64.whl" , hash = "sha256:7425ac3c54430f5fc5e7b6f41d41e704db073309acfc09305816bc6a0b26bb16" } ,
{ file = "wrapt-1.17.3-cp314-cp314-macosx_10_13_universal2.whl" , hash = "sha256:cf30f6e3c077c8e6a9a7809c94551203c8843e74ba0c960f4a98cd80d4665d39" } ,
{ file = "wrapt-1.17.3-cp314-cp314-macosx_10_13_x86_64.whl" , hash = "sha256:e228514a06843cae89621384cfe3a80418f3c04aadf8a3b14e46a7be704e4235" } ,
{ file = "wrapt-1.17.3-cp314-cp314-macosx_11_0_arm64.whl" , hash = "sha256:5ea5eb3c0c071862997d6f3e02af1d055f381b1d25b286b9d6644b79db77657c" } ,
{ file = "wrapt-1.17.3-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl" , hash = "sha256:281262213373b6d5e4bb4353bc36d1ba4084e6d6b5d242863721ef2bf2c2930b" } ,
{ file = "wrapt-1.17.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl" , hash = "sha256:dc4a8d2b25efb6681ecacad42fca8859f88092d8732b170de6a5dddd80a1c8fa" } ,
{ file = "wrapt-1.17.3-cp314-cp314-musllinux_1_2_aarch64.whl" , hash = "sha256:373342dd05b1d07d752cecbec0c41817231f29f3a89aa8b8843f7b95992ed0c7" } ,
{ file = "wrapt-1.17.3-cp314-cp314-musllinux_1_2_x86_64.whl" , hash = "sha256:d40770d7c0fd5cbed9d84b2c3f2e156431a12c9a37dc6284060fb4bec0b7ffd4" } ,
{ file = "wrapt-1.17.3-cp314-cp314-win32.whl" , hash = "sha256:fbd3c8319de8e1dc79d346929cd71d523622da527cca14e0c1d257e31c2b8b10" } ,
{ file = "wrapt-1.17.3-cp314-cp314-win_amd64.whl" , hash = "sha256:e1a4120ae5705f673727d3253de3ed0e016f7cd78dc463db1b31e2463e1f3cf6" } ,
{ file = "wrapt-1.17.3-cp314-cp314-win_arm64.whl" , hash = "sha256:507553480670cab08a800b9463bdb881b2edeed77dc677b0a5915e6106e91a58" } ,
{ file = "wrapt-1.17.3-cp314-cp314t-macosx_10_13_universal2.whl" , hash = "sha256:ed7c635ae45cfbc1a7371f708727bf74690daedc49b4dba310590ca0bd28aa8a" } ,
{ file = "wrapt-1.17.3-cp314-cp314t-macosx_10_13_x86_64.whl" , hash = "sha256:249f88ed15503f6492a71f01442abddd73856a0032ae860de6d75ca62eed8067" } ,
{ file = "wrapt-1.17.3-cp314-cp314t-macosx_11_0_arm64.whl" , hash = "sha256:5a03a38adec8066d5a37bea22f2ba6bbf39fcdefbe2d91419ab864c3fb515454" } ,
{ file = "wrapt-1.17.3-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl" , hash = "sha256:5d4478d72eb61c36e5b446e375bbc49ed002430d17cdec3cecb36993398e1a9e" } ,
{ file = "wrapt-1.17.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl" , hash = "sha256:223db574bb38637e8230eb14b185565023ab624474df94d2af18f1cdb625216f" } ,
{ file = "wrapt-1.17.3-cp314-cp314t-musllinux_1_2_aarch64.whl" , hash = "sha256:e405adefb53a435f01efa7ccdec012c016b5a1d3f35459990afc39b6be4d5056" } ,
{ file = "wrapt-1.17.3-cp314-cp314t-musllinux_1_2_x86_64.whl" , hash = "sha256:88547535b787a6c9ce4086917b6e1d291aa8ed914fdd3a838b3539dc95c12804" } ,
{ file = "wrapt-1.17.3-cp314-cp314t-win32.whl" , hash = "sha256:41b1d2bc74c2cac6f9074df52b2efbef2b30bdfe5f40cb78f8ca22963bc62977" } ,
{ file = "wrapt-1.17.3-cp314-cp314t-win_amd64.whl" , hash = "sha256:73d496de46cd2cdbdbcce4ae4bcdb4afb6a11234a1df9c085249d55166b95116" } ,
{ file = "wrapt-1.17.3-cp314-cp314t-win_arm64.whl" , hash = "sha256:f38e60678850c42461d4202739f9bf1e3a737c7ad283638251e79cc49effb6b6" } ,
{ file = "wrapt-1.17.3-cp38-cp38-macosx_10_9_universal2.whl" , hash = "sha256:70d86fa5197b8947a2fa70260b48e400bf2ccacdcab97bb7de47e3d1e6312225" } ,
{ file = "wrapt-1.17.3-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:df7d30371a2accfe4013e90445f6388c570f103d61019b6b7c57e0265250072a" } ,
{ file = "wrapt-1.17.3-cp38-cp38-macosx_11_0_arm64.whl" , hash = "sha256:caea3e9c79d5f0d2c6d9ab96111601797ea5da8e6d0723f77eabb0d4068d2b2f" } ,
{ file = "wrapt-1.17.3-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl" , hash = "sha256:758895b01d546812d1f42204bd443b8c433c44d090248bf22689df673ccafe00" } ,
{ file = "wrapt-1.17.3-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl" , hash = "sha256:02b551d101f31694fc785e58e0720ef7d9a10c4e62c1c9358ce6f63f23e30a56" } ,
{ file = "wrapt-1.17.3-cp38-cp38-musllinux_1_2_aarch64.whl" , hash = "sha256:656873859b3b50eeebe6db8b1455e99d90c26ab058db8e427046dbc35c3140a5" } ,
{ file = "wrapt-1.17.3-cp38-cp38-musllinux_1_2_x86_64.whl" , hash = "sha256:a9a2203361a6e6404f80b99234fe7fb37d1fc73487b5a78dc1aa5b97201e0f22" } ,
{ file = "wrapt-1.17.3-cp38-cp38-win32.whl" , hash = "sha256:55cbbc356c2842f39bcc553cf695932e8b30e30e797f961860afb308e6b1bb7c" } ,
{ file = "wrapt-1.17.3-cp38-cp38-win_amd64.whl" , hash = "sha256:ad85e269fe54d506b240d2d7b9f5f2057c2aa9a2ea5b32c66f8902f768117ed2" } ,
{ file = "wrapt-1.17.3-cp39-cp39-macosx_10_9_universal2.whl" , hash = "sha256:30ce38e66630599e1193798285706903110d4f057aab3168a34b7fdc85569afc" } ,
{ file = "wrapt-1.17.3-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:65d1d00fbfb3ea5f20add88bbc0f815150dbbde3b026e6c24759466c8b5a9ef9" } ,
{ file = "wrapt-1.17.3-cp39-cp39-macosx_11_0_arm64.whl" , hash = "sha256:a7c06742645f914f26c7f1fa47b8bc4c91d222f76ee20116c43d5ef0912bba2d" } ,
{ file = "wrapt-1.17.3-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl" , hash = "sha256:7e18f01b0c3e4a07fe6dfdb00e29049ba17eadbc5e7609a2a3a4af83ab7d710a" } ,
{ file = "wrapt-1.17.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl" , hash = "sha256:0f5f51a6466667a5a356e6381d362d259125b57f059103dd9fdc8c0cf1d14139" } ,
{ file = "wrapt-1.17.3-cp39-cp39-musllinux_1_2_aarch64.whl" , hash = "sha256:59923aa12d0157f6b82d686c3fd8e1166fa8cdfb3e17b42ce3b6147ff81528df" } ,
{ file = "wrapt-1.17.3-cp39-cp39-musllinux_1_2_x86_64.whl" , hash = "sha256:46acc57b331e0b3bcb3e1ca3b421d65637915cfcd65eb783cb2f78a511193f9b" } ,
{ file = "wrapt-1.17.3-cp39-cp39-win32.whl" , hash = "sha256:3e62d15d3cfa26e3d0788094de7b64efa75f3a53875cdbccdf78547aed547a81" } ,
{ file = "wrapt-1.17.3-cp39-cp39-win_amd64.whl" , hash = "sha256:1f23fa283f51c890eda8e34e4937079114c74b4c81d2b2f1f1d94948f5cc3d7f" } ,
{ file = "wrapt-1.17.3-cp39-cp39-win_arm64.whl" , hash = "sha256:24c2ed34dc222ed754247a2702b1e1e89fdbaa4016f324b4b8f1a802d4ffe87f" } ,
{ file = "wrapt-1.17.3-py3-none-any.whl" , hash = "sha256:7171ae35d2c33d326ac19dd8facb1e82e5fd04ef8c6c0e394d7af55a55051c22" } ,
{ file = "wrapt-1.17.3.tar.gz" , hash = "sha256:f66eb08feaa410fe4eebd17f2a2c8e2e46d3476e9f8c783daa8e09e0faa666d0" } ,
2024-10-30 17:54:51 -07:00
]
2024-11-07 22:11:00 -06:00
[ [ package ] ]
name = "zipp"
2025-06-13 17:02:20 -07:00
version = "3.23.0"
2024-11-07 22:11:00 -06:00
description = "Backport of pathlib-compatible object wrapper for zip files"
optional = false
2024-11-12 23:56:33 -08:00
python-versions = ">=3.9"
2024-11-07 22:11:00 -06:00
files = [
2025-06-13 17:02:20 -07:00
{ file = "zipp-3.23.0-py3-none-any.whl" , hash = "sha256:071652d6115ed432f5ce1d34c336c0adfd6a884660d1e9712a256d3d3bd4b14e" } ,
{ file = "zipp-3.23.0.tar.gz" , hash = "sha256:a07157588a12518c9d4034df3fbbee09c814741a33ff63c05fa29d26a2404166" } ,
2024-11-07 22:11:00 -06:00
]
[ package . extras ]
check = [ "pytest-checkdocs (>=2.4)" , "pytest-ruff (>=0.2.1)" ]
cover = [ "pytest-cov" ]
doc = [ "furo" , "jaraco.packaging (>=9.3)" , "jaraco.tidelift (>=1.4)" , "rst.linker (>=1.9)" , "sphinx (>=3.5)" , "sphinx-lint" ]
enabler = [ "pytest-enabler (>=2.2)" ]
2025-06-13 17:02:20 -07:00
test = [ "big-O" , "jaraco.functools" , "jaraco.itertools" , "jaraco.test" , "more_itertools" , "pytest (>=6,!=8.1.*)" , "pytest-ignore-flaky" ]
2024-11-07 22:11:00 -06:00
type = [ "pytest-mypy" ]
2024-10-06 18:21:43 -07:00
[ metadata ]
lock-version = "2.0"
2025-01-10 16:45:36 -08:00
python-versions = "^3.10"
2025-08-11 13:23:40 -07:00
content-hash = "ebac68ba32e594c1b83c8a5986e32b5d6634eb0b0e60937dec37e6b90ea6a63d"