From 6beb9b02687c2cc2b8cae79576d1bd826385598c Mon Sep 17 00:00:00 2001 From: Andrew Gallant Date: Fri, 9 Aug 2024 13:36:14 -0400 Subject: [PATCH] uv/tests: add new 'ecosystem' integration test This adds a new top-level directory with bare-bones directories for a sampling of ecosystem projects. The idea is for each directory to have enough that `uv lock` can run. The point of these tests is to 1) ensure resolution works in common cases and 2) track changes to resolutions (and the lock file) in real world projects. Unfortunately, it does look like in some cases, re-running `uv lock` results in changes to the lock file. For those cases, I've disabled the deterministic checking in exchange for getting the lock files tracked in tests. I haven't investigated yet whether either of #5733 or #5887 fix the deterministic problem. There is probably a better way to go about integrating ecosystem projects. In particular, it would be really nice if there was a good flow for upgrading ecosystem packages to their latest version. The main complexity is that some projects require edits to their `pyproject.toml` (or a complete migration from non-`pyproject.toml` to `pyproject.toml`). Although, the projects added here in this initial set were limited to those that didn't require any changes. --- _typos.toml | 1 + crates/uv/tests/ecosystem.rs | 164 + .../snapshots/ecosystem__black-lock-file.snap | 767 +++ .../ecosystem__black-uv-lock-output.snap | 11 + ...system__github-wikidata-bot-lock-file.snap | 466 ++ ...m__github-wikidata-bot-uv-lock-output.snap | 11 + ...system__home-assistant-core-lock-file.snap | 1397 ++++ ...m__home-assistant-core-uv-lock-output.snap | 11 + .../ecosystem__packse-lock-file.snap | 677 ++ .../ecosystem__packse-uv-lock-output.snap | 11 + .../ecosystem__transformers-lock-file.snap | 5690 ++++++++++++++++ ...cosystem__transformers-uv-lock-output.snap | 11 + .../ecosystem__warehouse-lock-file.snap | 4641 ++++++++++++++ .../ecosystem__warehouse-uv-lock-output.snap | 11 + ecosystem/.gitignore | 5 + ecosystem/airflow/pyproject.toml | 635 ++ ecosystem/black/PKG-INFO | 2115 ++++++ ecosystem/black/pyproject.toml | 268 + ecosystem/github-wikidata-bot/pyproject.toml | 37 + ecosystem/home-assistant-core/pyproject.toml | 845 +++ ecosystem/packse/pyproject.toml | 55 + ecosystem/pretix/_build/backend.py | 12 + ecosystem/pretix/pyproject.toml | 162 + ecosystem/transformers/old.lock | 5703 +++++++++++++++++ ecosystem/transformers/old2.lock | 5683 ++++++++++++++++ ecosystem/transformers/pyproject.toml | 350 + ecosystem/warehouse/pyproject.toml | 254 + ruff.toml | 1 + 28 files changed, 29994 insertions(+) create mode 100644 crates/uv/tests/ecosystem.rs create mode 100644 crates/uv/tests/snapshots/ecosystem__black-lock-file.snap create mode 100644 crates/uv/tests/snapshots/ecosystem__black-uv-lock-output.snap create mode 100644 crates/uv/tests/snapshots/ecosystem__github-wikidata-bot-lock-file.snap create mode 100644 crates/uv/tests/snapshots/ecosystem__github-wikidata-bot-uv-lock-output.snap create mode 100644 crates/uv/tests/snapshots/ecosystem__home-assistant-core-lock-file.snap create mode 100644 crates/uv/tests/snapshots/ecosystem__home-assistant-core-uv-lock-output.snap create mode 100644 crates/uv/tests/snapshots/ecosystem__packse-lock-file.snap create mode 100644 crates/uv/tests/snapshots/ecosystem__packse-uv-lock-output.snap create mode 100644 crates/uv/tests/snapshots/ecosystem__transformers-lock-file.snap create mode 100644 crates/uv/tests/snapshots/ecosystem__transformers-uv-lock-output.snap create mode 100644 crates/uv/tests/snapshots/ecosystem__warehouse-lock-file.snap create mode 100644 crates/uv/tests/snapshots/ecosystem__warehouse-uv-lock-output.snap create mode 100644 ecosystem/.gitignore create mode 100644 ecosystem/airflow/pyproject.toml create mode 100644 ecosystem/black/PKG-INFO create mode 100644 ecosystem/black/pyproject.toml create mode 100644 ecosystem/github-wikidata-bot/pyproject.toml create mode 100644 ecosystem/home-assistant-core/pyproject.toml create mode 100644 ecosystem/packse/pyproject.toml create mode 100644 ecosystem/pretix/_build/backend.py create mode 100644 ecosystem/pretix/pyproject.toml create mode 100644 ecosystem/transformers/old.lock create mode 100644 ecosystem/transformers/old2.lock create mode 100644 ecosystem/transformers/pyproject.toml create mode 100644 ecosystem/warehouse/pyproject.toml diff --git a/_typos.toml b/_typos.toml index 7bd98fc793c0..4db31432529d 100644 --- a/_typos.toml +++ b/_typos.toml @@ -1,6 +1,7 @@ [files] extend-exclude = [ "**/snapshots/", + "ecosystem/**", "scripts/**/*.in", ] ignore-hidden = false diff --git a/crates/uv/tests/ecosystem.rs b/crates/uv/tests/ecosystem.rs new file mode 100644 index 000000000000..b7f088f882aa --- /dev/null +++ b/crates/uv/tests/ecosystem.rs @@ -0,0 +1,164 @@ +#![cfg(all(feature = "python", feature = "pypi"))] + +use std::path::{Path, PathBuf}; + +use anyhow::Result; +use assert_fs::prelude::*; +use insta::assert_snapshot; + +use common::{deterministic_lock, TestContext}; + +mod common; + +// These tests just run `uv lock` on an assorted of ecosystem +// projects. +// +// The idea here is to provide a body of ecosystem projects that +// let us very easily observe any changes to the actual resolution +// produced in the lock file. + +/// We use a different exclude newer here because, at the time of +/// creating these benchmarks, the `pyproject.toml` files from the +/// projects wouldn't work with the exclude-newer value we use +/// elsewhere (which is 2024-03-25 at time of writing). So Instead of +/// bumping everything else, we just use our own here. +static EXCLUDE_NEWER: &str = "2024-08-08T00:00:00Z"; + +// Source: https://github.com/astral-sh/packse/blob/737bc7008fa7825669ee50e90d9d0c26df32a016/pyproject.toml +#[test] +fn packse() -> Result<()> { + lock_ecosystem_package("3.12", "packse") +} + +// Source: https://github.com/konstin/github-wikidata-bot/blob/8218d20985eb480cb8633026f9dabc9e5ec4b5e3/pyproject.toml +#[test] +fn github_wikidata_bot() -> Result<()> { + lock_ecosystem_package("3.12", "github-wikidata-bot") +} + +// Source: https://github.com/psf/black/blob/9ff047a9575f105f659043f28573e1941e9cdfb3/pyproject.toml +#[test] +fn black() -> Result<()> { + lock_ecosystem_package("3.12", "black") +} + +// Source: https://github.com/home-assistant/core/blob/7c5fcec062e1d2cfaa794a169fafa629a70bbc9e/pyproject.toml +#[test] +fn home_assistant_core() -> Result<()> { + lock_ecosystem_package("3.12", "home-assistant-core") +} + +// Source: https://github.com/konstin/transformers/blob/da3c00433d93e43bf1e7360b1057e8c160e7978e/pyproject.toml +#[test] +fn transformers() -> Result<()> { + lock_ecosystem_package_non_deterministic("3.12", "transformers") +} + +// Source: https://github.com/konstin/warehouse/blob/baae127d90417104c8dee3fdd3855e2ba17aa428/pyproject.toml +#[test] +fn warehouse() -> Result<()> { + lock_ecosystem_package_non_deterministic("3.11", "warehouse") +} + +// Currently ignored because the project doesn't build with `uv` yet. +// +// Source: https://github.com/apache/airflow/blob/c55438d9b2eb9b6680641eefdd0cbc67a28d1d29/pyproject.toml +#[ignore] +#[test] +fn airflow() -> Result<()> { + lock_ecosystem_package("3.12", "airflow") +} + +// Currently ignored because the project doesn't build with `uv` yet. +// +// Source: https://github.com/pretix/pretix/blob/a682eab18e9421dc0aff18a6ed8495aa3c75c39b/pyproject.toml +#[ignore] +#[test] +fn pretix() -> Result<()> { + lock_ecosystem_package("3.12", "pretix") +} + +/// Does a lock on the given ecosystem package for the given name. That +/// is, there should be a directory at `./ecosystem/{name}` from the +/// root of the `uv` repository. +fn lock_ecosystem_package(python_version: &str, name: &str) -> Result<()> { + let dir = PathBuf::from(format!("../../ecosystem/{name}")); + let context = TestContext::new(python_version); + setup_project_dir(&context, &dir)?; + + deterministic_lock! { context => + let mut cmd = context.lock(); + cmd.env("UV_EXCLUDE_NEWER", EXCLUDE_NEWER); + let (snapshot, _) = common::run_and_format( + &mut cmd, + context.filters(), + name, + Some(common::WindowsFilters::Platform), + ); + insta::assert_snapshot!(format!("{name}-uv-lock-output"), snapshot); + + let lock = fs_err::read_to_string(context.temp_dir.join("uv.lock")).unwrap(); + insta::with_settings!({ + filters => context.filters(), + }, { + assert_snapshot!(format!("{name}-lock-file"), lock); + }); + } + Ok(()) +} + +/// This is like `lock_ecosystem_package`, but does not assert that a +/// re-run of `uv lock` does not change the lock file. +/// +/// Ideally, this routine would never be used. But it was added as +/// a stop-gap to enable at least tracking the lock files of some +/// ecosystem packages even if re-locking is producing different +/// results. +fn lock_ecosystem_package_non_deterministic(python_version: &str, name: &str) -> Result<()> { + let dir = PathBuf::from(format!("../../ecosystem/{name}")); + let context = TestContext::new(python_version); + setup_project_dir(&context, &dir)?; + + let mut cmd = context.lock(); + cmd.env("UV_EXCLUDE_NEWER", EXCLUDE_NEWER); + let (snapshot, _) = common::run_and_format( + &mut cmd, + context.filters(), + name, + Some(common::WindowsFilters::Platform), + ); + insta::assert_snapshot!(format!("{name}-uv-lock-output"), snapshot); + + let lock = fs_err::read_to_string(context.temp_dir.join("uv.lock")).unwrap(); + insta::with_settings!({ + filters => context.filters(), + }, { + assert_snapshot!(format!("{name}-lock-file"), lock); + }); + Ok(()) +} + +/// Copies the project specific files from `project_dir` into the given +/// test context. +fn setup_project_dir(ctx: &TestContext, project_dir: &Path) -> Result<()> { + // Ideally I think we'd probably just do a recursive copy, + // but for now we just look for the specific files we want. + let required_files = ["pyproject.toml"]; + for file_name in required_files { + let file_contents = fs_err::read_to_string(project_dir.join(file_name))?; + let test_file = ctx.temp_dir.child(file_name); + test_file.write_str(&file_contents)?; + } + + let optional_files = ["PKG-INFO"]; + for file_name in optional_files { + let path = project_dir.join(file_name); + if !path.exists() { + continue; + } + let file_contents = fs_err::read_to_string(path)?; + let test_file = ctx.temp_dir.child(file_name); + test_file.write_str(&file_contents)?; + } + Ok(()) +} diff --git a/crates/uv/tests/snapshots/ecosystem__black-lock-file.snap b/crates/uv/tests/snapshots/ecosystem__black-lock-file.snap new file mode 100644 index 000000000000..8775068daffb --- /dev/null +++ b/crates/uv/tests/snapshots/ecosystem__black-lock-file.snap @@ -0,0 +1,767 @@ +--- +source: crates/uv/tests/ecosystem.rs +expression: lock +--- +version = 1 +requires-python = ">=3.8" +environment-markers = [ + "implementation_name == 'pypy' and sys_platform == 'win32'", + "implementation_name == 'pypy' and sys_platform == 'win32' and (implementation_name != 'pypy' or sys_platform != 'win32')", + "implementation_name != 'pypy' or sys_platform != 'win32'", +] + +[options] +exclude-newer = "2024-08-08 00:00:00 UTC" + +[[package]] +name = "aiohappyeyeballs" +version = "2.3.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b7/c3/112f2f992aeb321de483754c1c5acab08c8ac3388c9c7e6f3e4f45ec1c42/aiohappyeyeballs-2.3.5.tar.gz", hash = "sha256:6fa48b9f1317254f122a07a131a86b71ca6946ca989ce6326fff54a99a920105", size = 16791 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8b/b4/0983e94060405eb51f23be493e3f5c28003f7ebc5efcd0803c1cb23ea407/aiohappyeyeballs-2.3.5-py3-none-any.whl", hash = "sha256:4d6dea59215537dbc746e93e779caea8178c866856a721c9c660d7a5a7b8be03", size = 12139 }, +] + +[[package]] +name = "aiohttp" +version = "3.10.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "aiohappyeyeballs", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, + { name = "aiosignal", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, + { name = "async-timeout", marker = "python_version < '3.11'" }, + { name = "attrs", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, + { name = "frozenlist", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, + { name = "multidict", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, + { name = "yarl", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f7/e1/bfcafd54dee859b2e6e690c5f8a8a30343d590a8822bb0669afba4c2c9e6/aiohttp-3.10.1.tar.gz", hash = "sha256:8b0d058e4e425d3b45e8ec70d49b402f4d6b21041e674798b1f91ba027c73f28", size = 7517572 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d3/41/466751dafbc16d335ce771e2c73ca0ee2d6605a04ca30b52521edbd3da14/aiohttp-3.10.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:47b4c2412960e64d97258f40616efddaebcb34ff664c8a972119ed38fac2a62c", size = 583103 }, + { url = "https://files.pythonhosted.org/packages/a0/b8/354b2b93ce26b7cfadffe45fcaa9e50b38561ca57c2d1bd20fe548bb6472/aiohttp-3.10.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e7dbf637f87dd315fa1f36aaed8afa929ee2c607454fb7791e74c88a0d94da59", size = 394690 }, + { url = "https://files.pythonhosted.org/packages/24/56/b4b4cc5d93023b703fc997441a2c7b3e191118bf1e40278859c33a3be9b5/aiohttp-3.10.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c8fb76214b5b739ce59e2236a6489d9dc3483649cfd6f563dbf5d8e40dbdd57d", size = 385249 }, + { url = "https://files.pythonhosted.org/packages/ad/cc/5305199d55a463e9980b8dc65444b8905aa89cf9ef2cd67b283191ef81cf/aiohttp-3.10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c577cdcf8f92862363b3d598d971c6a84ed8f0bf824d4cc1ce70c2fb02acb4a", size = 1242620 }, + { url = "https://files.pythonhosted.org/packages/a3/52/2f4497d2bdbf3a27daff1d275ae6949db7c793f42ed1dcdbc1e002734699/aiohttp-3.10.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:777e23609899cb230ad2642b4bdf1008890f84968be78de29099a8a86f10b261", size = 1272945 }, + { url = "https://files.pythonhosted.org/packages/1e/a4/21a37f3ff7fae63e061ea5f78d331715ee11fa28314aec9bbfec854daabd/aiohttp-3.10.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b07286a1090483799599a2f72f76ac396993da31f6e08efedb59f40876c144fa", size = 1308105 }, + { url = "https://files.pythonhosted.org/packages/79/ac/0319ee00dcc4ab36856d85a2185721f29806163212fb9e1745c836830aea/aiohttp-3.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b9db600a86414a9a653e3c1c7f6a2f6a1894ab8f83d11505247bd1b90ad57157", size = 1232769 }, + { url = "https://files.pythonhosted.org/packages/49/36/754c0a3aa25fad98d62a21ff5a2ec13492f9cb7353203c80c15f30409402/aiohttp-3.10.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:01c3f1eb280008e51965a8d160a108c333136f4a39d46f516c64d2aa2e6a53f2", size = 1206309 }, + { url = "https://files.pythonhosted.org/packages/08/84/f8977e543717c267c9c1a25420609849d821861364ba87b590e0953aaea5/aiohttp-3.10.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f5dd109a925fee4c9ac3f6a094900461a2712df41745f5d04782ebcbe6479ccb", size = 1203872 }, + { url = "https://files.pythonhosted.org/packages/e6/ac/eb0ed9d127225d49d3c23877f90511a29684b64d32cf3e9270a28dac04c5/aiohttp-3.10.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:8c81ff4afffef9b1186639506d70ea90888218f5ddfff03870e74ec80bb59970", size = 1202487 }, + { url = "https://files.pythonhosted.org/packages/f6/fe/d01d171e12f5f05fd0e63253fbff3f3dfbf4e4346d355a16aee709a3633f/aiohttp-3.10.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:2a384dfbe8bfebd203b778a30a712886d147c61943675f4719b56725a8bbe803", size = 1254417 }, + { url = "https://files.pythonhosted.org/packages/c0/d0/d8f5a81d7925ee6d8bffea2000848305b61b8eba3bbd30bfbada023d239b/aiohttp-3.10.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:b9fb6508893dc31cfcbb8191ef35abd79751db1d6871b3e2caee83959b4d91eb", size = 1270849 }, + { url = "https://files.pythonhosted.org/packages/b1/1c/a3e962faae37cec5eb54578aec9067ee1c1b1d189de1ac73e07e73b24696/aiohttp-3.10.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:88596384c3bec644a96ae46287bb646d6a23fa6014afe3799156aef42669c6bd", size = 1222899 }, + { url = "https://files.pythonhosted.org/packages/c3/e4/ab2a3fff1e8e3054b8ca32a9183b08ddfc2eee4d240223ddac4608f313df/aiohttp-3.10.1-cp310-cp310-win32.whl", hash = "sha256:68164d43c580c2e8bf8e0eb4960142919d304052ccab92be10250a3a33b53268", size = 356598 }, + { url = "https://files.pythonhosted.org/packages/75/cf/b299e7f1b4943cf59cfc1e0e47b7368a23a4a38b16aa1dfa2c4ac1bcf2b2/aiohttp-3.10.1-cp310-cp310-win_amd64.whl", hash = "sha256:d6bbe2c90c10382ca96df33b56e2060404a4f0f88673e1e84b44c8952517e5f3", size = 375548 }, + { url = "https://files.pythonhosted.org/packages/1f/b4/682aefe768cf7799aa38841724d446d532c687afad96fec379f1f2651146/aiohttp-3.10.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f6979b4f20d3e557a867da9d9227de4c156fcdcb348a5848e3e6190fd7feb972", size = 582530 }, + { url = "https://files.pythonhosted.org/packages/cc/dd/11045c0b347e5acd796648adbf02fb1f7d83d07ec5437bb288d3b349e846/aiohttp-3.10.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:03c0c380c83f8a8d4416224aafb88d378376d6f4cadebb56b060688251055cd4", size = 394293 }, + { url = "https://files.pythonhosted.org/packages/b1/59/d14ec2a49dc58ec18f67c92bb111113440a3e0010cb3dd3d9f4f16563609/aiohttp-3.10.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1c2b104e81b3c3deba7e6f5bc1a9a0e9161c380530479970766a6655b8b77c7c", size = 385102 }, + { url = "https://files.pythonhosted.org/packages/9d/f9/8aa14244f9d4a02e7b1239326f3ffd38c212e515ab59d1b3e62d78bb98a1/aiohttp-3.10.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b023b68c61ab0cd48bd38416b421464a62c381e32b9dc7b4bdfa2905807452a4", size = 1317213 }, + { url = "https://files.pythonhosted.org/packages/58/f1/6fe725d90806f22a49e3a4653795b322d89f4596549dfb219d2f1aee28dd/aiohttp-3.10.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1a07c76a82390506ca0eabf57c0540cf5a60c993c442928fe4928472c4c6e5e6", size = 1353971 }, + { url = "https://files.pythonhosted.org/packages/ba/87/bf8e4351f552dd8c70bcf9a33b187de56e198c1f7ec89e46c4553cd7cf2a/aiohttp-3.10.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:41d8dab8c64ded1edf117d2a64f353efa096c52b853ef461aebd49abae979f16", size = 1391301 }, + { url = "https://files.pythonhosted.org/packages/5e/46/5c102cb40305b38c9d7bceee84ca87a6c12e8fae52a2e8375bc55555adb0/aiohttp-3.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:615348fab1a9ef7d0960a905e83ad39051ae9cb0d2837da739b5d3a7671e497a", size = 1302114 }, + { url = "https://files.pythonhosted.org/packages/cd/1d/5ac784a10db7dd054240d07538ad463e2d1fad24fbfb32b46f0ac67e6ce2/aiohttp-3.10.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:256ee6044214ee9d66d531bb374f065ee94e60667d6bbeaa25ca111fc3997158", size = 1261793 }, + { url = "https://files.pythonhosted.org/packages/2c/ec/7c15d8d2b7cff7bb705d3b9257184fccb9255425cfb9c66ff52cb8049790/aiohttp-3.10.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b7d5bb926805022508b7ddeaad957f1fce7a8d77532068d7bdb431056dc630cd", size = 1282815 }, + { url = "https://files.pythonhosted.org/packages/e3/37/863dd5d9f265b850a48aa8e45a883d51ed881f044fe21c206e87a07c7abf/aiohttp-3.10.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:028faf71b338f069077af6315ad54281612705d68889f5d914318cbc2aab0d50", size = 1277020 }, + { url = "https://files.pythonhosted.org/packages/19/4c/6fe69dbfc2fc6ae9ca31452c0c756bdf2c71e683c83937b50f41a02bf8df/aiohttp-3.10.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:5c12310d153b27aa630750be44e79313acc4e864c421eb7d2bc6fa3429c41bf8", size = 1330103 }, + { url = "https://files.pythonhosted.org/packages/dd/61/f6bdf4e5ad57de9929f4e4623d088b10345b68cf680e58667c1b97380f79/aiohttp-3.10.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:de1a91d5faded9054957ed0a9e01b9d632109341942fc123947ced358c5d9009", size = 1350433 }, + { url = "https://files.pythonhosted.org/packages/6d/f4/e10165c17a280e8edf68595cbbf22a6f89768e61621e050882d7c0ca533f/aiohttp-3.10.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9c186b270979fb1dee3ababe2d12fb243ed7da08b30abc83ebac3a928a4ddb15", size = 1309638 }, + { url = "https://files.pythonhosted.org/packages/ef/10/0c63bf328ebbd90453b415fb5d92b1a1a92d6b277e96c55dce600caddfe3/aiohttp-3.10.1-cp311-cp311-win32.whl", hash = "sha256:4a9ce70f5e00380377aac0e568abd075266ff992be2e271765f7b35d228a990c", size = 355786 }, + { url = "https://files.pythonhosted.org/packages/82/81/49afec048067b4436fafdf5d0ac8ce07fb8058ca19cb7a37a15e283397c8/aiohttp-3.10.1-cp311-cp311-win_amd64.whl", hash = "sha256:a77c79bac8d908d839d32c212aef2354d2246eb9deb3e2cb01ffa83fb7a6ea5d", size = 375614 }, + { url = "https://files.pythonhosted.org/packages/b9/35/bc0ad5fdf85ef6d8188cc0c75360c0abb02463c5576ebb99565fb381010d/aiohttp-3.10.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:2212296cdb63b092e295c3e4b4b442e7b7eb41e8a30d0f53c16d5962efed395d", size = 579105 }, + { url = "https://files.pythonhosted.org/packages/e4/2a/f34963d61ad73e01d2b1f60e7100c29d66bab6b3e9f3af5b5e1863c40314/aiohttp-3.10.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:4dcb127ca3eb0a61205818a606393cbb60d93b7afb9accd2fd1e9081cc533144", size = 390785 }, + { url = "https://files.pythonhosted.org/packages/93/17/dff64781014a8595c06d3ec88a3f76d063c61371f81dcc0eb40b1d9399c5/aiohttp-3.10.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:cb8b79a65332e1a426ccb6290ce0409e1dc16b4daac1cc5761e059127fa3d134", size = 385426 }, + { url = "https://files.pythonhosted.org/packages/e4/17/14c37f43cf46ae883185c479e010472636577b7d17fba36daef5ddcdec57/aiohttp-3.10.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68cc24f707ed9cb961f6ee04020ca01de2c89b2811f3cf3361dc7c96a14bfbcc", size = 1323084 }, + { url = "https://files.pythonhosted.org/packages/8a/da/6486c426dde538b24e3f02a6fd841142a4cd2fd9c9a80e8537db5c36e144/aiohttp-3.10.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9cb54f5725b4b37af12edf6c9e834df59258c82c15a244daa521a065fbb11717", size = 1362741 }, + { url = "https://files.pythonhosted.org/packages/f6/7e/87e0ada9b0a7dea935671c0a33ec1428267efee857f93564aa0e83eb942e/aiohttp-3.10.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:51d03e948e53b3639ce4d438f3d1d8202898ec6655cadcc09ec99229d4adc2a9", size = 1404852 }, + { url = "https://files.pythonhosted.org/packages/22/11/9960494844f900d34693a5d49a9491340e708ed530b5bb2b8bdd4a0136eb/aiohttp-3.10.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:786299d719eb5d868f161aeec56d589396b053925b7e0ce36e983d30d0a3e55c", size = 1318565 }, + { url = "https://files.pythonhosted.org/packages/02/40/d26e1a4af08f092dee09eff33a16562cb43a721251023e7e1cd9fdeb8f0f/aiohttp-3.10.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abda4009a30d51d3f06f36bc7411a62b3e647fa6cc935ef667e3e3d3a7dd09b1", size = 1270651 }, + { url = "https://files.pythonhosted.org/packages/b8/a8/24a04764c0e7f30c901ff40408941049ee8c496ef9f60ffa51798c776321/aiohttp-3.10.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:67f7639424c313125213954e93a6229d3a1d386855d70c292a12628f600c7150", size = 1285321 }, + { url = "https://files.pythonhosted.org/packages/32/4c/9e0162927eda41006891f0e3e0499dcbb19513f6643291c5742c69d4b5bd/aiohttp-3.10.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:8e5a26d7aac4c0d8414a347da162696eea0629fdce939ada6aedf951abb1d745", size = 1287408 }, + { url = "https://files.pythonhosted.org/packages/9f/62/71ac0a332408f66b6ba31300532987287b85c38a56ef9e3d7fe8247cc81a/aiohttp-3.10.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:120548d89f14b76a041088b582454d89389370632ee12bf39d919cc5c561d1ca", size = 1333511 }, + { url = "https://files.pythonhosted.org/packages/49/85/52e2ac28584b0c140737bd378143d4398a6e2838097764d5e6ffc862d85e/aiohttp-3.10.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:f5293726943bdcea24715b121d8c4ae12581441d22623b0e6ab12d07ce85f9c4", size = 1356616 }, + { url = "https://files.pythonhosted.org/packages/ea/78/3a01012380be75c8c42373ad54fea3cce73e590d2b863e490f709210ca4b/aiohttp-3.10.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1f8605e573ed6c44ec689d94544b2c4bb1390aaa723a8b5a2cc0a5a485987a68", size = 1321986 }, + { url = "https://files.pythonhosted.org/packages/49/4e/7a7c6988884425dfb9d4bbe24e1fab0e7b24bfd6f857c1521b4b5a42f229/aiohttp-3.10.1-cp312-cp312-win32.whl", hash = "sha256:e7168782621be4448d90169a60c8b37e9b0926b3b79b6097bc180c0a8a119e73", size = 353400 }, + { url = "https://files.pythonhosted.org/packages/c0/66/ae547a96abcbed450cabf2d438d9376b852c028838a50ee2c7678e2e5830/aiohttp-3.10.1-cp312-cp312-win_amd64.whl", hash = "sha256:8fbf8c0ded367c5c8eaf585f85ca8dd85ff4d5b73fb8fe1e6ac9e1b5e62e11f7", size = 374114 }, + { url = "https://files.pythonhosted.org/packages/a6/ae/d83e8065ceba138a3ab1f38c3b3af7137f10254ba196ef8248b8ff81136b/aiohttp-3.10.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:54b7f4a20d7cc6bfa4438abbde069d417bb7a119f870975f78a2b99890226d55", size = 587121 }, + { url = "https://files.pythonhosted.org/packages/ef/89/5aa5a914e398468a91ecee6dcb3781c6ec8ff9a7859f5c0c9dc74c025276/aiohttp-3.10.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2fa643ca990323db68911b92f3f7a0ca9ae300ae340d0235de87c523601e58d9", size = 396740 }, + { url = "https://files.pythonhosted.org/packages/73/08/0fe17e5d686ea3c2fa9c603481f8b23faa4ddb5b2f3e4721004c3b04ceb5/aiohttp-3.10.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:d8311d0d690487359fe2247ec5d2cac9946e70d50dced8c01ce9e72341c21151", size = 387079 }, + { url = "https://files.pythonhosted.org/packages/f5/fc/cbdd5d7463e765297211f3d4e33df686f303f4076e59d7ca4dbb3656770b/aiohttp-3.10.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:222821c60b8f6a64c5908cb43d69c0ee978a1188f6a8433d4757d39231b42cdb", size = 1267524 }, + { url = "https://files.pythonhosted.org/packages/16/be/1bd7e6f0eb9b24a55cc7d118125819e23111856a66a001640f306e713a05/aiohttp-3.10.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e7b55d9ede66af7feb6de87ff277e0ccf6d51c7db74cc39337fe3a0e31b5872d", size = 1319709 }, + { url = "https://files.pythonhosted.org/packages/aa/f5/785363fa084b7d64d8c088658284c8c9e5855f592ec462789ad8bfea0305/aiohttp-3.10.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5a95151a5567b3b00368e99e9c5334a919514f60888a6b6d2054fea5e66e527e", size = 1353348 }, + { url = "https://files.pythonhosted.org/packages/04/8e/be89930852d0a6edf298b841d72394cd12ae292e27b85c2fffb7da224ffb/aiohttp-3.10.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4e9e9171d2fe6bfd9d3838a6fe63b1e91b55e0bf726c16edf265536e4eafed19", size = 1257891 }, + { url = "https://files.pythonhosted.org/packages/bd/78/20023c524e99c81cfc0d26682351f6d6287347fabd0e9cab626a349381a2/aiohttp-3.10.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a57e73f9523e980f6101dc9a83adcd7ac0006ea8bf7937ca3870391c7bb4f8ff", size = 1224960 }, + { url = "https://files.pythonhosted.org/packages/96/4e/1494118cb6af440d74fd9dd119ebfad01548b5afc9c2da9cb22ba292ebf2/aiohttp-3.10.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:0df51a3d70a2bfbb9c921619f68d6d02591f24f10e9c76de6f3388c89ed01de6", size = 1232574 }, + { url = "https://files.pythonhosted.org/packages/10/ff/f9d9494aecc30f665fac0f5be23cc43f5524bb58b68ace18756eb6b02028/aiohttp-3.10.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:b0de63ff0307eac3961b4af74382d30220d4813f36b7aaaf57f063a1243b4214", size = 1228941 }, + { url = "https://files.pythonhosted.org/packages/99/25/5d01b4cdb62048f2cdd0a1c2b3f1897f4c67560c1788babd01ee4e35c0a4/aiohttp-3.10.1-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:8db9b749f589b5af8e4993623dbda6716b2b7a5fcb0fa2277bf3ce4b278c7059", size = 1294994 }, + { url = "https://files.pythonhosted.org/packages/71/9b/c01358dcc9619a7cd58b364f7c1c6dcb5e9c67caea69cb0fee91dadfc35f/aiohttp-3.10.1-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:6b14c19172eb53b63931d3e62a9749d6519f7c121149493e6eefca055fcdb352", size = 1311280 }, + { url = "https://files.pythonhosted.org/packages/3c/50/8b7ef97a931a4466df8b356f34250fa321bb18ee0117fcfef991ad96a3f9/aiohttp-3.10.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:5cd57ad998e3038aa87c38fe85c99ed728001bf5dde8eca121cadee06ee3f637", size = 1255018 }, + { url = "https://files.pythonhosted.org/packages/56/c0/9d0c586cbc5409ebcc738bcf0cd6e9f7c36f6958f3ba645fb22724d796d7/aiohttp-3.10.1-cp38-cp38-win32.whl", hash = "sha256:df31641e3f02b77eb3c5fb63c0508bee0fc067cf153da0e002ebbb0db0b6d91a", size = 358371 }, + { url = "https://files.pythonhosted.org/packages/cf/9c/c6f4b6a46d4ae908b2feb4aa466e1b17fa34baf0532d432fd46ac3a268a0/aiohttp-3.10.1-cp38-cp38-win_amd64.whl", hash = "sha256:93094eba50bc2ad4c40ff4997ead1fdcd41536116f2e7d6cfec9596a8ecb3615", size = 377896 }, + { url = "https://files.pythonhosted.org/packages/ec/76/d36deef134d03e506aa8dde08febde79e2f53a7adcc53a49776f0c08a8be/aiohttp-3.10.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:440954ddc6b77257e67170d57b1026aa9545275c33312357472504eef7b4cc0b", size = 584804 }, + { url = "https://files.pythonhosted.org/packages/a7/33/185ae02c2f86e164d13d08a53a38b051842ca2ab582eeb8fbfa46c3ae018/aiohttp-3.10.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f9f8beed277488a52ee2b459b23c4135e54d6a819eaba2e120e57311015b58e9", size = 395617 }, + { url = "https://files.pythonhosted.org/packages/e9/38/a37c4537be517947467630100ccbd5da9843e54e0710c822567ba046a0af/aiohttp-3.10.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d8a8221a63602008550022aa3a4152ca357e1dde7ab3dd1da7e1925050b56863", size = 386004 }, + { url = "https://files.pythonhosted.org/packages/f9/89/cce6b7f2703537fc89b85094ca63d775aff8321ff51e220cb500f2f0d5c5/aiohttp-3.10.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a702bd3663b5cbf3916e84bf332400d24cdb18399f0877ca6b313ce6c08bfb43", size = 1245936 }, + { url = "https://files.pythonhosted.org/packages/25/79/b822bfb9770f1da0c92343abb39d7742fcb94023bca19cce6ac2df5e7fdd/aiohttp-3.10.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1988b370536eb14f0ce7f3a4a5b422ab64c4e255b3f5d7752c5f583dc8c967fc", size = 1279737 }, + { url = "https://files.pythonhosted.org/packages/6c/1a/5a40b549a8cd8d7f3a86c8b9b4ea7d17d725c5f19ef1b85d01027df410ec/aiohttp-3.10.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7ccf1f0a304352c891d124ac1a9dea59b14b2abed1704aaa7689fc90ef9c5be1", size = 1315128 }, + { url = "https://files.pythonhosted.org/packages/fe/e6/72ac673299f897a2291f34f5d165cf1645fe72c4f87e8e78e4c30dddbca7/aiohttp-3.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc3ea6ef2a83edad84bbdb5d96e22f587b67c68922cd7b6f9d8f24865e655bcf", size = 1235647 }, + { url = "https://files.pythonhosted.org/packages/93/76/0517c26049dd5a5a12ca38fe4646d13ec030bdafe5fbc5eead6f3b825f3c/aiohttp-3.10.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:89b47c125ab07f0831803b88aeb12b04c564d5f07a1c1a225d4eb4d2f26e8b5e", size = 1208955 }, + { url = "https://files.pythonhosted.org/packages/11/c4/5aa68031c3526eb1bbeea4af2a3fe2af5dd4a9212bce0fd1ed8db249fa8d/aiohttp-3.10.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:21778552ef3d44aac3278cc6f6d13a6423504fa5f09f2df34bfe489ed9ded7f5", size = 1207790 }, + { url = "https://files.pythonhosted.org/packages/f8/81/31d598e608d7beeebc7112aa940ff8319e61f815422a0eb5392a5afcc4c8/aiohttp-3.10.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:bde0693073fd5e542e46ea100aa6c1a5d36282dbdbad85b1c3365d5421490a92", size = 1208143 }, + { url = "https://files.pythonhosted.org/packages/94/b5/9cd00fc1ba34fb8d9305a0c9f4d9575509513503a11c05c40921b3532a9c/aiohttp-3.10.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:bf66149bb348d8e713f3a8e0b4f5b952094c2948c408e1cfef03b49e86745d60", size = 1261154 }, + { url = "https://files.pythonhosted.org/packages/97/d2/88e551cdeb4fffaabb688b54a6622e773d32825f82744a22c4d545e5dcf1/aiohttp-3.10.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:587237571a85716d6f71f60d103416c9df7d5acb55d96d3d3ced65f39bff9c0c", size = 1276608 }, + { url = "https://files.pythonhosted.org/packages/ba/7a/805c76b7e22c8eead5c02d0440a7fcb3d350a97e1beae825ec8ca3270c79/aiohttp-3.10.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:bfe33cba6e127d0b5b417623c9aa621f0a69f304742acdca929a9fdab4593693", size = 1226559 }, + { url = "https://files.pythonhosted.org/packages/de/f2/1d3234b473f0964138d06f29eb66700262ee1921129afa8ef9bb02d1f588/aiohttp-3.10.1-cp39-cp39-win32.whl", hash = "sha256:9fbff00646cf8211b330690eb2fd64b23e1ce5b63a342436c1d1d6951d53d8dd", size = 357276 }, + { url = "https://files.pythonhosted.org/packages/c2/9c/68da5e6ee6d201cf246e86b5da17024d7e11456478047bae046cde86acd5/aiohttp-3.10.1-cp39-cp39-win_amd64.whl", hash = "sha256:5951c328f9ac42d7bce7a6ded535879bc9ae13032818d036749631fa27777905", size = 376212 }, +] + +[[package]] +name = "aiosignal" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "frozenlist", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ae/67/0952ed97a9793b4958e5736f6d2b346b414a2cd63e82d05940032f45b32f/aiosignal-1.3.1.tar.gz", hash = "sha256:54cd96e15e1649b75d6c87526a6ff0b6c1b0dd3459f43d9ca11d48c339b68cfc", size = 19422 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/76/ac/a7305707cb852b7e16ff80eaf5692309bde30e2b1100a1fcacdc8f731d97/aiosignal-1.3.1-py3-none-any.whl", hash = "sha256:f8376fb07dd1e86a584e4fcdec80b36b7f81aac666ebc724e2c090300dd83b17", size = 7617 }, +] + +[[package]] +name = "appnope" +version = "0.1.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/35/5d/752690df9ef5b76e169e68d6a129fa6d08a7100ca7f754c89495db3c6019/appnope-0.1.4.tar.gz", hash = "sha256:1de3860566df9caf38f01f86f65e0e13e379af54f9e4bee1e66b48f2efffd1ee", size = 4170 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/81/29/5ecc3a15d5a33e31b26c11426c45c501e439cb865d0bff96315d86443b78/appnope-0.1.4-py2.py3-none-any.whl", hash = "sha256:502575ee11cd7a28c0205f379b525beefebab9d161b7c964670864014ed7213c", size = 4321 }, +] + +[[package]] +name = "asttokens" +version = "2.4.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/45/1d/f03bcb60c4a3212e15f99a56085d93093a497718adf828d050b9d675da81/asttokens-2.4.1.tar.gz", hash = "sha256:b03869718ba9a6eb027e134bfdf69f38a236d681c83c160d510768af11254ba0", size = 62284 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/45/86/4736ac618d82a20d87d2f92ae19441ebc7ac9e7a581d7e58bbe79233b24a/asttokens-2.4.1-py2.py3-none-any.whl", hash = "sha256:051ed49c3dcae8913ea7cd08e46a606dba30b79993209636c4875bc1d637bc24", size = 27764 }, +] + +[[package]] +name = "async-timeout" +version = "4.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/87/d6/21b30a550dafea84b1b8eee21b5e23fa16d010ae006011221f33dcd8d7f8/async-timeout-4.0.3.tar.gz", hash = "sha256:4640d96be84d82d02ed59ea2b7105a0f7b33abe8703703cd0ab0bf87c427522f", size = 8345 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/fa/e01228c2938de91d47b307831c62ab9e4001e747789d0b05baf779a6488c/async_timeout-4.0.3-py3-none-any.whl", hash = "sha256:7405140ff1230c310e51dc27b3145b9092d659ce68ff733fb0cefe3ee42be028", size = 5721 }, +] + +[[package]] +name = "attrs" +version = "24.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/fc/0f/aafca9af9315aee06a89ffde799a10a582fe8de76c563ee80bbcdc08b3fb/attrs-24.2.0.tar.gz", hash = "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346", size = 792678 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6a/21/5b6702a7f963e95456c0de2d495f67bf5fd62840ac655dc451586d23d39a/attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2", size = 63001 }, +] + +[[package]] +name = "backcall" +version = "0.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a2/40/764a663805d84deee23043e1426a9175567db89c8b3287b5c2ad9f71aa93/backcall-0.2.0.tar.gz", hash = "sha256:5cbdbf27be5e7cfadb448baf0aa95508f91f2bbc6c6437cd9cd06e2a4c215e1e", size = 18041 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4c/1c/ff6546b6c12603d8dd1070aa3c3d273ad4c07f5771689a7b69a550e8c951/backcall-0.2.0-py2.py3-none-any.whl", hash = "sha256:fbbce6a29f263178a1f7915c1940bde0ec2b2a967566fe1c65c1dfb7422bd255", size = 11157 }, +] + +[[package]] +name = "black" +version = "24.8.0" +source = { editable = "." } +dependencies = [ + { name = "click", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, + { name = "mypy-extensions", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, + { name = "packaging", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, + { name = "pathspec", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, + { name = "platformdirs", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, + { name = "tomli", marker = "python_version < '3.11'" }, + { name = "typing-extensions", marker = "python_version < '3.11'" }, +] + +[package.optional-dependencies] +colorama = [ + { name = "colorama", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, +] +d = [ + { name = "aiohttp", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, +] +jupyter = [ + { name = "ipython", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, + { name = "tokenize-rt", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, +] +uvloop = [ + { name = "uvloop", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, +] + +[[package]] +name = "click" +version = "8.1.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "platform_system == 'Windows'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/96/d3/f04c7bfcf5c1862a2a5b845c6b2b360488cf47af55dfa79c98f6a6bf98b5/click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de", size = 336121 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/00/2e/d53fa4befbf2cfa713304affc7ca780ce4fc1fd8710527771b58311a3229/click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28", size = 97941 }, +] + +[[package]] +name = "colorama" +version = "0.4.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335 }, +] + +[[package]] +name = "decorator" +version = "5.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/66/0c/8d907af351aa16b42caae42f9d6aa37b900c67308052d10fdce809f8d952/decorator-5.1.1.tar.gz", hash = "sha256:637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253acbc330", size = 35016 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d5/50/83c593b07763e1161326b3b8c6686f0f4b0f24d5526546bee538c89837d6/decorator-5.1.1-py3-none-any.whl", hash = "sha256:b8c3f85900b9dc423225913c5aace94729fe1fa9763b38939a95226f02d37186", size = 9073 }, +] + +[[package]] +name = "executing" +version = "2.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/08/41/85d2d28466fca93737592b7f3cc456d1cfd6bcd401beceeba17e8e792b50/executing-2.0.1.tar.gz", hash = "sha256:35afe2ce3affba8ee97f2d69927fa823b08b472b7b994e36a52a964b93d16147", size = 836501 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/80/03/6ea8b1b2a5ab40a7a60dc464d3daa7aa546e0a74d74a9f8ff551ea7905db/executing-2.0.1-py2.py3-none-any.whl", hash = "sha256:eac49ca94516ccc753f9fb5ce82603156e590b27525a8bc32cce8ae302eb61bc", size = 24922 }, +] + +[[package]] +name = "frozenlist" +version = "1.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cf/3d/2102257e7acad73efc4a0c306ad3953f68c504c16982bbdfee3ad75d8085/frozenlist-1.4.1.tar.gz", hash = "sha256:c037a86e8513059a2613aaba4d817bb90b9d9b6b69aace3ce9c877e8c8ed402b", size = 37820 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7a/35/1328c7b0f780d34f8afc1d87ebdc2bb065a123b24766a0b475f0d67da637/frozenlist-1.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:f9aa1878d1083b276b0196f2dfbe00c9b7e752475ed3b682025ff20c1c1f51ac", size = 94315 }, + { url = "https://files.pythonhosted.org/packages/f4/d6/ca016b0adcf8327714ccef969740688808c86e0287bf3a639ff582f24e82/frozenlist-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:29acab3f66f0f24674b7dc4736477bcd4bc3ad4b896f5f45379a67bce8b96868", size = 53805 }, + { url = "https://files.pythonhosted.org/packages/ae/83/bcdaa437a9bd693ba658a0310f8cdccff26bd78e45fccf8e49897904a5cd/frozenlist-1.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:74fb4bee6880b529a0c6560885fce4dc95936920f9f20f53d99a213f7bf66776", size = 52163 }, + { url = "https://files.pythonhosted.org/packages/d4/e9/759043ab7d169b74fe05ebfbfa9ee5c881c303ebc838e308346204309cd0/frozenlist-1.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:590344787a90ae57d62511dd7c736ed56b428f04cd8c161fcc5e7232c130c69a", size = 238595 }, + { url = "https://files.pythonhosted.org/packages/f8/ce/b9de7dc61e753dc318cf0de862181b484178210c5361eae6eaf06792264d/frozenlist-1.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:068b63f23b17df8569b7fdca5517edef76171cf3897eb68beb01341131fbd2ad", size = 262428 }, + { url = "https://files.pythonhosted.org/packages/36/ce/dc6f29e0352fa34ebe45421960c8e7352ca63b31630a576e8ffb381e9c08/frozenlist-1.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c849d495bf5154cd8da18a9eb15db127d4dba2968d88831aff6f0331ea9bd4c", size = 258867 }, + { url = "https://files.pythonhosted.org/packages/51/47/159ac53faf8a11ae5ee8bb9db10327575557504e549cfd76f447b969aa91/frozenlist-1.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9750cc7fe1ae3b1611bb8cfc3f9ec11d532244235d75901fb6b8e42ce9229dfe", size = 229412 }, + { url = "https://files.pythonhosted.org/packages/ec/25/0c87df2e53c0c5d90f7517ca0ff7aca78d050a8ec4d32c4278e8c0e52e51/frozenlist-1.4.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9b2de4cf0cdd5bd2dee4c4f63a653c61d2408055ab77b151c1957f221cabf2a", size = 239539 }, + { url = "https://files.pythonhosted.org/packages/97/94/a1305fa4716726ae0abf3b1069c2d922fcfd442538cb850f1be543f58766/frozenlist-1.4.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0633c8d5337cb5c77acbccc6357ac49a1770b8c487e5b3505c57b949b4b82e98", size = 253379 }, + { url = "https://files.pythonhosted.org/packages/53/82/274e19f122e124aee6d113188615f63b0736b4242a875f482a81f91e07e2/frozenlist-1.4.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:27657df69e8801be6c3638054e202a135c7f299267f1a55ed3a598934f6c0d75", size = 245901 }, + { url = "https://files.pythonhosted.org/packages/b8/28/899931015b8cffbe155392fe9ca663f981a17e1adc69589ee0e1e7cdc9a2/frozenlist-1.4.1-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:f9a3ea26252bd92f570600098783d1371354d89d5f6b7dfd87359d669f2109b5", size = 263797 }, + { url = "https://files.pythonhosted.org/packages/6e/4f/b8a5a2f10c4a58c52a52a40cf6cf1ffcdbf3a3b64f276f41dab989bf3ab5/frozenlist-1.4.1-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:4f57dab5fe3407b6c0c1cc907ac98e8a189f9e418f3b6e54d65a718aaafe3950", size = 264415 }, + { url = "https://files.pythonhosted.org/packages/b0/2c/7be3bdc59dbae444864dbd9cde82790314390ec54636baf6b9ce212627ad/frozenlist-1.4.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:e02a0e11cf6597299b9f3bbd3f93d79217cb90cfd1411aec33848b13f5c656cc", size = 253964 }, + { url = "https://files.pythonhosted.org/packages/2e/ec/4fb5a88f6b9a352aed45ab824dd7ce4801b7bcd379adcb927c17a8f0a1a8/frozenlist-1.4.1-cp310-cp310-win32.whl", hash = "sha256:a828c57f00f729620a442881cc60e57cfcec6842ba38e1b19fd3e47ac0ff8dc1", size = 44559 }, + { url = "https://files.pythonhosted.org/packages/61/15/2b5d644d81282f00b61e54f7b00a96f9c40224107282efe4cd9d2bf1433a/frozenlist-1.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:f56e2333dda1fe0f909e7cc59f021eba0d2307bc6f012a1ccf2beca6ba362439", size = 50434 }, + { url = "https://files.pythonhosted.org/packages/01/bc/8d33f2d84b9368da83e69e42720cff01c5e199b5a868ba4486189a4d8fa9/frozenlist-1.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a0cb6f11204443f27a1628b0e460f37fb30f624be6051d490fa7d7e26d4af3d0", size = 97060 }, + { url = "https://files.pythonhosted.org/packages/af/b2/904500d6a162b98a70e510e743e7ea992241b4f9add2c8063bf666ca21df/frozenlist-1.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b46c8ae3a8f1f41a0d2ef350c0b6e65822d80772fe46b653ab6b6274f61d4a49", size = 55347 }, + { url = "https://files.pythonhosted.org/packages/5b/9c/f12b69997d3891ddc0d7895999a00b0c6a67f66f79498c0e30f27876435d/frozenlist-1.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:fde5bd59ab5357e3853313127f4d3565fc7dad314a74d7b5d43c22c6a5ed2ced", size = 53374 }, + { url = "https://files.pythonhosted.org/packages/ac/6e/e0322317b7c600ba21dec224498c0c5959b2bce3865277a7c0badae340a9/frozenlist-1.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:722e1124aec435320ae01ee3ac7bec11a5d47f25d0ed6328f2273d287bc3abb0", size = 273288 }, + { url = "https://files.pythonhosted.org/packages/a7/76/180ee1b021568dad5b35b7678616c24519af130ed3fa1e0f1ed4014e0f93/frozenlist-1.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2471c201b70d58a0f0c1f91261542a03d9a5e088ed3dc6c160d614c01649c106", size = 284737 }, + { url = "https://files.pythonhosted.org/packages/05/08/40159d706a6ed983c8aca51922a93fc69f3c27909e82c537dd4054032674/frozenlist-1.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c757a9dd70d72b076d6f68efdbb9bc943665ae954dad2801b874c8c69e185068", size = 280267 }, + { url = "https://files.pythonhosted.org/packages/e0/18/9f09f84934c2b2aa37d539a322267939770362d5495f37783440ca9c1b74/frozenlist-1.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f146e0911cb2f1da549fc58fc7bcd2b836a44b79ef871980d605ec392ff6b0d2", size = 258778 }, + { url = "https://files.pythonhosted.org/packages/b3/c9/0bc5ee7e1f5cc7358ab67da0b7dfe60fbd05c254cea5c6108e7d1ae28c63/frozenlist-1.4.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f9c515e7914626b2a2e1e311794b4c35720a0be87af52b79ff8e1429fc25f19", size = 272276 }, + { url = "https://files.pythonhosted.org/packages/12/5d/147556b73a53ad4df6da8bbb50715a66ac75c491fdedac3eca8b0b915345/frozenlist-1.4.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c302220494f5c1ebeb0912ea782bcd5e2f8308037b3c7553fad0e48ebad6ad82", size = 272424 }, + { url = "https://files.pythonhosted.org/packages/83/61/2087bbf24070b66090c0af922685f1d0596c24bb3f3b5223625bdeaf03ca/frozenlist-1.4.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:442acde1e068288a4ba7acfe05f5f343e19fac87bfc96d89eb886b0363e977ec", size = 260881 }, + { url = "https://files.pythonhosted.org/packages/a8/be/a235bc937dd803258a370fe21b5aa2dd3e7bfe0287a186a4bec30c6cccd6/frozenlist-1.4.1-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:1b280e6507ea8a4fa0c0a7150b4e526a8d113989e28eaaef946cc77ffd7efc0a", size = 282327 }, + { url = "https://files.pythonhosted.org/packages/5d/e7/b2469e71f082948066b9382c7b908c22552cc705b960363c390d2e23f587/frozenlist-1.4.1-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:fe1a06da377e3a1062ae5fe0926e12b84eceb8a50b350ddca72dc85015873f74", size = 281502 }, + { url = "https://files.pythonhosted.org/packages/db/1b/6a5b970e55dffc1a7d0bb54f57b184b2a2a2ad0b7bca16a97ca26d73c5b5/frozenlist-1.4.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:db9e724bebd621d9beca794f2a4ff1d26eed5965b004a97f1f1685a173b869c2", size = 272292 }, + { url = "https://files.pythonhosted.org/packages/1a/05/ebad68130e6b6eb9b287dacad08ea357c33849c74550c015b355b75cc714/frozenlist-1.4.1-cp311-cp311-win32.whl", hash = "sha256:e774d53b1a477a67838a904131c4b0eef6b3d8a651f8b138b04f748fccfefe17", size = 44446 }, + { url = "https://files.pythonhosted.org/packages/b3/21/c5aaffac47fd305d69df46cfbf118768cdf049a92ee6b0b5cb029d449dcf/frozenlist-1.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:fb3c2db03683b5767dedb5769b8a40ebb47d6f7f45b1b3e3b4b51ec8ad9d9825", size = 50459 }, + { url = "https://files.pythonhosted.org/packages/b4/db/4cf37556a735bcdb2582f2c3fa286aefde2322f92d3141e087b8aeb27177/frozenlist-1.4.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:1979bc0aeb89b33b588c51c54ab0161791149f2461ea7c7c946d95d5f93b56ae", size = 93937 }, + { url = "https://files.pythonhosted.org/packages/46/03/69eb64642ca8c05f30aa5931d6c55e50b43d0cd13256fdd01510a1f85221/frozenlist-1.4.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:cc7b01b3754ea68a62bd77ce6020afaffb44a590c2289089289363472d13aedb", size = 53656 }, + { url = "https://files.pythonhosted.org/packages/3f/ab/c543c13824a615955f57e082c8a5ee122d2d5368e80084f2834e6f4feced/frozenlist-1.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c9c92be9fd329ac801cc420e08452b70e7aeab94ea4233a4804f0915c14eba9b", size = 51868 }, + { url = "https://files.pythonhosted.org/packages/a9/b8/438cfd92be2a124da8259b13409224d9b19ef8f5a5b2507174fc7e7ea18f/frozenlist-1.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c3894db91f5a489fc8fa6a9991820f368f0b3cbdb9cd8849547ccfab3392d86", size = 280652 }, + { url = "https://files.pythonhosted.org/packages/54/72/716a955521b97a25d48315c6c3653f981041ce7a17ff79f701298195bca3/frozenlist-1.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ba60bb19387e13597fb059f32cd4d59445d7b18b69a745b8f8e5db0346f33480", size = 286739 }, + { url = "https://files.pythonhosted.org/packages/65/d8/934c08103637567084568e4d5b4219c1016c60b4d29353b1a5b3587827d6/frozenlist-1.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8aefbba5f69d42246543407ed2461db31006b0f76c4e32dfd6f42215a2c41d09", size = 289447 }, + { url = "https://files.pythonhosted.org/packages/70/bb/d3b98d83ec6ef88f9bd63d77104a305d68a146fd63a683569ea44c3085f6/frozenlist-1.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:780d3a35680ced9ce682fbcf4cb9c2bad3136eeff760ab33707b71db84664e3a", size = 265466 }, + { url = "https://files.pythonhosted.org/packages/0b/f2/b8158a0f06faefec33f4dff6345a575c18095a44e52d4f10c678c137d0e0/frozenlist-1.4.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9acbb16f06fe7f52f441bb6f413ebae6c37baa6ef9edd49cdd567216da8600cd", size = 281530 }, + { url = "https://files.pythonhosted.org/packages/ea/a2/20882c251e61be653764038ece62029bfb34bd5b842724fff32a5b7a2894/frozenlist-1.4.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:23b701e65c7b36e4bf15546a89279bd4d8675faabc287d06bbcfac7d3c33e1e6", size = 281295 }, + { url = "https://files.pythonhosted.org/packages/4c/f9/8894c05dc927af2a09663bdf31914d4fb5501653f240a5bbaf1e88cab1d3/frozenlist-1.4.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:3e0153a805a98f5ada7e09826255ba99fb4f7524bb81bf6b47fb702666484ae1", size = 268054 }, + { url = "https://files.pythonhosted.org/packages/37/ff/a613e58452b60166507d731812f3be253eb1229808e59980f0405d1eafbf/frozenlist-1.4.1-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:dd9b1baec094d91bf36ec729445f7769d0d0cf6b64d04d86e45baf89e2b9059b", size = 286904 }, + { url = "https://files.pythonhosted.org/packages/cc/6e/0091d785187f4c2020d5245796d04213f2261ad097e0c1cf35c44317d517/frozenlist-1.4.1-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:1a4471094e146b6790f61b98616ab8e44f72661879cc63fa1049d13ef711e71e", size = 290754 }, + { url = "https://files.pythonhosted.org/packages/a5/c2/e42ad54bae8bcffee22d1e12a8ee6c7717f7d5b5019261a8c861854f4776/frozenlist-1.4.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:5667ed53d68d91920defdf4035d1cdaa3c3121dc0b113255124bcfada1cfa1b8", size = 282602 }, + { url = "https://files.pythonhosted.org/packages/b6/61/56bad8cb94f0357c4bc134acc30822e90e203b5cb8ff82179947de90c17f/frozenlist-1.4.1-cp312-cp312-win32.whl", hash = "sha256:beee944ae828747fd7cb216a70f120767fc9f4f00bacae8543c14a6831673f89", size = 44063 }, + { url = "https://files.pythonhosted.org/packages/3e/dc/96647994a013bc72f3d453abab18340b7f5e222b7b7291e3697ca1fcfbd5/frozenlist-1.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:64536573d0a2cb6e625cf309984e2d873979709f2cf22839bf2d61790b448ad5", size = 50452 }, + { url = "https://files.pythonhosted.org/packages/32/c7/cc0db0d69ee0dbd85fb453650ce86436f15c39a8cde4d2b432fddc77a80e/frozenlist-1.4.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:20b51fa3f588ff2fe658663db52a41a4f7aa6c04f6201449c6c7c476bd255c0d", size = 97416 }, + { url = "https://files.pythonhosted.org/packages/07/eb/71b5531dfb71eb6272b6e2281139d7d46b6adaf43c59850bc8ff64ac1860/frozenlist-1.4.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:410478a0c562d1a5bcc2f7ea448359fcb050ed48b3c6f6f4f18c313a9bdb1826", size = 55248 }, + { url = "https://files.pythonhosted.org/packages/a0/9f/255b4d34a4f8ff7f31db79406917c403032aa19b39a651ad0a0d6b467317/frozenlist-1.4.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:c6321c9efe29975232da3bd0af0ad216800a47e93d763ce64f291917a381b8eb", size = 53797 }, + { url = "https://files.pythonhosted.org/packages/3b/75/30ff63c92b4c561803662bb7e75b5a6863a2af434e6ff05be8a514a41dd2/frozenlist-1.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:48f6a4533887e189dae092f1cf981f2e3885175f7a0f33c91fb5b7b682b6bab6", size = 239543 }, + { url = "https://files.pythonhosted.org/packages/43/ec/362807e1682bb0f6a5f34d15994125d72fc7e52fb9b8e4953b13384dcc94/frozenlist-1.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6eb73fa5426ea69ee0e012fb59cdc76a15b1283d6e32e4f8dc4482ec67d1194d", size = 256966 }, + { url = "https://files.pythonhosted.org/packages/b8/d5/35bba11c3f32283996611dbd88c5357b3ff7bcea63509f8e35b62fa9525a/frozenlist-1.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fbeb989b5cc29e8daf7f976b421c220f1b8c731cbf22b9130d8815418ea45887", size = 252874 }, + { url = "https://files.pythonhosted.org/packages/90/e4/d205655ac3db4dc1bb96ccb1dd59c0d38d54349408ad840bea85a3dd66e9/frozenlist-1.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:32453c1de775c889eb4e22f1197fe3bdfe457d16476ea407472b9442e6295f7a", size = 231439 }, + { url = "https://files.pythonhosted.org/packages/45/4d/175b16d42daae8013bb1872f6d0870abd87da93e0a36706da4c9ba655d19/frozenlist-1.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:693945278a31f2086d9bf3df0fe8254bbeaef1fe71e1351c3bd730aa7d31c41b", size = 240857 }, + { url = "https://files.pythonhosted.org/packages/0c/fa/ef6a96b7757c969b3d7be55c3e70951409509464f5177624d62c894656b6/frozenlist-1.4.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:1d0ce09d36d53bbbe566fe296965b23b961764c0bcf3ce2fa45f463745c04701", size = 246935 }, + { url = "https://files.pythonhosted.org/packages/44/7e/f3177ed74571eb55779bc3c9ac486505ffc4306852f48c6ee5bd82baecb0/frozenlist-1.4.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:3a670dc61eb0d0eb7080890c13de3066790f9049b47b0de04007090807c776b0", size = 239742 }, + { url = "https://files.pythonhosted.org/packages/eb/59/e4d3a794b2d9b7ca86a266b61a949f5cccec7a88d818f3b6ad8b80b3ad65/frozenlist-1.4.1-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:dca69045298ce5c11fd539682cff879cc1e664c245d1c64da929813e54241d11", size = 257417 }, + { url = "https://files.pythonhosted.org/packages/31/fb/d6dc05b56cc30bf6abef2f2100ff6d6d417c33b956a642d768d5e11b5fdf/frozenlist-1.4.1-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:a06339f38e9ed3a64e4c4e43aec7f59084033647f908e4259d279a52d3757d09", size = 255624 }, + { url = "https://files.pythonhosted.org/packages/dc/c9/21abed93eddf089dd0ddd7e09203f2f3dad5d2b784674603a319b0f0c02c/frozenlist-1.4.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b7f2f9f912dca3934c1baec2e4585a674ef16fe00218d833856408c48d5beee7", size = 248001 }, + { url = "https://files.pythonhosted.org/packages/05/6b/e76e740c826acc2ebb5ad5eb06bac15269cd950fc51bd86bbcdbbc04a863/frozenlist-1.4.1-cp38-cp38-win32.whl", hash = "sha256:e7004be74cbb7d9f34553a5ce5fb08be14fb33bc86f332fb71cbe5216362a497", size = 44799 }, + { url = "https://files.pythonhosted.org/packages/57/0e/63fba1e3a50f2e55d980aa633b8b58062ec7777333aabf0cc3a07a13eb5e/frozenlist-1.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:5a7d70357e7cee13f470c7883a063aae5fe209a493c57d86eb7f5a6f910fae09", size = 50820 }, + { url = "https://files.pythonhosted.org/packages/d3/fb/6f2a22086065bc16797f77168728f0e59d5b89be76dd184e06b404f1e43b/frozenlist-1.4.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:bfa4a17e17ce9abf47a74ae02f32d014c5e9404b6d9ac7f729e01562bbee601e", size = 97291 }, + { url = "https://files.pythonhosted.org/packages/4d/23/7f01123d0e5adcc65cbbde5731378237dea7db467abd19e391f1ddd4130d/frozenlist-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b7e3ed87d4138356775346e6845cccbe66cd9e207f3cd11d2f0b9fd13681359d", size = 55249 }, + { url = "https://files.pythonhosted.org/packages/8b/c9/a81e9af48291954a883d35686f32308238dc968043143133b8ac9e2772af/frozenlist-1.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c99169d4ff810155ca50b4da3b075cbde79752443117d89429595c2e8e37fed8", size = 53676 }, + { url = "https://files.pythonhosted.org/packages/57/15/172af60c7e150a1d88ecc832f2590721166ae41eab582172fe1e9844eab4/frozenlist-1.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:edb678da49d9f72c9f6c609fbe41a5dfb9a9282f9e6a2253d5a91e0fc382d7c0", size = 239365 }, + { url = "https://files.pythonhosted.org/packages/8c/a4/3dc43e259960ad268ef8f2bf92912c2d2cd2e5275a4838804e03fd6f085f/frozenlist-1.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6db4667b187a6742b33afbbaf05a7bc551ffcf1ced0000a571aedbb4aa42fc7b", size = 265592 }, + { url = "https://files.pythonhosted.org/packages/a0/c1/458cf031fc8cd29a751e305b1ec773785ce486106451c93986562c62a21e/frozenlist-1.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:55fdc093b5a3cb41d420884cdaf37a1e74c3c37a31f46e66286d9145d2063bd0", size = 261274 }, + { url = "https://files.pythonhosted.org/packages/4a/32/21329084b61a119ecce0b2942d30312a34a7a0dccd01dcf7b40bda80f22c/frozenlist-1.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82e8211d69a4f4bc360ea22cd6555f8e61a1bd211d1d5d39d3d228b48c83a897", size = 230787 }, + { url = "https://files.pythonhosted.org/packages/70/b0/6f1ebdabfb604e39a0f84428986b89ab55f246b64cddaa495f2c953e1f6b/frozenlist-1.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89aa2c2eeb20957be2d950b85974b30a01a762f3308cd02bb15e1ad632e22dc7", size = 240674 }, + { url = "https://files.pythonhosted.org/packages/a3/05/50c53f1cdbfdf3d2cb9582a4ea5e12cd939ce33bd84403e6d07744563486/frozenlist-1.4.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9d3e0c25a2350080e9319724dede4f31f43a6c9779be48021a7f4ebde8b2d742", size = 255712 }, + { url = "https://files.pythonhosted.org/packages/b8/3d/cbc6f057f7d10efb7f1f410e458ac090f30526fd110ed2b29bb56ec38fe1/frozenlist-1.4.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7268252af60904bf52c26173cbadc3a071cece75f873705419c8681f24d3edea", size = 247618 }, + { url = "https://files.pythonhosted.org/packages/96/86/d5e9cd583aed98c9ee35a3aac2ce4d022ce9de93518e963aadf34a18143b/frozenlist-1.4.1-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:0c250a29735d4f15321007fb02865f0e6b6a41a6b88f1f523ca1596ab5f50bd5", size = 266868 }, + { url = "https://files.pythonhosted.org/packages/0f/6e/542af762beb9113f13614a590cafe661e0e060cddddee6107c8833605776/frozenlist-1.4.1-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:96ec70beabbd3b10e8bfe52616a13561e58fe84c0101dd031dc78f250d5128b9", size = 266439 }, + { url = "https://files.pythonhosted.org/packages/ea/db/8b611e23fda75da5311b698730a598df54cfe6236678001f449b1dedb241/frozenlist-1.4.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:23b2d7679b73fe0e5a4560b672a39f98dfc6f60df63823b0a9970525325b95f6", size = 256677 }, + { url = "https://files.pythonhosted.org/packages/eb/06/732cefc0c46c638e4426a859a372a50e4c9d62e65dbfa7ddcf0b13e6a4f2/frozenlist-1.4.1-cp39-cp39-win32.whl", hash = "sha256:a7496bfe1da7fb1a4e1cc23bb67c58fab69311cc7d32b5a99c2007b4b2a0e932", size = 44825 }, + { url = "https://files.pythonhosted.org/packages/29/eb/2110c4be2f622e87864e433efd7c4ee6e4f8a59ff2a93c1aa426ee50a8b8/frozenlist-1.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:e6a20a581f9ce92d389a8c7d7c3dd47c81fd5d6e655c8dddf341e14aa48659d0", size = 50652 }, + { url = "https://files.pythonhosted.org/packages/83/10/466fe96dae1bff622021ee687f68e5524d6392b0a2f80d05001cd3a451ba/frozenlist-1.4.1-py3-none-any.whl", hash = "sha256:04ced3e6a46b4cfffe20f9ae482818e34eba9b5fb0ce4056e4cc9b6e212d09b7", size = 11552 }, +] + +[[package]] +name = "idna" +version = "3.7" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/21/ed/f86a79a07470cb07819390452f178b3bef1d375f2ec021ecfc709fc7cf07/idna-3.7.tar.gz", hash = "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc", size = 189575 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e5/3e/741d8c82801c347547f8a2a06aa57dbb1992be9e948df2ea0eda2c8b79e8/idna-3.7-py3-none-any.whl", hash = "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0", size = 66836 }, +] + +[[package]] +name = "ipython" +version = "8.12.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "appnope", marker = "sys_platform == 'darwin'" }, + { name = "backcall", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "decorator", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, + { name = "jedi", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, + { name = "matplotlib-inline", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, + { name = "pexpect", marker = "sys_platform != 'win32'" }, + { name = "pickleshare", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, + { name = "prompt-toolkit", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, + { name = "pygments", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, + { name = "stack-data", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, + { name = "traitlets", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, + { name = "typing-extensions", marker = "python_version < '3.10'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/9e/6a/44ef299b1762f5a73841e87fae8a73a8cc8aee538d6dc8c77a5afe1fd2ce/ipython-8.12.3.tar.gz", hash = "sha256:3910c4b54543c2ad73d06579aa771041b7d5707b033bd488669b4cf544e3b363", size = 5470171 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8d/97/8fe103906cd81bc42d3b0175b5534a9f67dccae47d6451131cf8d0d70bb2/ipython-8.12.3-py3-none-any.whl", hash = "sha256:b0340d46a933d27c657b211a329d0be23793c36595acf9e6ef4164bc01a1804c", size = 798307 }, +] + +[[package]] +name = "jedi" +version = "0.19.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "parso", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d6/99/99b493cec4bf43176b678de30f81ed003fd6a647a301b9c927280c600f0a/jedi-0.19.1.tar.gz", hash = "sha256:cf0496f3651bc65d7174ac1b7d043eff454892c708a87d1b683e57b569927ffd", size = 1227821 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/20/9f/bc63f0f0737ad7a60800bfd472a4836661adae21f9c2535f3957b1e54ceb/jedi-0.19.1-py2.py3-none-any.whl", hash = "sha256:e983c654fe5c02867aef4cdfce5a2fbb4a50adc0af145f70504238f18ef5e7e0", size = 1569361 }, +] + +[[package]] +name = "matplotlib-inline" +version = "0.1.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "traitlets", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/99/5b/a36a337438a14116b16480db471ad061c36c3694df7c2084a0da7ba538b7/matplotlib_inline-0.1.7.tar.gz", hash = "sha256:8423b23ec666be3d16e16b60bdd8ac4e86e840ebd1dd11a30b9f117f2fa0ab90", size = 8159 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8f/8e/9ad090d3553c280a8060fbf6e24dc1c0c29704ee7d1c372f0c174aa59285/matplotlib_inline-0.1.7-py3-none-any.whl", hash = "sha256:df192d39a4ff8f21b1895d72e6a13f5fcc5099f00fa84384e0ea28c2cc0653ca", size = 9899 }, +] + +[[package]] +name = "multidict" +version = "6.0.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f9/79/722ca999a3a09a63b35aac12ec27dfa8e5bb3a38b0f857f7a1a209a88836/multidict-6.0.5.tar.gz", hash = "sha256:f7e301075edaf50500f0b341543c41194d8df3ae5caf4702f2095f3ca73dd8da", size = 59867 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/36/48097b96135017ed1b806c5ea27b6cdc2ed3a6861c5372b793563206c586/multidict-6.0.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:228b644ae063c10e7f324ab1ab6b548bdf6f8b47f3ec234fef1093bc2735e5f9", size = 50955 }, + { url = "https://files.pythonhosted.org/packages/d9/48/037440edb5d4a1c65e002925b2f24071d6c27754e6f4734f63037e3169d6/multidict-6.0.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:896ebdcf62683551312c30e20614305f53125750803b614e9e6ce74a96232604", size = 30361 }, + { url = "https://files.pythonhosted.org/packages/a4/eb/d8e7693c9064554a1585698d1902839440c6c695b0f53c9a8be5d9d4a3b8/multidict-6.0.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:411bf8515f3be9813d06004cac41ccf7d1cd46dfe233705933dd163b60e37600", size = 30508 }, + { url = "https://files.pythonhosted.org/packages/f3/7d/fe7648d4b2f200f8854066ce6e56bf51889abfaf859814c62160dd0e32a9/multidict-6.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1d147090048129ce3c453f0292e7697d333db95e52616b3793922945804a433c", size = 126318 }, + { url = "https://files.pythonhosted.org/packages/8d/ea/0230b6faa9a5bc10650fd50afcc4a86e6c37af2fe05bc679b74d79253732/multidict-6.0.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:215ed703caf15f578dca76ee6f6b21b7603791ae090fbf1ef9d865571039ade5", size = 133998 }, + { url = "https://files.pythonhosted.org/packages/36/6d/d2f982fb485175727a193b4900b5f929d461e7aa87d6fb5a91a377fcc9c0/multidict-6.0.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c6390cf87ff6234643428991b7359b5f59cc15155695deb4eda5c777d2b880f", size = 129150 }, + { url = "https://files.pythonhosted.org/packages/33/62/2c9085e571318d51212a6914566fe41dd0e33d7f268f7e2f23dcd3f06c56/multidict-6.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21fd81c4ebdb4f214161be351eb5bcf385426bf023041da2fd9e60681f3cebae", size = 124266 }, + { url = "https://files.pythonhosted.org/packages/ce/e2/88cdfeaf03eab3498f688a19b62ca704d371cd904cb74b682541ca7b20a7/multidict-6.0.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3cc2ad10255f903656017363cd59436f2111443a76f996584d1077e43ee51182", size = 116637 }, + { url = "https://files.pythonhosted.org/packages/12/4d/99dfc36872dcc53956879f5da80a6505bbd29214cce90ce792a86e15fddf/multidict-6.0.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:6939c95381e003f54cd4c5516740faba40cf5ad3eeff460c3ad1d3e0ea2549bf", size = 155908 }, + { url = "https://files.pythonhosted.org/packages/c2/5c/1e76b2c742cb9e0248d1e8c4ed420817879230c833fa27d890b5fd22290b/multidict-6.0.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:220dd781e3f7af2c2c1053da9fa96d9cf3072ca58f057f4c5adaaa1cab8fc442", size = 147111 }, + { url = "https://files.pythonhosted.org/packages/bc/84/9579004267e1cc5968ef2ef8718dab9d8950d99354d85b739dd67b09c273/multidict-6.0.5-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:766c8f7511df26d9f11cd3a8be623e59cca73d44643abab3f8c8c07620524e4a", size = 160502 }, + { url = "https://files.pythonhosted.org/packages/11/b7/bef33e84e3722bc42531af020d7ae8c31235ce8846bacaa852b6484cf868/multidict-6.0.5-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:fe5d7785250541f7f5019ab9cba2c71169dc7d74d0f45253f8313f436458a4ef", size = 156587 }, + { url = "https://files.pythonhosted.org/packages/26/ce/f745a2d6104e56f7fa0d7d0756bb9ed27b771dd7b8d9d7348cd7f0f7b9de/multidict-6.0.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c1c1496e73051918fcd4f58ff2e0f2f3066d1c76a0c6aeffd9b45d53243702cc", size = 151948 }, + { url = "https://files.pythonhosted.org/packages/f1/50/714da64281d2b2b3b4068e84f115e1ef3bd3ed3715b39503ff3c59e8d30d/multidict-6.0.5-cp310-cp310-win32.whl", hash = "sha256:7afcdd1fc07befad18ec4523a782cde4e93e0a2bf71239894b8d61ee578c1319", size = 25734 }, + { url = "https://files.pythonhosted.org/packages/ef/3d/ba0dc18e96c5d83731c54129819d5892389e180f54ebb045c6124b2e8b87/multidict-6.0.5-cp310-cp310-win_amd64.whl", hash = "sha256:99f60d34c048c5c2fabc766108c103612344c46e35d4ed9ae0673d33c8fb26e8", size = 28182 }, + { url = "https://files.pythonhosted.org/packages/5f/da/b10ea65b850b54f44a6479177c6987f456bc2d38f8dc73009b78afcf0ede/multidict-6.0.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f285e862d2f153a70586579c15c44656f888806ed0e5b56b64489afe4a2dbfba", size = 50815 }, + { url = "https://files.pythonhosted.org/packages/21/db/3403263f158b0bc7b0d4653766d71cb39498973f2042eead27b2e9758782/multidict-6.0.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:53689bb4e102200a4fafa9de9c7c3c212ab40a7ab2c8e474491914d2305f187e", size = 30269 }, + { url = "https://files.pythonhosted.org/packages/02/c1/b15ecceb6ffa5081ed2ed450aea58d65b0e0358001f2b426705f9f41f4c2/multidict-6.0.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:612d1156111ae11d14afaf3a0669ebf6c170dbb735e510a7438ffe2369a847fd", size = 30500 }, + { url = "https://files.pythonhosted.org/packages/3f/e1/7fdd0f39565df3af87d6c2903fb66a7d529fbd0a8a066045d7a5b6ad1145/multidict-6.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7be7047bd08accdb7487737631d25735c9a04327911de89ff1b26b81745bd4e3", size = 130751 }, + { url = "https://files.pythonhosted.org/packages/76/bc/9f593f9e38c6c09bbf0344b56ad67dd53c69167937c2edadee9719a5e17d/multidict-6.0.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de170c7b4fe6859beb8926e84f7d7d6c693dfe8e27372ce3b76f01c46e489fcf", size = 138185 }, + { url = "https://files.pythonhosted.org/packages/28/32/d7799a208701d537b92705f46c777ded812a6dc139c18d8ed599908f6b1c/multidict-6.0.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:04bde7a7b3de05732a4eb39c94574db1ec99abb56162d6c520ad26f83267de29", size = 133585 }, + { url = "https://files.pythonhosted.org/packages/52/ec/be54a3ad110f386d5bd7a9a42a4ff36b3cd723ebe597f41073a73ffa16b8/multidict-6.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:85f67aed7bb647f93e7520633d8f51d3cbc6ab96957c71272b286b2f30dc70ed", size = 128684 }, + { url = "https://files.pythonhosted.org/packages/36/e1/a680eabeb71e25d4733276d917658dfa1cd3a99b1223625dbc247d266c98/multidict-6.0.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:425bf820055005bfc8aa9a0b99ccb52cc2f4070153e34b701acc98d201693733", size = 120994 }, + { url = "https://files.pythonhosted.org/packages/ef/08/08f4f44a8a43ea4cee13aa9cdbbf4a639af8db49310a0637ca389c4cf817/multidict-6.0.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d3eb1ceec286eba8220c26f3b0096cf189aea7057b6e7b7a2e60ed36b373b77f", size = 159689 }, + { url = "https://files.pythonhosted.org/packages/aa/a9/46cdb4cb40bbd4b732169413f56b04a6553460b22bd914f9729c9ba63761/multidict-6.0.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:7901c05ead4b3fb75113fb1dd33eb1253c6d3ee37ce93305acd9d38e0b5f21a4", size = 150611 }, + { url = "https://files.pythonhosted.org/packages/e9/32/35668bb3e6ab2f12f4e4f7f4000f72f714882a94f904d4c3633fbd036753/multidict-6.0.5-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:e0e79d91e71b9867c73323a3444724d496c037e578a0e1755ae159ba14f4f3d1", size = 164444 }, + { url = "https://files.pythonhosted.org/packages/fa/10/f1388a91552af732d8ec48dab928abc209e732767e9e8f92d24c3544353c/multidict-6.0.5-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:29bfeb0dff5cb5fdab2023a7a9947b3b4af63e9c47cae2a10ad58394b517fddc", size = 160158 }, + { url = "https://files.pythonhosted.org/packages/14/c3/f602601f1819983e018156e728e57b3f19726cb424b543667faab82f6939/multidict-6.0.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e030047e85cbcedbfc073f71836d62dd5dadfbe7531cae27789ff66bc551bd5e", size = 156072 }, + { url = "https://files.pythonhosted.org/packages/82/a6/0290af8487326108c0d03d14f8a0b8b1001d71e4494df5f96ab0c88c0b88/multidict-6.0.5-cp311-cp311-win32.whl", hash = "sha256:2f4848aa3baa109e6ab81fe2006c77ed4d3cd1e0ac2c1fbddb7b1277c168788c", size = 25731 }, + { url = "https://files.pythonhosted.org/packages/88/aa/ea217cb18325aa05cb3e3111c19715f1e97c50a4a900cbc20e54648de5f5/multidict-6.0.5-cp311-cp311-win_amd64.whl", hash = "sha256:2faa5ae9376faba05f630d7e5e6be05be22913782b927b19d12b8145968a85ea", size = 28176 }, + { url = "https://files.pythonhosted.org/packages/90/9c/7fda9c0defa09538c97b1f195394be82a1f53238536f70b32eb5399dfd4e/multidict-6.0.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:51d035609b86722963404f711db441cf7134f1889107fb171a970c9701f92e1e", size = 49575 }, + { url = "https://files.pythonhosted.org/packages/be/21/d6ca80dd1b9b2c5605ff7475699a8ff5dc6ea958cd71fb2ff234afc13d79/multidict-6.0.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:cbebcd5bcaf1eaf302617c114aa67569dd3f090dd0ce8ba9e35e9985b41ac35b", size = 29638 }, + { url = "https://files.pythonhosted.org/packages/9c/18/9565f32c19d186168731e859692dfbc0e98f66a1dcf9e14d69c02a78b75a/multidict-6.0.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2ffc42c922dbfddb4a4c3b438eb056828719f07608af27d163191cb3e3aa6cc5", size = 29874 }, + { url = "https://files.pythonhosted.org/packages/4e/4e/3815190e73e6ef101b5681c174c541bf972a1b064e926e56eea78d06e858/multidict-6.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ceb3b7e6a0135e092de86110c5a74e46bda4bd4fbfeeb3a3bcec79c0f861e450", size = 129914 }, + { url = "https://files.pythonhosted.org/packages/0c/08/bb47f886457e2259aefc10044e45c8a1b62f0c27228557e17775869d0341/multidict-6.0.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:79660376075cfd4b2c80f295528aa6beb2058fd289f4c9252f986751a4cd0496", size = 134589 }, + { url = "https://files.pythonhosted.org/packages/d5/2f/952f79b5f0795cf4e34852fc5cf4dfda6166f63c06c798361215b69c131d/multidict-6.0.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4428b29611e989719874670fd152b6625500ad6c686d464e99f5aaeeaca175a", size = 133259 }, + { url = "https://files.pythonhosted.org/packages/24/1f/af976383b0b772dd351210af5b60ff9927e3abb2f4a103e93da19a957da0/multidict-6.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d84a5c3a5f7ce6db1f999fb9438f686bc2e09d38143f2d93d8406ed2dd6b9226", size = 130779 }, + { url = "https://files.pythonhosted.org/packages/fc/b1/b0a7744be00b0f5045c7ed4e4a6b8ee6bde4672b2c620474712299df5979/multidict-6.0.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:76c0de87358b192de7ea9649beb392f107dcad9ad27276324c24c91774ca5271", size = 120125 }, + { url = "https://files.pythonhosted.org/packages/d0/bf/2a1d667acf11231cdf0b97a6cd9f30e7a5cf847037b5cf6da44884284bd0/multidict-6.0.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:79a6d2ba910adb2cbafc95dad936f8b9386e77c84c35bc0add315b856d7c3abb", size = 167095 }, + { url = "https://files.pythonhosted.org/packages/5e/e8/ad6ee74b1a2050d3bc78f566dabcc14c8bf89cbe87eecec866c011479815/multidict-6.0.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:92d16a3e275e38293623ebf639c471d3e03bb20b8ebb845237e0d3664914caef", size = 155823 }, + { url = "https://files.pythonhosted.org/packages/45/7c/06926bb91752c52abca3edbfefac1ea90d9d1bc00c84d0658c137589b920/multidict-6.0.5-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:fb616be3538599e797a2017cccca78e354c767165e8858ab5116813146041a24", size = 170233 }, + { url = "https://files.pythonhosted.org/packages/3c/29/3dd36cf6b9c5abba8b97bba84eb499a168ba59c3faec8829327b3887d123/multidict-6.0.5-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:14c2976aa9038c2629efa2c148022ed5eb4cb939e15ec7aace7ca932f48f9ba6", size = 169035 }, + { url = "https://files.pythonhosted.org/packages/60/47/9a0f43470c70bbf6e148311f78ef5a3d4996b0226b6d295bdd50fdcfe387/multidict-6.0.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:435a0984199d81ca178b9ae2c26ec3d49692d20ee29bc4c11a2a8d4514c67eda", size = 166229 }, + { url = "https://files.pythonhosted.org/packages/1d/23/c1b7ae7a0b8a3e08225284ef3ecbcf014b292a3ee821bc4ed2185fd4ce7d/multidict-6.0.5-cp312-cp312-win32.whl", hash = "sha256:9fe7b0653ba3d9d65cbe7698cca585bf0f8c83dbbcc710db9c90f478e175f2d5", size = 25840 }, + { url = "https://files.pythonhosted.org/packages/4a/68/66fceb758ad7a88993940dbdf3ac59911ba9dc46d7798bf6c8652f89f853/multidict-6.0.5-cp312-cp312-win_amd64.whl", hash = "sha256:01265f5e40f5a17f8241d52656ed27192be03bfa8764d88e8220141d1e4b3556", size = 27905 }, + { url = "https://files.pythonhosted.org/packages/a2/82/2641816aa81288a2ead7b982e3805ef8bc494619f574b72edf271bc3a8af/multidict-6.0.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:76f067f5121dcecf0d63a67f29080b26c43c71a98b10c701b0677e4a065fbd54", size = 50607 }, + { url = "https://files.pythonhosted.org/packages/6c/13/97f4a2e0e26b7c6e2469de03f1efc255ce2f984a537c301d957762a23eba/multidict-6.0.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b82cc8ace10ab5bd93235dfaab2021c70637005e1ac787031f4d1da63d493c1d", size = 30209 }, + { url = "https://files.pythonhosted.org/packages/7b/0a/c5a12e908f32ec3844772a8a52322594bfc7ea5786ffdfd4efc70eead079/multidict-6.0.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:5cb241881eefd96b46f89b1a056187ea8e9ba14ab88ba632e68d7a2ecb7aadf7", size = 30343 }, + { url = "https://files.pythonhosted.org/packages/7d/b6/fd8dd4a1ce1d129a1870143133f449b769ae236e9435ed8d74a8d45acb8e/multidict-6.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e8e94e6912639a02ce173341ff62cc1201232ab86b8a8fcc05572741a5dc7d93", size = 130659 }, + { url = "https://files.pythonhosted.org/packages/6a/43/d753dbaa498d42e8e292889cc9a9def30b32631573ae86c9911889977049/multidict-6.0.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09a892e4a9fb47331da06948690ae38eaa2426de97b4ccbfafbdcbe5c8f37ff8", size = 136375 }, + { url = "https://files.pythonhosted.org/packages/e8/4e/51130700c255597ac8e15ceac2e492117ffad44c75610381652b7d2e96a1/multidict-6.0.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:55205d03e8a598cfc688c71ca8ea5f66447164efff8869517f175ea632c7cb7b", size = 131294 }, + { url = "https://files.pythonhosted.org/packages/61/a3/c307d4af64e695d13e8587d3f996a51b134156c0e8e2e26f4135bb2bf517/multidict-6.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:37b15024f864916b4951adb95d3a80c9431299080341ab9544ed148091b53f50", size = 129342 }, + { url = "https://files.pythonhosted.org/packages/dc/04/0dcb48358f8217ae6839075287ce5d4be124e68d4ef7696b23e3f0981b51/multidict-6.0.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f2a1dee728b52b33eebff5072817176c172050d44d67befd681609b4746e1c2e", size = 121538 }, + { url = "https://files.pythonhosted.org/packages/fd/e2/8b98715478dc4a3cdf0230886680f33f4eacbc2ab2a4c1604b027e9540eb/multidict-6.0.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:edd08e6f2f1a390bf137080507e44ccc086353c8e98c657e666c017718561b89", size = 160932 }, + { url = "https://files.pythonhosted.org/packages/c7/72/3f696c93d03f19f8fbefe82e8f415dea8c574fa58ffdb4bc04ebafbd4a05/multidict-6.0.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:60d698e8179a42ec85172d12f50b1668254628425a6bd611aba022257cac1386", size = 151332 }, + { url = "https://files.pythonhosted.org/packages/03/a6/b13e10db5357695645748fae401c94674f612e04e2262c99032ddc638864/multidict-6.0.5-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:3d25f19500588cbc47dc19081d78131c32637c25804df8414463ec908631e453", size = 165893 }, + { url = "https://files.pythonhosted.org/packages/eb/da/519f691131f42a25555a903cd6d150285b530786a0d10751ff286aa0e326/multidict-6.0.5-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:4cc0ef8b962ac7a5e62b9e826bd0cd5040e7d401bc45a6835910ed699037a461", size = 161519 }, + { url = "https://files.pythonhosted.org/packages/3a/85/2d0162c949f7ce7876498d854cba8ce3ae45b1e2212e7a80e0d6ef602a19/multidict-6.0.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:eca2e9d0cc5a889850e9bbd68e98314ada174ff6ccd1129500103df7a94a7a44", size = 156612 }, + { url = "https://files.pythonhosted.org/packages/ce/7b/7f68ee7e21cf8a7e43fbea41508f9cc0698c497ea54525a5a5a99b4574ef/multidict-6.0.5-cp38-cp38-win32.whl", hash = "sha256:4a6a4f196f08c58c59e0b8ef8ec441d12aee4125a7d4f4fef000ccb22f8d7241", size = 25640 }, + { url = "https://files.pythonhosted.org/packages/f7/d6/26f82e3f45802a826c8220af7305ca3b06ad8f25ef2fcdbf1899c7bc01d3/multidict-6.0.5-cp38-cp38-win_amd64.whl", hash = "sha256:0275e35209c27a3f7951e1ce7aaf93ce0d163b28948444bec61dd7badc6d3f8c", size = 28138 }, + { url = "https://files.pythonhosted.org/packages/c6/7c/c8f4445389c0bbc5ea85d1e737233c257f314d0f836a6644e097a5ef512f/multidict-6.0.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:e7be68734bd8c9a513f2b0cfd508802d6609da068f40dc57d4e3494cefc92929", size = 50828 }, + { url = "https://files.pythonhosted.org/packages/7d/5c/c364a77b37f580cc28da4194b77ed04286c7631933d3e64fdae40f1972e2/multidict-6.0.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1d9ea7a7e779d7a3561aade7d596649fbecfa5c08a7674b11b423783217933f9", size = 30315 }, + { url = "https://files.pythonhosted.org/packages/1a/25/f4b60a34dde70c475f4dcaeb4796c256db80d2e03198052d0c3cee5d5fbb/multidict-6.0.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ea1456df2a27c73ce51120fa2f519f1bea2f4a03a917f4a43c8707cf4cbbae1a", size = 30451 }, + { url = "https://files.pythonhosted.org/packages/d0/10/2ff646c471e84af25fe8111985ffb8ec85a3f6e1ade8643bfcfcc0f4d2b1/multidict-6.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cf590b134eb70629e350691ecca88eac3e3b8b3c86992042fb82e3cb1830d5e1", size = 125880 }, + { url = "https://files.pythonhosted.org/packages/c9/ee/a4775297550dfb127641bd335d00d6d896e4ba5cf0216f78654e5ad6ac80/multidict-6.0.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5c0631926c4f58e9a5ccce555ad7747d9a9f8b10619621f22f9635f069f6233e", size = 133606 }, + { url = "https://files.pythonhosted.org/packages/7d/e9/95746d0c7c40bb0f43fc5424b7d7cf783e8638ce67f05fa677fff9ad76bb/multidict-6.0.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dce1c6912ab9ff5f179eaf6efe7365c1f425ed690b03341911bf4939ef2f3046", size = 128720 }, + { url = "https://files.pythonhosted.org/packages/39/a9/1f8d42c8103bcb1da6bb719f1bc018594b5acc8eae56b3fec4720ebee225/multidict-6.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0868d64af83169e4d4152ec612637a543f7a336e4a307b119e98042e852ad9c", size = 123750 }, + { url = "https://files.pythonhosted.org/packages/b5/f8/c8abbe7c425497d8bf997b1fffd9650ca175325ff397fadc9d63ae5dc027/multidict-6.0.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:141b43360bfd3bdd75f15ed811850763555a251e38b2405967f8e25fb43f7d40", size = 116213 }, + { url = "https://files.pythonhosted.org/packages/c2/bb/242664de860cd1201f4d207f0bd2011c1a730877e1dbffbe5d6ec4089e2d/multidict-6.0.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:7df704ca8cf4a073334e0427ae2345323613e4df18cc224f647f251e5e75a527", size = 155410 }, + { url = "https://files.pythonhosted.org/packages/f6/5b/35d20c85b8ccd0c9afc47b8dd46e028b6650ad9660a4b6ad191301d220f5/multidict-6.0.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6214c5a5571802c33f80e6c84713b2c79e024995b9c5897f794b43e714daeec9", size = 146668 }, + { url = "https://files.pythonhosted.org/packages/1b/52/6e984685d048f6728807c3fd9b8a6e3e3d51a06a4d6665d6e0102115455d/multidict-6.0.5-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:cd6c8fca38178e12c00418de737aef1261576bd1b6e8c6134d3e729a4e858b38", size = 160140 }, + { url = "https://files.pythonhosted.org/packages/76/c0/3aa6238557ed1d235be70d9c3f86d63a835c421b76073b8ce06bf32725e8/multidict-6.0.5-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:e02021f87a5b6932fa6ce916ca004c4d441509d33bbdbeca70d05dff5e9d2479", size = 156185 }, + { url = "https://files.pythonhosted.org/packages/85/82/02ed81023b5812582bf7c46e8e2868ffd6a29f8c313af1dd76e82e243c39/multidict-6.0.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ebd8d160f91a764652d3e51ce0d2956b38efe37c9231cd82cfc0bed2e40b581c", size = 151518 }, + { url = "https://files.pythonhosted.org/packages/d8/00/fd6eef9830046c063939cbf119c101898cbb611ea20301ae911b74caca19/multidict-6.0.5-cp39-cp39-win32.whl", hash = "sha256:04da1bb8c8dbadf2a18a452639771951c662c5ad03aefe4884775454be322c9b", size = 25732 }, + { url = "https://files.pythonhosted.org/packages/58/a3/4d2c1b4d1859c89d9ce48a4ae410ee019485e324e484b0160afdba8cc42b/multidict-6.0.5-cp39-cp39-win_amd64.whl", hash = "sha256:d6f6d4f185481c9669b9447bf9d9cf3b95a0e9df9d169bbc17e363b7d5487755", size = 28181 }, + { url = "https://files.pythonhosted.org/packages/fa/a2/17e1e23c6be0a916219c5292f509360c345b5fa6beeb50d743203c27532c/multidict-6.0.5-py3-none-any.whl", hash = "sha256:0d63c74e3d7ab26de115c49bffc92cc77ed23395303d496eae515d4204a625e7", size = 9729 }, +] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/98/a4/1ab47638b92648243faf97a5aeb6ea83059cc3624972ab6b8d2316078d3f/mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782", size = 4433 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2a/e2/5d3f6ada4297caebe1a2add3b126fe800c96f56dbe5d1988a2cbe0b267aa/mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d", size = 4695 }, +] + +[[package]] +name = "packaging" +version = "24.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/51/65/50db4dda066951078f0a96cf12f4b9ada6e4b811516bf0262c0f4f7064d4/packaging-24.1.tar.gz", hash = "sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002", size = 148788 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/08/aa/cc0199a5f0ad350994d660967a8efb233fe0416e4639146c089643407ce6/packaging-24.1-py3-none-any.whl", hash = "sha256:5b8f2217dbdbd2f7f384c41c628544e6d52f2d0f53c6d0c3ea61aa5d1d7ff124", size = 53985 }, +] + +[[package]] +name = "parso" +version = "0.8.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/66/94/68e2e17afaa9169cf6412ab0f28623903be73d1b32e208d9e8e541bb086d/parso-0.8.4.tar.gz", hash = "sha256:eb3a7b58240fb99099a345571deecc0f9540ea5f4dd2fe14c2a99d6b281ab92d", size = 400609 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c6/ac/dac4a63f978e4dcb3c6d3a78c4d8e0192a113d288502a1216950c41b1027/parso-0.8.4-py2.py3-none-any.whl", hash = "sha256:a418670a20291dacd2dddc80c377c5c3791378ee1e8d12bffc35420643d43f18", size = 103650 }, +] + +[[package]] +name = "pathspec" +version = "0.12.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ca/bc/f35b8446f4531a7cb215605d100cd88b7ac6f44ab3fc94870c120ab3adbf/pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712", size = 51043 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl", hash = "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08", size = 31191 }, +] + +[[package]] +name = "pexpect" +version = "4.9.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ptyprocess", marker = "implementation_name != 'pypy' or sys_platform != 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/42/92/cc564bf6381ff43ce1f4d06852fc19a2f11d180f23dc32d9588bee2f149d/pexpect-4.9.0.tar.gz", hash = "sha256:ee7d41123f3c9911050ea2c2dac107568dc43b2d3b0c7557a33212c398ead30f", size = 166450 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl", hash = "sha256:7236d1e080e4936be2dc3e326cec0af72acf9212a7e1d060210e70a47e253523", size = 63772 }, +] + +[[package]] +name = "pickleshare" +version = "0.7.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d8/b6/df3c1c9b616e9c0edbc4fbab6ddd09df9535849c64ba51fcb6531c32d4d8/pickleshare-0.7.5.tar.gz", hash = "sha256:87683d47965c1da65cdacaf31c8441d12b8044cdec9aca500cd78fc2c683afca", size = 6161 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9a/41/220f49aaea88bc6fa6cba8d05ecf24676326156c23b991e80b3f2fc24c77/pickleshare-0.7.5-py2.py3-none-any.whl", hash = "sha256:9649af414d74d4df115d5d718f82acb59c9d418196b7b4290ed47a12ce62df56", size = 6877 }, +] + +[[package]] +name = "platformdirs" +version = "4.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f5/52/0763d1d976d5c262df53ddda8d8d4719eedf9594d046f117c25a27261a19/platformdirs-4.2.2.tar.gz", hash = "sha256:38b7b51f512eed9e84a22788b4bce1de17c0adb134d6becb09836e37d8654cd3", size = 20916 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/68/13/2aa1f0e1364feb2c9ef45302f387ac0bd81484e9c9a4c5688a322fbdfd08/platformdirs-4.2.2-py3-none-any.whl", hash = "sha256:2d7a1657e36a80ea911db832a8a6ece5ee53d8de21edd5cc5879af6530b1bfee", size = 18146 }, +] + +[[package]] +name = "prompt-toolkit" +version = "3.0.47" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "wcwidth", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/47/6d/0279b119dafc74c1220420028d490c4399b790fc1256998666e3a341879f/prompt_toolkit-3.0.47.tar.gz", hash = "sha256:1e1b29cb58080b1e69f207c893a1a7bf16d127a5c30c9d17a25a5d77792e5360", size = 425859 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e8/23/22750c4b768f09386d1c3cc4337953e8936f48a888fa6dddfb669b2c9088/prompt_toolkit-3.0.47-py3-none-any.whl", hash = "sha256:0d7bfa67001d5e39d02c224b663abc33687405033a8c422d0d675a5a13361d10", size = 386411 }, +] + +[[package]] +name = "ptyprocess" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/20/e5/16ff212c1e452235a90aeb09066144d0c5a6a8c0834397e03f5224495c4e/ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220", size = 70762 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/22/a6/858897256d0deac81a172289110f31629fc4cee19b6f01283303e18c8db3/ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35", size = 13993 }, +] + +[[package]] +name = "pure-eval" +version = "0.2.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cd/05/0a34433a064256a578f1783a10da6df098ceaa4a57bbeaa96a6c0352786b/pure_eval-0.2.3.tar.gz", hash = "sha256:5f4e983f40564c576c7c8635ae88db5956bb2229d7e9237d03b3c0b0190eaf42", size = 19752 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8e/37/efad0257dc6e593a18957422533ff0f87ede7c9c6ea010a2177d738fb82f/pure_eval-0.2.3-py3-none-any.whl", hash = "sha256:1db8e35b67b3d218d818ae653e27f06c3aa420901fa7b081ca98cbedc874e0d0", size = 11842 }, +] + +[[package]] +name = "pygments" +version = "2.18.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8e/62/8336eff65bcbc8e4cb5d05b55faf041285951b6e80f33e2bff2024788f31/pygments-2.18.0.tar.gz", hash = "sha256:786ff802f32e91311bff3889f6e9a86e81505fe99f2735bb6d60ae0c5004f199", size = 4891905 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f7/3f/01c8b82017c199075f8f788d0d906b9ffbbc5a47dc9918a945e13d5a2bda/pygments-2.18.0-py3-none-any.whl", hash = "sha256:b8e6aca0523f3ab76fee51799c488e38782ac06eafcf95e7ba832985c8e7b13a", size = 1205513 }, +] + +[[package]] +name = "six" +version = "1.16.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/71/39/171f1c67cd00715f190ba0b100d606d440a28c93c7714febeca8b79af85e/six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926", size = 34041 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d9/5a/e7c31adbe875f2abbb91bd84cf2dc52d792b5a01506781dbcf25c91daf11/six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254", size = 11053 }, +] + +[[package]] +name = "stack-data" +version = "0.6.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "asttokens", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, + { name = "executing", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, + { name = "pure-eval", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/28/e3/55dcc2cfbc3ca9c29519eb6884dd1415ecb53b0e934862d3559ddcb7e20b/stack_data-0.6.3.tar.gz", hash = "sha256:836a778de4fec4dcd1dcd89ed8abff8a221f58308462e1c4aa2a3cf30148f0b9", size = 44707 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f1/7b/ce1eafaf1a76852e2ec9b22edecf1daa58175c090266e9f6c64afcd81d91/stack_data-0.6.3-py3-none-any.whl", hash = "sha256:d5558e0c25a4cb0853cddad3d77da9891a08cb85dd9f9f91b9f8cd66e511e695", size = 24521 }, +] + +[[package]] +name = "tokenize-rt" +version = "6.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7d/09/6257dabdeab5097d72c5d874f29b33cd667ec411af6667922d84f85b79b5/tokenize_rt-6.0.0.tar.gz", hash = "sha256:b9711bdfc51210211137499b5e355d3de5ec88a85d2025c520cbb921b5194367", size = 5360 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5c/c2/44486862562c6902778ccf88001ad5ea3f8da5c030c638cac8be72f65b40/tokenize_rt-6.0.0-py2.py3-none-any.whl", hash = "sha256:d4ff7ded2873512938b4f8cbb98c9b07118f01d30ac585a30d7a88353ca36d22", size = 5869 }, +] + +[[package]] +name = "tomli" +version = "2.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c0/3f/d7af728f075fb08564c5949a9c95e44352e23dee646869fa104a3b2060a3/tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f", size = 15164 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/97/75/10a9ebee3fd790d20926a90a2547f0bf78f371b2f13aa822c759680ca7b9/tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc", size = 12757 }, +] + +[[package]] +name = "traitlets" +version = "5.14.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/eb/79/72064e6a701c2183016abbbfedaba506d81e30e232a68c9f0d6f6fcd1574/traitlets-5.14.3.tar.gz", hash = "sha256:9ed0579d3502c94b4b3732ac120375cda96f923114522847de4b3bb98b96b6b7", size = 161621 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl", hash = "sha256:b74e89e397b1ed28cc831db7aea759ba6640cb3de13090ca145426688ff1ac4f", size = 85359 }, +] + +[[package]] +name = "typing-extensions" +version = "4.12.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/df/db/f35a00659bc03fec321ba8bce9420de607a1d37f8342eee1863174c69557/typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8", size = 85321 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/26/9f/ad63fc0248c5379346306f8668cda6e2e2e9c95e01216d2b8ffd9ff037d0/typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d", size = 37438 }, +] + +[[package]] +name = "uvloop" +version = "0.19.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9c/16/728cc5dde368e6eddb299c5aec4d10eaf25335a5af04e8c0abd68e2e9d32/uvloop-0.19.0.tar.gz", hash = "sha256:0246f4fd1bf2bf702e06b0d45ee91677ee5c31242f39aab4ea6fe0c51aedd0fd", size = 2318492 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/36/c2/27bf858a576b1fa35b5c2c2029c8cec424a8789e87545ed2f25466d1f21d/uvloop-0.19.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:de4313d7f575474c8f5a12e163f6d89c0a878bc49219641d49e6f1444369a90e", size = 1443484 }, + { url = "https://files.pythonhosted.org/packages/4e/35/05b6064b93f4113412d1fd92bdcb6018607e78ae94d1712e63e533f9b2fa/uvloop-0.19.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:5588bd21cf1fcf06bded085f37e43ce0e00424197e7c10e77afd4bbefffef428", size = 793850 }, + { url = "https://files.pythonhosted.org/packages/aa/56/b62ab4e10458ce96bb30c98d327c127f989d3bb4ef899e4c410c739f7ef6/uvloop-0.19.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7b1fd71c3843327f3bbc3237bedcdb6504fd50368ab3e04d0410e52ec293f5b8", size = 3418601 }, + { url = "https://files.pythonhosted.org/packages/ab/ed/12729fba5e3b7e02ee70b3ea230b88e60a50375cf63300db22607694d2f0/uvloop-0.19.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5a05128d315e2912791de6088c34136bfcdd0c7cbc1cf85fd6fd1bb321b7c849", size = 3416731 }, + { url = "https://files.pythonhosted.org/packages/a2/23/80381a2d728d2a0c36e2eef202f5b77428990004d8fbdd3865558ff49fa5/uvloop-0.19.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:cd81bdc2b8219cb4b2556eea39d2e36bfa375a2dd021404f90a62e44efaaf957", size = 4128572 }, + { url = "https://files.pythonhosted.org/packages/6b/23/1ee41a15e1ad15182e2bd12cbfd37bcb6802f01d6bbcaddf6ca136cbb308/uvloop-0.19.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:5f17766fb6da94135526273080f3455a112f82570b2ee5daa64d682387fe0dcd", size = 4129235 }, + { url = "https://files.pythonhosted.org/packages/41/2a/608ad69f27f51280098abee440c33e921d3ad203e2c86f7262e241e49c99/uvloop-0.19.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4ce6b0af8f2729a02a5d1575feacb2a94fc7b2e983868b009d51c9a9d2149bef", size = 1357681 }, + { url = "https://files.pythonhosted.org/packages/13/00/d0923d66d80c8717983493a4d7af747ce47f1c2147d82df057a846ba6bff/uvloop-0.19.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:31e672bb38b45abc4f26e273be83b72a0d28d074d5b370fc4dcf4c4eb15417d2", size = 746421 }, + { url = "https://files.pythonhosted.org/packages/1f/c7/e494c367b0c6e6453f9bed5a78548f5b2ff49add36302cd915a91d347d88/uvloop-0.19.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:570fc0ed613883d8d30ee40397b79207eedd2624891692471808a95069a007c1", size = 3481000 }, + { url = "https://files.pythonhosted.org/packages/86/cc/1829b3f740e4cb1baefff8240a1c6fc8db9e3caac7b93169aec7d4386069/uvloop-0.19.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5138821e40b0c3e6c9478643b4660bd44372ae1e16a322b8fc07478f92684e24", size = 3476361 }, + { url = "https://files.pythonhosted.org/packages/7a/4c/ca87e8f5a30629ffa2038c20907c8ab455c5859ff10e810227b76e60d927/uvloop-0.19.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:91ab01c6cd00e39cde50173ba4ec68a1e578fee9279ba64f5221810a9e786533", size = 4169571 }, + { url = "https://files.pythonhosted.org/packages/d2/a9/f947a00c47b1c87c937cac2423243a41ba08f0fb76d04eb0d1d170606e0a/uvloop-0.19.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:47bf3e9312f63684efe283f7342afb414eea4d3011542155c7e625cd799c3b12", size = 4170459 }, + { url = "https://files.pythonhosted.org/packages/85/57/6736733bb0e86a4b5380d04082463b289c0baecaa205934ba81e8a1d5ea4/uvloop-0.19.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:da8435a3bd498419ee8c13c34b89b5005130a476bda1d6ca8cfdde3de35cd650", size = 1355376 }, + { url = "https://files.pythonhosted.org/packages/eb/0c/51339463da912ed34b48d470538d98a91660749b2db56902f23db9b42fdd/uvloop-0.19.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:02506dc23a5d90e04d4f65c7791e65cf44bd91b37f24cfc3ef6cf2aff05dc7ec", size = 745031 }, + { url = "https://files.pythonhosted.org/packages/e6/fc/f0daaf19f5b2116a2d26eb9f98c4a45084aea87bf03c33bcca7aa1ff36e5/uvloop-0.19.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2693049be9d36fef81741fddb3f441673ba12a34a704e7b4361efb75cf30befc", size = 4077630 }, + { url = "https://files.pythonhosted.org/packages/fd/96/fdc318ffe82ae567592b213ec2fcd8ecedd927b5da068cf84d56b28c51a4/uvloop-0.19.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7010271303961c6f0fe37731004335401eb9075a12680738731e9c92ddd96ad6", size = 4159957 }, + { url = "https://files.pythonhosted.org/packages/71/bc/092068ae7fc16dcf20f3e389126ba7800cee75ffba83f78bf1d167aee3cd/uvloop-0.19.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:5daa304d2161d2918fa9a17d5635099a2f78ae5b5960e742b2fcfbb7aefaa593", size = 4014951 }, + { url = "https://files.pythonhosted.org/packages/a6/f2/6ce1e73933eb038c89f929e26042e64b2cb8d4453410153eed14918ca9a8/uvloop-0.19.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:7207272c9520203fea9b93843bb775d03e1cf88a80a936ce760f60bb5add92f3", size = 4100911 }, + { url = "https://files.pythonhosted.org/packages/49/54/c653529077d7dd2455e9af44b621ad1f8bb2f0bcd232f8a599017e84fc54/uvloop-0.19.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:78ab247f0b5671cc887c31d33f9b3abfb88d2614b84e4303f1a63b46c046c8bd", size = 1462233 }, + { url = "https://files.pythonhosted.org/packages/4d/81/67afeb6da202313e1a5368e36bffdedb7939acf22d969d83183d4f43c4ff/uvloop-0.19.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:472d61143059c84947aa8bb74eabbace30d577a03a1805b77933d6bd13ddebbd", size = 803028 }, + { url = "https://files.pythonhosted.org/packages/1b/4e/fe0b1d09648eebe7dec5c7de66631b814ef442ce896cce63ded5c1e8c275/uvloop-0.19.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45bf4c24c19fb8a50902ae37c5de50da81de4922af65baf760f7c0c42e1088be", size = 3961004 }, + { url = "https://files.pythonhosted.org/packages/13/b6/a5cb14acb1417c1660d722c554757e134462f09eb917e6c49907d990d63a/uvloop-0.19.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:271718e26b3e17906b28b67314c45d19106112067205119dddbd834c2b7ce797", size = 3953929 }, + { url = "https://files.pythonhosted.org/packages/e1/90/6dfe0ef6bc9a5cb72eff6f6bf77f613b27648229f7ad7f7f27b118dde973/uvloop-0.19.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:34175c9fd2a4bc3adc1380e1261f60306344e3407c20a4d684fd5f3be010fa3d", size = 4580858 }, + { url = "https://files.pythonhosted.org/packages/81/a1/7383219c1855a65b988d16e2b8dc0ac8a646ee7429e358a78ab9074c9ddf/uvloop-0.19.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:e27f100e1ff17f6feeb1f33968bc185bf8ce41ca557deee9d9bbbffeb72030b7", size = 4582105 }, + { url = "https://files.pythonhosted.org/packages/1e/f9/8de4d58175c7a5cf3731fcfc43e7fb93e0972a098bffdc926507f02cd655/uvloop-0.19.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:13dfdf492af0aa0a0edf66807d2b465607d11c4fa48f4a1fd41cbea5b18e8e8b", size = 1471152 }, + { url = "https://files.pythonhosted.org/packages/0f/7f/6497008441376686f962a57de57897654ebd9c80f993b619ab57bc4ae61d/uvloop-0.19.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6e3d4e85ac060e2342ff85e90d0c04157acb210b9ce508e784a944f852a40e67", size = 808497 }, + { url = "https://files.pythonhosted.org/packages/fe/4d/199e8c6e4a810b60cc012f9dc34fcf4df0e93d927de75ce4ed54a4d36274/uvloop-0.19.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8ca4956c9ab567d87d59d49fa3704cf29e37109ad348f2d5223c9bf761a332e7", size = 3520312 }, + { url = "https://files.pythonhosted.org/packages/04/58/4d12d24220f2bf2c3125c74431035ddd7a461f9732a01cd5bd12f177370e/uvloop-0.19.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f467a5fd23b4fc43ed86342641f3936a68ded707f4627622fa3f82a120e18256", size = 3529552 }, + { url = "https://files.pythonhosted.org/packages/84/8d/3e23cb85cc2c12918a6d7585fdf50a05c69191a4969881e22e0eebcbf686/uvloop-0.19.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:492e2c32c2af3f971473bc22f086513cedfc66a130756145a931a90c3958cb17", size = 4195068 }, + { url = "https://files.pythonhosted.org/packages/12/9d/f1d263d49f1909914bcec5d5608d2f819c109b08bf06e67a2ff072e82d81/uvloop-0.19.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:2df95fca285a9f5bfe730e51945ffe2fa71ccbfdde3b0da5772b4ee4f2e770d5", size = 4189373 }, +] + +[[package]] +name = "wcwidth" +version = "0.2.13" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6c/63/53559446a878410fc5a5974feb13d31d78d752eb18aeba59c7fef1af7598/wcwidth-0.2.13.tar.gz", hash = "sha256:72ea0c06399eb286d978fdedb6923a9eb47e1c486ce63e9b4e64fc18303972b5", size = 101301 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fd/84/fd2ba7aafacbad3c4201d395674fc6348826569da3c0937e75505ead3528/wcwidth-0.2.13-py2.py3-none-any.whl", hash = "sha256:3da69048e4540d84af32131829ff948f1e022c1c6bdb8d6102117aac784f6859", size = 34166 }, +] + +[[package]] +name = "yarl" +version = "1.9.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "idna", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, + { name = "multidict", marker = "implementation_name != 'pypy' or sys_platform != 'win32' or (implementation_name == 'pypy' and sys_platform == 'win32')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e0/ad/bedcdccbcbf91363fd425a948994f3340924145c2bc8ccb296f4a1e52c28/yarl-1.9.4.tar.gz", hash = "sha256:566db86717cf8080b99b58b083b773a908ae40f06681e87e589a976faf8246bf", size = 141869 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6c/27/cda5a927df3a894eddfee4efacdd230c2d8486e322fc672194fd651f82c5/yarl-1.9.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a8c1df72eb746f4136fe9a2e72b0c9dc1da1cbd23b5372f94b5820ff8ae30e0e", size = 129061 }, + { url = "https://files.pythonhosted.org/packages/d5/fc/40b85bea1f5686092ea37f472c94c023d6347266852ffd55baa01c40f596/yarl-1.9.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a3a6ed1d525bfb91b3fc9b690c5a21bb52de28c018530ad85093cc488bee2dd2", size = 81246 }, + { url = "https://files.pythonhosted.org/packages/81/c6/06938036ea48fa74521713499fba1459b0eb60af9b9afbe8e0e9e1a96c36/yarl-1.9.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c38c9ddb6103ceae4e4498f9c08fac9b590c5c71b0370f98714768e22ac6fa66", size = 79176 }, + { url = "https://files.pythonhosted.org/packages/30/b5/215d586d5cb17ca9748d7a2d597c07147f210c0c0785257492094d083b65/yarl-1.9.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d9e09c9d74f4566e905a0b8fa668c58109f7624db96a2171f21747abc7524234", size = 297669 }, + { url = "https://files.pythonhosted.org/packages/dd/90/2958ae9f2e12084d616eef95b6a48c8e6d96448add04367c20dc53a33ff2/yarl-1.9.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8477c1ee4bd47c57d49621a062121c3023609f7a13b8a46953eb6c9716ca392", size = 311909 }, + { url = "https://files.pythonhosted.org/packages/0b/58/dd3c69651381a57ac991dba54b20ae2da359eb4b03a661e71c451d6525c6/yarl-1.9.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5ff2c858f5f6a42c2a8e751100f237c5e869cbde669a724f2062d4c4ef93551", size = 308690 }, + { url = "https://files.pythonhosted.org/packages/c3/a0/0ade1409d184cbc9e85acd403a386a7c0563b92ff0f26d138ff9e86e48b4/yarl-1.9.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:357495293086c5b6d34ca9616a43d329317feab7917518bc97a08f9e55648455", size = 301580 }, + { url = "https://files.pythonhosted.org/packages/6d/a1/db0bdf8cc48515e9c02daf04ae2916fc27ce6498eca21432fc9ffa63f71b/yarl-1.9.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:54525ae423d7b7a8ee81ba189f131054defdb122cde31ff17477951464c1691c", size = 291231 }, + { url = "https://files.pythonhosted.org/packages/b2/4f/796b0c73e9ff30a1047a7ee3390e157ab8424d4401b9f32a2624013a5b39/yarl-1.9.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:801e9264d19643548651b9db361ce3287176671fb0117f96b5ac0ee1c3530d53", size = 301079 }, + { url = "https://files.pythonhosted.org/packages/0b/a3/7774786ec6e2dca0bb38b286f12a11af97957546e5fbcce71752a8d2cf07/yarl-1.9.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e516dc8baf7b380e6c1c26792610230f37147bb754d6426462ab115a02944385", size = 295202 }, + { url = "https://files.pythonhosted.org/packages/70/a9/ef6d69ce9a4e82080290bcb6db735bb8a6d6db92f2bbb92b6951bde97e7c/yarl-1.9.4-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:7d5aaac37d19b2904bb9dfe12cdb08c8443e7ba7d2852894ad448d4b8f442863", size = 311784 }, + { url = "https://files.pythonhosted.org/packages/44/ae/fdbc9965ef69e650c3b5b04d60badef90ff0cde21a30770f0700e148b12f/yarl-1.9.4-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:54beabb809ffcacbd9d28ac57b0db46e42a6e341a030293fb3185c409e626b8b", size = 311134 }, + { url = "https://files.pythonhosted.org/packages/cc/2a/abbaf1460becba856e163f2a1274f5d34b1969d476da8e68a8fc2aeb5661/yarl-1.9.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bac8d525a8dbc2a1507ec731d2867025d11ceadcb4dd421423a5d42c56818541", size = 304584 }, + { url = "https://files.pythonhosted.org/packages/a3/73/dd7ced8d9731bd2ef4fdff5da23ce2f772ca04e8ddee886a6b15248d9e65/yarl-1.9.4-cp310-cp310-win32.whl", hash = "sha256:7855426dfbddac81896b6e533ebefc0af2f132d4a47340cee6d22cac7190022d", size = 70175 }, + { url = "https://files.pythonhosted.org/packages/31/d4/2085272a5ccf87af74d4e02787c242c5d60367840a4637b2835565264302/yarl-1.9.4-cp310-cp310-win_amd64.whl", hash = "sha256:848cd2a1df56ddbffeb375535fb62c9d1645dde33ca4d51341378b3f5954429b", size = 76402 }, + { url = "https://files.pythonhosted.org/packages/12/65/4c7f3676209a569405c9f0f492df2bc3a387c253f5d906e36944fdd12277/yarl-1.9.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:35a2b9396879ce32754bd457d31a51ff0a9d426fd9e0e3c33394bf4b9036b099", size = 132836 }, + { url = "https://files.pythonhosted.org/packages/3b/c5/81e3dbf5271ab1510860d2ae7a704ef43f93f7cb9326bf7ebb1949a7260b/yarl-1.9.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4c7d56b293cc071e82532f70adcbd8b61909eec973ae9d2d1f9b233f3d943f2c", size = 83215 }, + { url = "https://files.pythonhosted.org/packages/20/3d/7dabf580dfc0b588e48830486b488858122b10a61f33325e0d7cf1d6180b/yarl-1.9.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d8a1c6c0be645c745a081c192e747c5de06e944a0d21245f4cf7c05e457c36e0", size = 81237 }, + { url = "https://files.pythonhosted.org/packages/38/45/7c669999f5d350f4f8f74369b94e0f6705918eee18e38610bfe44af93d4f/yarl-1.9.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4b3c1ffe10069f655ea2d731808e76e0f452fc6c749bea04781daf18e6039525", size = 324181 }, + { url = "https://files.pythonhosted.org/packages/50/49/aa04effe2876cced8867bf9d89b620acf02b733c62adfe22a8218c35d70b/yarl-1.9.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:549d19c84c55d11687ddbd47eeb348a89df9cb30e1993f1b128f4685cd0ebbf8", size = 339412 }, + { url = "https://files.pythonhosted.org/packages/7d/95/4310771fb9c71599d8466f43347ac18fafd501621e65b93f4f4f16899b1d/yarl-1.9.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7409f968456111140c1c95301cadf071bd30a81cbd7ab829169fb9e3d72eae9", size = 337973 }, + { url = "https://files.pythonhosted.org/packages/9f/ea/94ad7d8299df89844e666e4aa8a0e9b88e02416cd6a7dd97969e9eae5212/yarl-1.9.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e23a6d84d9d1738dbc6e38167776107e63307dfc8ad108e580548d1f2c587f42", size = 328126 }, + { url = "https://files.pythonhosted.org/packages/6d/be/9d4885e2725f5860833547c9e4934b6e0f44a355b24ffc37957264761e3e/yarl-1.9.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d8b889777de69897406c9fb0b76cdf2fd0f31267861ae7501d93003d55f54fbe", size = 316677 }, + { url = "https://files.pythonhosted.org/packages/4a/70/5c744d67cad3d093e233cb02f37f2830cb89abfcbb7ad5b5af00ff21d14d/yarl-1.9.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:03caa9507d3d3c83bca08650678e25364e1843b484f19986a527630ca376ecce", size = 324243 }, + { url = "https://files.pythonhosted.org/packages/c2/80/8b38d8fed958ac37afb8b81a54bf4f767b107e2c2004dab165edb58fc51b/yarl-1.9.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:4e9035df8d0880b2f1c7f5031f33f69e071dfe72ee9310cfc76f7b605958ceb9", size = 318099 }, + { url = "https://files.pythonhosted.org/packages/59/50/715bbc7bda65291f9295e757f67854206f4d8be9746d39187724919ac14d/yarl-1.9.4-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:c0ec0ed476f77db9fb29bca17f0a8fcc7bc97ad4c6c1d8959c507decb22e8572", size = 334924 }, + { url = "https://files.pythonhosted.org/packages/a8/af/ca9962488027576d7162878a1864cbb1275d298af986ce96bdfd4807d7b2/yarl-1.9.4-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:ee04010f26d5102399bd17f8df8bc38dc7ccd7701dc77f4a68c5b8d733406958", size = 335060 }, + { url = "https://files.pythonhosted.org/packages/28/c7/249a3a903d500ca7369eb542e2847a14f12f249638dcc10371db50cd17ff/yarl-1.9.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:49a180c2e0743d5d6e0b4d1a9e5f633c62eca3f8a86ba5dd3c471060e352ca98", size = 326689 }, + { url = "https://files.pythonhosted.org/packages/ec/0c/f02dd0b875a7a460f95dc7cf18983ed43c693283d6ab92e0ad71b9e0de8f/yarl-1.9.4-cp311-cp311-win32.whl", hash = "sha256:81eb57278deb6098a5b62e88ad8281b2ba09f2f1147c4767522353eaa6260b31", size = 70407 }, + { url = "https://files.pythonhosted.org/packages/27/41/945ae9a80590e4fb0be166863c6e63d75e4b35789fa3a61ff1dbdcdc220f/yarl-1.9.4-cp311-cp311-win_amd64.whl", hash = "sha256:d1d2532b340b692880261c15aee4dc94dd22ca5d61b9db9a8a361953d36410b1", size = 76719 }, + { url = "https://files.pythonhosted.org/packages/7b/cd/a921122610dedfed94e494af18e85aae23e93274c00ca464cfc591c8f4fb/yarl-1.9.4-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0d2454f0aef65ea81037759be5ca9947539667eecebca092733b2eb43c965a81", size = 129561 }, + { url = "https://files.pythonhosted.org/packages/7c/a0/887c93020c788f249c24eaab288c46e5fed4d2846080eaf28ed3afc36e8d/yarl-1.9.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:44d8ffbb9c06e5a7f529f38f53eda23e50d1ed33c6c869e01481d3fafa6b8142", size = 81595 }, + { url = "https://files.pythonhosted.org/packages/54/99/ed3c92c38f421ba6e36caf6aa91c34118771d252dce800118fa2f44d7962/yarl-1.9.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:aaaea1e536f98754a6e5c56091baa1b6ce2f2700cc4a00b0d49eca8dea471074", size = 79400 }, + { url = "https://files.pythonhosted.org/packages/ea/45/65801be625ef939acc8b714cf86d4a198c0646e80dc8970359d080c47204/yarl-1.9.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3777ce5536d17989c91696db1d459574e9a9bd37660ea7ee4d3344579bb6f129", size = 317397 }, + { url = "https://files.pythonhosted.org/packages/06/91/9696601a8ba674c8f0c15035cc9e94ca31f541330364adcfd5a399f598bf/yarl-1.9.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fc5fc1eeb029757349ad26bbc5880557389a03fa6ada41703db5e068881e5f2", size = 327246 }, + { url = "https://files.pythonhosted.org/packages/da/3e/bf25177b3618889bf067aacf01ef54e910cd569d14e2f84f5e7bec23bb82/yarl-1.9.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ea65804b5dc88dacd4a40279af0cdadcfe74b3e5b4c897aa0d81cf86927fee78", size = 327321 }, + { url = "https://files.pythonhosted.org/packages/28/1c/bdb3411467b805737dd2720b85fd082e49f59bf0cc12dc1dfcc80ab3d274/yarl-1.9.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa102d6d280a5455ad6a0f9e6d769989638718e938a6a0a2ff3f4a7ff8c62cc4", size = 322424 }, + { url = "https://files.pythonhosted.org/packages/41/e9/53bc89f039df2824a524a2aa03ee0bfb8f0585b08949e7521f5eab607085/yarl-1.9.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09efe4615ada057ba2d30df871d2f668af661e971dfeedf0c159927d48bbeff0", size = 310868 }, + { url = "https://files.pythonhosted.org/packages/79/cd/a78c3b0304a4a970b5ae3993f4f5f649443bc8bfa5622f244aed44c810ed/yarl-1.9.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:008d3e808d03ef28542372d01057fd09168419cdc8f848efe2804f894ae03e51", size = 323452 }, + { url = "https://files.pythonhosted.org/packages/2e/5e/1c78eb05ae0efae08498fd7ab939435a29f12c7f161732e7fe327e5b8ca1/yarl-1.9.4-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:6f5cb257bc2ec58f437da2b37a8cd48f666db96d47b8a3115c29f316313654ff", size = 313554 }, + { url = "https://files.pythonhosted.org/packages/04/e0/0029563a8434472697aebb269fdd2ffc8a19e3840add1d5fa169ec7c56e3/yarl-1.9.4-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:992f18e0ea248ee03b5a6e8b3b4738850ae7dbb172cc41c966462801cbf62cf7", size = 331029 }, + { url = "https://files.pythonhosted.org/packages/de/1b/7e6b1ad42ccc0ed059066a7ae2b6fd4bce67795d109a99ccce52e9824e96/yarl-1.9.4-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:0e9d124c191d5b881060a9e5060627694c3bdd1fe24c5eecc8d5d7d0eb6faabc", size = 333839 }, + { url = "https://files.pythonhosted.org/packages/85/8a/c364d6e2eeb4e128a5ee9a346fc3a09aa76739c0c4e2a7305989b54f174b/yarl-1.9.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:3986b6f41ad22988e53d5778f91855dc0399b043fc8946d4f2e68af22ee9ff10", size = 328251 }, + { url = "https://files.pythonhosted.org/packages/ec/9d/0da94b33b9fb89041e10f95a14a55b0fef36c60b6a1d5ff85a0c2ecb1a97/yarl-1.9.4-cp312-cp312-win32.whl", hash = "sha256:4b21516d181cd77ebd06ce160ef8cc2a5e9ad35fb1c5930882baff5ac865eee7", size = 70195 }, + { url = "https://files.pythonhosted.org/packages/c5/f4/2fdc5a11503bc61818243653d836061c9ce0370e2dd9ac5917258a007675/yarl-1.9.4-cp312-cp312-win_amd64.whl", hash = "sha256:a9bd00dc3bc395a662900f33f74feb3e757429e545d831eef5bb280252631984", size = 76397 }, + { url = "https://files.pythonhosted.org/packages/8a/0a/5e432118ae570f5dbe9e40f8c8ffc41e1947f39f3643dcd0846e8bb9908d/yarl-1.9.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:ec61d826d80fc293ed46c9dd26995921e3a82146feacd952ef0757236fc137be", size = 134240 }, + { url = "https://files.pythonhosted.org/packages/46/ea/8404aa172ffe74da750efeb09aa293bf0247fa6ab4f593aea93f85f74844/yarl-1.9.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8be9e837ea9113676e5754b43b940b50cce76d9ed7d2461df1af39a8ee674d9f", size = 83722 }, + { url = "https://files.pythonhosted.org/packages/fc/ca/33754d12ecbe4ccb677353f4e1c7ce3ea748cc5ab9f435535ebf3bf7ac8c/yarl-1.9.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:bef596fdaa8f26e3d66af846bbe77057237cb6e8efff8cd7cc8dff9a62278bbf", size = 82028 }, + { url = "https://files.pythonhosted.org/packages/16/07/719c440f9009c0e7293181f5adb72ba102e4b64312069d03a2bf9b68e97f/yarl-1.9.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2d47552b6e52c3319fede1b60b3de120fe83bde9b7bddad11a69fb0af7db32f1", size = 305512 }, + { url = "https://files.pythonhosted.org/packages/79/51/fe155dda79b8564dee3e377a548d7e9fe84dcebc0460d9d1a92f0932d980/yarl-1.9.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:84fc30f71689d7fc9168b92788abc977dc8cefa806909565fc2951d02f6b7d57", size = 318139 }, + { url = "https://files.pythonhosted.org/packages/af/39/1794787f94b4c75bfc94a4b3e751507ef91d75819411adc8e60520895be3/yarl-1.9.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4aa9741085f635934f3a2583e16fcf62ba835719a8b2b28fb2917bb0537c1dfa", size = 314986 }, + { url = "https://files.pythonhosted.org/packages/58/c0/8d9a1c02f217f900f248e0ee31377849f4041aff3d36b71b1f30b4a0fa33/yarl-1.9.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:206a55215e6d05dbc6c98ce598a59e6fbd0c493e2de4ea6cc2f4934d5a18d130", size = 308756 }, + { url = "https://files.pythonhosted.org/packages/0f/aa/e610398c48bc4a9d250d548cf065560e0192de4191e8568d28568c551963/yarl-1.9.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07574b007ee20e5c375a8fe4a0789fad26db905f9813be0f9fef5a68080de559", size = 298226 }, + { url = "https://files.pythonhosted.org/packages/7a/2e/fd7d98be29db31457930c7490047637991f65a3ad137ac60a020fd7546b2/yarl-1.9.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:5a2e2433eb9344a163aced6a5f6c9222c0786e5a9e9cac2c89f0b28433f56e23", size = 314961 }, + { url = "https://files.pythonhosted.org/packages/61/24/bbb3964f849adebe825dc00fff2905289b8bb203cf0f588ece27221cb8f5/yarl-1.9.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:6ad6d10ed9b67a382b45f29ea028f92d25bc0bc1daf6c5b801b90b5aa70fb9ec", size = 309636 }, + { url = "https://files.pythonhosted.org/packages/75/3c/6d5b2fe70f58528e7e38115da13778623c9a258dfc97f978f9d844948e92/yarl-1.9.4-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:6fe79f998a4052d79e1c30eeb7d6c1c1056ad33300f682465e1b4e9b5a188b78", size = 325489 }, + { url = "https://files.pythonhosted.org/packages/f6/ed/8dc99df4caae1650f82dce04628678f6f987150dd3baab0a62dc697101cc/yarl-1.9.4-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:a825ec844298c791fd28ed14ed1bffc56a98d15b8c58a20e0e08c1f5f2bea1be", size = 324841 }, + { url = "https://files.pythonhosted.org/packages/d2/fa/e401c492c2ebfab5958359b9837e71c20e5c0c6e2d77c5bad1a61d5310fd/yarl-1.9.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8619d6915b3b0b34420cf9b2bb6d81ef59d984cb0fde7544e9ece32b4b3043c3", size = 317004 }, + { url = "https://files.pythonhosted.org/packages/8e/d9/807f1ace5f3dfc74f2dc35cdb93838b8d89bd84ae91c9591b72ae5c4f7ee/yarl-1.9.4-cp38-cp38-win32.whl", hash = "sha256:686a0c2f85f83463272ddffd4deb5e591c98aac1897d65e92319f729c320eece", size = 70790 }, + { url = "https://files.pythonhosted.org/packages/16/3b/ce8756872540331d841aa8966056a90ee93c88d793f33e29af19f3ff2f3c/yarl-1.9.4-cp38-cp38-win_amd64.whl", hash = "sha256:a00862fb23195b6b8322f7d781b0dc1d82cb3bcac346d1e38689370cc1cc398b", size = 77055 }, + { url = "https://files.pythonhosted.org/packages/34/e7/9d51111429691ffdfb6ce526b2dd2b66fc9d2746df053ecb4062a3969f65/yarl-1.9.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:604f31d97fa493083ea21bd9b92c419012531c4e17ea6da0f65cacdcf5d0bd27", size = 134018 }, + { url = "https://files.pythonhosted.org/packages/8f/0f/9fa6f044b04267d22ec29df23936ffd4bf4572ccecd889c6b2b1761c2c5c/yarl-1.9.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8a854227cf581330ffa2c4824d96e52ee621dd571078a252c25e3a3b3d94a1b1", size = 83661 }, + { url = "https://files.pythonhosted.org/packages/f9/b0/c213007560d001c9908649ff4b1dd11d1ff388235e773828e19d4637f502/yarl-1.9.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ba6f52cbc7809cd8d74604cce9c14868306ae4aa0282016b641c661f981a6e91", size = 81842 }, + { url = "https://files.pythonhosted.org/packages/c6/d6/5b30ae1d8a13104ee2ceb649f28f2db5ad42afbd5697fd0fc61528bb112c/yarl-1.9.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a6327976c7c2f4ee6816eff196e25385ccc02cb81427952414a64811037bbc8b", size = 300908 }, + { url = "https://files.pythonhosted.org/packages/d0/50/af41ddf09ff0a6a3f952288ff4ed703a1a6ecc0fbb3a6a9fe50bd33dc7cc/yarl-1.9.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8397a3817d7dcdd14bb266283cd1d6fc7264a48c186b986f32e86d86d35fbac5", size = 315681 }, + { url = "https://files.pythonhosted.org/packages/ec/17/376715c245a28f81f01e72e832d84404cffd29576fcc645ee40e3c03f5f4/yarl-1.9.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e0381b4ce23ff92f8170080c97678040fc5b08da85e9e292292aba67fdac6c34", size = 312857 }, + { url = "https://files.pythonhosted.org/packages/69/ea/d7e961ea9b1b818a43b155ee512117be6ab9ab67c1e94967b2e64126e8e4/yarl-1.9.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:23d32a2594cb5d565d358a92e151315d1b2268bc10f4610d098f96b147370136", size = 304255 }, + { url = "https://files.pythonhosted.org/packages/46/8c/02d0c2eed8c6b41de0f8f26aeefc7a285779cbb370cc7bf043285de18a75/yarl-1.9.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ddb2a5c08a4eaaba605340fdee8fc08e406c56617566d9643ad8bf6852778fc7", size = 295014 }, + { url = "https://files.pythonhosted.org/packages/c2/5c/093c1fd1d8e95b1de4feb282fa3d9c3172c6d8cb5be2cfa19ca0170f9287/yarl-1.9.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:26a1dc6285e03f3cc9e839a2da83bcbf31dcb0d004c72d0730e755b33466c30e", size = 303653 }, + { url = "https://files.pythonhosted.org/packages/96/f1/c2af401567c7b32f908195c8c1a807670f20ea62e10866b71e1d9e3860a1/yarl-1.9.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:18580f672e44ce1238b82f7fb87d727c4a131f3a9d33a5e0e82b793362bf18b4", size = 298147 }, + { url = "https://files.pythonhosted.org/packages/65/ac/b5a3cc5bf4675db5d27ec92453e562f3ee4bfef5133ed071880ac07125e9/yarl-1.9.4-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:29e0f83f37610f173eb7e7b5562dd71467993495e568e708d99e9d1944f561ec", size = 314358 }, + { url = "https://files.pythonhosted.org/packages/3d/4d/b8a950fd92a3aa5c95039731d2eda32a701ac0c789663827e67e398c166a/yarl-1.9.4-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:1f23e4fe1e8794f74b6027d7cf19dc25f8b63af1483d91d595d4a07eca1fb26c", size = 313842 }, + { url = "https://files.pythonhosted.org/packages/57/68/bfac2e16a15af85234cbd2a5c82abb33caa98e981abbfd6e0f9458b6d1a9/yarl-1.9.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:db8e58b9d79200c76956cefd14d5c90af54416ff5353c5bfd7cbe58818e26ef0", size = 306771 }, + { url = "https://files.pythonhosted.org/packages/ab/5f/156e00c7bdc6d84efc7615fe0e14b2febf8ea360a8e1307fb3ba9cc14b73/yarl-1.9.4-cp39-cp39-win32.whl", hash = "sha256:c7224cab95645c7ab53791022ae77a4509472613e839dab722a72abe5a684575", size = 70773 }, + { url = "https://files.pythonhosted.org/packages/a4/e0/5b4376d7361fe09a46dbb206131e8d85b1cb845da03c212a620d5b6b98d8/yarl-1.9.4-cp39-cp39-win_amd64.whl", hash = "sha256:824d6c50492add5da9374875ce72db7a0733b29c2394890aef23d533106e2b15", size = 76935 }, + { url = "https://files.pythonhosted.org/packages/4d/05/4d79198ae568a92159de0f89e710a8d19e3fa267b719a236582eee921f4a/yarl-1.9.4-py3-none-any.whl", hash = "sha256:928cecb0ef9d5a7946eb6ff58417ad2fe9375762382f1bf5c55e61645f2c43ad", size = 31638 }, +] diff --git a/crates/uv/tests/snapshots/ecosystem__black-uv-lock-output.snap b/crates/uv/tests/snapshots/ecosystem__black-uv-lock-output.snap new file mode 100644 index 000000000000..a37280960d41 --- /dev/null +++ b/crates/uv/tests/snapshots/ecosystem__black-uv-lock-output.snap @@ -0,0 +1,11 @@ +--- +source: crates/uv/tests/ecosystem.rs +expression: snapshot +--- +success: true +exit_code: 0 +----- stdout ----- + +----- stderr ----- +warning: `uv lock` is experimental and may change without warning +Resolved 39 packages in [TIME] diff --git a/crates/uv/tests/snapshots/ecosystem__github-wikidata-bot-lock-file.snap b/crates/uv/tests/snapshots/ecosystem__github-wikidata-bot-lock-file.snap new file mode 100644 index 000000000000..93c218a8724d --- /dev/null +++ b/crates/uv/tests/snapshots/ecosystem__github-wikidata-bot-lock-file.snap @@ -0,0 +1,466 @@ +--- +source: crates/uv/tests/ecosystem.rs +expression: lock +--- +version = 1 +requires-python = ">=3.12" +environment-markers = [ + "python_version < '3.13'", + "python_version >= '3.13'", +] + +[options] +exclude-newer = "2024-08-08 00:00:00 UTC" + +[[package]] +name = "annotated-types" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ee/67/531ea369ba64dcff5ec9c3402f9f51bf748cec26dde048a2f973a4eea7f5/annotated_types-0.7.0.tar.gz", hash = "sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89", size = 16081 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl", hash = "sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53", size = 13643 }, +] + +[[package]] +name = "anyio" +version = "4.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "idna" }, + { name = "sniffio" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e6/e3/c4c8d473d6780ef1853d630d581f70d655b4f8d7553c6997958c283039a2/anyio-4.4.0.tar.gz", hash = "sha256:5aadc6a1bbb7cdb0bede386cac5e2940f5e2ff3aa20277e991cf028e0585ce94", size = 163930 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/a2/10639a79341f6c019dedc95bd48a4928eed9f1d1197f4c04f546fc7ae0ff/anyio-4.4.0-py3-none-any.whl", hash = "sha256:c1b2d8f46a8a812513012e1107cb0e68c17159a7a594208005a57dc776e1bdc7", size = 86780 }, +] + +[[package]] +name = "cachecontrol" +version = "0.14.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "msgpack" }, + { name = "requests" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/06/55/edea9d90ee57ca54d34707607d15c20f72576b96cb9f3e7fc266cb06b426/cachecontrol-0.14.0.tar.gz", hash = "sha256:7db1195b41c81f8274a7bbd97c956f44e8348265a1bc7641c37dfebc39f0c938", size = 28899 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a3/a9/7d331fec593a4b2953338df33e954aac6ff79eb5a073bca2783766bc7722/cachecontrol-0.14.0-py3-none-any.whl", hash = "sha256:f5bf3f0620c38db2e5122c0726bdebb0d16869de966ea6a2befe92470b740ea0", size = 22064 }, +] + +[package.optional-dependencies] +filecache = [ + { name = "filelock" }, +] + +[[package]] +name = "certifi" +version = "2024.7.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c2/02/a95f2b11e207f68bc64d7aae9666fed2e2b3f307748d5123dffb72a1bbea/certifi-2024.7.4.tar.gz", hash = "sha256:5a1e7645bc0ec61a09e26c36f6106dd4cf40c6db3a1fb6352b0244e7fb057c7b", size = 164065 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1c/d5/c84e1a17bf61d4df64ca866a1c9a913874b4e9bdc131ec689a0ad013fb36/certifi-2024.7.4-py3-none-any.whl", hash = "sha256:c198e21b1289c2ab85ee4e67bb4b4ef3ead0892059901a8d5b622f24a1101e90", size = 162960 }, +] + +[[package]] +name = "charset-normalizer" +version = "3.3.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/63/09/c1bc53dab74b1816a00d8d030de5bf98f724c52c1635e07681d312f20be8/charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5", size = 104809 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/b2/fcedc8255ec42afee97f9e6f0145c734bbe104aac28300214593eb326f1d/charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8", size = 192892 }, + { url = "https://files.pythonhosted.org/packages/2e/7d/2259318c202f3d17f3fe6438149b3b9e706d1070fe3fcbb28049730bb25c/charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b", size = 122213 }, + { url = "https://files.pythonhosted.org/packages/3a/52/9f9d17c3b54dc238de384c4cb5a2ef0e27985b42a0e5cc8e8a31d918d48d/charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6", size = 119404 }, + { url = "https://files.pythonhosted.org/packages/99/b0/9c365f6d79a9f0f3c379ddb40a256a67aa69c59609608fe7feb6235896e1/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a", size = 137275 }, + { url = "https://files.pythonhosted.org/packages/91/33/749df346e93d7a30cdcb90cbfdd41a06026317bfbfb62cd68307c1a3c543/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389", size = 147518 }, + { url = "https://files.pythonhosted.org/packages/72/1a/641d5c9f59e6af4c7b53da463d07600a695b9824e20849cb6eea8a627761/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa", size = 140182 }, + { url = "https://files.pythonhosted.org/packages/ee/fb/14d30eb4956408ee3ae09ad34299131fb383c47df355ddb428a7331cfa1e/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b", size = 141869 }, + { url = "https://files.pythonhosted.org/packages/df/3e/a06b18788ca2eb6695c9b22325b6fde7dde0f1d1838b1792a0076f58fe9d/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed", size = 144042 }, + { url = "https://files.pythonhosted.org/packages/45/59/3d27019d3b447a88fe7e7d004a1e04be220227760264cc41b405e863891b/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26", size = 138275 }, + { url = "https://files.pythonhosted.org/packages/7b/ef/5eb105530b4da8ae37d506ccfa25057961b7b63d581def6f99165ea89c7e/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d", size = 144819 }, + { url = "https://files.pythonhosted.org/packages/a2/51/e5023f937d7f307c948ed3e5c29c4b7a3e42ed2ee0b8cdf8f3a706089bf0/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068", size = 149415 }, + { url = "https://files.pythonhosted.org/packages/24/9d/2e3ef673dfd5be0154b20363c5cdcc5606f35666544381bee15af3778239/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143", size = 141212 }, + { url = "https://files.pythonhosted.org/packages/5b/ae/ce2c12fcac59cb3860b2e2d76dc405253a4475436b1861d95fe75bdea520/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4", size = 142167 }, + { url = "https://files.pythonhosted.org/packages/ed/3a/a448bf035dce5da359daf9ae8a16b8a39623cc395a2ffb1620aa1bce62b0/charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7", size = 93041 }, + { url = "https://files.pythonhosted.org/packages/b6/7c/8debebb4f90174074b827c63242c23851bdf00a532489fba57fef3416e40/charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001", size = 100397 }, + { url = "https://files.pythonhosted.org/packages/28/76/e6222113b83e3622caa4bb41032d0b1bf785250607392e1b778aca0b8a7d/charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc", size = 48543 }, +] + +[[package]] +name = "colorama" +version = "0.4.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335 }, +] + +[[package]] +name = "filelock" +version = "3.15.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/08/dd/49e06f09b6645156550fb9aee9cc1e59aba7efbc972d665a1bd6ae0435d4/filelock-3.15.4.tar.gz", hash = "sha256:2207938cbc1844345cb01a5a95524dae30f0ce089eba5b00378295a17e3e90cb", size = 18007 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ae/f0/48285f0262fe47103a4a45972ed2f9b93e4c80b8fd609fa98da78b2a5706/filelock-3.15.4-py3-none-any.whl", hash = "sha256:6ca1fffae96225dab4c6eaf1c4f4f28cd2568d3ec2a44e15a08520504de468e7", size = 16159 }, +] + +[[package]] +name = "github-wikidata-bot" +version = "0.4.0" +source = { editable = "." } +dependencies = [ + { name = "cachecontrol", extra = ["filecache"] }, + { name = "mwparserfromhell" }, + { name = "pydantic" }, + { name = "pywikibot" }, + { name = "sentry-sdk" }, + { name = "yarl" }, +] + +[package.dev-dependencies] +dev = [ + { name = "httpx" }, + { name = "pytest" }, + { name = "ruff" }, + { name = "tqdm" }, + { name = "types-requests" }, +] + +[[package]] +name = "h11" +version = "0.14.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f5/38/3af3d3633a34a3316095b39c8e8fb4853a28a536e55d347bd8d8e9a14b03/h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d", size = 100418 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/95/04/ff642e65ad6b90db43e668d70ffb6736436c7ce41fcc549f4e9472234127/h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761", size = 58259 }, +] + +[[package]] +name = "httpcore" +version = "1.0.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "h11" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/17/b0/5e8b8674f8d203335a62fdfcfa0d11ebe09e23613c3391033cbba35f7926/httpcore-1.0.5.tar.gz", hash = "sha256:34a38e2f9291467ee3b44e89dd52615370e152954ba21721378a87b2960f7a61", size = 83234 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/78/d4/e5d7e4f2174f8a4d63c8897d79eb8fe2503f7ecc03282fee1fa2719c2704/httpcore-1.0.5-py3-none-any.whl", hash = "sha256:421f18bac248b25d310f3cacd198d55b8e6125c107797b609ff9b7a6ba7991b5", size = 77926 }, +] + +[[package]] +name = "httpx" +version = "0.27.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, + { name = "certifi" }, + { name = "httpcore" }, + { name = "idna" }, + { name = "sniffio" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5c/2d/3da5bdf4408b8b2800061c339f240c1802f2e82d55e50bd39c5a881f47f0/httpx-0.27.0.tar.gz", hash = "sha256:a0cb88a46f32dc874e04ee956e4c2764aba2aa228f650b06788ba6bda2962ab5", size = 126413 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/41/7b/ddacf6dcebb42466abd03f368782142baa82e08fc0c1f8eaa05b4bae87d5/httpx-0.27.0-py3-none-any.whl", hash = "sha256:71d5465162c13681bff01ad59b2cc68dd838ea1f10e51574bac27103f00c91a5", size = 75590 }, +] + +[[package]] +name = "idna" +version = "3.7" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/21/ed/f86a79a07470cb07819390452f178b3bef1d375f2ec021ecfc709fc7cf07/idna-3.7.tar.gz", hash = "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc", size = 189575 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e5/3e/741d8c82801c347547f8a2a06aa57dbb1992be9e948df2ea0eda2c8b79e8/idna-3.7-py3-none-any.whl", hash = "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0", size = 66836 }, +] + +[[package]] +name = "iniconfig" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d7/4b/cbd8e699e64a6f16ca3a8220661b5f83792b3017d0f79807cb8708d33913/iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3", size = 4646 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374", size = 5892 }, +] + +[[package]] +name = "msgpack" +version = "1.0.8" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/08/4c/17adf86a8fbb02c144c7569dc4919483c01a2ac270307e2d59e1ce394087/msgpack-1.0.8.tar.gz", hash = "sha256:95c02b0e27e706e48d0e5426d1710ca78e0f0628d6e89d5b5a5b91a5f12274f3", size = 167014 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/97/73/757eeca26527ebac31d86d35bf4ba20155ee14d35c8619dd96bc80a037f3/msgpack-1.0.8-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:114be227f5213ef8b215c22dde19532f5da9652e56e8ce969bf0a26d7c419fee", size = 158948 }, + { url = "https://files.pythonhosted.org/packages/11/df/558899a5f90d450e988484be25be0b49c6930858d6fe44ea6f1f66502fe5/msgpack-1.0.8-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d661dc4785affa9d0edfdd1e59ec056a58b3dbb9f196fa43587f3ddac654ac7b", size = 88696 }, + { url = "https://files.pythonhosted.org/packages/99/3e/49d430df1e9abf06bb91e9824422cd6ceead2114662417286da3ddcdd295/msgpack-1.0.8-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d56fd9f1f1cdc8227d7b7918f55091349741904d9520c65f0139a9755952c9e8", size = 85428 }, + { url = "https://files.pythonhosted.org/packages/54/f7/84828d0c6be6b7f0770777f1a7b1f76f3a78e8b6afb5e4e9c1c9350242be/msgpack-1.0.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0726c282d188e204281ebd8de31724b7d749adebc086873a59efb8cf7ae27df3", size = 396116 }, + { url = "https://files.pythonhosted.org/packages/04/2a/c833a8503be9030083f0469e7a3c74d3622a3b4eae676c3934d3ccc01036/msgpack-1.0.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8db8e423192303ed77cff4dce3a4b88dbfaf43979d280181558af5e2c3c71afc", size = 408331 }, + { url = "https://files.pythonhosted.org/packages/04/50/b988d0a8e8835f705e4bbcb6433845ff11dd50083c0aa43e607bb7b2ff96/msgpack-1.0.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:99881222f4a8c2f641f25703963a5cefb076adffd959e0558dc9f803a52d6a58", size = 394182 }, + { url = "https://files.pythonhosted.org/packages/98/e1/0d18496cbeef771db605b6a14794f9b4235d371f36b43f7223c1613969ec/msgpack-1.0.8-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:b5505774ea2a73a86ea176e8a9a4a7c8bf5d521050f0f6f8426afe798689243f", size = 401226 }, + { url = "https://files.pythonhosted.org/packages/03/79/ae000bde2aee4b9f0d50c1ca1ab301ade873b59dd6968c28f918d1cf8be4/msgpack-1.0.8-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:ef254a06bcea461e65ff0373d8a0dd1ed3aa004af48839f002a0c994a6f72d04", size = 432994 }, + { url = "https://files.pythonhosted.org/packages/cb/46/f97bedf3ab16d38eeea0aafa3ad93cc7b9adf898218961faaea9c3c639f1/msgpack-1.0.8-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:e1dd7839443592d00e96db831eddb4111a2a81a46b028f0facd60a09ebbdd543", size = 410432 }, + { url = "https://files.pythonhosted.org/packages/8f/59/db5b61c74341b6fdf2c8a5743bb242c395d728666cf3105ff17290eb421a/msgpack-1.0.8-cp312-cp312-win32.whl", hash = "sha256:64d0fcd436c5683fdd7c907eeae5e2cbb5eb872fafbc03a43609d7941840995c", size = 69255 }, + { url = "https://files.pythonhosted.org/packages/72/5c/5facaa9b5d1b3ead831697daacf37d485af312bbe483ac6ecf43a3dd777f/msgpack-1.0.8-cp312-cp312-win_amd64.whl", hash = "sha256:74398a4cf19de42e1498368c36eed45d9528f5fd0155241e82c4082b7e16cffd", size = 75348 }, +] + +[[package]] +name = "multidict" +version = "6.0.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f9/79/722ca999a3a09a63b35aac12ec27dfa8e5bb3a38b0f857f7a1a209a88836/multidict-6.0.5.tar.gz", hash = "sha256:f7e301075edaf50500f0b341543c41194d8df3ae5caf4702f2095f3ca73dd8da", size = 59867 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/90/9c/7fda9c0defa09538c97b1f195394be82a1f53238536f70b32eb5399dfd4e/multidict-6.0.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:51d035609b86722963404f711db441cf7134f1889107fb171a970c9701f92e1e", size = 49575 }, + { url = "https://files.pythonhosted.org/packages/be/21/d6ca80dd1b9b2c5605ff7475699a8ff5dc6ea958cd71fb2ff234afc13d79/multidict-6.0.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:cbebcd5bcaf1eaf302617c114aa67569dd3f090dd0ce8ba9e35e9985b41ac35b", size = 29638 }, + { url = "https://files.pythonhosted.org/packages/9c/18/9565f32c19d186168731e859692dfbc0e98f66a1dcf9e14d69c02a78b75a/multidict-6.0.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2ffc42c922dbfddb4a4c3b438eb056828719f07608af27d163191cb3e3aa6cc5", size = 29874 }, + { url = "https://files.pythonhosted.org/packages/4e/4e/3815190e73e6ef101b5681c174c541bf972a1b064e926e56eea78d06e858/multidict-6.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ceb3b7e6a0135e092de86110c5a74e46bda4bd4fbfeeb3a3bcec79c0f861e450", size = 129914 }, + { url = "https://files.pythonhosted.org/packages/0c/08/bb47f886457e2259aefc10044e45c8a1b62f0c27228557e17775869d0341/multidict-6.0.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:79660376075cfd4b2c80f295528aa6beb2058fd289f4c9252f986751a4cd0496", size = 134589 }, + { url = "https://files.pythonhosted.org/packages/d5/2f/952f79b5f0795cf4e34852fc5cf4dfda6166f63c06c798361215b69c131d/multidict-6.0.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4428b29611e989719874670fd152b6625500ad6c686d464e99f5aaeeaca175a", size = 133259 }, + { url = "https://files.pythonhosted.org/packages/24/1f/af976383b0b772dd351210af5b60ff9927e3abb2f4a103e93da19a957da0/multidict-6.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d84a5c3a5f7ce6db1f999fb9438f686bc2e09d38143f2d93d8406ed2dd6b9226", size = 130779 }, + { url = "https://files.pythonhosted.org/packages/fc/b1/b0a7744be00b0f5045c7ed4e4a6b8ee6bde4672b2c620474712299df5979/multidict-6.0.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:76c0de87358b192de7ea9649beb392f107dcad9ad27276324c24c91774ca5271", size = 120125 }, + { url = "https://files.pythonhosted.org/packages/d0/bf/2a1d667acf11231cdf0b97a6cd9f30e7a5cf847037b5cf6da44884284bd0/multidict-6.0.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:79a6d2ba910adb2cbafc95dad936f8b9386e77c84c35bc0add315b856d7c3abb", size = 167095 }, + { url = "https://files.pythonhosted.org/packages/5e/e8/ad6ee74b1a2050d3bc78f566dabcc14c8bf89cbe87eecec866c011479815/multidict-6.0.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:92d16a3e275e38293623ebf639c471d3e03bb20b8ebb845237e0d3664914caef", size = 155823 }, + { url = "https://files.pythonhosted.org/packages/45/7c/06926bb91752c52abca3edbfefac1ea90d9d1bc00c84d0658c137589b920/multidict-6.0.5-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:fb616be3538599e797a2017cccca78e354c767165e8858ab5116813146041a24", size = 170233 }, + { url = "https://files.pythonhosted.org/packages/3c/29/3dd36cf6b9c5abba8b97bba84eb499a168ba59c3faec8829327b3887d123/multidict-6.0.5-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:14c2976aa9038c2629efa2c148022ed5eb4cb939e15ec7aace7ca932f48f9ba6", size = 169035 }, + { url = "https://files.pythonhosted.org/packages/60/47/9a0f43470c70bbf6e148311f78ef5a3d4996b0226b6d295bdd50fdcfe387/multidict-6.0.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:435a0984199d81ca178b9ae2c26ec3d49692d20ee29bc4c11a2a8d4514c67eda", size = 166229 }, + { url = "https://files.pythonhosted.org/packages/1d/23/c1b7ae7a0b8a3e08225284ef3ecbcf014b292a3ee821bc4ed2185fd4ce7d/multidict-6.0.5-cp312-cp312-win32.whl", hash = "sha256:9fe7b0653ba3d9d65cbe7698cca585bf0f8c83dbbcc710db9c90f478e175f2d5", size = 25840 }, + { url = "https://files.pythonhosted.org/packages/4a/68/66fceb758ad7a88993940dbdf3ac59911ba9dc46d7798bf6c8652f89f853/multidict-6.0.5-cp312-cp312-win_amd64.whl", hash = "sha256:01265f5e40f5a17f8241d52656ed27192be03bfa8764d88e8220141d1e4b3556", size = 27905 }, + { url = "https://files.pythonhosted.org/packages/fa/a2/17e1e23c6be0a916219c5292f509360c345b5fa6beeb50d743203c27532c/multidict-6.0.5-py3-none-any.whl", hash = "sha256:0d63c74e3d7ab26de115c49bffc92cc77ed23395303d496eae515d4204a625e7", size = 9729 }, +] + +[[package]] +name = "mwparserfromhell" +version = "0.6.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/47/aa/358f9af602b743ac8898353f240f678b69722801bd0625507c69d9755936/mwparserfromhell-0.6.6.tar.gz", hash = "sha256:71afec1e9784ba576e95d6f34845582d3c733a3a52ba770dd8a9c3a40e5b649f", size = 138899 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/61/c0/059513420490a2d96b470d4f560445d89f022a4749a20a952bfb002e2915/mwparserfromhell-0.6.6-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:910d36bc70e8bea758380e75c12fd47626b295abec9f73a6099d8f937a649e77", size = 124175 }, + { url = "https://files.pythonhosted.org/packages/bc/ab/da1b51303f0457c8cd343cf2d9a66fd0c5654fe8d0331c8107751459191f/mwparserfromhell-0.6.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d2febd92a55a3f19b461833267726cb81429c3d6cb0006ad1691dfa849789e5d", size = 203036 }, + { url = "https://files.pythonhosted.org/packages/7a/39/6bd8d9678e8b3f57babee36b5a9540db8cccba1b81a64ed56576c653994b/mwparserfromhell-0.6.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2b75fae6d01c8fda19dbf127175122d7aa2964ef6454690e6868bbc3d80a7bc1", size = 201886 }, + { url = "https://files.pythonhosted.org/packages/8e/e1/026ea60ac66a8bc9314230cc0c1ad2bf496ceb16a3771d4fcfd6ecc25971/mwparserfromhell-0.6.6-cp312-cp312-win32.whl", hash = "sha256:19e9a4bcd85707c83172405eb2a9a046eff9d38dd7f1a56a5e5ecbbfef4a640a", size = 98748 }, + { url = "https://files.pythonhosted.org/packages/78/09/24c2f37524a3ebc3574975766748c7e4423ecefaa815c9fc4a324cbcf94a/mwparserfromhell-0.6.6-cp312-cp312-win_amd64.whl", hash = "sha256:cdc46c115b2495d4025920b7b30a6885a96d2b797ccc4009bf3cc02940ae55d3", size = 101071 }, +] + +[[package]] +name = "packaging" +version = "24.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/51/65/50db4dda066951078f0a96cf12f4b9ada6e4b811516bf0262c0f4f7064d4/packaging-24.1.tar.gz", hash = "sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002", size = 148788 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/08/aa/cc0199a5f0ad350994d660967a8efb233fe0416e4639146c089643407ce6/packaging-24.1-py3-none-any.whl", hash = "sha256:5b8f2217dbdbd2f7f384c41c628544e6d52f2d0f53c6d0c3ea61aa5d1d7ff124", size = 53985 }, +] + +[[package]] +name = "pluggy" +version = "1.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/96/2d/02d4312c973c6050a18b314a5ad0b3210edb65a906f868e31c111dede4a6/pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1", size = 67955 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/5f/e351af9a41f866ac3f1fac4ca0613908d9a41741cfcf2228f4ad853b697d/pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669", size = 20556 }, +] + +[[package]] +name = "pydantic" +version = "2.8.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "annotated-types" }, + { name = "pydantic-core" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/8c/99/d0a5dca411e0a017762258013ba9905cd6e7baa9a3fd1fe8b6529472902e/pydantic-2.8.2.tar.gz", hash = "sha256:6f62c13d067b0755ad1c21a34bdd06c0c12625a22b0fc09c6b149816604f7c2a", size = 739834 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1f/fa/b7f815b8c9ad021c07f88875b601222ef5e70619391ade4a49234d12d278/pydantic-2.8.2-py3-none-any.whl", hash = "sha256:73ee9fddd406dc318b885c7a2eab8a6472b68b8fb5ba8150949fc3db939f23c8", size = 423875 }, +] + +[[package]] +name = "pydantic-core" +version = "2.20.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/12/e3/0d5ad91211dba310f7ded335f4dad871172b9cc9ce204f5a56d76ccd6247/pydantic_core-2.20.1.tar.gz", hash = "sha256:26ca695eeee5f9f1aeeb211ffc12f10bcb6f71e2989988fda61dabd65db878d4", size = 388371 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6f/47/ef0d60ae23c41aced42921728650460dc831a0adf604bfa66b76028cb4d0/pydantic_core-2.20.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:595ba5be69b35777474fa07f80fc260ea71255656191adb22a8c53aba4479231", size = 1839225 }, + { url = "https://files.pythonhosted.org/packages/6a/23/430f2878c9cd977a61bb39f71751d9310ec55cee36b3d5bf1752c6341fd0/pydantic_core-2.20.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a4f55095ad087474999ee28d3398bae183a66be4823f753cd7d67dd0153427c9", size = 1768604 }, + { url = "https://files.pythonhosted.org/packages/9e/2b/ec4e7225dee79e0dc80ccc3c35ab33cc2c4bbb8a1a7ecf060e5e453651ec/pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f9aa05d09ecf4c75157197f27cdc9cfaeb7c5f15021c6373932bf3e124af029f", size = 1789767 }, + { url = "https://files.pythonhosted.org/packages/64/b0/38b24a1fa6d2f96af3148362e10737ec073768cd44d3ec21dca3be40a519/pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e97fdf088d4b31ff4ba35db26d9cc472ac7ef4a2ff2badeabf8d727b3377fc52", size = 1772061 }, + { url = "https://files.pythonhosted.org/packages/5e/da/bb73274c42cb60decfa61e9eb0c9029da78b3b9af0a9de0309dbc8ff87b6/pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bc633a9fe1eb87e250b5c57d389cf28998e4292336926b0b6cdaee353f89a237", size = 1974573 }, + { url = "https://files.pythonhosted.org/packages/c8/65/41693110fb3552556180460daffdb8bbeefb87fc026fd9aa4b849374015c/pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d573faf8eb7e6b1cbbcb4f5b247c60ca8be39fe2c674495df0eb4318303137fe", size = 2625596 }, + { url = "https://files.pythonhosted.org/packages/09/b3/a5a54b47cccd1ab661ed5775235c5e06924753c2d4817737c5667bfa19a8/pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:26dc97754b57d2fd00ac2b24dfa341abffc380b823211994c4efac7f13b9e90e", size = 2099064 }, + { url = "https://files.pythonhosted.org/packages/52/fa/443a7a6ea54beaba45ff3a59f3d3e6e3004b7460bcfb0be77bcf98719d3b/pydantic_core-2.20.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:33499e85e739a4b60c9dac710c20a08dc73cb3240c9a0e22325e671b27b70d24", size = 1900345 }, + { url = "https://files.pythonhosted.org/packages/8e/e6/9aca9ffae60f9cdf0183069de3e271889b628d0fb175913fcb3db5618fb1/pydantic_core-2.20.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:bebb4d6715c814597f85297c332297c6ce81e29436125ca59d1159b07f423eb1", size = 1968252 }, + { url = "https://files.pythonhosted.org/packages/46/5e/6c716810ea20a6419188992973a73c2fb4eb99cd382368d0637ddb6d3c99/pydantic_core-2.20.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:516d9227919612425c8ef1c9b869bbbee249bc91912c8aaffb66116c0b447ebd", size = 2119191 }, + { url = "https://files.pythonhosted.org/packages/06/fc/6123b00a9240fbb9ae0babad7a005d51103d9a5d39c957a986f5cdd0c271/pydantic_core-2.20.1-cp312-none-win32.whl", hash = "sha256:469f29f9093c9d834432034d33f5fe45699e664f12a13bf38c04967ce233d688", size = 1717788 }, + { url = "https://files.pythonhosted.org/packages/d5/36/e61ad5a46607a469e2786f398cd671ebafcd9fb17f09a2359985c7228df5/pydantic_core-2.20.1-cp312-none-win_amd64.whl", hash = "sha256:035ede2e16da7281041f0e626459bcae33ed998cca6a0a007a5ebb73414ac72d", size = 1898188 }, + { url = "https://files.pythonhosted.org/packages/49/75/40b0e98b658fdba02a693b3bacb4c875a28bba87796c7b13975976597d8c/pydantic_core-2.20.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:0827505a5c87e8aa285dc31e9ec7f4a17c81a813d45f70b1d9164e03a813a686", size = 1838688 }, + { url = "https://files.pythonhosted.org/packages/75/02/d8ba2d4a266591a6a623c68b331b96523d4b62ab82a951794e3ed8907390/pydantic_core-2.20.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:19c0fa39fa154e7e0b7f82f88ef85faa2a4c23cc65aae2f5aea625e3c13c735a", size = 1768409 }, + { url = "https://files.pythonhosted.org/packages/91/ae/25ecd9bc4ce4993e99a1a3c9ab111c082630c914260e129572fafed4ecc2/pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa223cd1e36b642092c326d694d8bf59b71ddddc94cdb752bbbb1c5c91d833b", size = 1789317 }, + { url = "https://files.pythonhosted.org/packages/7a/80/72057580681cdbe55699c367963d9c661b569a1d39338b4f6239faf36cdc/pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c336a6d235522a62fef872c6295a42ecb0c4e1d0f1a3e500fe949415761b8a19", size = 1771949 }, + { url = "https://files.pythonhosted.org/packages/a2/be/d9bbabc55b05019013180f141fcaf3b14dbe15ca7da550e95b60c321009a/pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7eb6a0587eded33aeefea9f916899d42b1799b7b14b8f8ff2753c0ac1741edac", size = 1974392 }, + { url = "https://files.pythonhosted.org/packages/79/2d/7bcd938c6afb0f40293283f5f09988b61fb0a4f1d180abe7c23a2f665f8e/pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:70c8daf4faca8da5a6d655f9af86faf6ec2e1768f4b8b9d0226c02f3d6209703", size = 2625565 }, + { url = "https://files.pythonhosted.org/packages/ac/88/ca758e979457096008a4b16a064509028e3e092a1e85a5ed6c18ced8da88/pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9fa4c9bf273ca41f940bceb86922a7667cd5bf90e95dbb157cbb8441008482c", size = 2098784 }, + { url = "https://files.pythonhosted.org/packages/eb/de/2fad6d63c3c42e472e985acb12ec45b7f56e42e6f4cd6dfbc5e87ee8678c/pydantic_core-2.20.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:11b71d67b4725e7e2a9f6e9c0ac1239bbc0c48cce3dc59f98635efc57d6dac83", size = 1900198 }, + { url = "https://files.pythonhosted.org/packages/fe/50/077c7f35b6488dc369a6d22993af3a37901e198630f38ac43391ca730f5b/pydantic_core-2.20.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:270755f15174fb983890c49881e93f8f1b80f0b5e3a3cc1394a255706cabd203", size = 1968005 }, + { url = "https://files.pythonhosted.org/packages/5d/1f/f378631574ead46d636b9a04a80ff878b9365d4b361b1905ef1667d4182a/pydantic_core-2.20.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:c81131869240e3e568916ef4c307f8b99583efaa60a8112ef27a366eefba8ef0", size = 2118920 }, + { url = "https://files.pythonhosted.org/packages/7a/ea/e4943f17df7a3031d709481fe4363d4624ae875a6409aec34c28c9e6cf59/pydantic_core-2.20.1-cp313-none-win32.whl", hash = "sha256:b91ced227c41aa29c672814f50dbb05ec93536abf8f43cd14ec9521ea09afe4e", size = 1717397 }, + { url = "https://files.pythonhosted.org/packages/13/63/b95781763e8d84207025071c0cec16d921c0163c7a9033ae4b9a0e020dc7/pydantic_core-2.20.1-cp313-none-win_amd64.whl", hash = "sha256:65db0f2eefcaad1a3950f498aabb4875c8890438bc80b19362cf633b87a8ab20", size = 1898013 }, +] + +[[package]] +name = "pytest" +version = "8.3.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "iniconfig" }, + { name = "packaging" }, + { name = "pluggy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b4/8c/9862305bdcd6020bc7b45b1b5e7397a6caf1a33d3025b9a003b39075ffb2/pytest-8.3.2.tar.gz", hash = "sha256:c132345d12ce551242c87269de812483f5bcc87cdbb4722e48487ba194f9fdce", size = 1439314 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0f/f9/cf155cf32ca7d6fa3601bc4c5dd19086af4b320b706919d48a4c79081cf9/pytest-8.3.2-py3-none-any.whl", hash = "sha256:4ba08f9ae7dcf84ded419494d229b48d0903ea6407b030eaec46df5e6a73bba5", size = 341802 }, +] + +[[package]] +name = "pywikibot" +version = "9.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mwparserfromhell" }, + { name = "packaging" }, + { name = "requests" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/bb/ca/bb16494fd24971efab10d63a76e5d3dab49a83af89b045758a48cb8a21da/pywikibot-9.3.1.tar.gz", hash = "sha256:acf1d47e4d360c4ca36f7cbea25228ad8ee75e39c4aaa02bbbc71538ebc6f9bd", size = 618845 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/42/89/f1498904df08391a2f3171134164a9b63873cb43982cc7ead222f84c49a3/pywikibot-9.3.1-py3-none-any.whl", hash = "sha256:70ede0e5c41a2c51bd31b22ea91f5c3ddb088215fc623d556a903fe9f1facf30", size = 723754 }, +] + +[[package]] +name = "requests" +version = "2.32.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "charset-normalizer" }, + { name = "idna" }, + { name = "urllib3" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/63/70/2bf7780ad2d390a8d301ad0b550f1581eadbd9a20f896afe06353c2a2913/requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760", size = 131218 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/9b/335f9764261e915ed497fcdeb11df5dfd6f7bf257d4a6a2a686d80da4d54/requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6", size = 64928 }, +] + +[[package]] +name = "ruff" +version = "0.5.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f7/69/96766da2cdb5605e6a31ef2734aff0be17901cefb385b885c2ab88896d76/ruff-0.5.6.tar.gz", hash = "sha256:07c9e3c2a8e1fe377dd460371c3462671a728c981c3205a5217291422209f642", size = 2444466 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/85/54/af603686de0e9ba6c1798bd83d335e345e7c9ce4deed95a1071448bb6563/ruff-0.5.6-py3-none-linux_armv6l.whl", hash = "sha256:a0ef5930799a05522985b9cec8290b185952f3fcd86c1772c3bdbd732667fdcd", size = 9543715 }, + { url = "https://files.pythonhosted.org/packages/81/86/b22d250e1be2dcd11c749817d0cfe8be37efce6e6862c92ea037bedf6df9/ruff-0.5.6-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:b652dc14f6ef5d1552821e006f747802cc32d98d5509349e168f6bf0ee9f8f42", size = 8662814 }, + { url = "https://files.pythonhosted.org/packages/d2/e2/f97c58797fac1c7dd8226becfed55056fa7bbfb6d9c2e93900f2a27b540e/ruff-0.5.6-py3-none-macosx_11_0_arm64.whl", hash = "sha256:80521b88d26a45e871f31e4b88938fd87db7011bb961d8afd2664982dfc3641a", size = 8230427 }, + { url = "https://files.pythonhosted.org/packages/24/70/9f00cf1e2b50476751808ac6ebbfaa6dab3abab5514058f6bbca28a790bc/ruff-0.5.6-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d9bc8f328a9f1309ae80e4d392836e7dbc77303b38ed4a7112699e63d3b066ab", size = 9976713 }, + { url = "https://files.pythonhosted.org/packages/9b/02/309b171d867d819b7c76c46489597341ce85d70fefa05102a95130440005/ruff-0.5.6-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4d394940f61f7720ad371ddedf14722ee1d6250fd8d020f5ea5a86e7be217daf", size = 9345335 }, + { url = "https://files.pythonhosted.org/packages/37/42/74b84b97815a0b940f1438ff554ead1405d2556ff8e2da58d3c3068a2093/ruff-0.5.6-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:111a99cdb02f69ddb2571e2756e017a1496c2c3a2aeefe7b988ddab38b416d36", size = 10140380 }, + { url = "https://files.pythonhosted.org/packages/47/0c/705b979fe814498dfc3977bcdbf8c47059d2ed37b1c2128f1b77612eea82/ruff-0.5.6-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:e395daba77a79f6dc0d07311f94cc0560375ca20c06f354c7c99af3bf4560c5d", size = 10853490 }, + { url = "https://files.pythonhosted.org/packages/56/f1/400cc9a533fadba676783a2116526d1c26063d3228105bc75fa1c32a092b/ruff-0.5.6-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c476acb43c3c51e3c614a2e878ee1589655fa02dab19fe2db0423a06d6a5b1b6", size = 10425500 }, + { url = "https://files.pythonhosted.org/packages/f3/cd/f2cf6bc23a4293e3f8c365138f7279eea9179d1c4d3e09546d64daea40da/ruff-0.5.6-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2ff8003f5252fd68425fd53d27c1f08b201d7ed714bb31a55c9ac1d4c13e2eb", size = 11407463 }, + { url = "https://files.pythonhosted.org/packages/f8/cc/227428f39f8834d281b6d18f84f53e08a840ed63dec259e5e5e502284cec/ruff-0.5.6-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c94e084ba3eaa80c2172918c2ca2eb2230c3f15925f4ed8b6297260c6ef179ad", size = 10160402 }, + { url = "https://files.pythonhosted.org/packages/f3/61/218890d960ca146d3822e981a34834995081f3b741b82ca2585fd5ebc521/ruff-0.5.6-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:1f77c1c3aa0669fb230b06fb24ffa3e879391a3ba3f15e3d633a752da5a3e670", size = 9971344 }, + { url = "https://files.pythonhosted.org/packages/f1/20/bd444745ff7b51e497332ecf3f550bb62871dd24d61960997049fdbed268/ruff-0.5.6-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:f908148c93c02873210a52cad75a6eda856b2cbb72250370ce3afef6fb99b1ed", size = 9417963 }, + { url = "https://files.pythonhosted.org/packages/30/03/69b6d3735f284d93324ca31e36316574501130393f1a8e328a74775f4fb5/ruff-0.5.6-py3-none-musllinux_1_2_i686.whl", hash = "sha256:563a7ae61ad284187d3071d9041c08019975693ff655438d8d4be26e492760bd", size = 9769870 }, + { url = "https://files.pythonhosted.org/packages/7f/19/1c86dc40abef457124bb4abf90c68688eb2c7f9944903240c3b93d511360/ruff-0.5.6-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:94fe60869bfbf0521e04fd62b74cbca21cbc5beb67cbb75ab33fe8c174f54414", size = 10229991 }, + { url = "https://files.pythonhosted.org/packages/65/a7/60a19f3cfccdea5815bc31971f523f5b2ecd08162b05d1a0d5b8c37dff59/ruff-0.5.6-py3-none-win32.whl", hash = "sha256:e6a584c1de6f8591c2570e171cc7ce482bb983d49c70ddf014393cd39e9dfaed", size = 7789030 }, + { url = "https://files.pythonhosted.org/packages/27/c6/b51987072bba4a56537b6fc7036d9bf0694a9de6cceddaa0761475658632/ruff-0.5.6-py3-none-win_amd64.whl", hash = "sha256:d7fe7dccb1a89dc66785d7aa0ac283b2269712d8ed19c63af908fdccca5ccc1a", size = 8690520 }, + { url = "https://files.pythonhosted.org/packages/c0/b1/712801cf487fd78554029b02f980e24531f5994e2bf79b7ac55c1659dd52/ruff-0.5.6-py3-none-win_arm64.whl", hash = "sha256:57c6c0dd997b31b536bff49b9eee5ed3194d60605a4427f735eeb1f9c1b8d264", size = 8101938 }, +] + +[[package]] +name = "sentry-sdk" +version = "2.12.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "urllib3" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/2e/39/eb97e463e372b38d0b9c7ae705822d1df717940c04cb6d998ae15bf3eb02/sentry_sdk-2.12.0.tar.gz", hash = "sha256:8763840497b817d44c49b3fe3f5f7388d083f2337ffedf008b2cdb63b5c86dc6", size = 274179 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/71/29/744921222eb1bfef7a7e16e71fc122f518b315fc57624828b90028dfa02e/sentry_sdk-2.12.0-py2.py3-none-any.whl", hash = "sha256:7a8d5163d2ba5c5f4464628c6b68f85e86972f7c636acc78aed45c61b98b7a5e", size = 301807 }, +] + +[[package]] +name = "sniffio" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a2/87/a6771e1546d97e7e041b6ae58d80074f81b7d5121207425c964ddf5cfdbd/sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc", size = 20372 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2", size = 10235 }, +] + +[[package]] +name = "tqdm" +version = "4.66.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "platform_system == 'Windows'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/58/83/6ba9844a41128c62e810fddddd72473201f3eacde02046066142a2d96cc5/tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad", size = 169504 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/48/5d/acf5905c36149bbaec41ccf7f2b68814647347b72075ac0b1fe3022fdc73/tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd", size = 78351 }, +] + +[[package]] +name = "types-requests" +version = "2.32.0.20240712" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "urllib3" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5e/9e/7663eb27c33568b8fc20ccdaf2a1ce53a9530c42a7cceb9f552a6ff4a1d8/types-requests-2.32.0.20240712.tar.gz", hash = "sha256:90c079ff05e549f6bf50e02e910210b98b8ff1ebdd18e19c873cd237737c1358", size = 17896 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/30/4d/cbed87a6912fbd9259ce23a5d4aa1de9816edf75eec6ed9a757c00906c8e/types_requests-2.32.0.20240712-py3-none-any.whl", hash = "sha256:f754283e152c752e46e70942fa2a146b5bc70393522257bb85bd1ef7e019dcc3", size = 15816 }, +] + +[[package]] +name = "typing-extensions" +version = "4.12.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/df/db/f35a00659bc03fec321ba8bce9420de607a1d37f8342eee1863174c69557/typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8", size = 85321 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/26/9f/ad63fc0248c5379346306f8668cda6e2e2e9c95e01216d2b8ffd9ff037d0/typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d", size = 37438 }, +] + +[[package]] +name = "urllib3" +version = "2.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/43/6d/fa469ae21497ddc8bc93e5877702dca7cb8f911e337aca7452b5724f1bb6/urllib3-2.2.2.tar.gz", hash = "sha256:dd505485549a7a552833da5e6063639d0d177c04f23bc3864e41e5dc5f612168", size = 292266 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ca/1c/89ffc63a9605b583d5df2be791a27bc1a42b7c32bab68d3c8f2f73a98cd4/urllib3-2.2.2-py3-none-any.whl", hash = "sha256:a448b2f64d686155468037e1ace9f2d2199776e17f0a46610480d311f73e3472", size = 121444 }, +] + +[[package]] +name = "yarl" +version = "1.9.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "idna" }, + { name = "multidict" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e0/ad/bedcdccbcbf91363fd425a948994f3340924145c2bc8ccb296f4a1e52c28/yarl-1.9.4.tar.gz", hash = "sha256:566db86717cf8080b99b58b083b773a908ae40f06681e87e589a976faf8246bf", size = 141869 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/cd/a921122610dedfed94e494af18e85aae23e93274c00ca464cfc591c8f4fb/yarl-1.9.4-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0d2454f0aef65ea81037759be5ca9947539667eecebca092733b2eb43c965a81", size = 129561 }, + { url = "https://files.pythonhosted.org/packages/7c/a0/887c93020c788f249c24eaab288c46e5fed4d2846080eaf28ed3afc36e8d/yarl-1.9.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:44d8ffbb9c06e5a7f529f38f53eda23e50d1ed33c6c869e01481d3fafa6b8142", size = 81595 }, + { url = "https://files.pythonhosted.org/packages/54/99/ed3c92c38f421ba6e36caf6aa91c34118771d252dce800118fa2f44d7962/yarl-1.9.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:aaaea1e536f98754a6e5c56091baa1b6ce2f2700cc4a00b0d49eca8dea471074", size = 79400 }, + { url = "https://files.pythonhosted.org/packages/ea/45/65801be625ef939acc8b714cf86d4a198c0646e80dc8970359d080c47204/yarl-1.9.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3777ce5536d17989c91696db1d459574e9a9bd37660ea7ee4d3344579bb6f129", size = 317397 }, + { url = "https://files.pythonhosted.org/packages/06/91/9696601a8ba674c8f0c15035cc9e94ca31f541330364adcfd5a399f598bf/yarl-1.9.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fc5fc1eeb029757349ad26bbc5880557389a03fa6ada41703db5e068881e5f2", size = 327246 }, + { url = "https://files.pythonhosted.org/packages/da/3e/bf25177b3618889bf067aacf01ef54e910cd569d14e2f84f5e7bec23bb82/yarl-1.9.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ea65804b5dc88dacd4a40279af0cdadcfe74b3e5b4c897aa0d81cf86927fee78", size = 327321 }, + { url = "https://files.pythonhosted.org/packages/28/1c/bdb3411467b805737dd2720b85fd082e49f59bf0cc12dc1dfcc80ab3d274/yarl-1.9.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa102d6d280a5455ad6a0f9e6d769989638718e938a6a0a2ff3f4a7ff8c62cc4", size = 322424 }, + { url = "https://files.pythonhosted.org/packages/41/e9/53bc89f039df2824a524a2aa03ee0bfb8f0585b08949e7521f5eab607085/yarl-1.9.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09efe4615ada057ba2d30df871d2f668af661e971dfeedf0c159927d48bbeff0", size = 310868 }, + { url = "https://files.pythonhosted.org/packages/79/cd/a78c3b0304a4a970b5ae3993f4f5f649443bc8bfa5622f244aed44c810ed/yarl-1.9.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:008d3e808d03ef28542372d01057fd09168419cdc8f848efe2804f894ae03e51", size = 323452 }, + { url = "https://files.pythonhosted.org/packages/2e/5e/1c78eb05ae0efae08498fd7ab939435a29f12c7f161732e7fe327e5b8ca1/yarl-1.9.4-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:6f5cb257bc2ec58f437da2b37a8cd48f666db96d47b8a3115c29f316313654ff", size = 313554 }, + { url = "https://files.pythonhosted.org/packages/04/e0/0029563a8434472697aebb269fdd2ffc8a19e3840add1d5fa169ec7c56e3/yarl-1.9.4-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:992f18e0ea248ee03b5a6e8b3b4738850ae7dbb172cc41c966462801cbf62cf7", size = 331029 }, + { url = "https://files.pythonhosted.org/packages/de/1b/7e6b1ad42ccc0ed059066a7ae2b6fd4bce67795d109a99ccce52e9824e96/yarl-1.9.4-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:0e9d124c191d5b881060a9e5060627694c3bdd1fe24c5eecc8d5d7d0eb6faabc", size = 333839 }, + { url = "https://files.pythonhosted.org/packages/85/8a/c364d6e2eeb4e128a5ee9a346fc3a09aa76739c0c4e2a7305989b54f174b/yarl-1.9.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:3986b6f41ad22988e53d5778f91855dc0399b043fc8946d4f2e68af22ee9ff10", size = 328251 }, + { url = "https://files.pythonhosted.org/packages/ec/9d/0da94b33b9fb89041e10f95a14a55b0fef36c60b6a1d5ff85a0c2ecb1a97/yarl-1.9.4-cp312-cp312-win32.whl", hash = "sha256:4b21516d181cd77ebd06ce160ef8cc2a5e9ad35fb1c5930882baff5ac865eee7", size = 70195 }, + { url = "https://files.pythonhosted.org/packages/c5/f4/2fdc5a11503bc61818243653d836061c9ce0370e2dd9ac5917258a007675/yarl-1.9.4-cp312-cp312-win_amd64.whl", hash = "sha256:a9bd00dc3bc395a662900f33f74feb3e757429e545d831eef5bb280252631984", size = 76397 }, + { url = "https://files.pythonhosted.org/packages/4d/05/4d79198ae568a92159de0f89e710a8d19e3fa267b719a236582eee921f4a/yarl-1.9.4-py3-none-any.whl", hash = "sha256:928cecb0ef9d5a7946eb6ff58417ad2fe9375762382f1bf5c55e61645f2c43ad", size = 31638 }, +] diff --git a/crates/uv/tests/snapshots/ecosystem__github-wikidata-bot-uv-lock-output.snap b/crates/uv/tests/snapshots/ecosystem__github-wikidata-bot-uv-lock-output.snap new file mode 100644 index 000000000000..1297a030d4da --- /dev/null +++ b/crates/uv/tests/snapshots/ecosystem__github-wikidata-bot-uv-lock-output.snap @@ -0,0 +1,11 @@ +--- +source: crates/uv/tests/ecosystem.rs +expression: snapshot +--- +success: true +exit_code: 0 +----- stdout ----- + +----- stderr ----- +warning: `uv lock` is experimental and may change without warning +Resolved 31 packages in [TIME] diff --git a/crates/uv/tests/snapshots/ecosystem__home-assistant-core-lock-file.snap b/crates/uv/tests/snapshots/ecosystem__home-assistant-core-lock-file.snap new file mode 100644 index 000000000000..1762f4d49d61 --- /dev/null +++ b/crates/uv/tests/snapshots/ecosystem__home-assistant-core-lock-file.snap @@ -0,0 +1,1397 @@ +--- +source: crates/uv/tests/ecosystem.rs +expression: lock +--- +version = 1 +requires-python = ">=3.12.[X]" + +[options] +exclude-newer = "2024-08-08 00:00:00 UTC" + +[[package]] +name = "acme" +version = "2.10.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cryptography" }, + { name = "josepy" }, + { name = "pyopenssl" }, + { name = "pyrfc3339" }, + { name = "pytz" }, + { name = "requests" }, + { name = "setuptools" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f1/eb/7731d7e3c099adaaa814ecf12bd1f6741605b8d80e9b33b69a51849cf280/acme-2.10.0.tar.gz", hash = "sha256:de110d6550f22094c920ad6022f4b329380a6bd8f58dd671135c6226c3a470cc", size = 91659 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6e/c8/39ca7907482766a3ea3af436474735a0051dba97253b1241794a58eb88b9/acme-2.10.0-py3-none-any.whl", hash = "sha256:4a46172573608195a44a13e10f2b7c862cfd1f4046a913c765a936ba1bb7261d", size = 95757 }, +] + +[[package]] +name = "aiodns" +version = "3.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pycares" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e7/84/41a6a2765abc124563f5380e76b9b24118977729e25a84112f8dfb2b33dc/aiodns-3.2.0.tar.gz", hash = "sha256:62869b23409349c21b072883ec8998316b234c9a9e36675756e8e317e8768f72", size = 7823 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/15/14/13c65b1bd59f7e707e0cc0964fbab45c003f90292ed267d159eeeeaa2224/aiodns-3.2.0-py3-none-any.whl", hash = "sha256:e443c0c27b07da3174a109fd9e736d69058d808f144d3c9d56dbd1776964c5f5", size = 5735 }, +] + +[[package]] +name = "aiohttp" +version = "3.9.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "aiosignal" }, + { name = "attrs" }, + { name = "frozenlist" }, + { name = "multidict" }, + { name = "yarl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/04/a4/e3679773ea7eb5b37a2c998e25b017cc5349edf6ba2739d1f32855cfb11b/aiohttp-3.9.5.tar.gz", hash = "sha256:edea7d15772ceeb29db4aff55e482d4bcfb6ae160ce144f2682de02f6d693551", size = 7504841 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5e/25/c6bd6cb160a4dc81f83adbc9bdd6758f01932a6c81a3e4ac707746e7855e/aiohttp-3.9.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:c7a4b7a6cf5b6eb11e109a9755fd4fda7d57395f8c575e166d363b9fc3ec4678", size = 595330 }, + { url = "https://files.pythonhosted.org/packages/18/5f/f6428eb55244d44e1c674c8c823ae1567136ac1d2f8b128e194dd4febbe1/aiohttp-3.9.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:0a158704edf0abcac8ac371fbb54044f3270bdbc93e254a82b6c82be1ef08f3c", size = 395974 }, + { url = "https://files.pythonhosted.org/packages/78/28/2080ed3140b7d25c406f77fe2d5776edd9c7a25228f7f905d7058a6e2d61/aiohttp-3.9.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d153f652a687a8e95ad367a86a61e8d53d528b0530ef382ec5aaf533140ed00f", size = 392399 }, + { url = "https://files.pythonhosted.org/packages/d3/c0/cd9d02e1b9e1b1073c94f7692ffe69067987c4acc0252bbc0c7645360d37/aiohttp-3.9.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82a6a97d9771cb48ae16979c3a3a9a18b600a8505b1115cfe354dfb2054468b4", size = 1322648 }, + { url = "https://files.pythonhosted.org/packages/f2/fb/d65d58230e9ed5cfed886b0c433634bfb14cbe183125e84de909559e29e7/aiohttp-3.9.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:60cdbd56f4cad9f69c35eaac0fbbdf1f77b0ff9456cebd4902f3dd1cf096464c", size = 1362078 }, + { url = "https://files.pythonhosted.org/packages/a6/39/ca4fc97af53167ff6c8888a59002b17447bddd8dd474ae0f0e778446cfe7/aiohttp-3.9.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8676e8fd73141ded15ea586de0b7cda1542960a7b9ad89b2b06428e97125d4fa", size = 1404667 }, + { url = "https://files.pythonhosted.org/packages/dd/0a/526c8480bd846b9155c624c7e54db94733fc6b381dfd748cc8dd69c994b0/aiohttp-3.9.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da00da442a0e31f1c69d26d224e1efd3a1ca5bcbf210978a2ca7426dfcae9f58", size = 1317772 }, + { url = "https://files.pythonhosted.org/packages/0c/ea/8e1bd13e39b3f4c37889b8480f04ed398e07017f5709d66d4e1d0dee39fe/aiohttp-3.9.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:18f634d540dd099c262e9f887c8bbacc959847cfe5da7a0e2e1cf3f14dbf2daf", size = 1269636 }, + { url = "https://files.pythonhosted.org/packages/2a/ac/7c00027510f42a21c0a905f2472d9afef7ea276573357829bfe8c12883d4/aiohttp-3.9.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:320e8618eda64e19d11bdb3bd04ccc0a816c17eaecb7e4945d01deee2a22f95f", size = 1324957 }, + { url = "https://files.pythonhosted.org/packages/e3/f5/e0c216a12b2490cbecd79e9b7671f4e50dfc72e9a52347943aabe6f5bc44/aiohttp-3.9.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:2faa61a904b83142747fc6a6d7ad8fccff898c849123030f8e75d5d967fd4a81", size = 1267548 }, + { url = "https://files.pythonhosted.org/packages/88/31/e55083b026428324cde827c04bdfbc837c131f9d3ee38d28c766614b09ef/aiohttp-3.9.5-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:8c64a6dc3fe5db7b1b4d2b5cb84c4f677768bdc340611eca673afb7cf416ef5a", size = 1353136 }, + { url = "https://files.pythonhosted.org/packages/54/8e/72d1ddd6e653b6d4b7b1fece7619287d3319bae10ad3a7f12d956bcc9e96/aiohttp-3.9.5-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:393c7aba2b55559ef7ab791c94b44f7482a07bf7640d17b341b79081f5e5cd1a", size = 1400946 }, + { url = "https://files.pythonhosted.org/packages/5c/f1/f61b397a0eaf01d197e610b0f56935b0002d688f27d73af2882b282fc2f8/aiohttp-3.9.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:c671dc117c2c21a1ca10c116cfcd6e3e44da7fcde37bf83b2be485ab377b25da", size = 1319358 }, + { url = "https://files.pythonhosted.org/packages/d1/5d/8cb20df780921adf9f436f214350729b12873742abd697c981229c554acc/aiohttp-3.9.5-cp312-cp312-win32.whl", hash = "sha256:5a7ee16aab26e76add4afc45e8f8206c95d1d75540f1039b84a03c3b3800dd59", size = 347602 }, + { url = "https://files.pythonhosted.org/packages/a0/00/cdbda8b406ce7b656b9cb765f8134b1edb999f816f54e47347d2bc67f4bf/aiohttp-3.9.5-cp312-cp312-win_amd64.whl", hash = "sha256:5ca51eadbd67045396bc92a4345d1790b7301c14d1848feaac1d6a6c9289e888", size = 369012 }, +] + +[[package]] +name = "aiohttp-cors" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "aiohttp" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/44/9e/6cdce7c3f346d8fd487adf68761728ad8cd5fbc296a7b07b92518350d31f/aiohttp-cors-0.7.0.tar.gz", hash = "sha256:4d39c6d7100fd9764ed1caf8cebf0eb01bf5e3f24e2e073fda6234bc48b19f5d", size = 35966 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/13/e7/e436a0c0eb5127d8b491a9b83ecd2391c6ff7dcd5548dfaec2080a2340fd/aiohttp_cors-0.7.0-py3-none-any.whl", hash = "sha256:0451ba59fdf6909d0e2cd21e4c0a43752bc0703d33fc78ae94d9d9321710193e", size = 27564 }, +] + +[[package]] +name = "aiohttp-fast-url-dispatcher" +version = "0.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "aiohttp" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/78/e8/ad774b006fc21425ee29708de0f58696d8f1f5a9a9ce1f744e72ee8b4bfd/aiohttp_fast_url_dispatcher-0.3.0.tar.gz", hash = "sha256:0fc11c60a4209429340d9d2d07b6b0819a45ebd0d47ceb78bea915dbe042addd", size = 9166 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1d/90/9042a3a566903fbc65396058dcd4fa5b04929cc748d3e3754ae06b4957c5/aiohttp_fast_url_dispatcher-0.3.0-py3-none-any.whl", hash = "sha256:e038458a34b79ef7c276b3257a1cdc73625da92cf4b64c2d0aefc4fe04dcdbbb", size = 8901 }, +] + +[[package]] +name = "aiohttp-fast-zlib" +version = "0.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "aiohttp" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b3/13/43ca2a5e3bb1d2df0caac3de00792408531cf238066c27e156bd6b88c3d3/aiohttp_fast_zlib-0.1.0.tar.gz", hash = "sha256:46656935c38b7022fbe524de589c2372f3b8f7ebd2029dc47467c0c4d9a65fdc", size = 8509 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/1a/6102591a5941206ccb4c210477fffb2d3740045d4fad1355758ffb9dac92/aiohttp_fast_zlib-0.1.0-py3-none-any.whl", hash = "sha256:bc50b873befaf473f2fdee1c4bdf06b7a24ab30538c6534f367ab77e8d41512c", size = 8245 }, +] + +[[package]] +name = "aiooui" +version = "0.1.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/99/4b/4c94321f325b037035b04b4f9a5aab7ba6c890a1e268a66ce59d606795c4/aiooui-0.1.6.tar.gz", hash = "sha256:078c2def77fedb1f28f6f74d1435e39b8e545be423cc1175560b8279bf93bc64", size = 382004 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d2/37/036d2c57df731c2af001875361f2cd871abf104ad8c00cdff43bfaf86b1a/aiooui-0.1.6-py3-none-any.whl", hash = "sha256:7fe914c214dc48b3d466e396bb2a0bd9872d416ff27b4d8351aed9e5d2b14be2", size = 379995 }, +] + +[[package]] +name = "aiosignal" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "frozenlist" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ae/67/0952ed97a9793b4958e5736f6d2b346b414a2cd63e82d05940032f45b32f/aiosignal-1.3.1.tar.gz", hash = "sha256:54cd96e15e1649b75d6c87526a6ff0b6c1b0dd3459f43d9ca11d48c339b68cfc", size = 19422 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/76/ac/a7305707cb852b7e16ff80eaf5692309bde30e2b1100a1fcacdc8f731d97/aiosignal-1.3.1-py3-none-any.whl", hash = "sha256:f8376fb07dd1e86a584e4fcdec80b36b7f81aac666ebc724e2c090300dd83b17", size = 7617 }, +] + +[[package]] +name = "aiozoneinfo" +version = "0.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "tzdata" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5e/65/af4e39d5c5e050fdae0ac31f6d9e3b803038aa0906f0e7f6d66f6badd108/aiozoneinfo-0.2.0.tar.gz", hash = "sha256:958b3152ef3e8f0b1b661563e68388431a0950ac7d5778b08353e94155924e70", size = 8497 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/12/23/edb11026b1338dbb6c8c22196e154bcca6018d5387bca048dbb2041eb4a1/aiozoneinfo-0.2.0-py3-none-any.whl", hash = "sha256:93731f6af7471a7fcf616c2855033822bd31fa1f60d764ccc034329b96e96718", size = 8016 }, +] + +[[package]] +name = "anyio" +version = "4.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "idna" }, + { name = "sniffio" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e6/e3/c4c8d473d6780ef1853d630d581f70d655b4f8d7553c6997958c283039a2/anyio-4.4.0.tar.gz", hash = "sha256:5aadc6a1bbb7cdb0bede386cac5e2940f5e2ff3aa20277e991cf028e0585ce94", size = 163930 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/a2/10639a79341f6c019dedc95bd48a4928eed9f1d1197f4c04f546fc7ae0ff/anyio-4.4.0-py3-none-any.whl", hash = "sha256:c1b2d8f46a8a812513012e1107cb0e68c17159a7a594208005a57dc776e1bdc7", size = 86780 }, +] + +[[package]] +name = "astral" +version = "2.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pytz" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ad/c3/76dfe55a68c48a1a6f3d2eeab2793ebffa9db8adfba82774a7e0f5f43980/astral-2.2.tar.gz", hash = "sha256:e41d9967d5c48be421346552f0f4dedad43ff39a83574f5ff2ad32b6627b6fbe", size = 578223 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/91/60/7cc241b9c3710ebadddcb323e77dd422c693183aec92449a1cf1fb59e1ba/astral-2.2-py2.py3-none-any.whl", hash = "sha256:b9ef70faf32e81a8ba174d21e8f29dc0b53b409ef035f27e0749ddc13cb5982a", size = 30775 }, +] + +[[package]] +name = "async-interrupt" +version = "1.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6e/cb/4e2b30cb2b99fbf02bf8d56f2f3ef71cc69bbbc6c0ef2906a470d69b1ea0/async_interrupt-1.1.1.tar.gz", hash = "sha256:1e5999f0980b5db21293e4cd022518eeaf52284c0499631932a1df250cb99215", size = 8596 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/6a/f6f9d0dec43a21718e4a67e05f0288ca8a47227c427475227701e4d831d7/async_interrupt-1.1.1-py3-none-any.whl", hash = "sha256:b0d8c8228b75834fd39608382e1c721d3e68e0011443e0f434b8e8e1cc7bd391", size = 8938 }, +] + +[[package]] +name = "async-timeout" +version = "4.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/87/d6/21b30a550dafea84b1b8eee21b5e23fa16d010ae006011221f33dcd8d7f8/async-timeout-4.0.3.tar.gz", hash = "sha256:4640d96be84d82d02ed59ea2b7105a0f7b33abe8703703cd0ab0bf87c427522f", size = 8345 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/fa/e01228c2938de91d47b307831c62ab9e4001e747789d0b05baf779a6488c/async_timeout-4.0.3-py3-none-any.whl", hash = "sha256:7405140ff1230c310e51dc27b3145b9092d659ce68ff733fb0cefe3ee42be028", size = 5721 }, +] + +[[package]] +name = "atomicwrites-homeassistant" +version = "1.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9a/5a/10ff0fd9aa04f78a0b31bb617c8d29796a12bea33f1e48aa54687d635e44/atomicwrites-homeassistant-1.4.1.tar.gz", hash = "sha256:256a672106f16745445228d966240b77b55f46a096d20305901a57aa5d1f4c2f", size = 12223 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4e/1b/872dd3b11939edb4c0a27d2569a9b7e77d3b88995a45a331f376e13528c0/atomicwrites_homeassistant-1.4.1-py2.py3-none-any.whl", hash = "sha256:01457de800961db7d5b575f3c92e7fb56e435d88512c366afb0873f4f092bb0d", size = 7128 }, +] + +[[package]] +name = "attrs" +version = "23.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e3/fc/f800d51204003fa8ae392c4e8278f256206e7a919b708eef054f5f4b650d/attrs-23.2.0.tar.gz", hash = "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30", size = 780820 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e0/44/827b2a91a5816512fcaf3cc4ebc465ccd5d598c45cefa6703fcf4a79018f/attrs-23.2.0-py3-none-any.whl", hash = "sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1", size = 60752 }, +] + +[[package]] +name = "awesomeversion" +version = "24.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a6/9f/fcc3018c04703bac014acc7f7043d8db6929a330757bccbbfbbf6b034867/awesomeversion-24.2.0.tar.gz", hash = "sha256:47a6dcbbe2921b725f75106a66ab30f26f1f33dbc5e07bc8e1e39d8eb921f53c", size = 12040 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/99/37/c1a78ddd853e2db9d509994f57063f75e70b21844585f38f37867c423f50/awesomeversion-24.2.0-py3-none-any.whl", hash = "sha256:ba365d1ad4e42aa5afdbc46b639f349e52db2d859d7c46a34744ca15ebf1430a", size = 13946 }, +] + +[[package]] +name = "bcrypt" +version = "4.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/72/07/6a6f2047a9dc9d012b7b977e4041d37d078b76b44b7ee4daf331c1e6fb35/bcrypt-4.1.2.tar.gz", hash = "sha256:33313a1200a3ae90b75587ceac502b048b840fc69e7f7a0905b5f87fac7a1258", size = 26356 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/df/cc/5a73c2ecfa9f255423530e8aeaceb0590da12e4c83c99fdac17093f5ce42/bcrypt-4.1.2-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:ac621c093edb28200728a9cca214d7e838529e557027ef0581685909acd28b5e", size = 528438 }, + { url = "https://files.pythonhosted.org/packages/22/2e/32c1810b8470aca98c33892fc8c559c1be95eba711cb1bb82fbbf2a4752a/bcrypt-4.1.2-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ea505c97a5c465ab8c3ba75c0805a102ce526695cd6818c6de3b1a38f6f60da1", size = 695692 }, + { url = "https://files.pythonhosted.org/packages/41/ed/e446078ebe94d8ccac7170ff4bab83d8c86458c6fcfc7c5a4b449974fdd6/bcrypt-4.1.2-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:57fa9442758da926ed33a91644649d3e340a71e2d0a5a8de064fb621fd5a3326", size = 699072 }, + { url = "https://files.pythonhosted.org/packages/6d/7c/761ab4586beb7aa14b3fa2f382794746a218fffe1d22d9e10926200c8ccd/bcrypt-4.1.2-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:eb3bd3321517916696233b5e0c67fd7d6281f0ef48e66812db35fc963a422a1c", size = 695934 }, + { url = "https://files.pythonhosted.org/packages/91/21/6350647549656138a067788d67bdb5ee89ffc2f025618ebf60d3806274c4/bcrypt-4.1.2-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:6cad43d8c63f34b26aef462b6f5e44fdcf9860b723d2453b5d391258c4c8e966", size = 699120 }, + { url = "https://files.pythonhosted.org/packages/54/fc/fd9a299d4dfd7da38b4570e487ea2465fb92021ab31a08bd66b3caba0baa/bcrypt-4.1.2-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:44290ccc827d3a24604f2c8bcd00d0da349e336e6503656cb8192133e27335e2", size = 725857 }, + { url = "https://files.pythonhosted.org/packages/5a/5b/dfcd8b7422a8f3b4ce3d28d64307e2f3502e3b5c540dde35eccda2d6c763/bcrypt-4.1.2-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:732b3920a08eacf12f93e6b04ea276c489f1c8fb49344f564cca2adb663b3e4c", size = 730079 }, + { url = "https://files.pythonhosted.org/packages/21/d9/7924b194b3aa9bcc39f4592470995841efe71015cb8a79abae9bb043ec28/bcrypt-4.1.2-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:1c28973decf4e0e69cee78c68e30a523be441972c826703bb93099868a8ff5b5", size = 732432 }, + { url = "https://files.pythonhosted.org/packages/bf/26/ec53ccf5cadc81891d53cf0c117cff0f973d98cab6e9d6979578ca5aceeb/bcrypt-4.1.2-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:b8df79979c5bae07f1db22dcc49cc5bccf08a0380ca5c6f391cbb5790355c0b0", size = 750035 }, + { url = "https://files.pythonhosted.org/packages/b0/df/a1ac4188ee865236aba0a747773985a0f39211037f75a2d881a3be206a4e/bcrypt-4.1.2-cp37-abi3-win32.whl", hash = "sha256:fbe188b878313d01b7718390f31528be4010fed1faa798c5a1d0469c9c48c369", size = 171222 }, + { url = "https://files.pythonhosted.org/packages/a1/c8/09eb0bd262b8b64f5ce99cb7f99984769fd1dbf35bdcd63d41a7b713c09f/bcrypt-4.1.2-cp37-abi3-win_amd64.whl", hash = "sha256:9800ae5bd5077b13725e2e3934aa3c9c37e49d3ea3d06318010aa40f54c63551", size = 158340 }, + { url = "https://files.pythonhosted.org/packages/a4/72/a1276d2fbf5d1af0e29ff9fb5220ce1d49a5f94ccbfb4f9141c963ff9d0e/bcrypt-4.1.2-cp39-abi3-macosx_10_12_universal2.whl", hash = "sha256:71b8be82bc46cedd61a9f4ccb6c1a493211d031415a34adde3669ee1b0afbb63", size = 528460 }, + { url = "https://files.pythonhosted.org/packages/42/c4/13c4bba7e25633b2e94724c642aa93ce376c476d80ecd50d73f0fe2eb38f/bcrypt-4.1.2-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e3c6642077b0c8092580c819c1684161262b2e30c4f45deb000c38947bf483", size = 695634 }, + { url = "https://files.pythonhosted.org/packages/72/3d/925adb5f5bef7616b504227a431fcaadd9630044802b5c81a31a560b4369/bcrypt-4.1.2-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:387e7e1af9a4dd636b9505a465032f2f5cb8e61ba1120e79a0e1cd0b512f3dfc", size = 698763 }, + { url = "https://files.pythonhosted.org/packages/b6/1b/1c1cf4efe142dfe6fab912c16766d3eab65b87f33f1d13a08238afce5fdf/bcrypt-4.1.2-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:f70d9c61f9c4ca7d57f3bfe88a5ccf62546ffbadf3681bb1e268d9d2e41c91a7", size = 695781 }, + { url = "https://files.pythonhosted.org/packages/42/9d/a88027b5a8752f4b1831d957470f48e23cebc112aaf762880f3adbfba9cf/bcrypt-4.1.2-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:2a298db2a8ab20056120b45e86c00a0a5eb50ec4075b6142db35f593b97cb3fb", size = 698875 }, + { url = "https://files.pythonhosted.org/packages/05/76/6232380b99d85a2154ae06966b4bf6ce805878a7a92c3211295063b0b6be/bcrypt-4.1.2-cp39-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:ba55e40de38a24e2d78d34c2d36d6e864f93e0d79d0b6ce915e4335aa81d01b1", size = 725674 }, + { url = "https://files.pythonhosted.org/packages/ac/c5/243674ec98288af9da31f5b137686746986d5d298dc520e243032160fd1b/bcrypt-4.1.2-cp39-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:3566a88234e8de2ccae31968127b0ecccbb4cddb629da744165db72b58d88ca4", size = 729832 }, + { url = "https://files.pythonhosted.org/packages/88/fd/6025f5530e6ac2513404aa2ab3fb935b9d992dbf24f255f03b5972dace74/bcrypt-4.1.2-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:b90e216dc36864ae7132cb151ffe95155a37a14e0de3a8f64b49655dd959ff9c", size = 732222 }, + { url = "https://files.pythonhosted.org/packages/85/23/756228cbc426049c264c86d163ec1b4fb1b06114f26b25fb63132af56126/bcrypt-4.1.2-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:69057b9fc5093ea1ab00dd24ede891f3e5e65bee040395fb1e66ee196f9c9b4a", size = 749705 }, + { url = "https://files.pythonhosted.org/packages/ca/9e/abc56ba85897eeca1f3755343a7b6b55f63c048516ebc5790145a7cdfddb/bcrypt-4.1.2-cp39-abi3-win32.whl", hash = "sha256:02d9ef8915f72dd6daaef40e0baeef8a017ce624369f09754baf32bb32dba25f", size = 170970 }, + { url = "https://files.pythonhosted.org/packages/53/5b/73803e5bf877e07739deaeecb2e356f4cc9ae3b766558959a898f7a993e0/bcrypt-4.1.2-cp39-abi3-win_amd64.whl", hash = "sha256:be3ab1071662f6065899fe08428e45c16aa36e28bc42921c4901a191fda6ee42", size = 158307 }, +] + +[[package]] +name = "bleak" +version = "0.22.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "dbus-fast", marker = "platform_system == 'Linux'" }, + { name = "pyobjc-core", marker = "platform_system == 'Darwin'" }, + { name = "pyobjc-framework-corebluetooth", marker = "platform_system == 'Darwin'" }, + { name = "pyobjc-framework-libdispatch", marker = "platform_system == 'Darwin'" }, + { name = "winrt-runtime", marker = "platform_system == 'Windows'" }, + { name = "winrt-windows-devices-bluetooth", marker = "platform_system == 'Windows'" }, + { name = "winrt-windows-devices-bluetooth-advertisement", marker = "platform_system == 'Windows'" }, + { name = "winrt-windows-devices-bluetooth-genericattributeprofile", marker = "platform_system == 'Windows'" }, + { name = "winrt-windows-devices-enumeration", marker = "platform_system == 'Windows'" }, + { name = "winrt-windows-foundation", marker = "platform_system == 'Windows'" }, + { name = "winrt-windows-foundation-collections", marker = "platform_system == 'Windows'" }, + { name = "winrt-windows-storage-streams", marker = "platform_system == 'Windows'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/03/76/733131e2935f4fcdc7a0dd47cbc5090e12d578297804fb0482575db43f3c/bleak-0.22.2.tar.gz", hash = "sha256:09010c0f4bd843e7dcaa1652e1bfb2450ce690da08d4c6163f0723aaa986e9fe", size = 122229 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/99/7b/ff0544a039a34b50ad6fb3164e2e27aa0e3e8f98954daad35699a4e516ee/bleak-0.22.2-py3-none-any.whl", hash = "sha256:8395c9e096f28e0ba1f3e6a8619fa21c327c484f720b7af3ea578d04f498a458", size = 142649 }, +] + +[[package]] +name = "bleak-retry-connector" +version = "3.5.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "bleak" }, + { name = "bluetooth-adapters", marker = "platform_system == 'Linux'" }, + { name = "dbus-fast", marker = "platform_system == 'Linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e6/f2/21af947a3b9f3f1bf0dbfe1dc7fb5ea6a7ef87dbf0bb7266a4d06d9c18e1/bleak_retry_connector-3.5.0.tar.gz", hash = "sha256:f616a25113ff7be05d95cbfbcd9b30e3762202521c4b3727bae5ebdb4cca3496", size = 15393 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0e/04/44bb892cb171dfde5ecaa743a8dbd439179a848543b59a9bb29ea15a8fbc/bleak_retry_connector-3.5.0-py3-none-any.whl", hash = "sha256:ea8218d4ad1852a790337babf5819de500544dcaaadc8382130d54601dadfe06", size = 15911 }, +] + +[[package]] +name = "bluetooth-adapters" +version = "0.19.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "aiooui" }, + { name = "bleak" }, + { name = "dbus-fast" }, + { name = "uart-devices" }, + { name = "usb-devices" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e7/ca/ac30f40e3934ba128d3cabc594196f3c6dc7d424f32b843bcf5c4d2b1efe/bluetooth_adapters-0.19.3.tar.gz", hash = "sha256:ed18017492b53d86bb7ba1c3a4dc8779faa48c21fbfaa3248ffaa1562d2f7d19", size = 17153 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fd/c7/12f80755ba1354e9726e5a0a15e9e46798e69830704ae49b21d8223f90a5/bluetooth_adapters-0.19.3-py3-none-any.whl", hash = "sha256:cd5f59a409460bc9d9939f4d8704420b1a6d77f1e2a97a98b0e58ef327f62d1a", size = 19412 }, +] + +[[package]] +name = "bluetooth-auto-recovery" +version = "1.4.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "bluetooth-adapters" }, + { name = "btsocket" }, + { name = "pyric" }, + { name = "usb-devices" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b1/9d/0ba8f07a7dce7bc6af3b894240a041b034f5bccfd879b8c7b720c9746c6c/bluetooth_auto_recovery-1.4.2.tar.gz", hash = "sha256:7146bacf1864b07c6ef0ed989b8e7784aa5597426a80c05735558f72b255b7d8", size = 12051 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cd/d3/b58c15147cb3d2f1f42d4b53743daf3444117abd423e8540070bb1c4b5e7/bluetooth_auto_recovery-1.4.2-py3-none-any.whl", hash = "sha256:8b0532ebdb69bf3ccdfb26a446422b728f728509930ef3e838423aa9ff1b07e0", size = 10744 }, +] + +[[package]] +name = "bluetooth-data-tools" +version = "1.19.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cryptography" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/41/e0/1d3f6826f6741afb6d6a8ed79df4bec9817e6b0aabb62dee9224091c1d86/bluetooth_data_tools-1.19.4.tar.gz", hash = "sha256:534bbd927efd9a49c5065f0d0b8ee78d38f5fd815f7230c0bb596881bf6f82af", size = 16040 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8d/d8/94eb8d3200f102e0ce4ba94d51b6a3d677e2b52191b44cda2340c21efd72/bluetooth_data_tools-1.19.4-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:c7aa15f9bedc14abda2eb6aad207c81a95e22a360329f9d0bf7d4df1ce7ea757", size = 351273 }, + { url = "https://files.pythonhosted.org/packages/5d/22/a71c3032be69cc73229f4a031f9a2e7a74da061faf7b9101af321b3141d5/bluetooth_data_tools-1.19.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bb9341b9e54cec1bbeb6d63a49054a1c3e3a1cc09cb60e20aba947edabab23cf", size = 853661 }, + { url = "https://files.pythonhosted.org/packages/25/f9/2a410a906bbced113f9718475aa756b4ef3036360c14e65f91ee281a28ec/bluetooth_data_tools-1.19.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45afde56e6b537f3db66c61385851fb7d4e37e435a60da02ed3c078abcdcbf63", size = 882519 }, + { url = "https://files.pythonhosted.org/packages/ab/00/44a9aa71c65d20d41bd3ac7b4ce9b3e69a420e7bdbbadc208f077f1de2ba/bluetooth_data_tools-1.19.4-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:02033c93ba0696e323690fbd7fd439a9eb5cef9ffd621fffd87e7c078f73f964", size = 870869 }, + { url = "https://files.pythonhosted.org/packages/04/ab/b5bc4d947371817575133c3734610f773e5b1b9bc01af258b008e6bf36fa/bluetooth_data_tools-1.19.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:b15b63099ba53ee821aff08c62ac6076a0b111bead98df5a5e50ab0997ef7a39", size = 882454 }, + { url = "https://files.pythonhosted.org/packages/dc/a2/d101bf3ccbaf2e381c32edfa2a29dfa46635fdb48f5d20290f811b790beb/bluetooth_data_tools-1.19.4-cp312-cp312-win32.whl", hash = "sha256:34eee2a99f116eb52744596156b586c0c009efe19c9dbae69f14cf6dc5c67326", size = 246159 }, + { url = "https://files.pythonhosted.org/packages/37/5c/5df5886eddab11178f849850c98f01289d4b8b98fc8bb22c7f1cddd75ad2/bluetooth_data_tools-1.19.4-cp312-cp312-win_amd64.whl", hash = "sha256:27f7053c952f8c873a62320fd0743ba5b7951c8c27de2b36a69f7f307c908de5", size = 246163 }, +] + +[[package]] +name = "boto3" +version = "1.34.156" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "botocore" }, + { name = "jmespath" }, + { name = "s3transfer" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/75/2f/8c716c4ec9410746a7f6b83f0eee6e88f97d7e19fc1af308cb900c36de2c/boto3-1.34.156.tar.gz", hash = "sha256:b33e9a8f8be80d3053b8418836a7c1900410b23a30c7cb040927d601a1082e68", size = 108623 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/74/00/67f2443fb72af2d7d3b0b7f21c426d0a0508849b0f9cf501fbcea2b28f9b/boto3-1.34.156-py3-none-any.whl", hash = "sha256:cbbd453270b8ce94ef9da60dfbb6f9ceeb3eeee226b635aa9ec44b1def98cc96", size = 139176 }, +] + +[[package]] +name = "botocore" +version = "1.34.156" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jmespath" }, + { name = "python-dateutil" }, + { name = "urllib3" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/22/5b/b524a3109579262225c5954059538476d4b615930ca2f70e2dd9772b9bed/botocore-1.34.156.tar.gz", hash = "sha256:5d1478c41ab9681e660b3322432fe09c4055759c317984b7b8d3af9557ff769a", size = 12663276 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/13/1f/0db4626715ccaacf48cc203fa7ef6a0ecc2814a4df1d48ab11122cb07ba2/botocore-1.34.156-py3-none-any.whl", hash = "sha256:c48f8c8996216dfdeeb0aa6d3c0f2c7ae25234766434a2ea3e57bdc08494bdda", size = 12456483 }, +] + +[[package]] +name = "btsocket" +version = "0.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b2/b1/0ae262ecf936f5d2472ff7387087ca674e3b88d8c76b3e0e55fbc0c6e956/btsocket-0.3.0.tar.gz", hash = "sha256:7ea495de0ff883f0d9f8eea59c72ca7fed492994df668fe476b84d814a147a0d", size = 19563 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/67/2b/9bf3481131a24cb29350d69469448349362f6102bed9ae4a0a5bb228d731/btsocket-0.3.0-py2.py3-none-any.whl", hash = "sha256:949821c1b580a88e73804ad610f5173d6ae258e7b4e389da4f94d614344f1a9c", size = 14807 }, +] + +[[package]] +name = "certifi" +version = "2024.7.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c2/02/a95f2b11e207f68bc64d7aae9666fed2e2b3f307748d5123dffb72a1bbea/certifi-2024.7.4.tar.gz", hash = "sha256:5a1e7645bc0ec61a09e26c36f6106dd4cf40c6db3a1fb6352b0244e7fb057c7b", size = 164065 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1c/d5/c84e1a17bf61d4df64ca866a1c9a913874b4e9bdc131ec689a0ad013fb36/certifi-2024.7.4-py3-none-any.whl", hash = "sha256:c198e21b1289c2ab85ee4e67bb4b4ef3ead0892059901a8d5b622f24a1101e90", size = 162960 }, +] + +[[package]] +name = "cffi" +version = "1.17.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pycparser" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1e/bf/82c351342972702867359cfeba5693927efe0a8dd568165490144f554b18/cffi-1.17.0.tar.gz", hash = "sha256:f3157624b7558b914cb039fd1af735e5e8049a87c817cc215109ad1c8779df76", size = 516073 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1a/1f/7862231350cc959a3138889d2c8d33da7042b22e923457dfd4cd487d772a/cffi-1.17.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aec510255ce690d240f7cb23d7114f6b351c733a74c279a84def763660a2c3bc", size = 182826 }, + { url = "https://files.pythonhosted.org/packages/8b/8c/26119bf8b79e05a1c39812064e1ee7981e1f8a5372205ba5698ea4dd958d/cffi-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2770bb0d5e3cc0e31e7318db06efcbcdb7b31bcb1a70086d3177692a02256f59", size = 178494 }, + { url = "https://files.pythonhosted.org/packages/61/94/4882c47d3ad396d91f0eda6ef16d45be3d752a332663b7361933039ed66a/cffi-1.17.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:db9a30ec064129d605d0f1aedc93e00894b9334ec74ba9c6bdd08147434b33eb", size = 454459 }, + { url = "https://files.pythonhosted.org/packages/0f/7c/a6beb119ad515058c5ee1829742d96b25b2b9204ff920746f6e13bf574eb/cffi-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a47eef975d2b8b721775a0fa286f50eab535b9d56c70a6e62842134cf7841195", size = 478502 }, + { url = "https://files.pythonhosted.org/packages/61/8a/2575cd01a90e1eca96a30aec4b1ac101a6fae06c49d490ac2704fa9bc8ba/cffi-1.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f3e0992f23bbb0be00a921eae5363329253c3b86287db27092461c887b791e5e", size = 485381 }, + { url = "https://files.pythonhosted.org/packages/cd/66/85899f5a9f152db49646e0c77427173e1b77a1046de0191ab3b0b9a5e6e3/cffi-1.17.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6107e445faf057c118d5050560695e46d272e5301feffda3c41849641222a828", size = 470907 }, + { url = "https://files.pythonhosted.org/packages/00/13/150924609bf377140abe6e934ce0a57f3fc48f1fd956ec1f578ce97a4624/cffi-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eb862356ee9391dc5a0b3cbc00f416b48c1b9a52d252d898e5b7696a5f9fe150", size = 479074 }, + { url = "https://files.pythonhosted.org/packages/17/fd/7d73d7110155c036303b0a6462c56250e9bc2f4119d7591d27417329b4d1/cffi-1.17.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:c1c13185b90bbd3f8b5963cd8ce7ad4ff441924c31e23c975cb150e27c2bf67a", size = 484225 }, + { url = "https://files.pythonhosted.org/packages/fc/83/8353e5c9b01bb46332dac3dfb18e6c597a04ceb085c19c814c2f78a8c0d0/cffi-1.17.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:17c6d6d3260c7f2d94f657e6872591fe8733872a86ed1345bda872cfc8c74885", size = 488388 }, + { url = "https://files.pythonhosted.org/packages/73/0c/f9d5ca9a095b1fc88ef77d1f8b85d11151c374144e4606da33874e17b65b/cffi-1.17.0-cp312-cp312-win32.whl", hash = "sha256:c3b8bd3133cd50f6b637bb4322822c94c5ce4bf0d724ed5ae70afce62187c492", size = 172096 }, + { url = "https://files.pythonhosted.org/packages/72/21/8c5d285fe20a6e31d29325f1287bb0e55f7d93630a5a44cafdafb5922495/cffi-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:dca802c8db0720ce1c49cce1149ff7b06e91ba15fa84b1d59144fef1a1bc7ac2", size = 181478 }, + { url = "https://files.pythonhosted.org/packages/17/8f/581f2f3c3464d5f7cf87c2f7a5ba9acc6976253e02d73804240964243ec2/cffi-1.17.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:6ce01337d23884b21c03869d2f68c5523d43174d4fc405490eb0091057943118", size = 182638 }, + { url = "https://files.pythonhosted.org/packages/8d/1c/c9afa66684b7039f48018eb11b229b659dfb32b7a16b88251bac106dd1ff/cffi-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:cab2eba3830bf4f6d91e2d6718e0e1c14a2f5ad1af68a89d24ace0c6b17cced7", size = 178453 }, + { url = "https://files.pythonhosted.org/packages/cc/b6/1a134d479d3a5a1ff2fabbee551d1d3f1dd70f453e081b5f70d604aae4c0/cffi-1.17.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:14b9cbc8f7ac98a739558eb86fabc283d4d564dafed50216e7f7ee62d0d25377", size = 454441 }, + { url = "https://files.pythonhosted.org/packages/b1/b4/e1569475d63aad8042b0935dbf62ae2a54d1e9142424e2b0e924d2d4a529/cffi-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b00e7bcd71caa0282cbe3c90966f738e2db91e64092a877c3ff7f19a1628fdcb", size = 478543 }, + { url = "https://files.pythonhosted.org/packages/d2/40/a9ad03fbd64309dec5bb70bc803a9a6772602de0ee164d7b9a6ca5a89249/cffi-1.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:41f4915e09218744d8bae14759f983e466ab69b178de38066f7579892ff2a555", size = 485463 }, + { url = "https://files.pythonhosted.org/packages/a6/1a/f10be60e006dd9242a24bcc2b1cd55c34c578380100f742d8c610f7a5d26/cffi-1.17.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4760a68cab57bfaa628938e9c2971137e05ce48e762a9cb53b76c9b569f1204", size = 470854 }, + { url = "https://files.pythonhosted.org/packages/cc/b3/c035ed21aa3d39432bd749fe331ee90e4bc83ea2dbed1f71c4bc26c41084/cffi-1.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:011aff3524d578a9412c8b3cfaa50f2c0bd78e03eb7af7aa5e0df59b158efb2f", size = 479096 }, + { url = "https://files.pythonhosted.org/packages/00/cb/6f7edde01131de9382c89430b8e253b8c8754d66b63a62059663ceafeab2/cffi-1.17.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:a003ac9edc22d99ae1286b0875c460351f4e101f8c9d9d2576e78d7e048f64e0", size = 484013 }, + { url = "https://files.pythonhosted.org/packages/b9/83/8e4e8c211ea940210d293e951bf06b1bfb90f2eeee590e9778e99b4a8676/cffi-1.17.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ef9528915df81b8f4c7612b19b8628214c65c9b7f74db2e34a646a0a2a0da2d4", size = 488119 }, + { url = "https://files.pythonhosted.org/packages/5e/52/3f7cfbc4f444cb4f73ff17b28690d12436dde665f67d68f1e1687908ab6c/cffi-1.17.0-cp313-cp313-win32.whl", hash = "sha256:70d2aa9fb00cf52034feac4b913181a6e10356019b18ef89bc7c12a283bf5f5a", size = 172122 }, + { url = "https://files.pythonhosted.org/packages/94/19/cf5baa07ee0f0e55eab7382459fbddaba0fdb0ba45973dd92556ae0d02db/cffi-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:b7b6ea9e36d32582cda3465f54c4b454f62f23cb083ebc7a94e2ca6ef011c3a7", size = 181504 }, +] + +[[package]] +name = "charset-normalizer" +version = "3.3.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/63/09/c1bc53dab74b1816a00d8d030de5bf98f724c52c1635e07681d312f20be8/charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5", size = 104809 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/b2/fcedc8255ec42afee97f9e6f0145c734bbe104aac28300214593eb326f1d/charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8", size = 192892 }, + { url = "https://files.pythonhosted.org/packages/2e/7d/2259318c202f3d17f3fe6438149b3b9e706d1070fe3fcbb28049730bb25c/charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b", size = 122213 }, + { url = "https://files.pythonhosted.org/packages/3a/52/9f9d17c3b54dc238de384c4cb5a2ef0e27985b42a0e5cc8e8a31d918d48d/charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6", size = 119404 }, + { url = "https://files.pythonhosted.org/packages/99/b0/9c365f6d79a9f0f3c379ddb40a256a67aa69c59609608fe7feb6235896e1/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a", size = 137275 }, + { url = "https://files.pythonhosted.org/packages/91/33/749df346e93d7a30cdcb90cbfdd41a06026317bfbfb62cd68307c1a3c543/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389", size = 147518 }, + { url = "https://files.pythonhosted.org/packages/72/1a/641d5c9f59e6af4c7b53da463d07600a695b9824e20849cb6eea8a627761/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa", size = 140182 }, + { url = "https://files.pythonhosted.org/packages/ee/fb/14d30eb4956408ee3ae09ad34299131fb383c47df355ddb428a7331cfa1e/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b", size = 141869 }, + { url = "https://files.pythonhosted.org/packages/df/3e/a06b18788ca2eb6695c9b22325b6fde7dde0f1d1838b1792a0076f58fe9d/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed", size = 144042 }, + { url = "https://files.pythonhosted.org/packages/45/59/3d27019d3b447a88fe7e7d004a1e04be220227760264cc41b405e863891b/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26", size = 138275 }, + { url = "https://files.pythonhosted.org/packages/7b/ef/5eb105530b4da8ae37d506ccfa25057961b7b63d581def6f99165ea89c7e/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d", size = 144819 }, + { url = "https://files.pythonhosted.org/packages/a2/51/e5023f937d7f307c948ed3e5c29c4b7a3e42ed2ee0b8cdf8f3a706089bf0/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068", size = 149415 }, + { url = "https://files.pythonhosted.org/packages/24/9d/2e3ef673dfd5be0154b20363c5cdcc5606f35666544381bee15af3778239/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143", size = 141212 }, + { url = "https://files.pythonhosted.org/packages/5b/ae/ce2c12fcac59cb3860b2e2d76dc405253a4475436b1861d95fe75bdea520/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4", size = 142167 }, + { url = "https://files.pythonhosted.org/packages/ed/3a/a448bf035dce5da359daf9ae8a16b8a39623cc395a2ffb1620aa1bce62b0/charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7", size = 93041 }, + { url = "https://files.pythonhosted.org/packages/b6/7c/8debebb4f90174074b827c63242c23851bdf00a532489fba57fef3416e40/charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001", size = 100397 }, + { url = "https://files.pythonhosted.org/packages/28/76/e6222113b83e3622caa4bb41032d0b1bf785250607392e1b778aca0b8a7d/charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc", size = 48543 }, +] + +[[package]] +name = "ciso8601" +version = "2.3.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ac/bc/cf42c1b0042f91c90a6b00244f63b6fb137af15e43e29f07bb72cf955be8/ciso8601-2.3.1.tar.gz", hash = "sha256:3212c7ffe5d8080270548b5f2692ffd2039683b6628a8d2ad456122cc5793c4c", size = 31225 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/85/3d/f6496a260ba6e58135fb3dd1108799f6dd9cadf634372e020bfbf0d27fea/ciso8601-2.3.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f39bb5936debf21c52e5d52b89f26857c303da80c43a72883946096a6ef5e561", size = 24211 }, + { url = "https://files.pythonhosted.org/packages/c4/a9/24ffa848a5878a50009d6177826c36b60e2e8807e4d54ee94817e790897b/ciso8601-2.3.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:21cf83ca945bb26ecd95364ae2c9ed0276378e5fe35ce1b64d4c6d5b33038ea3", size = 15591 }, + { url = "https://files.pythonhosted.org/packages/ea/74/77fd6e67a2a3489a1ac449570142e2f4137289be25027e235d4688470d56/ciso8601-2.3.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:013410263cba46748d2de29e9894341ae41223356cde7970478c32bd0984d10c", size = 15643 }, + { url = "https://files.pythonhosted.org/packages/5b/bd/fef5524974e3ba376e16df35e4197152edffdf7ac9d5d99bc173a9fcf256/ciso8601-2.3.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b26935687ef1837b56997d8c61f1d789e698be58b261410e629eda9c89812141", size = 39805 }, + { url = "https://files.pythonhosted.org/packages/50/1c/d1cb5b2d2173abfc4d5a068981acddff763cce318e896ec87c140412c72d/ciso8601-2.3.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:0d980a2a88030d4d8b2434623c250866a75b4979d289eba69bec445c51ace99f", size = 48335 }, + { url = "https://files.pythonhosted.org/packages/76/ef/5ef06ccb6f6c023573634119f93df237687e3f4263e2f307b51a7208d103/ciso8601-2.3.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:87721de54e008fb1c4c3978553b05a9c417aa25b76ddf5702d6f7e8d9b109288", size = 49449 }, + { url = "https://files.pythonhosted.org/packages/e6/45/f981bbd51f1c9fa3d730c3fbcb74b1f8928463e6ea8283257f6b164847e6/ciso8601-2.3.1-cp312-cp312-win_amd64.whl", hash = "sha256:9f107a4c051e7c0416824279264d94f4ed3da0fbd82bd96ec3c3293426826de4", size = 17084 }, +] + +[[package]] +name = "cryptography" +version = "42.0.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi", marker = "platform_python_implementation != 'PyPy'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/93/a7/1498799a2ea06148463a9a2c10ab2f6a921a74fb19e231b27dc412a748e2/cryptography-42.0.8.tar.gz", hash = "sha256:8d09d05439ce7baa8e9e95b07ec5b6c886f548deb7e0f69ef25f64b3bce842f2", size = 671250 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/8b/1b929ba8139430e09e140e6939c2b29c18df1f2fc2149e41bdbdcdaf5d1f/cryptography-42.0.8-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:81d8a521705787afe7a18d5bfb47ea9d9cc068206270aad0b96a725022e18d2e", size = 5899961 }, + { url = "https://files.pythonhosted.org/packages/fa/5d/31d833daa800e4fab33209843095df7adb4a78ea536929145534cbc15026/cryptography-42.0.8-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:961e61cefdcb06e0c6d7e3a1b22ebe8b996eb2bf50614e89384be54c48c6b63d", size = 3114353 }, + { url = "https://files.pythonhosted.org/packages/5d/32/f6326c70a9f0f258a201d3b2632bca586ea24d214cec3cf36e374040e273/cryptography-42.0.8-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e3ec3672626e1b9e55afd0df6d774ff0e953452886e06e0f1eb7eb0c832e8902", size = 3647773 }, + { url = "https://files.pythonhosted.org/packages/35/66/2d87e9ca95c82c7ee5f2c09716fc4c4242c1ae6647b9bd27e55e920e9f10/cryptography-42.0.8-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e599b53fd95357d92304510fb7bda8523ed1f79ca98dce2f43c115950aa78801", size = 3839763 }, + { url = "https://files.pythonhosted.org/packages/c2/de/8083fa2e68d403553a01a9323f4f8b9d7ffed09928ba25635c29fb28c1e7/cryptography-42.0.8-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:5226d5d21ab681f432a9c1cf8b658c0cb02533eece706b155e5fbd8a0cdd3949", size = 3632661 }, + { url = "https://files.pythonhosted.org/packages/07/40/d6f6819c62e808ea74639c3c640f7edd636b86cce62cb14943996a15df92/cryptography-42.0.8-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:6b7c4f03ce01afd3b76cf69a5455caa9cfa3de8c8f493e0d3ab7d20611c8dae9", size = 3851536 }, + { url = "https://files.pythonhosted.org/packages/5c/46/de71d48abf2b6d3c808f4fbb0f4dc44a4e72786be23df0541aa2a3f6fd7e/cryptography-42.0.8-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:2346b911eb349ab547076f47f2e035fc8ff2c02380a7cbbf8d87114fa0f1c583", size = 3754209 }, + { url = "https://files.pythonhosted.org/packages/25/c9/86f04e150c5d5d5e4a731a2c1e0e43da84d901f388e3fea3d5de98d689a7/cryptography-42.0.8-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:ad803773e9df0b92e0a817d22fd8a3675493f690b96130a5e24f1b8fabbea9c7", size = 3923551 }, + { url = "https://files.pythonhosted.org/packages/53/c2/903014dafb7271fb148887d4355b2e90319cad6e810663be622b0c933fc9/cryptography-42.0.8-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:2f66d9cd9147ee495a8374a45ca445819f8929a3efcd2e3df6428e46c3cbb10b", size = 3739265 }, + { url = "https://files.pythonhosted.org/packages/95/26/82d704d988a193cbdc69ac3b41c687c36eaed1642cce52530ad810c35645/cryptography-42.0.8-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:d45b940883a03e19e944456a558b67a41160e367a719833c53de6911cabba2b7", size = 3937371 }, + { url = "https://files.pythonhosted.org/packages/cf/71/4e0d05c9acd638a225f57fb6162aa3d03613c11b76893c23ea4675bb28c5/cryptography-42.0.8-cp37-abi3-win32.whl", hash = "sha256:a0c5b2b0585b6af82d7e385f55a8bc568abff8923af147ee3c07bd8b42cda8b2", size = 2438849 }, + { url = "https://files.pythonhosted.org/packages/06/0f/78da3cad74f2ba6c45321dc90394d70420ea846730dc042ef527f5a224b5/cryptography-42.0.8-cp37-abi3-win_amd64.whl", hash = "sha256:57080dee41209e556a9a4ce60d229244f7a66ef52750f813bfbe18959770cfba", size = 2889090 }, + { url = "https://files.pythonhosted.org/packages/60/12/f064af29190cdb1d38fe07f3db6126091639e1dece7ec77c4ff037d49193/cryptography-42.0.8-cp39-abi3-macosx_10_12_universal2.whl", hash = "sha256:dea567d1b0e8bc5764b9443858b673b734100c2871dc93163f58c46a97a83d28", size = 5901232 }, + { url = "https://files.pythonhosted.org/packages/43/c2/4a3eef67e009a522711ebd8ac89424c3a7fe591ece7035d964419ad52a1d/cryptography-42.0.8-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c4783183f7cb757b73b2ae9aed6599b96338eb957233c58ca8f49a49cc32fd5e", size = 3648711 }, + { url = "https://files.pythonhosted.org/packages/49/1c/9f6d13cc8041c05eebff1154e4e71bedd1db8e174fff999054435994187a/cryptography-42.0.8-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0608251135d0e03111152e41f0cc2392d1e74e35703960d4190b2e0f4ca9c70", size = 3841968 }, + { url = "https://files.pythonhosted.org/packages/5f/f9/c3d4f19b82bdb25a3d857fe96e7e571c981810e47e3f299cc13ac429066a/cryptography-42.0.8-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:dc0fdf6787f37b1c6b08e6dfc892d9d068b5bdb671198c72072828b80bd5fe4c", size = 3633032 }, + { url = "https://files.pythonhosted.org/packages/fa/e2/b7e6e8c261536c489d9cf908769880d94bd5d9a187e166b0dc838d2e6a56/cryptography-42.0.8-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:9c0c1716c8447ee7dbf08d6db2e5c41c688544c61074b54fc4564196f55c25a7", size = 3852478 }, + { url = "https://files.pythonhosted.org/packages/a2/68/e16751f6b859bc120f53fddbf3ebada5c34f0e9689d8af32884d8b2e4b4c/cryptography-42.0.8-cp39-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:fff12c88a672ab9c9c1cf7b0c80e3ad9e2ebd9d828d955c126be4fd3e5578c9e", size = 3754102 }, + { url = "https://files.pythonhosted.org/packages/0f/38/85c74d0ac4c540780e072b1e6f148ecb718418c1062edcb20d22f3ec5bbb/cryptography-42.0.8-cp39-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:cafb92b2bc622cd1aa6a1dce4b93307792633f4c5fe1f46c6b97cf67073ec961", size = 3925042 }, + { url = "https://files.pythonhosted.org/packages/89/f4/a8b982e88eb5350407ebdbf4717b55043271d878705329e107f4783555f2/cryptography-42.0.8-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:31f721658a29331f895a5a54e7e82075554ccfb8b163a18719d342f5ffe5ecb1", size = 3738833 }, + { url = "https://files.pythonhosted.org/packages/fd/2b/be327b580645927bb1a1f32d5a175b897a9b956bc085b095e15c40bac9ed/cryptography-42.0.8-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:b297f90c5723d04bcc8265fc2a0f86d4ea2e0f7ab4b6994459548d3a6b992a14", size = 3938751 }, + { url = "https://files.pythonhosted.org/packages/3c/d5/c6a78ffccdbe4516711ebaa9ed2c7eb6ac5dfa3dc920f2c7e920af2418b0/cryptography-42.0.8-cp39-abi3-win32.whl", hash = "sha256:2f88d197e66c65be5e42cd72e5c18afbfae3f741742070e3019ac8f4ac57262c", size = 2439281 }, + { url = "https://files.pythonhosted.org/packages/a2/7b/b0d330852dd5953daee6b15f742f15d9f18e9c0154eb4cfcc8718f0436da/cryptography-42.0.8-cp39-abi3-win_amd64.whl", hash = "sha256:fa76fbb7596cc5839320000cdd5d0955313696d9511debab7ee7278fc8b5c84a", size = 2886038 }, +] + +[[package]] +name = "dbus-fast" +version = "2.22.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cf/86/f7e358a3670710d6d4e01067018ade0551d1f67ad1842cf68abb1acb36f0/dbus_fast-2.22.1.tar.gz", hash = "sha256:aa75dfb5bc7ba42f53391ae503ca5a21bd133e74ebb09965013ba23bdffc9a0e", size = 69596 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4b/53/942e731b5df507f2a7166c4c7086f2da8ed55b1bf21fa9c9c9bfbbaa18b6/dbus_fast-2.22.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:beebe8cbd0cd90d24b757c4aad617fcfa77f2e654287bc80b11c0e4964891c22", size = 5412412 }, + { url = "https://files.pythonhosted.org/packages/17/21/93f7be67c22889b2b93b5ecc8f44d414e2b9f291bc00b577a49d1302dadf/dbus_fast-2.22.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b72ebd07ac873906f1001cb6eb75e864e30cb6cdcce17afe79939987b0a28b5", size = 5514759 }, + { url = "https://files.pythonhosted.org/packages/bd/72/e2ec43b6cb0514945051ef5dc4ac1799d2f6326862dbf387df56e48f780c/dbus_fast-2.22.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:c73e3b59de2b6e7447b1c3d26ccd307838d05c6a85bcc9eac7bc990bb843cc92", size = 5356626 }, + { url = "https://files.pythonhosted.org/packages/7f/25/38ac5cec39fee4c3e5bbc22adacf4f7905b95d90e5e84dca4fea03b9a602/dbus_fast-2.22.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dcb333f56ebb0de5cf3aa8affb9c492bd821e252d704dcce444a379c0513c6be", size = 5612893 }, +] + +[[package]] +name = "envs" +version = "1.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3c/7f/2098df91ff1499860935b4276ea0c27d3234170b03f803a8b9c97e42f0e9/envs-1.4.tar.gz", hash = "sha256:9d8435c6985d1cdd68299e04c58e2bdb8ae6cf66b2596a8079e6f9a93f2a0398", size = 9230 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ca/bc/f8c625a084b6074c2295f7eab967f868d424bb8ca30c7a656024b26fe04e/envs-1.4-py3-none-any.whl", hash = "sha256:4a1fcf85e4d4443e77c348ff7cdd3bfc4c0178b181d447057de342e4172e5ed1", size = 10988 }, +] + +[[package]] +name = "fnv-hash-fast" +version = "0.5.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "fnvhash" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/88/a5/cff8b684929df19ef4d10950d46eb978e266baeb8b2a95c93853e1054581/fnv_hash_fast-0.5.0.tar.gz", hash = "sha256:a84d658952776a186418f4158fc8e55ff3c576ac32cc9ef7f8077efdf2d0b89f", size = 5816 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d9/4d/eba8add0b8de46780e5500a9889a6981bebc0a9b2350c00f38d39c1a9a2a/fnv_hash_fast-0.5.0-cp312-cp312-macosx_11_0_x86_64.whl", hash = "sha256:0e59aff764117c0028c2140dce61b4a824dc8a49406716d0ea1e60606f5c3814", size = 64035 }, + { url = "https://files.pythonhosted.org/packages/3e/0f/21f232f13d7fa9b48bb55a16030095cb95b4423d1726f81d7e5796978025/fnv_hash_fast-0.5.0-cp312-cp312-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl", hash = "sha256:9cc395e99837d535f9507136041d491c5625c7c89f676f39cff0b587db497d11", size = 149732 }, + { url = "https://files.pythonhosted.org/packages/8d/e2/289d29e132a3e708b5d7d21c9a7f33cd96316c9fdbadb84fd13218c19ffc/fnv_hash_fast-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eec5cb2477c97c1a3c7628eda58406d7d6e86ab4832f9c21e043b7c21f156092", size = 144574 }, + { url = "https://files.pythonhosted.org/packages/cf/f1/90e7dd750b2b09eb50ce8af761682b9ac849381edba116a169ff22ec253e/fnv_hash_fast-0.5.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:5963d85de3b18339389e9cf7d2b30470f94e3b2c8e32f1c4a9637cc5d7cda1c0", size = 755357 }, + { url = "https://files.pythonhosted.org/packages/c5/48/81b9e3355c2652c494866257cdb31cab1b9f4a95a5462dcc0b16051fd4d7/fnv_hash_fast-0.5.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:e22adf32d635f1202d5a07a61bd493e56cda3940139fe800456992a53662726f", size = 697404 }, + { url = "https://files.pythonhosted.org/packages/ce/d8/714ea7a78bb365c43cc852809305199a46d48255ed7d9ff7049cb793c593/fnv_hash_fast-0.5.0-cp312-cp312-win32.whl", hash = "sha256:8c550e4e2137b1216cede5522700db2ca92a5dd9648dda95c8ac0a3b4881c2be", size = 65843 }, + { url = "https://files.pythonhosted.org/packages/10/7d/fdef943277c7daf28ced22973cb2b3fd354fb782bb93b2fe8345faa0d38c/fnv_hash_fast-0.5.0-cp312-cp312-win_amd64.whl", hash = "sha256:3e7bcb1618f80385d0799b167ffa86ce6cc74f25d6948cfb717f40958cd192dd", size = 65847 }, +] + +[[package]] +name = "fnvhash" +version = "0.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2f/01/14ef74ea03ac12e8a80d43bbad5356ae809b125cd2072766e459bcc7d388/fnvhash-0.1.0.tar.gz", hash = "sha256:3e82d505054f9f3987b2b5b649f7e7b6f48349f6af8a1b8e4d66779699c85a8e", size = 1902 } + +[[package]] +name = "frozenlist" +version = "1.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cf/3d/2102257e7acad73efc4a0c306ad3953f68c504c16982bbdfee3ad75d8085/frozenlist-1.4.1.tar.gz", hash = "sha256:c037a86e8513059a2613aaba4d817bb90b9d9b6b69aace3ce9c877e8c8ed402b", size = 37820 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b4/db/4cf37556a735bcdb2582f2c3fa286aefde2322f92d3141e087b8aeb27177/frozenlist-1.4.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:1979bc0aeb89b33b588c51c54ab0161791149f2461ea7c7c946d95d5f93b56ae", size = 93937 }, + { url = "https://files.pythonhosted.org/packages/46/03/69eb64642ca8c05f30aa5931d6c55e50b43d0cd13256fdd01510a1f85221/frozenlist-1.4.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:cc7b01b3754ea68a62bd77ce6020afaffb44a590c2289089289363472d13aedb", size = 53656 }, + { url = "https://files.pythonhosted.org/packages/3f/ab/c543c13824a615955f57e082c8a5ee122d2d5368e80084f2834e6f4feced/frozenlist-1.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c9c92be9fd329ac801cc420e08452b70e7aeab94ea4233a4804f0915c14eba9b", size = 51868 }, + { url = "https://files.pythonhosted.org/packages/a9/b8/438cfd92be2a124da8259b13409224d9b19ef8f5a5b2507174fc7e7ea18f/frozenlist-1.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c3894db91f5a489fc8fa6a9991820f368f0b3cbdb9cd8849547ccfab3392d86", size = 280652 }, + { url = "https://files.pythonhosted.org/packages/54/72/716a955521b97a25d48315c6c3653f981041ce7a17ff79f701298195bca3/frozenlist-1.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ba60bb19387e13597fb059f32cd4d59445d7b18b69a745b8f8e5db0346f33480", size = 286739 }, + { url = "https://files.pythonhosted.org/packages/65/d8/934c08103637567084568e4d5b4219c1016c60b4d29353b1a5b3587827d6/frozenlist-1.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8aefbba5f69d42246543407ed2461db31006b0f76c4e32dfd6f42215a2c41d09", size = 289447 }, + { url = "https://files.pythonhosted.org/packages/70/bb/d3b98d83ec6ef88f9bd63d77104a305d68a146fd63a683569ea44c3085f6/frozenlist-1.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:780d3a35680ced9ce682fbcf4cb9c2bad3136eeff760ab33707b71db84664e3a", size = 265466 }, + { url = "https://files.pythonhosted.org/packages/0b/f2/b8158a0f06faefec33f4dff6345a575c18095a44e52d4f10c678c137d0e0/frozenlist-1.4.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9acbb16f06fe7f52f441bb6f413ebae6c37baa6ef9edd49cdd567216da8600cd", size = 281530 }, + { url = "https://files.pythonhosted.org/packages/ea/a2/20882c251e61be653764038ece62029bfb34bd5b842724fff32a5b7a2894/frozenlist-1.4.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:23b701e65c7b36e4bf15546a89279bd4d8675faabc287d06bbcfac7d3c33e1e6", size = 281295 }, + { url = "https://files.pythonhosted.org/packages/4c/f9/8894c05dc927af2a09663bdf31914d4fb5501653f240a5bbaf1e88cab1d3/frozenlist-1.4.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:3e0153a805a98f5ada7e09826255ba99fb4f7524bb81bf6b47fb702666484ae1", size = 268054 }, + { url = "https://files.pythonhosted.org/packages/37/ff/a613e58452b60166507d731812f3be253eb1229808e59980f0405d1eafbf/frozenlist-1.4.1-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:dd9b1baec094d91bf36ec729445f7769d0d0cf6b64d04d86e45baf89e2b9059b", size = 286904 }, + { url = "https://files.pythonhosted.org/packages/cc/6e/0091d785187f4c2020d5245796d04213f2261ad097e0c1cf35c44317d517/frozenlist-1.4.1-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:1a4471094e146b6790f61b98616ab8e44f72661879cc63fa1049d13ef711e71e", size = 290754 }, + { url = "https://files.pythonhosted.org/packages/a5/c2/e42ad54bae8bcffee22d1e12a8ee6c7717f7d5b5019261a8c861854f4776/frozenlist-1.4.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:5667ed53d68d91920defdf4035d1cdaa3c3121dc0b113255124bcfada1cfa1b8", size = 282602 }, + { url = "https://files.pythonhosted.org/packages/b6/61/56bad8cb94f0357c4bc134acc30822e90e203b5cb8ff82179947de90c17f/frozenlist-1.4.1-cp312-cp312-win32.whl", hash = "sha256:beee944ae828747fd7cb216a70f120767fc9f4f00bacae8543c14a6831673f89", size = 44063 }, + { url = "https://files.pythonhosted.org/packages/3e/dc/96647994a013bc72f3d453abab18340b7f5e222b7b7291e3697ca1fcfbd5/frozenlist-1.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:64536573d0a2cb6e625cf309984e2d873979709f2cf22839bf2d61790b448ad5", size = 50452 }, + { url = "https://files.pythonhosted.org/packages/83/10/466fe96dae1bff622021ee687f68e5524d6392b0a2f80d05001cd3a451ba/frozenlist-1.4.1-py3-none-any.whl", hash = "sha256:04ced3e6a46b4cfffe20f9ae482818e34eba9b5fb0ce4056e4cc9b6e212d09b7", size = 11552 }, +] + +[[package]] +name = "greenlet" +version = "3.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/17/14/3bddb1298b9a6786539ac609ba4b7c9c0842e12aa73aaa4d8d73ec8f8185/greenlet-3.0.3.tar.gz", hash = "sha256:43374442353259554ce33599da8b692d5aa96f8976d567d4badf263371fbe491", size = 182013 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a2/2f/461615adc53ba81e99471303b15ac6b2a6daa8d2a0f7f77fd15605e16d5b/greenlet-3.0.3-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:70fb482fdf2c707765ab5f0b6655e9cfcf3780d8d87355a063547b41177599be", size = 273085 }, + { url = "https://files.pythonhosted.org/packages/e9/55/2c3cfa3cdbb940cf7321fbcf544f0e9c74898eed43bf678abf416812d132/greenlet-3.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d4d1ac74f5c0c0524e4a24335350edad7e5f03b9532da7ea4d3c54d527784f2e", size = 660514 }, + { url = "https://files.pythonhosted.org/packages/38/77/efb21ab402651896c74f24a172eb4d7479f9f53898bd5e56b9e20bb24ffd/greenlet-3.0.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:149e94a2dd82d19838fe4b2259f1b6b9957d5ba1b25640d2380bea9c5df37676", size = 674295 }, + { url = "https://files.pythonhosted.org/packages/74/3a/92f188ace0190f0066dca3636cf1b09481d0854c46e92ec5e29c7cefe5b1/greenlet-3.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:15d79dd26056573940fcb8c7413d84118086f2ec1a8acdfa854631084393efcc", size = 669395 }, + { url = "https://files.pythonhosted.org/packages/63/0f/847ed02cdfce10f0e6e3425cd054296bddb11a17ef1b34681fa01a055187/greenlet-3.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:881b7db1ebff4ba09aaaeae6aa491daeb226c8150fc20e836ad00041bcb11230", size = 670455 }, + { url = "https://files.pythonhosted.org/packages/bd/37/56b0da468a85e7704f3b2bc045015301bdf4be2184a44868c71f6dca6fe2/greenlet-3.0.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fcd2469d6a2cf298f198f0487e0a5b1a47a42ca0fa4dfd1b6862c999f018ebbf", size = 625692 }, + { url = "https://files.pythonhosted.org/packages/7c/68/b5f4084c0a252d7e9c0d95fc1cfc845d08622037adb74e05be3a49831186/greenlet-3.0.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:1f672519db1796ca0d8753f9e78ec02355e862d0998193038c7073045899f305", size = 1152597 }, + { url = "https://files.pythonhosted.org/packages/a4/fa/31e22345518adcd69d1d6ab5087a12c178aa7f3c51103f6d5d702199d243/greenlet-3.0.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2516a9957eed41dd8f1ec0c604f1cdc86758b587d964668b5b196a9db5bfcde6", size = 1181043 }, + { url = "https://files.pythonhosted.org/packages/53/80/3d94d5999b4179d91bcc93745d1b0815b073d61be79dd546b840d17adb18/greenlet-3.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:bba5387a6975598857d86de9eac14210a49d554a77eb8261cc68b7d082f78ce2", size = 293635 }, +] + +[[package]] +name = "h11" +version = "0.14.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f5/38/3af3d3633a34a3316095b39c8e8fb4853a28a536e55d347bd8d8e9a14b03/h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d", size = 100418 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/95/04/ff642e65ad6b90db43e668d70ffb6736436c7ce41fcc549f4e9472234127/h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761", size = 58259 }, +] + +[[package]] +name = "habluetooth" +version = "3.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "async-interrupt" }, + { name = "bleak" }, + { name = "bleak-retry-connector" }, + { name = "bluetooth-adapters" }, + { name = "bluetooth-auto-recovery" }, + { name = "bluetooth-data-tools" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f9/b4/ba1f08ea4f1ab194a7ab7cd55fc5209dc15901ee232502a3524c23648c73/habluetooth-3.2.0.tar.gz", hash = "sha256:5da5068be75f9b6c7aee3fa4ebb875ab2402599d7ce6272d3ba1c67cc6718170", size = 33670 } + +[[package]] +name = "hass-nabucasa" +version = "0.81.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "acme" }, + { name = "aiohttp" }, + { name = "atomicwrites-homeassistant" }, + { name = "attrs" }, + { name = "ciso8601" }, + { name = "cryptography" }, + { name = "pycognito" }, + { name = "pyjwt" }, + { name = "snitun" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f6/09/360586c672375587e5692be9e4b5e7c3b5510aa65ca4bd81fe81cf7e9ff9/hass_nabucasa-0.81.1.tar.gz", hash = "sha256:5be7430e6eda80f27e58d67f66a81d2bfebdcf3dfdf8615a0dc816daeaa6585d", size = 62710 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/19/bf/8dd3af6ca8f35d60ad8c47b47a6f94a2157a7c2420796d69a885f5d05cd5/hass_nabucasa-0.81.1-py3-none-any.whl", hash = "sha256:604618c25ec53ac2b5e06c08242e0299c24e87975185f4af119b7659ac3a01a4", size = 54003 }, +] + +[[package]] +name = "home-assistant-bluetooth" +version = "1.12.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "habluetooth" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d5/b5/7decf7ce896c90690aa86f692bd8b1a2e796bdc218b5e7e0ebfcc94c0372/home_assistant_bluetooth-1.12.1.tar.gz", hash = "sha256:3e9c054d04c9e340a7f31e418139f1a8cce2c53a740347b42f7b55468670133d", size = 7763 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ab/e3/0ec2f363ed50d3be588e5e2a13d8506c31db2f2de31e8cced44e4d50007f/home_assistant_bluetooth-1.12.1-py3-none-any.whl", hash = "sha256:1a9115ef222f51f2267438cf6bc107d2df274a2a61d9dce4e7d4458ed14af248", size = 7925 }, +] + +[[package]] +name = "homeassistant" +version = "2024.7.0.dev0" +source = { editable = "." } +dependencies = [ + { name = "aiodns" }, + { name = "aiohttp" }, + { name = "aiohttp-cors" }, + { name = "aiohttp-fast-url-dispatcher" }, + { name = "aiohttp-fast-zlib" }, + { name = "aiozoneinfo" }, + { name = "astral" }, + { name = "async-interrupt" }, + { name = "atomicwrites-homeassistant" }, + { name = "attrs" }, + { name = "awesomeversion" }, + { name = "bcrypt" }, + { name = "certifi" }, + { name = "ciso8601" }, + { name = "cryptography" }, + { name = "fnv-hash-fast" }, + { name = "hass-nabucasa" }, + { name = "home-assistant-bluetooth" }, + { name = "httpx" }, + { name = "ifaddr" }, + { name = "jinja2" }, + { name = "lru-dict" }, + { name = "orjson" }, + { name = "packaging" }, + { name = "pillow" }, + { name = "pip" }, + { name = "psutil-home-assistant" }, + { name = "pyjwt" }, + { name = "pyopenssl" }, + { name = "python-slugify" }, + { name = "pyyaml" }, + { name = "requests" }, + { name = "sqlalchemy" }, + { name = "typing-extensions" }, + { name = "ulid-transform" }, + { name = "urllib3" }, + { name = "voluptuous" }, + { name = "voluptuous-serialize" }, + { name = "yarl" }, +] + +[[package]] +name = "httpcore" +version = "1.0.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "h11" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/17/b0/5e8b8674f8d203335a62fdfcfa0d11ebe09e23613c3391033cbba35f7926/httpcore-1.0.5.tar.gz", hash = "sha256:34a38e2f9291467ee3b44e89dd52615370e152954ba21721378a87b2960f7a61", size = 83234 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/78/d4/e5d7e4f2174f8a4d63c8897d79eb8fe2503f7ecc03282fee1fa2719c2704/httpcore-1.0.5-py3-none-any.whl", hash = "sha256:421f18bac248b25d310f3cacd198d55b8e6125c107797b609ff9b7a6ba7991b5", size = 77926 }, +] + +[[package]] +name = "httpx" +version = "0.27.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, + { name = "certifi" }, + { name = "httpcore" }, + { name = "idna" }, + { name = "sniffio" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5c/2d/3da5bdf4408b8b2800061c339f240c1802f2e82d55e50bd39c5a881f47f0/httpx-0.27.0.tar.gz", hash = "sha256:a0cb88a46f32dc874e04ee956e4c2764aba2aa228f650b06788ba6bda2962ab5", size = 126413 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/41/7b/ddacf6dcebb42466abd03f368782142baa82e08fc0c1f8eaa05b4bae87d5/httpx-0.27.0-py3-none-any.whl", hash = "sha256:71d5465162c13681bff01ad59b2cc68dd838ea1f10e51574bac27103f00c91a5", size = 75590 }, +] + +[[package]] +name = "idna" +version = "3.7" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/21/ed/f86a79a07470cb07819390452f178b3bef1d375f2ec021ecfc709fc7cf07/idna-3.7.tar.gz", hash = "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc", size = 189575 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e5/3e/741d8c82801c347547f8a2a06aa57dbb1992be9e948df2ea0eda2c8b79e8/idna-3.7-py3-none-any.whl", hash = "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0", size = 66836 }, +] + +[[package]] +name = "ifaddr" +version = "0.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e8/ac/fb4c578f4a3256561548cd825646680edcadb9440f3f68add95ade1eb791/ifaddr-0.2.0.tar.gz", hash = "sha256:cc0cbfcaabf765d44595825fb96a99bb12c79716b73b44330ea38ee2b0c4aed4", size = 10485 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9c/1f/19ebc343cc71a7ffa78f17018535adc5cbdd87afb31d7c34874680148b32/ifaddr-0.2.0-py3-none-any.whl", hash = "sha256:085e0305cfe6f16ab12d72e2024030f5d52674afad6911bb1eee207177b8a748", size = 12314 }, +] + +[[package]] +name = "jinja2" +version = "3.1.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ed/55/39036716d19cab0747a5020fc7e907f362fbf48c984b14e62127f7e68e5d/jinja2-3.1.4.tar.gz", hash = "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369", size = 240245 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/31/80/3a54838c3fb461f6fec263ebf3a3a41771bd05190238de3486aae8540c36/jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d", size = 133271 }, +] + +[[package]] +name = "jmespath" +version = "1.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/00/2a/e867e8531cf3e36b41201936b7fa7ba7b5702dbef42922193f05c8976cd6/jmespath-1.0.1.tar.gz", hash = "sha256:90261b206d6defd58fdd5e85f478bf633a2901798906be2ad389150c5c60edbe", size = 25843 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/31/b4/b9b800c45527aadd64d5b442f9b932b00648617eb5d63d2c7a6587b7cafc/jmespath-1.0.1-py3-none-any.whl", hash = "sha256:02e2e4cc71b5bcab88332eebf907519190dd9e6e82107fa7f83b1003a6252980", size = 20256 }, +] + +[[package]] +name = "josepy" +version = "1.14.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cryptography" }, + { name = "pyopenssl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/2c/cd/684c45107851da4507854ef4b16fcdce448e02668f0e7c359d0558cbfbeb/josepy-1.14.0.tar.gz", hash = "sha256:308b3bf9ce825ad4d4bba76372cf19b5dc1c2ce96a9d298f9642975e64bd13dd", size = 58794 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8b/9b/2ba5943ca36213123cf54a21629695c9bf168ee135f06ad17e89f9f6236c/josepy-1.14.0-py3-none-any.whl", hash = "sha256:d2b36a30f316269f3242f4c2e45e15890784178af5ec54fa3e49cf9234ee22e0", size = 32180 }, +] + +[[package]] +name = "lru-dict" +version = "1.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/96/e3/42c87871920602a3c8300915bd0292f76eccc66c38f782397acbf8a62088/lru-dict-1.3.0.tar.gz", hash = "sha256:54fd1966d6bd1fcde781596cb86068214edeebff1db13a2cea11079e3fd07b6b", size = 13123 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fc/5c/385f080747eb3083af87d8e4c9068f3c4cab89035f6982134889940dafd8/lru_dict-1.3.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:c279068f68af3b46a5d649855e1fb87f5705fe1f744a529d82b2885c0e1fc69d", size = 17174 }, + { url = "https://files.pythonhosted.org/packages/3c/de/5ef2ed75ce55d7059d1b96177ba04fa7ee1f35564f97bdfcd28fccfbe9d2/lru_dict-1.3.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:350e2233cfee9f326a0d7a08e309372d87186565e43a691b120006285a0ac549", size = 10742 }, + { url = "https://files.pythonhosted.org/packages/ca/05/f69a6abb0062d2cf2ce0aaf0284b105b97d1da024ca6d3d0730e6151242e/lru_dict-1.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4eafb188a84483b3231259bf19030859f070321b00326dcb8e8c6cbf7db4b12f", size = 11079 }, + { url = "https://files.pythonhosted.org/packages/ea/59/cf891143abe58a455b8eaa9175f0e80f624a146a2bf9a1ca842ee0ef930a/lru_dict-1.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:73593791047e36b37fdc0b67b76aeed439fcea80959c7d46201240f9ec3b2563", size = 32469 }, + { url = "https://files.pythonhosted.org/packages/59/88/d5976e9f70107ce11e45d93c6f0c2d5eaa1fc30bb3c8f57525eda4510dff/lru_dict-1.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1958cb70b9542773d6241974646e5410e41ef32e5c9e437d44040d59bd80daf2", size = 33496 }, + { url = "https://files.pythonhosted.org/packages/6c/f8/94d6e910d54fc1fa05c0ee1cd608c39401866a18cf5e5aff238449b33c11/lru_dict-1.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bc1cd3ed2cee78a47f11f3b70be053903bda197a873fd146e25c60c8e5a32cd6", size = 29914 }, + { url = "https://files.pythonhosted.org/packages/ca/b9/9db79780c8a3cfd66bba6847773061e5cf8a3746950273b9985d47bbfe53/lru_dict-1.3.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:82eb230d48eaebd6977a92ddaa6d788f14cf4f4bcf5bbffa4ddfd60d051aa9d4", size = 32241 }, + { url = "https://files.pythonhosted.org/packages/9b/b6/08a623019daec22a40c4d6d2c40851dfa3d129a53b2f9469db8eb13666c1/lru_dict-1.3.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:5ad659cbc349d0c9ba8e536b5f40f96a70c360f43323c29f4257f340d891531c", size = 37320 }, + { url = "https://files.pythonhosted.org/packages/70/0b/d3717159c26155ff77679cee1b077d22e1008bf45f19921e193319cd8e46/lru_dict-1.3.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:ba490b8972531d153ac0d4e421f60d793d71a2f4adbe2f7740b3c55dce0a12f1", size = 35054 }, + { url = "https://files.pythonhosted.org/packages/04/74/f2ae00de7c27984a19b88d2b09ac877031c525b01199d7841ec8fa657fd6/lru_dict-1.3.0-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:c0131351b8a7226c69f1eba5814cbc9d1d8daaf0fdec1ae3f30508e3de5262d4", size = 38613 }, + { url = "https://files.pythonhosted.org/packages/5a/0b/e30236aafe31b4247aa9ae61ba8aac6dde75c3ea0e47a8fb7eef53f6d5ce/lru_dict-1.3.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:0e88dba16695f17f41701269fa046197a3fd7b34a8dba744c8749303ddaa18df", size = 37143 }, + { url = "https://files.pythonhosted.org/packages/1c/28/b59bcebb8d76ba8147a784a8be7eab6a4ad3395b9236e73740ff675a5a52/lru_dict-1.3.0-cp312-cp312-win32.whl", hash = "sha256:6ffaf595e625b388babc8e7d79b40f26c7485f61f16efe76764e32dce9ea17fc", size = 12653 }, + { url = "https://files.pythonhosted.org/packages/bd/18/06d9710cb0a0d3634f8501e4bdcc07abe64a32e404d82895a6a36fab97f6/lru_dict-1.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:cf9da32ef2582434842ab6ba6e67290debfae72771255a8e8ab16f3e006de0aa", size = 13811 }, +] + +[[package]] +name = "markupsafe" +version = "2.1.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/87/5b/aae44c6655f3801e81aa3eef09dbbf012431987ba564d7231722f68df02d/MarkupSafe-2.1.5.tar.gz", hash = "sha256:d283d37a890ba4c1ae73ffadf8046435c76e7bc2247bbb63c00bd1a709c6544b", size = 19384 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/53/bd/583bf3e4c8d6a321938c13f49d44024dbe5ed63e0a7ba127e454a66da974/MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:8dec4936e9c3100156f8a2dc89c4b88d5c435175ff03413b443469c7c8c5f4d1", size = 18215 }, + { url = "https://files.pythonhosted.org/packages/48/d6/e7cd795fc710292c3af3a06d80868ce4b02bfbbf370b7cee11d282815a2a/MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:3c6b973f22eb18a789b1460b4b91bf04ae3f0c4234a0a6aa6b0a92f6f7b951d4", size = 14069 }, + { url = "https://files.pythonhosted.org/packages/51/b5/5d8ec796e2a08fc814a2c7d2584b55f889a55cf17dd1a90f2beb70744e5c/MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac07bad82163452a6884fe8fa0963fb98c2346ba78d779ec06bd7a6262132aee", size = 29452 }, + { url = "https://files.pythonhosted.org/packages/0a/0d/2454f072fae3b5a137c119abf15465d1771319dfe9e4acbb31722a0fff91/MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5dfb42c4604dddc8e4305050aa6deb084540643ed5804d7455b5df8fe16f5e5", size = 28462 }, + { url = "https://files.pythonhosted.org/packages/2d/75/fd6cb2e68780f72d47e6671840ca517bda5ef663d30ada7616b0462ad1e3/MarkupSafe-2.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ea3d8a3d18833cf4304cd2fc9cbb1efe188ca9b5efef2bdac7adc20594a0e46b", size = 27869 }, + { url = "https://files.pythonhosted.org/packages/b0/81/147c477391c2750e8fc7705829f7351cf1cd3be64406edcf900dc633feb2/MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d050b3361367a06d752db6ead6e7edeb0009be66bc3bae0ee9d97fb326badc2a", size = 33906 }, + { url = "https://files.pythonhosted.org/packages/8b/ff/9a52b71839d7a256b563e85d11050e307121000dcebc97df120176b3ad93/MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:bec0a414d016ac1a18862a519e54b2fd0fc8bbfd6890376898a6c0891dd82e9f", size = 32296 }, + { url = "https://files.pythonhosted.org/packages/88/07/2dc76aa51b481eb96a4c3198894f38b480490e834479611a4053fbf08623/MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:58c98fee265677f63a4385256a6d7683ab1832f3ddd1e66fe948d5880c21a169", size = 33038 }, + { url = "https://files.pythonhosted.org/packages/96/0c/620c1fb3661858c0e37eb3cbffd8c6f732a67cd97296f725789679801b31/MarkupSafe-2.1.5-cp312-cp312-win32.whl", hash = "sha256:8590b4ae07a35970728874632fed7bd57b26b0102df2d2b233b6d9d82f6c62ad", size = 16572 }, + { url = "https://files.pythonhosted.org/packages/3f/14/c3554d512d5f9100a95e737502f4a2323a1959f6d0d01e0d0997b35f7b10/MarkupSafe-2.1.5-cp312-cp312-win_amd64.whl", hash = "sha256:823b65d8706e32ad2df51ed89496147a42a2a6e01c13cfb6ffb8b1e92bc910bb", size = 17127 }, +] + +[[package]] +name = "multidict" +version = "6.0.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f9/79/722ca999a3a09a63b35aac12ec27dfa8e5bb3a38b0f857f7a1a209a88836/multidict-6.0.5.tar.gz", hash = "sha256:f7e301075edaf50500f0b341543c41194d8df3ae5caf4702f2095f3ca73dd8da", size = 59867 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/90/9c/7fda9c0defa09538c97b1f195394be82a1f53238536f70b32eb5399dfd4e/multidict-6.0.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:51d035609b86722963404f711db441cf7134f1889107fb171a970c9701f92e1e", size = 49575 }, + { url = "https://files.pythonhosted.org/packages/be/21/d6ca80dd1b9b2c5605ff7475699a8ff5dc6ea958cd71fb2ff234afc13d79/multidict-6.0.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:cbebcd5bcaf1eaf302617c114aa67569dd3f090dd0ce8ba9e35e9985b41ac35b", size = 29638 }, + { url = "https://files.pythonhosted.org/packages/9c/18/9565f32c19d186168731e859692dfbc0e98f66a1dcf9e14d69c02a78b75a/multidict-6.0.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2ffc42c922dbfddb4a4c3b438eb056828719f07608af27d163191cb3e3aa6cc5", size = 29874 }, + { url = "https://files.pythonhosted.org/packages/4e/4e/3815190e73e6ef101b5681c174c541bf972a1b064e926e56eea78d06e858/multidict-6.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ceb3b7e6a0135e092de86110c5a74e46bda4bd4fbfeeb3a3bcec79c0f861e450", size = 129914 }, + { url = "https://files.pythonhosted.org/packages/0c/08/bb47f886457e2259aefc10044e45c8a1b62f0c27228557e17775869d0341/multidict-6.0.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:79660376075cfd4b2c80f295528aa6beb2058fd289f4c9252f986751a4cd0496", size = 134589 }, + { url = "https://files.pythonhosted.org/packages/d5/2f/952f79b5f0795cf4e34852fc5cf4dfda6166f63c06c798361215b69c131d/multidict-6.0.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4428b29611e989719874670fd152b6625500ad6c686d464e99f5aaeeaca175a", size = 133259 }, + { url = "https://files.pythonhosted.org/packages/24/1f/af976383b0b772dd351210af5b60ff9927e3abb2f4a103e93da19a957da0/multidict-6.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d84a5c3a5f7ce6db1f999fb9438f686bc2e09d38143f2d93d8406ed2dd6b9226", size = 130779 }, + { url = "https://files.pythonhosted.org/packages/fc/b1/b0a7744be00b0f5045c7ed4e4a6b8ee6bde4672b2c620474712299df5979/multidict-6.0.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:76c0de87358b192de7ea9649beb392f107dcad9ad27276324c24c91774ca5271", size = 120125 }, + { url = "https://files.pythonhosted.org/packages/d0/bf/2a1d667acf11231cdf0b97a6cd9f30e7a5cf847037b5cf6da44884284bd0/multidict-6.0.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:79a6d2ba910adb2cbafc95dad936f8b9386e77c84c35bc0add315b856d7c3abb", size = 167095 }, + { url = "https://files.pythonhosted.org/packages/5e/e8/ad6ee74b1a2050d3bc78f566dabcc14c8bf89cbe87eecec866c011479815/multidict-6.0.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:92d16a3e275e38293623ebf639c471d3e03bb20b8ebb845237e0d3664914caef", size = 155823 }, + { url = "https://files.pythonhosted.org/packages/45/7c/06926bb91752c52abca3edbfefac1ea90d9d1bc00c84d0658c137589b920/multidict-6.0.5-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:fb616be3538599e797a2017cccca78e354c767165e8858ab5116813146041a24", size = 170233 }, + { url = "https://files.pythonhosted.org/packages/3c/29/3dd36cf6b9c5abba8b97bba84eb499a168ba59c3faec8829327b3887d123/multidict-6.0.5-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:14c2976aa9038c2629efa2c148022ed5eb4cb939e15ec7aace7ca932f48f9ba6", size = 169035 }, + { url = "https://files.pythonhosted.org/packages/60/47/9a0f43470c70bbf6e148311f78ef5a3d4996b0226b6d295bdd50fdcfe387/multidict-6.0.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:435a0984199d81ca178b9ae2c26ec3d49692d20ee29bc4c11a2a8d4514c67eda", size = 166229 }, + { url = "https://files.pythonhosted.org/packages/1d/23/c1b7ae7a0b8a3e08225284ef3ecbcf014b292a3ee821bc4ed2185fd4ce7d/multidict-6.0.5-cp312-cp312-win32.whl", hash = "sha256:9fe7b0653ba3d9d65cbe7698cca585bf0f8c83dbbcc710db9c90f478e175f2d5", size = 25840 }, + { url = "https://files.pythonhosted.org/packages/4a/68/66fceb758ad7a88993940dbdf3ac59911ba9dc46d7798bf6c8652f89f853/multidict-6.0.5-cp312-cp312-win_amd64.whl", hash = "sha256:01265f5e40f5a17f8241d52656ed27192be03bfa8764d88e8220141d1e4b3556", size = 27905 }, + { url = "https://files.pythonhosted.org/packages/fa/a2/17e1e23c6be0a916219c5292f509360c345b5fa6beeb50d743203c27532c/multidict-6.0.5-py3-none-any.whl", hash = "sha256:0d63c74e3d7ab26de115c49bffc92cc77ed23395303d496eae515d4204a625e7", size = 9729 }, +] + +[[package]] +name = "orjson" +version = "3.9.15" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6d/22/9709a4cb8606c04a9d70e9372b8d404a6b4c46668986ec76a6ecf184be62/orjson-3.9.15.tar.gz", hash = "sha256:95cae920959d772f30ab36d3b25f83bb0f3be671e986c72ce22f8fa700dae061", size = 4854933 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/21/61d2c6654eb21aea26ebef5c52a07f05150a23adb9b262a8c47d14734294/orjson-3.9.15-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:82425dd5c7bd3adfe4e94c78e27e2fa02971750c2b7ffba648b0f5d5cc016a73", size = 248747 }, + { url = "https://files.pythonhosted.org/packages/80/dc/d8fc078d73ff620de84b6dc93e099e243ac9b0f187aaf412b3215b1ee092/orjson-3.9.15-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2c51378d4a8255b2e7c1e5cc430644f0939539deddfa77f6fac7b56a9784160a", size = 144396 }, + { url = "https://files.pythonhosted.org/packages/c9/0d/1c7f78ec17ac24dbaf5566f6b87d38d4e72a72d3922bd41aab3baa7c024b/orjson-3.9.15-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6ae4e06be04dc00618247c4ae3f7c3e561d5bc19ab6941427f6d3722a0875ef7", size = 132395 }, + { url = "https://files.pythonhosted.org/packages/bc/7b/134695e9004cb2273327217008884f439f9dc89e09f4f4c278ca20466740/orjson-3.9.15-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bcef128f970bb63ecf9a65f7beafd9b55e3aaf0efc271a4154050fc15cdb386e", size = 160696 }, + { url = "https://files.pythonhosted.org/packages/6b/5b/06b55590e75849049e8ffb811548693db4ecb1403129694c048d383f207c/orjson-3.9.15-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b72758f3ffc36ca566ba98a8e7f4f373b6c17c646ff8ad9b21ad10c29186f00d", size = 155145 }, + { url = "https://files.pythonhosted.org/packages/6a/3a/225b65664b7de15cf706eda6ab65cb23e8f59c274d4457c4eeaa2d510980/orjson-3.9.15-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10c57bc7b946cf2efa67ac55766e41764b66d40cbd9489041e637c1304400494", size = 138729 }, + { url = "https://files.pythonhosted.org/packages/2f/f6/7b0dab06f5707e1edf2d5e0bb66f0054de16c55c35272385d4177a77d7ea/orjson-3.9.15-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:946c3a1ef25338e78107fba746f299f926db408d34553b4754e90a7de1d44068", size = 316910 }, + { url = "https://files.pythonhosted.org/packages/ea/05/524b2ef2614c40cb85d9cb742cb02fa5749c1e40c601b6e853602e982c70/orjson-3.9.15-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2f256d03957075fcb5923410058982aea85455d035607486ccb847f095442bda", size = 311056 }, + { url = "https://files.pythonhosted.org/packages/f8/c5/56e9a842afd65f76babe87b574c1597a090f0a4c860ec6d723527823b669/orjson-3.9.15-cp312-none-win_amd64.whl", hash = "sha256:5bb399e1b49db120653a31463b4a7b27cf2fbfe60469546baf681d1b39f4edf2", size = 136147 }, +] + +[[package]] +name = "packaging" +version = "24.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/51/65/50db4dda066951078f0a96cf12f4b9ada6e4b811516bf0262c0f4f7064d4/packaging-24.1.tar.gz", hash = "sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002", size = 148788 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/08/aa/cc0199a5f0ad350994d660967a8efb233fe0416e4639146c089643407ce6/packaging-24.1-py3-none-any.whl", hash = "sha256:5b8f2217dbdbd2f7f384c41c628544e6d52f2d0f53c6d0c3ea61aa5d1d7ff124", size = 53985 }, +] + +[[package]] +name = "pillow" +version = "10.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ef/43/c50c17c5f7d438e836c169e343695534c38c77f60e7c90389bd77981bc21/pillow-10.3.0.tar.gz", hash = "sha256:9d2455fbf44c914840c793e89aa82d0e1763a14253a000743719ae5946814b2d", size = 46572854 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cc/5d/b7fcd38cba0f7706f64c1674fc9f018e4c64f791770598c44affadea7c2f/pillow-10.3.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:e46f38133e5a060d46bd630faa4d9fa0202377495df1f068a8299fd78c84de84", size = 3528535 }, + { url = "https://files.pythonhosted.org/packages/5e/77/4cf407e7b033b4d8e5fcaac295b6e159cf1c70fa105d769f01ea2e1e5eca/pillow-10.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:50b8eae8f7334ec826d6eeffaeeb00e36b5e24aa0b9df322c247539714c6df19", size = 3352281 }, + { url = "https://files.pythonhosted.org/packages/53/7b/4f7b153a776725a87797d744ea1c73b83ac0b723f5e379297605dee118eb/pillow-10.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9d3bea1c75f8c53ee4d505c3e67d8c158ad4df0d83170605b50b64025917f338", size = 4321427 }, + { url = "https://files.pythonhosted.org/packages/45/08/d2cc751b790e77464f8648aa707e2327d6da5d95cf236a532e99c2e7a499/pillow-10.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:19aeb96d43902f0a783946a0a87dbdad5c84c936025b8419da0a0cd7724356b1", size = 4435915 }, + { url = "https://files.pythonhosted.org/packages/ef/97/f69d1932cf45bf5bd9fa1e2ae57bdf716524faa4fa9fb7dc62cdb1a19113/pillow-10.3.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:74d28c17412d9caa1066f7a31df8403ec23d5268ba46cd0ad2c50fb82ae40462", size = 4347392 }, + { url = "https://files.pythonhosted.org/packages/c6/c1/3521ddb9c1f3ac106af3e4512a98c785b6ed8a39e0f778480b8a4d340165/pillow-10.3.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:ff61bfd9253c3915e6d41c651d5f962da23eda633cf02262990094a18a55371a", size = 4514536 }, + { url = "https://files.pythonhosted.org/packages/c0/6f/347c241904a6514e59515284b01ba6f61765269a0d1a19fd2e6cbe331c8a/pillow-10.3.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d886f5d353333b4771d21267c7ecc75b710f1a73d72d03ca06df49b09015a9ef", size = 4555987 }, + { url = "https://files.pythonhosted.org/packages/c3/e2/3cc490c6b2e262713da82ce849c34bd8e6c31242afb53be8595d820b9877/pillow-10.3.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4b5ec25d8b17217d635f8935dbc1b9aa5907962fae29dff220f2659487891cd3", size = 4623526 }, + { url = "https://files.pythonhosted.org/packages/c1/b3/0209f70fa29b383e7618e47db95712a45788dea03bb960601753262a2883/pillow-10.3.0-cp312-cp312-win32.whl", hash = "sha256:51243f1ed5161b9945011a7360e997729776f6e5d7005ba0c6879267d4c5139d", size = 2217547 }, + { url = "https://files.pythonhosted.org/packages/d3/23/3927d888481ff7c44fdbca3bc2a2e97588c933db46723bf115201377c436/pillow-10.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:412444afb8c4c7a6cc11a47dade32982439925537e483be7c0ae0cf96c4f6a0b", size = 2531641 }, + { url = "https://files.pythonhosted.org/packages/db/36/1ecaa0541d3a1b1362f937d386eeb1875847bfa06d5225f1b0e1588d1007/pillow-10.3.0-cp312-cp312-win_arm64.whl", hash = "sha256:798232c92e7665fe82ac085f9d8e8ca98826f8e27859d9a96b41d519ecd2e49a", size = 2229746 }, +] + +[[package]] +name = "pip" +version = "24.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4d/87/fb90046e096a03aeab235e139436b3fe804cdd447ed2093b0d70eba3f7f8/pip-24.2.tar.gz", hash = "sha256:5b5e490b5e9cb275c879595064adce9ebd31b854e3e803740b72f9ccf34a45b8", size = 1922041 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d4/55/90db48d85f7689ec6f81c0db0622d704306c5284850383c090e6c7195a5c/pip-24.2-py3-none-any.whl", hash = "sha256:2cd581cf58ab7fcfca4ce8efa6dcacd0de5bf8d0a3eb9ec927e07405f4d9e2a2", size = 1815170 }, +] + +[[package]] +name = "psutil" +version = "6.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/18/c7/8c6872f7372eb6a6b2e4708b88419fb46b857f7a2e1892966b851cc79fc9/psutil-6.0.0.tar.gz", hash = "sha256:8faae4f310b6d969fa26ca0545338b21f73c6b15db7c4a8d934a5482faa818f2", size = 508067 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c5/66/78c9c3020f573c58101dc43a44f6855d01bbbd747e24da2f0c4491200ea3/psutil-6.0.0-cp27-none-win32.whl", hash = "sha256:02b69001f44cc73c1c5279d02b30a817e339ceb258ad75997325e0e6169d8b35", size = 249766 }, + { url = "https://files.pythonhosted.org/packages/e1/3f/2403aa9558bea4d3854b0e5e567bc3dd8e9fbc1fc4453c0aa9aafeb75467/psutil-6.0.0-cp27-none-win_amd64.whl", hash = "sha256:21f1fb635deccd510f69f485b87433460a603919b45e2a324ad65b0cc74f8fb1", size = 253024 }, + { url = "https://files.pythonhosted.org/packages/0b/37/f8da2fbd29690b3557cca414c1949f92162981920699cd62095a984983bf/psutil-6.0.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:c588a7e9b1173b6e866756dde596fd4cad94f9399daf99ad8c3258b3cb2b47a0", size = 250961 }, + { url = "https://files.pythonhosted.org/packages/35/56/72f86175e81c656a01c4401cd3b1c923f891b31fbcebe98985894176d7c9/psutil-6.0.0-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ed2440ada7ef7d0d608f20ad89a04ec47d2d3ab7190896cd62ca5fc4fe08bf0", size = 287478 }, + { url = "https://files.pythonhosted.org/packages/19/74/f59e7e0d392bc1070e9a70e2f9190d652487ac115bb16e2eff6b22ad1d24/psutil-6.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5fd9a97c8e94059b0ef54a7d4baf13b405011176c3b6ff257c247cae0d560ecd", size = 290455 }, + { url = "https://files.pythonhosted.org/packages/cd/5f/60038e277ff0a9cc8f0c9ea3d0c5eb6ee1d2470ea3f9389d776432888e47/psutil-6.0.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e2e8d0054fc88153ca0544f5c4d554d42e33df2e009c4ff42284ac9ebdef4132", size = 292046 }, + { url = "https://files.pythonhosted.org/packages/8b/20/2ff69ad9c35c3df1858ac4e094f20bd2374d33c8643cf41da8fd7cdcb78b/psutil-6.0.0-cp37-abi3-win32.whl", hash = "sha256:a495580d6bae27291324fe60cea0b5a7c23fa36a7cd35035a16d93bdcf076b9d", size = 253560 }, + { url = "https://files.pythonhosted.org/packages/73/44/561092313ae925f3acfaace6f9ddc4f6a9c748704317bad9c8c8f8a36a79/psutil-6.0.0-cp37-abi3-win_amd64.whl", hash = "sha256:33ea5e1c975250a720b3a6609c490db40dae5d83a4eb315170c4fe0d8b1f34b3", size = 257399 }, + { url = "https://files.pythonhosted.org/packages/7c/06/63872a64c312a24fb9b4af123ee7007a306617da63ff13bcc1432386ead7/psutil-6.0.0-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:ffe7fc9b6b36beadc8c322f84e1caff51e8703b88eee1da46d1e3a6ae11b4fd0", size = 251988 }, +] + +[[package]] +name = "psutil-home-assistant" +version = "0.0.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "psutil" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/01/4f/32a51f53d645044740d0513a6a029d782b35bdc51a55ea171ce85034f5b7/psutil-home-assistant-0.0.1.tar.gz", hash = "sha256:ebe4f3a98d76d93a3140da2823e9ef59ca50a59761fdc453b30b4407c4c1bdb8", size = 6045 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cb/48/8a0acb683d1fee78b966b15e78143b673154abb921061515254fb573aacd/psutil_home_assistant-0.0.1-py3-none-any.whl", hash = "sha256:35a782e93e23db845fc4a57b05df9c52c2d5c24f5b233bd63b01bae4efae3c41", size = 6300 }, +] + +[[package]] +name = "pycares" +version = "4.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1b/8f/daf60bbc06f4a3cd1cfb0ab807057151287df6f5c78f2e0d298acc9193ac/pycares-4.4.0.tar.gz", hash = "sha256:f47579d508f2f56eddd16ce72045782ad3b1b3b678098699e2b6a1b30733e1c2", size = 821630 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7f/8b/5a7c02b040a04047c2d6866ddf43a32e55dc67fcca4465917557ce43ba6a/pycares-4.4.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:fd644505a8cfd7f6584d33a9066d4e3d47700f050ef1490230c962de5dfb28c6", size = 136855 }, + { url = "https://files.pythonhosted.org/packages/90/99/3e57353374b012af59011538314668c72d2104c83346f25da48fbf38b75b/pycares-4.4.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:52084961262232ec04bd75f5043aed7e5d8d9695e542ff691dfef0110209f2d4", size = 75581 }, + { url = "https://files.pythonhosted.org/packages/ae/64/7fc939696479cabe85c4bb8dfda78ff32e862c1c1e51af745dcf86413597/pycares-4.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0c5368206057884cde18602580083aeaad9b860e2eac14fd253543158ce1e93", size = 290509 }, + { url = "https://files.pythonhosted.org/packages/ef/0d/f5f42970787482f759523b55093f9dcb040ec8b4973d5b00b39da2b7b34f/pycares-4.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:112a4979c695b1c86f6782163d7dec58d57a3b9510536dcf4826550f9053dd9a", size = 290054 }, + { url = "https://files.pythonhosted.org/packages/6b/9b/374dd4149993860cee5f895a9a9d84b767c06eeb26a8892c1dfbb98e3252/pycares-4.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8d186dafccdaa3409194c0f94db93c1a5d191145a275f19da6591f9499b8e7b8", size = 270786 }, + { url = "https://files.pythonhosted.org/packages/29/c5/7fcdf6564bfcfa75214ed16eb5b5d60a646010d08c6f4140209a6d0ffd93/pycares-4.4.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:64965dc19c578a683ea73487a215a8897276224e004d50eeb21f0bc7a0b63c88", size = 282138 }, + { url = "https://files.pythonhosted.org/packages/53/6e/b5487ac50acdfbb8429de0fae2905807c892eec167929cb6326592cf9012/pycares-4.4.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:ed2a38e34bec6f2586435f6ff0bc5fe11d14bebd7ed492cf739a424e81681540", size = 260851 }, + { url = "https://files.pythonhosted.org/packages/a6/55/e978a17db1eef47bf2b6b560b07b449e0aaf79e09580245f7316fbda5646/pycares-4.4.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:94d6962db81541eb0396d2f0dfcbb18cdb8c8b251d165efc2d974ae652c547d4", size = 283226 }, + { url = "https://files.pythonhosted.org/packages/c2/eb/ae8685a2900c3cf8c052df6536632b1025b7ad55e65d81b44c32385eb283/pycares-4.4.0-cp312-cp312-win32.whl", hash = "sha256:1168a48a834813aa80f412be2df4abaf630528a58d15c704857448b20b1675c0", size = 61542 }, + { url = "https://files.pythonhosted.org/packages/d3/72/e6af5a0670eb0b5beadef95479387af22b0ed7088e180677be04bf076476/pycares-4.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:db24c4e7fea4a052c6e869cbf387dd85d53b9736cfe1ef5d8d568d1ca925e977", size = 76252 }, +] + +[[package]] +name = "pycognito" +version = "2024.5.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "boto3" }, + { name = "envs" }, + { name = "pyjwt", extra = ["crypto"] }, + { name = "requests" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/26/67/3975cf257fcc04903686ef87d39be386d894a0d8182f43d37e9cbfc9609f/pycognito-2024.5.1.tar.gz", hash = "sha256:e211c66698c2c3dc8680e95107c2b4a922f504c3f7c179c27b8ee1ab0fc23ae4", size = 31182 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f5/7a/f38dd351f47596b22ddbde1b8906e7f43d14be391dcdbd0c2daba886f26c/pycognito-2024.5.1-py3-none-any.whl", hash = "sha256:c821895dc62b7aea410fdccae4f96d8be7cab374182339f50a03de0fcb93f9ea", size = 26607 }, +] + +[[package]] +name = "pycparser" +version = "2.22" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1d/b2/31537cf4b1ca988837256c910a668b553fceb8f069bedc4b1c826024b52c/pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6", size = 172736 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc", size = 117552 }, +] + +[[package]] +name = "pyjwt" +version = "2.8.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/30/72/8259b2bccfe4673330cea843ab23f86858a419d8f1493f66d413a76c7e3b/PyJWT-2.8.0.tar.gz", hash = "sha256:57e28d156e3d5c10088e0c68abb90bfac3df82b40a71bd0daa20c65ccd5c23de", size = 78313 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2b/4f/e04a8067c7c96c364cef7ef73906504e2f40d690811c021e1a1901473a19/PyJWT-2.8.0-py3-none-any.whl", hash = "sha256:59127c392cc44c2da5bb3192169a91f429924e17aff6534d70fdc02ab3e04320", size = 22591 }, +] + +[package.optional-dependencies] +crypto = [ + { name = "cryptography" }, +] + +[[package]] +name = "pyobjc-core" +version = "10.3.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b7/40/a38d78627bd882d86c447db5a195ff307001ae02c1892962c656f2fd6b83/pyobjc_core-10.3.1.tar.gz", hash = "sha256:b204a80ccc070f9ab3f8af423a3a25a6fd787e228508d00c4c30f8ac538ba720", size = 935027 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cd/4d/d5d552b209fbca644cf9e0115a4cef8bc5f6726a44303eb7ae8d8a920a9e/pyobjc_core-10.3.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:6ff5823d13d0a534cdc17fa4ad47cf5bee4846ce0fd27fc40012e12b46db571b", size = 825968 }, + { url = "https://files.pythonhosted.org/packages/2e/8b/341571ac5d625968083cbd718e1af7eac54197ed3d404dfff9467c3a8c88/pyobjc_core-10.3.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:2581e8e68885bcb0e11ec619e81ef28e08ee3fac4de20d8cc83bc5af5bcf4a90", size = 827410 }, +] + +[[package]] +name = "pyobjc-framework-cocoa" +version = "10.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyobjc-core" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a7/6c/b62e31e6e00f24e70b62f680e35a0d663ba14ff7601ae591b5d20e251161/pyobjc_framework_cocoa-10.3.1.tar.gz", hash = "sha256:1cf20714daaa986b488fb62d69713049f635c9d41a60c8da97d835710445281a", size = 4941542 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/29/73/9a913537d6d63758243f76a3d3acbae8eb77705c278eceaf37198e58dcf5/pyobjc_framework_Cocoa-10.3.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:11b4e0bad4bbb44a4edda128612f03cdeab38644bbf174de0c13129715497296", size = 396183 }, + { url = "https://files.pythonhosted.org/packages/93/1f/b203c35ac17ff50b101433783988b527c1b7d7386c175c9aec1c89da5426/pyobjc_framework_Cocoa-10.3.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:de5e62e5ccf2871a94acf3bf79646b20ea893cc9db78afa8d1fe1b0d0f7cbdb0", size = 395004 }, +] + +[[package]] +name = "pyobjc-framework-corebluetooth" +version = "10.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyobjc-core" }, + { name = "pyobjc-framework-cocoa" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f7/69/89afd7747f42d2eb1e8f4b7f2ba2739d98ccf36f6b5c72474802962494de/pyobjc_framework_corebluetooth-10.3.1.tar.gz", hash = "sha256:dc5d326ab5541b8b68e7e920aa8363851e779cb8c33842f6cfeef4674cc62f94", size = 50210 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/33/2f/b34311bc453472e34c7a9473b1da21d79f7126d61f95d85e7d679cbd98c1/pyobjc_framework_CoreBluetooth-10.3.1-cp36-abi3-macosx_10_13_universal2.whl", hash = "sha256:c89ee6fba0ed359c46b4908a7d01f88f133be025bd534cbbf4fb9c183e62fc97", size = 14052 }, + { url = "https://files.pythonhosted.org/packages/af/a2/946a7099d5181ebfa59eb390471b30b51f04da935f8ef8d9a9ac3a102e13/pyobjc_framework_CoreBluetooth-10.3.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:2f261a386aa6906f9d4601d35ff71a13315dbca1a0698bf1f1ecfe3971de4648", size = 14102 }, + { url = "https://files.pythonhosted.org/packages/87/43/a344c043be35a516c0e1b7c69cb1945c3150a11416fdd89f066214ef65fc/pyobjc_framework_CoreBluetooth-10.3.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:5211df0da2e8be511d9a54a48505dd7af0c4d04546fe2027dd723801d633c6ba", size = 10202 }, + { url = "https://files.pythonhosted.org/packages/f0/a4/ed61aba4cd2d66d0569669d047bcaf249fe28dd79331015fd0d6387dbd60/pyobjc_framework_CoreBluetooth-10.3.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:b8becd4e406be289a2d423611d3ad40730532a1f6728effb2200e68c9c04c3e8", size = 13942 }, +] + +[[package]] +name = "pyobjc-framework-libdispatch" +version = "10.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyobjc-core" }, + { name = "pyobjc-framework-cocoa" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b7/37/1a7d9e5a04ab42aa8186f3493478c055601503ac7f8d58b8501d23db8b21/pyobjc_framework_libdispatch-10.3.1.tar.gz", hash = "sha256:f5c3475498cb32f54d75e21952670e4a32c8517fb2db2e90869f634edc942446", size = 44771 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/40/1c/4d16cbe1d41462184e908d757537349cebddc7444950ea24dfbaf2a957ca/pyobjc_framework_libdispatch-10.3.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:b209dbc9338cd87e053ede4d782b8c445bcc0b9a3d0365a6ffa1f9cd5143c301", size = 20542 }, + { url = "https://files.pythonhosted.org/packages/fa/36/c95b42c290d41687c2f01599feff82f4b6f9774006c4dd051f5d6a9949fe/pyobjc_framework_libdispatch-10.3.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a74e62314376dc2d34bc5d4a86cedaf5795786178ebccd0553c58e8fa73400a3", size = 15643 }, +] + +[[package]] +name = "pyopenssl" +version = "24.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cryptography" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/91/a8/cbeec652549e30103b9e6147ad433405fdd18807ac2d54e6dbb73184d8a1/pyOpenSSL-24.1.0.tar.gz", hash = "sha256:cabed4bfaa5df9f1a16c0ef64a0cb65318b5cd077a7eda7d6970131ca2f41a6f", size = 179671 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/54/a7/2104f674a5a6845b04c8ff01659becc6b8978ca410b82b94287e0b1e018b/pyOpenSSL-24.1.0-py3-none-any.whl", hash = "sha256:17ed5be5936449c5418d1cd269a1a9e9081bc54c17aed272b45856a3d3dc86ad", size = 56945 }, +] + +[[package]] +name = "pyrfc3339" +version = "1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pytz" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/00/52/75ea0ae249ba885c9429e421b4f94bc154df68484847f1ac164287d978d7/pyRFC3339-1.1.tar.gz", hash = "sha256:81b8cbe1519cdb79bed04910dd6fa4e181faf8c88dff1e1b987b5f7ab23a5b1a", size = 5290 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c1/7a/725f5c16756ec6211b1e7eeac09f469084595513917ea069bc023c40a5e2/pyRFC3339-1.1-py2.py3-none-any.whl", hash = "sha256:67196cb83b470709c580bb4738b83165e67c6cc60e1f2e4f286cfcb402a926f4", size = 5669 }, +] + +[[package]] +name = "pyric" +version = "0.1.6.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/08/64/a99f27d3b4347486c7bfc0aa516016c46dc4c0f380ffccbd742a61af1eda/PyRIC-0.1.6.3.tar.gz", hash = "sha256:b539b01cafebd2406c00097f94525ea0f8ecd1dd92f7731f43eac0ef16c2ccc9", size = 870401 } + +[[package]] +name = "python-dateutil" +version = "2.9.0.post0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892 }, +] + +[[package]] +name = "python-slugify" +version = "8.0.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "text-unidecode" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/87/c7/5e1547c44e31da50a460df93af11a535ace568ef89d7a811069ead340c4a/python-slugify-8.0.4.tar.gz", hash = "sha256:59202371d1d05b54a9e7720c5e038f928f45daaffe41dd10822f3907b937c856", size = 10921 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a4/62/02da182e544a51a5c3ccf4b03ab79df279f9c60c5e82d5e8bec7ca26ac11/python_slugify-8.0.4-py2.py3-none-any.whl", hash = "sha256:276540b79961052b66b7d116620b36518847f52d5fd9e3a70164fc8c50faa6b8", size = 10051 }, +] + +[[package]] +name = "pytz" +version = "2024.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/90/26/9f1f00a5d021fff16dee3de13d43e5e978f3d58928e129c3a62cf7eb9738/pytz-2024.1.tar.gz", hash = "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812", size = 316214 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9c/3d/a121f284241f08268b21359bd425f7d4825cffc5ac5cd0e1b3d82ffd2b10/pytz-2024.1-py2.py3-none-any.whl", hash = "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319", size = 505474 }, +] + +[[package]] +name = "pyyaml" +version = "6.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cd/e5/af35f7ea75cf72f2cd079c95ee16797de7cd71f29ea7c68ae5ce7be1eda0/PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43", size = 125201 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bc/06/1b305bf6aa704343be85444c9d011f626c763abb40c0edc1cad13bfd7f86/PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28", size = 178692 }, + { url = "https://files.pythonhosted.org/packages/84/02/404de95ced348b73dd84f70e15a41843d817ff8c1744516bf78358f2ffd2/PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9", size = 165622 }, + { url = "https://files.pythonhosted.org/packages/c7/4c/4a2908632fc980da6d918b9de9c1d9d7d7e70b2672b1ad5166ed27841ef7/PyYAML-6.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a08c6f0fe150303c1c6b71ebcd7213c2858041a7e01975da3a99aed1e7a378ef", size = 696937 }, + { url = "https://files.pythonhosted.org/packages/b4/33/720548182ffa8344418126017aa1d4ab4aeec9a2275f04ce3f3573d8ace8/PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0", size = 724969 }, + { url = "https://files.pythonhosted.org/packages/4f/78/77b40157b6cb5f2d3d31a3d9b2efd1ba3505371f76730d267e8b32cf4b7f/PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4", size = 712604 }, + { url = "https://files.pythonhosted.org/packages/2e/97/3e0e089ee85e840f4b15bfa00e4e63d84a3691ababbfea92d6f820ea6f21/PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54", size = 126098 }, + { url = "https://files.pythonhosted.org/packages/2b/9f/fbade56564ad486809c27b322d0f7e6a89c01f6b4fe208402e90d4443a99/PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df", size = 138675 }, +] + +[[package]] +name = "requests" +version = "2.32.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "charset-normalizer" }, + { name = "idna" }, + { name = "urllib3" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/63/70/2bf7780ad2d390a8d301ad0b550f1581eadbd9a20f896afe06353c2a2913/requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760", size = 131218 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/9b/335f9764261e915ed497fcdeb11df5dfd6f7bf257d4a6a2a686d80da4d54/requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6", size = 64928 }, +] + +[[package]] +name = "s3transfer" +version = "0.10.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "botocore" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cb/67/94c6730ee4c34505b14d94040e2f31edf144c230b6b49e971b4f25ff8fab/s3transfer-0.10.2.tar.gz", hash = "sha256:0711534e9356d3cc692fdde846b4a1e4b0cb6519971860796e6bc4c7aea00ef6", size = 144095 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3c/4a/b221409913760d26cf4498b7b1741d510c82d3ad38381984a3ddc135ec66/s3transfer-0.10.2-py3-none-any.whl", hash = "sha256:eca1c20de70a39daee580aef4986996620f365c4e0fda6a86100231d62f1bf69", size = 82716 }, +] + +[[package]] +name = "setuptools" +version = "72.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/5e/11/487b18cc768e2ae25a919f230417983c8d5afa1b6ee0abd8b6db0b89fa1d/setuptools-72.1.0.tar.gz", hash = "sha256:8d243eff56d095e5817f796ede6ae32941278f542e0f941867cc05ae52b162ec", size = 2419487 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e1/58/e0ef3b9974a04ce9cde2a7a33881ddcb2d68450803745804545cdd8d258f/setuptools-72.1.0-py3-none-any.whl", hash = "sha256:5a03e1860cf56bb6ef48ce186b0e557fdba433237481a9a625176c2831be15d1", size = 2337965 }, +] + +[[package]] +name = "six" +version = "1.16.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/71/39/171f1c67cd00715f190ba0b100d606d440a28c93c7714febeca8b79af85e/six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926", size = 34041 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d9/5a/e7c31adbe875f2abbb91bd84cf2dc52d792b5a01506781dbcf25c91daf11/six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254", size = 11053 }, +] + +[[package]] +name = "sniffio" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a2/87/a6771e1546d97e7e041b6ae58d80074f81b7d5121207425c964ddf5cfdbd/sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc", size = 20372 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2", size = 10235 }, +] + +[[package]] +name = "snitun" +version = "0.39.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "aiohttp" }, + { name = "async-timeout" }, + { name = "attrs" }, + { name = "cryptography" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/74/ff/2b7499dbfea2fa748620f8181aebdff26e24b6f78026516760e73d11a319/snitun-0.39.1.tar.gz", hash = "sha256:fadbe447eea786291d5c52e67eae0658f53a1f68c4b97425e17a9579df503d7e", size = 33073 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/48/c3/1fd863e859a91d9087613195012d96e03c09063718b53deac610b4fd86b4/snitun-0.39.1-py3-none-any.whl", hash = "sha256:6ff55f6ba21d463877f9872de7d632fc18e400c8b42f8115c42d17e51075f674", size = 39089 }, +] + +[[package]] +name = "sqlalchemy" +version = "2.0.31" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "greenlet", marker = "python_version < '3.13' and (platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64')" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ba/7d/e3312ae374fe7a4af7e1494735125a714a0907317c829ab8d8a31d89ded4/SQLAlchemy-2.0.31.tar.gz", hash = "sha256:b607489dd4a54de56984a0c7656247504bd5523d9d0ba799aef59d4add009484", size = 9524110 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fc/26/1a44b4c9286bccdc2ac344da6487227595512aa60d45c6617b1b6cd859b6/SQLAlchemy-2.0.31-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:3b74570d99126992d4b0f91fb87c586a574a5872651185de8297c6f90055ae42", size = 2083132 }, + { url = "https://files.pythonhosted.org/packages/27/97/21efc51a670e2772156890e241120aac7dae6c92d1bf56e811fb3bec3373/SQLAlchemy-2.0.31-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6f77c4f042ad493cb8595e2f503c7a4fe44cd7bd59c7582fd6d78d7e7b8ec52c", size = 2073619 }, + { url = "https://files.pythonhosted.org/packages/ef/87/778b09abc441b6db4014efb9ef87be0c6959cbd46ee3280faad297f30c12/SQLAlchemy-2.0.31-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cd1591329333daf94467e699e11015d9c944f44c94d2091f4ac493ced0119449", size = 3222863 }, + { url = "https://files.pythonhosted.org/packages/60/f8/7794f3055d50e96cee04c19c7faeedacb323c7762f334660ba03bed95485/SQLAlchemy-2.0.31-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:74afabeeff415e35525bf7a4ecdab015f00e06456166a2eba7590e49f8db940e", size = 3233968 }, + { url = "https://files.pythonhosted.org/packages/e5/ed/aa6ad258a9478874c4b921e8e78d04d237667fc48550a94df79e827ae91f/SQLAlchemy-2.0.31-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:b9c01990d9015df2c6f818aa8f4297d42ee71c9502026bb074e713d496e26b67", size = 3170897 }, + { url = "https://files.pythonhosted.org/packages/7f/da/d8f8515caf3ef357ad02bb4fd38474fb72c21ee788e2995d9395bcf5185e/SQLAlchemy-2.0.31-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:66f63278db425838b3c2b1c596654b31939427016ba030e951b292e32b99553e", size = 3197274 }, + { url = "https://files.pythonhosted.org/packages/99/b3/02a2aeb619f5e366b29d9f5eeeaadbe2bd383eab22ce10a00ced870c63f0/SQLAlchemy-2.0.31-cp312-cp312-win32.whl", hash = "sha256:0b0f658414ee4e4b8cbcd4a9bb0fd743c5eeb81fc858ca517217a8013d282c96", size = 2053430 }, + { url = "https://files.pythonhosted.org/packages/d0/ff/5746886a796799d45285573c8a6564b4b84c730142ab974d7a3f7bacee6c/SQLAlchemy-2.0.31-cp312-cp312-win_amd64.whl", hash = "sha256:fa4b1af3e619b5b0b435e333f3967612db06351217c58bfb50cee5f003db2a5a", size = 2079376 }, + { url = "https://files.pythonhosted.org/packages/f3/89/ff21b6c7ccdb254fba5444d15afe193d9a71f4fa054b4823d4384d10718e/SQLAlchemy-2.0.31-py3-none-any.whl", hash = "sha256:69f3e3c08867a8e4856e92d7afb618b95cdee18e0bc1647b77599722c9a28911", size = 1874629 }, +] + +[[package]] +name = "text-unidecode" +version = "1.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ab/e2/e9a00f0ccb71718418230718b3d900e71a5d16e701a3dae079a21e9cd8f8/text-unidecode-1.3.tar.gz", hash = "sha256:bad6603bb14d279193107714b288be206cac565dfa49aa5b105294dd5c4aab93", size = 76885 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a6/a5/c0b6468d3824fe3fde30dbb5e1f687b291608f9473681bbf7dabbf5a87d7/text_unidecode-1.3-py2.py3-none-any.whl", hash = "sha256:1311f10e8b895935241623731c2ba64f4c455287888b18189350b67134a822e8", size = 78154 }, +] + +[[package]] +name = "typing-extensions" +version = "4.12.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/df/db/f35a00659bc03fec321ba8bce9420de607a1d37f8342eee1863174c69557/typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8", size = 85321 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/26/9f/ad63fc0248c5379346306f8668cda6e2e2e9c95e01216d2b8ffd9ff037d0/typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d", size = 37438 }, +] + +[[package]] +name = "tzdata" +version = "2024.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/74/5b/e025d02cb3b66b7b76093404392d4b44343c69101cc85f4d180dd5784717/tzdata-2024.1.tar.gz", hash = "sha256:2674120f8d891909751c38abcdfd386ac0a5a1127954fbc332af6b5ceae07efd", size = 190559 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/65/58/f9c9e6be752e9fcb8b6a0ee9fb87e6e7a1f6bcab2cdc73f02bb7ba91ada0/tzdata-2024.1-py2.py3-none-any.whl", hash = "sha256:9068bc196136463f5245e51efda838afa15aaeca9903f49050dfa2679db4d252", size = 345370 }, +] + +[[package]] +name = "uart-devices" +version = "0.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7f/52/46b9f7d6702a46467a3e9cd99b7b1fb4934bc6c177d9fd88c2301ee7ce3a/uart_devices-0.1.0.tar.gz", hash = "sha256:7f0342c0ba0bc2a4c13c9ead5462dc9feeaca507e5c7017ebd074a69567ad9b1", size = 5307 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9d/76/e79bbdfb5ab27d1f2349f977bcdc53cec70d4187c634594178f0f759161a/uart_devices-0.1.0-py3-none-any.whl", hash = "sha256:f019357945a4f2d619e43a7cef7cee4f52aeff06aa5c674f9da448dce3c9cd64", size = 4829 }, +] + +[[package]] +name = "ulid-transform" +version = "0.9.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b5/3b/15cb7d0af6768304098a2a2e85959b49579c661ec1207bd6ec7c6c9b7e82/ulid_transform-0.9.0.tar.gz", hash = "sha256:e50c78ddb89629d1d7b5e7436b51bb49ac3ddca7a278a78640299d4cd49105bc", size = 14399 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0f/43/962e5283ef9ddff48be9a2cdc9f9bc009dbe0cc5f71adb94fa90cb9cce72/ulid_transform-0.9.0-cp312-cp312-macosx_11_0_x86_64.whl", hash = "sha256:cf6a9c9b582df4e6b39095fb1faa7632d1632350b197bb4a5a9e0dd4f77b6946", size = 87619 }, + { url = "https://files.pythonhosted.org/packages/d7/c7/fbb343d8597bfd3041175b5c9c4519d837102aad7e1f04aae9a6a8c2b2ee/ulid_transform-0.9.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:30eed6d3f1162130992f64050990852751ead37ea415124a89eec5401306c9d3", size = 231669 }, + { url = "https://files.pythonhosted.org/packages/50/4e/321f6871766251d0a2c6e4c8d417d6106e6796fc1518eb33b376c2e00b3b/ulid_transform-0.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7fc01628e64e8bb862487ee691101af01f9c06b108dc90e1f4812137265dae5f", size = 225422 }, + { url = "https://files.pythonhosted.org/packages/c6/15/ba0289cd1f342e49874f77ab980efa3cb348e475182985566f60073d88e8/ulid_transform-0.9.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:6b9c26f274a3f1d198abed31c6710695af06bba3aa836108cac640b545c81f3d", size = 838075 }, + { url = "https://files.pythonhosted.org/packages/17/08/6d82866bb7600859aa0e01b6bf4bdc8c38ffc067b3f4ca10c84f61faaf11/ulid_transform-0.9.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:9f41f78e3cdd86aa03211a191418133b856f1e9852c01bc8b1a93049b8637882", size = 778823 }, + { url = "https://files.pythonhosted.org/packages/b5/00/d3131aa95b1c29c546f5552c0c3400e5ec4cf7ad8d790f1d831fde881a70/ulid_transform-0.9.0-cp312-cp312-win32.whl", hash = "sha256:1294b33c347b23cbb9c80bb3fc0148a6cd2891c0fca3b0eedeed1e183f263080", size = 88530 }, + { url = "https://files.pythonhosted.org/packages/2a/99/9991e8115ab3b4d6dccaaf6891e4958dd41f9a8de0011897955da45340d1/ulid_transform-0.9.0-cp312-cp312-win_amd64.whl", hash = "sha256:6b5e7e2cb081b572b41d3f40b8b4401405b7f4ee1d4774ee9b1a0c6700f4bd1c", size = 88537 }, +] + +[[package]] +name = "urllib3" +version = "1.26.19" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c8/93/65e479b023bbc46dab3e092bda6b0005424ea3217d711964ccdede3f9b1b/urllib3-1.26.19.tar.gz", hash = "sha256:3e3d753a8618b86d7de333b4223005f68720bcd6a7d2bcb9fbd2229ec7c1e429", size = 306068 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ae/6a/99eaaeae8becaa17a29aeb334a18e5d582d873b6f084c11f02581b8d7f7f/urllib3-1.26.19-py2.py3-none-any.whl", hash = "sha256:37a0344459b199fce0e80b0d3569837ec6b6937435c5244e7fd73fa6006830f3", size = 143933 }, +] + +[[package]] +name = "usb-devices" +version = "0.4.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/25/48/dbe6c4c559950ebebd413e8c40a8a60bfd47ddd79cb61b598a5987e03aad/usb_devices-0.4.5.tar.gz", hash = "sha256:9b5c7606df2bc791c6c45b7f76244a0cbed83cb6fa4c68791a143c03345e195d", size = 5421 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e1/c9/26171ae5b78d72dd006bbc51ca9baa2cbb889ae8e91608910207482108fd/usb_devices-0.4.5-py3-none-any.whl", hash = "sha256:8a415219ef1395e25aa0bddcad484c88edf9673acdeae8a07223ca7222a01dcf", size = 5349 }, +] + +[[package]] +name = "voluptuous" +version = "0.13.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/72/0c/0ed7352eeb7bd3d53d2c0ae87fa1e222170f53815b8df7d9cdce7ffedec0/voluptuous-0.13.1.tar.gz", hash = "sha256:e8d31c20601d6773cb14d4c0f42aee29c6821bbd1018039aac7ac5605b489723", size = 47706 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/68/927add5dfd55a0d666ffc8939ff4390b76ca3ffbc36c12369f9a034393cb/voluptuous-0.13.1-py3-none-any.whl", hash = "sha256:4b838b185f5951f2d6e8752b68fcf18bd7a9c26ded8f143f92d6d28f3921a3e6", size = 29790 }, +] + +[[package]] +name = "voluptuous-serialize" +version = "2.6.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "voluptuous" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/42/09/c26b38ab35d9f61e9bf5c3e805215db1316dd73c77569b47ab36a40d19b1/voluptuous-serialize-2.6.0.tar.gz", hash = "sha256:79acdc58239582a393144402d827fa8efd6df0f5350cdc606d9242f6f9bca7c4", size = 7562 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/58/86/355e1c65934760e2fb037219f1f360562567cf6731d281440c1d57d36856/voluptuous_serialize-2.6.0-py3-none-any.whl", hash = "sha256:85a5c8d4d829cb49186c1b5396a8a517413cc5938e1bb0e374350190cd139616", size = 6819 }, +] + +[[package]] +name = "winrt-runtime" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b9/49/7635e6cf189dbdf5cb02d297958f43f4c3f9f11bdf5b2ef0f27b2e5f8a8b/winrt_runtime-2.1.0.tar.gz", hash = "sha256:fc9aeea4ab4ddee143fd0aea656040ab7843a440895106314ecaff78a77fd716", size = 13394 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/13/62/a08bdb6bb0c857f5194c8823eaaced8c7065812e279109e5d7ac3ed78390/winrt_runtime-2.1.0-cp312-cp312-win32.whl", hash = "sha256:fd3d29c0d11a4afb46357dca7d8a6be22018c7bc77139c71721f4aa85beadea4", size = 179423 }, + { url = "https://files.pythonhosted.org/packages/77/02/1f8b192bf4e9bf2b79d76c79ced4f3604f77eb24fe6dcf5ff53fca958dc8/winrt_runtime-2.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:9845dad4de05794acf46387cbde1497755b4c01ba224ab846cbd8b65fba6c5d3", size = 209095 }, + { url = "https://files.pythonhosted.org/packages/54/a3/0aebe2dbe8974bbfa8c9308d63966245aa69d8c07e4f5e2162ba3fc86bf0/winrt_runtime-2.1.0-cp312-cp312-win_arm64.whl", hash = "sha256:902e7436dd6495717ab490e41179bdae3bd91b00c8336841ef9366633cdb35e5", size = 386674 }, +] + +[[package]] +name = "winrt-windows-devices-bluetooth" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "winrt-runtime" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b4/7c/e57f7b5afba8f83e4399551edc42367d92cb0630bdaa9a3ff2e848698489/winrt_windows_devices_bluetooth-2.1.0.tar.gz", hash = "sha256:dcd31148f7775377ab5efa52c4f454e02214db87bd6fbf22e07f110413c0d3d4", size = 19899 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c0/69/4c3adad1af0b52f7598a815107a9503ad51077b3cf886491f1422f38473e/winrt_Windows.Devices.Bluetooth-2.1.0-cp312-cp312-win32.whl", hash = "sha256:81e7aca2a33dd97dcff3382fb8b12893615a9fe9b986d35266852422b914f509", size = 88595 }, + { url = "https://files.pythonhosted.org/packages/39/8d/6362cf6c2bcde47bd5ab0a1ed3c7f68aaa62e1bdf8e440add6a2abaef22d/winrt_Windows.Devices.Bluetooth-2.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:325a07f00e525f5098691e5891d6d298153bb0e83a1d0bae5041da15d81ab801", size = 101802 }, + { url = "https://files.pythonhosted.org/packages/fd/a1/2c7e24d007e3e3592a342024d422c5e220e3919f56fd98d9d90aa07650a5/winrt_Windows.Devices.Bluetooth-2.1.0-cp312-cp312-win_arm64.whl", hash = "sha256:caa3be17a013a1fc1cb061f27c965ef949f5ca0de5b5843c68d7adaa37440340", size = 95630 }, +] + +[[package]] +name = "winrt-windows-devices-bluetooth-advertisement" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "winrt-runtime" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/04/63/986a94445d1853bff9bebbc86f500fb78314ccb64345a008d8227afc82b0/winrt_windows_devices_bluetooth_advertisement-2.1.0.tar.gz", hash = "sha256:d0eff0e0830b806b1351a78a397575c72e1ffa3a1cd9a1df3ef961094be61d36", size = 12690 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/da/34/f201c825d206a2d434af80e982aa00bf702386dcdf349592db9fa4737fd9/winrt_Windows.Devices.Bluetooth.Advertisement-2.1.0-cp312-cp312-win32.whl", hash = "sha256:8a6d5cde79558c23ec38b7938e73fb4588923d97820aa166f113f59b9fe25afb", size = 71477 }, + { url = "https://files.pythonhosted.org/packages/cb/3f/4b2c7b4a6364c894ac4fe16b1f3085857f3fff38b2fdb52baf194e8a8629/winrt_Windows.Devices.Bluetooth.Advertisement-2.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:2c4a514160f97fcd121a1e17964ec30131e2586aa62087c8b2b105727ce65b55", size = 79313 }, + { url = "https://files.pythonhosted.org/packages/c8/95/bef5cc101cca8127a8a486ddbc8d71197d287c89f94767b51e105a75e718/winrt_Windows.Devices.Bluetooth.Advertisement-2.1.0-cp312-cp312-win_arm64.whl", hash = "sha256:a119a1783c9c7f1813d31a4fa43e3d80adeea4adb07afa1e28c6699a7167b3c5", size = 77535 }, +] + +[[package]] +name = "winrt-windows-devices-bluetooth-genericattributeprofile" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "winrt-runtime" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e1/81/8fb2e983b759a0584624d65ceecdc24be00ac20c12aef833951692c01838/winrt_windows_devices_bluetooth_genericattributeprofile-2.1.0.tar.gz", hash = "sha256:9b8cea33cf5ee8b864365ceafc49f4d732b0e9a738721f3ccd3438dce928a93f", size = 31442 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/07/a4/f7215b2bee3ba8fce67b07697b3576cb876a5524e779cb53f39bcaf6fd98/winrt_Windows.Devices.Bluetooth.GenericAttributeProfile-2.1.0-cp312-cp312-win32.whl", hash = "sha256:eda1b17253aa5c8287759c52a805e16dbdd3a284dd7112b18f9fd93c1bf6a54f", size = 146826 }, + { url = "https://files.pythonhosted.org/packages/42/6e/742e3ee49065bc8026b042f535b507c7f898f4cfb21bc8e2dde0de9866d1/winrt_Windows.Devices.Bluetooth.GenericAttributeProfile-2.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:3e2ba48ab29cde6fcb7a61fe3fe0a7da8944b16a904cb7161929ed1e50bbde8e", size = 167796 }, + { url = "https://files.pythonhosted.org/packages/65/96/9495a2ef76bd14aed28ead9cc1cc969327fa64a475eee2a6fcdab020424a/winrt_Windows.Devices.Bluetooth.GenericAttributeProfile-2.1.0-cp312-cp312-win_arm64.whl", hash = "sha256:369f9eae52e9bc63bcd6917bcf5724a0863957c739d4b87bce649c8e2156ee0d", size = 160139 }, +] + +[[package]] +name = "winrt-windows-devices-enumeration" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "winrt-runtime" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/47/f6/9586ad0ce1153b0fb68feaca7064fbcb6b27280b7f7aff3d8102d1690e36/winrt_windows_devices_enumeration-2.1.0.tar.gz", hash = "sha256:caca7a4098468e1cf481b80b7437ebcbc28e83cfd81a229034a13eb727fd7f0c", size = 17914 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f6/c3/618093ff38b0522666402ad688bd62c442958801ac0333c6286bd7081150/winrt_Windows.Devices.Enumeration-2.1.0-cp312-cp312-win32.whl", hash = "sha256:888af01e58d94149f25b9b2355ec4aeaf62418738cb3522b36b3159be8aaa2e7", size = 102722 }, + { url = "https://files.pythonhosted.org/packages/af/e6/cae210ada38ea48c6fc2bf156491ae6084415c069d15b89adf417722988c/winrt_Windows.Devices.Enumeration-2.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:f1a4f305e01e76f3af7422cbf35d9ec53109f691608541fb2c6ee9a53081405a", size = 121837 }, + { url = "https://files.pythonhosted.org/packages/3e/18/372ef2b5f3694f6399f88dd640b3e4f3222bb3f6710e90c064dd505988cb/winrt_Windows.Devices.Enumeration-2.1.0-cp312-cp312-win_arm64.whl", hash = "sha256:f98735e1818f1201fe7c4976b7fce0389f51937475a8d3b291e690922af939fe", size = 114901 }, +] + +[[package]] +name = "winrt-windows-foundation" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "winrt-runtime" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f8/9d/2e2c3c96396a96055068d60d835b5215281132e2ba151058d437f8f40299/winrt_windows_foundation-2.1.0.tar.gz", hash = "sha256:6d57f35a5d744c3bc1a897c9b539322887a87765bebce47fddcfb942de587d5a", size = 21559 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8e/2c/1e7d540739c430cd2cb0632806de4b8411227989ab8633aad8c10dfcaf53/winrt_Windows.Foundation-2.1.0-cp312-cp312-win32.whl", hash = "sha256:b6201185fe0cdce104802f6029384850c3e56679dd3d545ddefdd809f81e2d8b", size = 82122 }, + { url = "https://files.pythonhosted.org/packages/ca/d0/b705e935eb3fcc7a9b3c70ca1c08e3b42d9f841d2d8f71939447e77e4deb/winrt_Windows.Foundation-2.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:a26a3906a4cb21fb2d5bce84ba7571b42921d31b3faee715ec598b9df581a6d4", size = 95831 }, + { url = "https://files.pythonhosted.org/packages/39/24/c8a6a7b932265e38f0a8ac2aa306f0e0a78ff08c6a14ad8e40c53ff6c9e6/winrt_Windows.Foundation-2.1.0-cp312-cp312-win_arm64.whl", hash = "sha256:4feb7daabdf91c58073a7a90633b0b0b9b128f1cddfb901607a90e558b22515e", size = 86213 }, +] + +[[package]] +name = "winrt-windows-foundation-collections" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "winrt-runtime" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/57/11/4eb203f05f6356745258bc4f9174cea103b3fd2d1699ed7c992219b63754/winrt_windows_foundation_collections-2.1.0.tar.gz", hash = "sha256:b54709d5b906befe957cce4648e6fe404586b5d9cc4ea0b91fab0fde54ef0455", size = 12315 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/97/8c/4e609241bc4e81b6dd86961641622f106b5fd528661f6b895e0988ec4135/winrt_Windows.Foundation.Collections-2.1.0-cp312-cp312-win32.whl", hash = "sha256:dd349c9fc7496f3336ce151ec7485a3e101ab2a73d5052d47dfdc2c885d09358", size = 48919 }, + { url = "https://files.pythonhosted.org/packages/9c/d6/923a7d7dfa5817d7037b69af67a7fea86ce43e1463d6399b81096cd372b4/winrt_Windows.Foundation.Collections-2.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:05d3e805b2a1bc2dda6793c20408dfd701389a89086dfbb41a6ed8cc719c7c1d", size = 58729 }, + { url = "https://files.pythonhosted.org/packages/b7/0c/f7717fd3b0c313efe3dbfe3fa8fd36b55cb2113c3adb0d0b6830f22d5177/winrt_Windows.Foundation.Collections-2.1.0-cp312-cp312-win_arm64.whl", hash = "sha256:d59ac0c3f309c449af85563323a1979be7838571551e42ac288006fb04686f85", size = 51563 }, +] + +[[package]] +name = "winrt-windows-storage-streams" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "winrt-runtime" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/25/9a/a8b030ace83c21b7b32c91791de0509439e01052480093b9e67011a37a37/winrt_windows_storage_streams-2.1.0.tar.gz", hash = "sha256:d0e68b0ae9bb53b2d423332771a4679f5862ddc01fe57dfef89fe25b982dd6d1", size = 20837 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/55/bc/a6fd9087233518a95002d86878942b6e0c24e87ca12db67c6e981d16368c/winrt_Windows.Storage.Streams-2.1.0-cp312-cp312-win32.whl", hash = "sha256:5ed6b85a93228c9fb4129628a2d0a1f6b8eeb0b89fc74b3aefab0361ad6256d5", size = 91527 }, + { url = "https://files.pythonhosted.org/packages/c0/80/fe9d1d320fcf21b2d546ca3453c411ddaafa983322243e61290afe012aef/winrt_Windows.Storage.Streams-2.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:d1c664b3fc12c74793577322209ee16b1e7c06838f5e924b831ad2afea5440bf", size = 104032 }, + { url = "https://files.pythonhosted.org/packages/32/9d/1ce2451c163d63242587b291f2b8d9776aa05028d7b4308e3761fb1ee876/winrt_Windows.Storage.Streams-2.1.0-cp312-cp312-win_arm64.whl", hash = "sha256:fb8d2c7743d8b7a8ac7c017d3b0996f56bd8ebae2aea07d0e26d79febe1a7b49", size = 101272 }, +] + +[[package]] +name = "yarl" +version = "1.9.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "idna" }, + { name = "multidict" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e0/ad/bedcdccbcbf91363fd425a948994f3340924145c2bc8ccb296f4a1e52c28/yarl-1.9.4.tar.gz", hash = "sha256:566db86717cf8080b99b58b083b773a908ae40f06681e87e589a976faf8246bf", size = 141869 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/cd/a921122610dedfed94e494af18e85aae23e93274c00ca464cfc591c8f4fb/yarl-1.9.4-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0d2454f0aef65ea81037759be5ca9947539667eecebca092733b2eb43c965a81", size = 129561 }, + { url = "https://files.pythonhosted.org/packages/7c/a0/887c93020c788f249c24eaab288c46e5fed4d2846080eaf28ed3afc36e8d/yarl-1.9.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:44d8ffbb9c06e5a7f529f38f53eda23e50d1ed33c6c869e01481d3fafa6b8142", size = 81595 }, + { url = "https://files.pythonhosted.org/packages/54/99/ed3c92c38f421ba6e36caf6aa91c34118771d252dce800118fa2f44d7962/yarl-1.9.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:aaaea1e536f98754a6e5c56091baa1b6ce2f2700cc4a00b0d49eca8dea471074", size = 79400 }, + { url = "https://files.pythonhosted.org/packages/ea/45/65801be625ef939acc8b714cf86d4a198c0646e80dc8970359d080c47204/yarl-1.9.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3777ce5536d17989c91696db1d459574e9a9bd37660ea7ee4d3344579bb6f129", size = 317397 }, + { url = "https://files.pythonhosted.org/packages/06/91/9696601a8ba674c8f0c15035cc9e94ca31f541330364adcfd5a399f598bf/yarl-1.9.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fc5fc1eeb029757349ad26bbc5880557389a03fa6ada41703db5e068881e5f2", size = 327246 }, + { url = "https://files.pythonhosted.org/packages/da/3e/bf25177b3618889bf067aacf01ef54e910cd569d14e2f84f5e7bec23bb82/yarl-1.9.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ea65804b5dc88dacd4a40279af0cdadcfe74b3e5b4c897aa0d81cf86927fee78", size = 327321 }, + { url = "https://files.pythonhosted.org/packages/28/1c/bdb3411467b805737dd2720b85fd082e49f59bf0cc12dc1dfcc80ab3d274/yarl-1.9.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa102d6d280a5455ad6a0f9e6d769989638718e938a6a0a2ff3f4a7ff8c62cc4", size = 322424 }, + { url = "https://files.pythonhosted.org/packages/41/e9/53bc89f039df2824a524a2aa03ee0bfb8f0585b08949e7521f5eab607085/yarl-1.9.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09efe4615ada057ba2d30df871d2f668af661e971dfeedf0c159927d48bbeff0", size = 310868 }, + { url = "https://files.pythonhosted.org/packages/79/cd/a78c3b0304a4a970b5ae3993f4f5f649443bc8bfa5622f244aed44c810ed/yarl-1.9.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:008d3e808d03ef28542372d01057fd09168419cdc8f848efe2804f894ae03e51", size = 323452 }, + { url = "https://files.pythonhosted.org/packages/2e/5e/1c78eb05ae0efae08498fd7ab939435a29f12c7f161732e7fe327e5b8ca1/yarl-1.9.4-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:6f5cb257bc2ec58f437da2b37a8cd48f666db96d47b8a3115c29f316313654ff", size = 313554 }, + { url = "https://files.pythonhosted.org/packages/04/e0/0029563a8434472697aebb269fdd2ffc8a19e3840add1d5fa169ec7c56e3/yarl-1.9.4-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:992f18e0ea248ee03b5a6e8b3b4738850ae7dbb172cc41c966462801cbf62cf7", size = 331029 }, + { url = "https://files.pythonhosted.org/packages/de/1b/7e6b1ad42ccc0ed059066a7ae2b6fd4bce67795d109a99ccce52e9824e96/yarl-1.9.4-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:0e9d124c191d5b881060a9e5060627694c3bdd1fe24c5eecc8d5d7d0eb6faabc", size = 333839 }, + { url = "https://files.pythonhosted.org/packages/85/8a/c364d6e2eeb4e128a5ee9a346fc3a09aa76739c0c4e2a7305989b54f174b/yarl-1.9.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:3986b6f41ad22988e53d5778f91855dc0399b043fc8946d4f2e68af22ee9ff10", size = 328251 }, + { url = "https://files.pythonhosted.org/packages/ec/9d/0da94b33b9fb89041e10f95a14a55b0fef36c60b6a1d5ff85a0c2ecb1a97/yarl-1.9.4-cp312-cp312-win32.whl", hash = "sha256:4b21516d181cd77ebd06ce160ef8cc2a5e9ad35fb1c5930882baff5ac865eee7", size = 70195 }, + { url = "https://files.pythonhosted.org/packages/c5/f4/2fdc5a11503bc61818243653d836061c9ce0370e2dd9ac5917258a007675/yarl-1.9.4-cp312-cp312-win_amd64.whl", hash = "sha256:a9bd00dc3bc395a662900f33f74feb3e757429e545d831eef5bb280252631984", size = 76397 }, + { url = "https://files.pythonhosted.org/packages/4d/05/4d79198ae568a92159de0f89e710a8d19e3fa267b719a236582eee921f4a/yarl-1.9.4-py3-none-any.whl", hash = "sha256:928cecb0ef9d5a7946eb6ff58417ad2fe9375762382f1bf5c55e61645f2c43ad", size = 31638 }, +] diff --git a/crates/uv/tests/snapshots/ecosystem__home-assistant-core-uv-lock-output.snap b/crates/uv/tests/snapshots/ecosystem__home-assistant-core-uv-lock-output.snap new file mode 100644 index 000000000000..640e9da5b6aa --- /dev/null +++ b/crates/uv/tests/snapshots/ecosystem__home-assistant-core-uv-lock-output.snap @@ -0,0 +1,11 @@ +--- +source: crates/uv/tests/ecosystem.rs +expression: snapshot +--- +success: true +exit_code: 0 +----- stdout ----- + +----- stderr ----- +warning: `uv lock` is experimental and may change without warning +Resolved 97 packages in [TIME] diff --git a/crates/uv/tests/snapshots/ecosystem__packse-lock-file.snap b/crates/uv/tests/snapshots/ecosystem__packse-lock-file.snap new file mode 100644 index 000000000000..b2d017ecdb3d --- /dev/null +++ b/crates/uv/tests/snapshots/ecosystem__packse-lock-file.snap @@ -0,0 +1,677 @@ +--- +source: crates/uv/tests/ecosystem.rs +expression: lock +--- +version = 1 +requires-python = ">=3.12" + +[options] +exclude-newer = "2024-08-08 00:00:00 UTC" + +[[package]] +name = "anyio" +version = "4.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "idna" }, + { name = "sniffio" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e6/e3/c4c8d473d6780ef1853d630d581f70d655b4f8d7553c6997958c283039a2/anyio-4.4.0.tar.gz", hash = "sha256:5aadc6a1bbb7cdb0bede386cac5e2940f5e2ff3aa20277e991cf028e0585ce94", size = 163930 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/a2/10639a79341f6c019dedc95bd48a4928eed9f1d1197f4c04f546fc7ae0ff/anyio-4.4.0-py3-none-any.whl", hash = "sha256:c1b2d8f46a8a812513012e1107cb0e68c17159a7a594208005a57dc776e1bdc7", size = 86780 }, +] + +[[package]] +name = "certifi" +version = "2024.7.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c2/02/a95f2b11e207f68bc64d7aae9666fed2e2b3f307748d5123dffb72a1bbea/certifi-2024.7.4.tar.gz", hash = "sha256:5a1e7645bc0ec61a09e26c36f6106dd4cf40c6db3a1fb6352b0244e7fb057c7b", size = 164065 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1c/d5/c84e1a17bf61d4df64ca866a1c9a913874b4e9bdc131ec689a0ad013fb36/certifi-2024.7.4-py3-none-any.whl", hash = "sha256:c198e21b1289c2ab85ee4e67bb4b4ef3ead0892059901a8d5b622f24a1101e90", size = 162960 }, +] + +[[package]] +name = "cffi" +version = "1.17.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pycparser" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1e/bf/82c351342972702867359cfeba5693927efe0a8dd568165490144f554b18/cffi-1.17.0.tar.gz", hash = "sha256:f3157624b7558b914cb039fd1af735e5e8049a87c817cc215109ad1c8779df76", size = 516073 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1a/1f/7862231350cc959a3138889d2c8d33da7042b22e923457dfd4cd487d772a/cffi-1.17.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aec510255ce690d240f7cb23d7114f6b351c733a74c279a84def763660a2c3bc", size = 182826 }, + { url = "https://files.pythonhosted.org/packages/8b/8c/26119bf8b79e05a1c39812064e1ee7981e1f8a5372205ba5698ea4dd958d/cffi-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2770bb0d5e3cc0e31e7318db06efcbcdb7b31bcb1a70086d3177692a02256f59", size = 178494 }, + { url = "https://files.pythonhosted.org/packages/61/94/4882c47d3ad396d91f0eda6ef16d45be3d752a332663b7361933039ed66a/cffi-1.17.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:db9a30ec064129d605d0f1aedc93e00894b9334ec74ba9c6bdd08147434b33eb", size = 454459 }, + { url = "https://files.pythonhosted.org/packages/0f/7c/a6beb119ad515058c5ee1829742d96b25b2b9204ff920746f6e13bf574eb/cffi-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a47eef975d2b8b721775a0fa286f50eab535b9d56c70a6e62842134cf7841195", size = 478502 }, + { url = "https://files.pythonhosted.org/packages/61/8a/2575cd01a90e1eca96a30aec4b1ac101a6fae06c49d490ac2704fa9bc8ba/cffi-1.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f3e0992f23bbb0be00a921eae5363329253c3b86287db27092461c887b791e5e", size = 485381 }, + { url = "https://files.pythonhosted.org/packages/cd/66/85899f5a9f152db49646e0c77427173e1b77a1046de0191ab3b0b9a5e6e3/cffi-1.17.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6107e445faf057c118d5050560695e46d272e5301feffda3c41849641222a828", size = 470907 }, + { url = "https://files.pythonhosted.org/packages/00/13/150924609bf377140abe6e934ce0a57f3fc48f1fd956ec1f578ce97a4624/cffi-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eb862356ee9391dc5a0b3cbc00f416b48c1b9a52d252d898e5b7696a5f9fe150", size = 479074 }, + { url = "https://files.pythonhosted.org/packages/17/fd/7d73d7110155c036303b0a6462c56250e9bc2f4119d7591d27417329b4d1/cffi-1.17.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:c1c13185b90bbd3f8b5963cd8ce7ad4ff441924c31e23c975cb150e27c2bf67a", size = 484225 }, + { url = "https://files.pythonhosted.org/packages/fc/83/8353e5c9b01bb46332dac3dfb18e6c597a04ceb085c19c814c2f78a8c0d0/cffi-1.17.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:17c6d6d3260c7f2d94f657e6872591fe8733872a86ed1345bda872cfc8c74885", size = 488388 }, + { url = "https://files.pythonhosted.org/packages/73/0c/f9d5ca9a095b1fc88ef77d1f8b85d11151c374144e4606da33874e17b65b/cffi-1.17.0-cp312-cp312-win32.whl", hash = "sha256:c3b8bd3133cd50f6b637bb4322822c94c5ce4bf0d724ed5ae70afce62187c492", size = 172096 }, + { url = "https://files.pythonhosted.org/packages/72/21/8c5d285fe20a6e31d29325f1287bb0e55f7d93630a5a44cafdafb5922495/cffi-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:dca802c8db0720ce1c49cce1149ff7b06e91ba15fa84b1d59144fef1a1bc7ac2", size = 181478 }, + { url = "https://files.pythonhosted.org/packages/17/8f/581f2f3c3464d5f7cf87c2f7a5ba9acc6976253e02d73804240964243ec2/cffi-1.17.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:6ce01337d23884b21c03869d2f68c5523d43174d4fc405490eb0091057943118", size = 182638 }, + { url = "https://files.pythonhosted.org/packages/8d/1c/c9afa66684b7039f48018eb11b229b659dfb32b7a16b88251bac106dd1ff/cffi-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:cab2eba3830bf4f6d91e2d6718e0e1c14a2f5ad1af68a89d24ace0c6b17cced7", size = 178453 }, + { url = "https://files.pythonhosted.org/packages/cc/b6/1a134d479d3a5a1ff2fabbee551d1d3f1dd70f453e081b5f70d604aae4c0/cffi-1.17.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:14b9cbc8f7ac98a739558eb86fabc283d4d564dafed50216e7f7ee62d0d25377", size = 454441 }, + { url = "https://files.pythonhosted.org/packages/b1/b4/e1569475d63aad8042b0935dbf62ae2a54d1e9142424e2b0e924d2d4a529/cffi-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b00e7bcd71caa0282cbe3c90966f738e2db91e64092a877c3ff7f19a1628fdcb", size = 478543 }, + { url = "https://files.pythonhosted.org/packages/d2/40/a9ad03fbd64309dec5bb70bc803a9a6772602de0ee164d7b9a6ca5a89249/cffi-1.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:41f4915e09218744d8bae14759f983e466ab69b178de38066f7579892ff2a555", size = 485463 }, + { url = "https://files.pythonhosted.org/packages/a6/1a/f10be60e006dd9242a24bcc2b1cd55c34c578380100f742d8c610f7a5d26/cffi-1.17.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4760a68cab57bfaa628938e9c2971137e05ce48e762a9cb53b76c9b569f1204", size = 470854 }, + { url = "https://files.pythonhosted.org/packages/cc/b3/c035ed21aa3d39432bd749fe331ee90e4bc83ea2dbed1f71c4bc26c41084/cffi-1.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:011aff3524d578a9412c8b3cfaa50f2c0bd78e03eb7af7aa5e0df59b158efb2f", size = 479096 }, + { url = "https://files.pythonhosted.org/packages/00/cb/6f7edde01131de9382c89430b8e253b8c8754d66b63a62059663ceafeab2/cffi-1.17.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:a003ac9edc22d99ae1286b0875c460351f4e101f8c9d9d2576e78d7e048f64e0", size = 484013 }, + { url = "https://files.pythonhosted.org/packages/b9/83/8e4e8c211ea940210d293e951bf06b1bfb90f2eeee590e9778e99b4a8676/cffi-1.17.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ef9528915df81b8f4c7612b19b8628214c65c9b7f74db2e34a646a0a2a0da2d4", size = 488119 }, + { url = "https://files.pythonhosted.org/packages/5e/52/3f7cfbc4f444cb4f73ff17b28690d12436dde665f67d68f1e1687908ab6c/cffi-1.17.0-cp313-cp313-win32.whl", hash = "sha256:70d2aa9fb00cf52034feac4b913181a6e10356019b18ef89bc7c12a283bf5f5a", size = 172122 }, + { url = "https://files.pythonhosted.org/packages/94/19/cf5baa07ee0f0e55eab7382459fbddaba0fdb0ba45973dd92556ae0d02db/cffi-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:b7b6ea9e36d32582cda3465f54c4b454f62f23cb083ebc7a94e2ca6ef011c3a7", size = 181504 }, +] + +[[package]] +name = "charset-normalizer" +version = "3.3.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/63/09/c1bc53dab74b1816a00d8d030de5bf98f724c52c1635e07681d312f20be8/charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5", size = 104809 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/b2/fcedc8255ec42afee97f9e6f0145c734bbe104aac28300214593eb326f1d/charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8", size = 192892 }, + { url = "https://files.pythonhosted.org/packages/2e/7d/2259318c202f3d17f3fe6438149b3b9e706d1070fe3fcbb28049730bb25c/charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b", size = 122213 }, + { url = "https://files.pythonhosted.org/packages/3a/52/9f9d17c3b54dc238de384c4cb5a2ef0e27985b42a0e5cc8e8a31d918d48d/charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6", size = 119404 }, + { url = "https://files.pythonhosted.org/packages/99/b0/9c365f6d79a9f0f3c379ddb40a256a67aa69c59609608fe7feb6235896e1/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a", size = 137275 }, + { url = "https://files.pythonhosted.org/packages/91/33/749df346e93d7a30cdcb90cbfdd41a06026317bfbfb62cd68307c1a3c543/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389", size = 147518 }, + { url = "https://files.pythonhosted.org/packages/72/1a/641d5c9f59e6af4c7b53da463d07600a695b9824e20849cb6eea8a627761/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa", size = 140182 }, + { url = "https://files.pythonhosted.org/packages/ee/fb/14d30eb4956408ee3ae09ad34299131fb383c47df355ddb428a7331cfa1e/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b", size = 141869 }, + { url = "https://files.pythonhosted.org/packages/df/3e/a06b18788ca2eb6695c9b22325b6fde7dde0f1d1838b1792a0076f58fe9d/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed", size = 144042 }, + { url = "https://files.pythonhosted.org/packages/45/59/3d27019d3b447a88fe7e7d004a1e04be220227760264cc41b405e863891b/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26", size = 138275 }, + { url = "https://files.pythonhosted.org/packages/7b/ef/5eb105530b4da8ae37d506ccfa25057961b7b63d581def6f99165ea89c7e/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d", size = 144819 }, + { url = "https://files.pythonhosted.org/packages/a2/51/e5023f937d7f307c948ed3e5c29c4b7a3e42ed2ee0b8cdf8f3a706089bf0/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068", size = 149415 }, + { url = "https://files.pythonhosted.org/packages/24/9d/2e3ef673dfd5be0154b20363c5cdcc5606f35666544381bee15af3778239/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143", size = 141212 }, + { url = "https://files.pythonhosted.org/packages/5b/ae/ce2c12fcac59cb3860b2e2d76dc405253a4475436b1861d95fe75bdea520/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4", size = 142167 }, + { url = "https://files.pythonhosted.org/packages/ed/3a/a448bf035dce5da359daf9ae8a16b8a39623cc395a2ffb1620aa1bce62b0/charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7", size = 93041 }, + { url = "https://files.pythonhosted.org/packages/b6/7c/8debebb4f90174074b827c63242c23851bdf00a532489fba57fef3416e40/charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001", size = 100397 }, + { url = "https://files.pythonhosted.org/packages/28/76/e6222113b83e3622caa4bb41032d0b1bf785250607392e1b778aca0b8a7d/charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc", size = 48543 }, +] + +[[package]] +name = "chevron-blue" +version = "0.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9a/44/52293d3b0238318222a9bbf9092c53ad34afd1fc4dad7e30f4ce85cdfddd/chevron_blue-0.2.1.tar.gz", hash = "sha256:fec5d54f2a71883c74a6e8266936aeaf2b2427c91dd32dc77e5cc64cdbf1c7d2", size = 8702 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d9/f1/b959f5888a68017736384b90b8bb4a5ba78b32b3df7b5e31a2446ec17cba/chevron_blue-0.2.1-py3-none-any.whl", hash = "sha256:ab9accbb5c5f42ba224821904a4f14642cbc6d117706a8b105723bc80e733dea", size = 10306 }, +] + +[[package]] +name = "colorama" +version = "0.4.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335 }, +] + +[[package]] +name = "cryptography" +version = "43.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi", marker = "platform_python_implementation != 'PyPy'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/69/ec/9fb9dcf4f91f0e5e76de597256c43eedefd8423aa59be95c70c4c3db426a/cryptography-43.0.0.tar.gz", hash = "sha256:b88075ada2d51aa9f18283532c9f60e72170041bba88d7f37e49cbb10275299e", size = 686873 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d3/46/dcd2eb6840b9452e7fbc52720f3dc54a85eb41e68414733379e8f98e3275/cryptography-43.0.0-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:64c3f16e2a4fc51c0d06af28441881f98c5d91009b8caaff40cf3548089e9c74", size = 6239718 }, + { url = "https://files.pythonhosted.org/packages/e8/23/b0713319edff1d8633775b354f8b34a476e4dd5f4cd4b91e488baec3361a/cryptography-43.0.0-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3dcdedae5c7710b9f97ac6bba7e1052b95c7083c9d0e9df96e02a1932e777895", size = 3808466 }, + { url = "https://files.pythonhosted.org/packages/77/9d/0b98c73cebfd41e4fb0439fe9ce08022e8d059f51caa7afc8934fc1edcd9/cryptography-43.0.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3d9a1eca329405219b605fac09ecfc09ac09e595d6def650a437523fcd08dd22", size = 3998060 }, + { url = "https://files.pythonhosted.org/packages/ae/71/e073795d0d1624847f323481f7d84855f699172a632aa37646464b0e1712/cryptography-43.0.0-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:ea9e57f8ea880eeea38ab5abf9fbe39f923544d7884228ec67d666abd60f5a47", size = 3792596 }, + { url = "https://files.pythonhosted.org/packages/83/25/439a8ddd8058e7f898b7d27c36f94b66c8c8a2d60e1855d725845f4be0bc/cryptography-43.0.0-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:9a8d6802e0825767476f62aafed40532bd435e8a5f7d23bd8b4f5fd04cc80ecf", size = 4008355 }, + { url = "https://files.pythonhosted.org/packages/c7/a2/1607f1295eb2c30fcf2c07d7fd0c3772d21dcdb827de2b2730b02df0af51/cryptography-43.0.0-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:cc70b4b581f28d0a254d006f26949245e3657d40d8857066c2ae22a61222ef55", size = 3899133 }, + { url = "https://files.pythonhosted.org/packages/5e/64/f41f42ddc9c583737c9df0093affb92c61de7d5b0d299bf644524afe31c1/cryptography-43.0.0-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:4a997df8c1c2aae1e1e5ac49c2e4f610ad037fc5a3aadc7b64e39dea42249431", size = 4096946 }, + { url = "https://files.pythonhosted.org/packages/cd/cd/d165adcf3e707d6a049d44ade6ca89973549bed0ab3686fa49efdeefea53/cryptography-43.0.0-cp37-abi3-win32.whl", hash = "sha256:6e2b11c55d260d03a8cf29ac9b5e0608d35f08077d8c087be96287f43af3ccdc", size = 2616826 }, + { url = "https://files.pythonhosted.org/packages/f9/b7/38924229e84c41b0e88d7a5eed8a29d05a44364f85fbb9ddb3984b746fd2/cryptography-43.0.0-cp37-abi3-win_amd64.whl", hash = "sha256:31e44a986ceccec3d0498e16f3d27b2ee5fdf69ce2ab89b52eaad1d2f33d8778", size = 3078700 }, + { url = "https://files.pythonhosted.org/packages/66/d7/397515233e6a861f921bd0365b162b38e0cc513fcf4f1bdd9cc7bc5a3384/cryptography-43.0.0-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:7b3f5fe74a5ca32d4d0f302ffe6680fcc5c28f8ef0dc0ae8f40c0f3a1b4fca66", size = 6242814 }, + { url = "https://files.pythonhosted.org/packages/58/aa/99b2c00a4f54c60d210d6d1759c720ecf28305aa32d6fb1bb1853f415be6/cryptography-43.0.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac1955ce000cb29ab40def14fd1bbfa7af2017cca696ee696925615cafd0dce5", size = 3809467 }, + { url = "https://files.pythonhosted.org/packages/76/eb/ab783b47b3b9b55371b4361c7ec695144bde1a3343ff2b7a8c1d8fe617bb/cryptography-43.0.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:299d3da8e00b7e2b54bb02ef58d73cd5f55fb31f33ebbf33bd00d9aa6807df7e", size = 3998617 }, + { url = "https://files.pythonhosted.org/packages/a3/62/62770f34290ebb1b6542bd3f13b3b102875b90aed4804e296f8d2a5ac6d7/cryptography-43.0.0-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:ee0c405832ade84d4de74b9029bedb7b31200600fa524d218fc29bfa371e97f5", size = 3794003 }, + { url = "https://files.pythonhosted.org/packages/0f/6c/b42660b3075ff543065b2c1c5a3d9bedaadcff8ebce2ee981be2babc2934/cryptography-43.0.0-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:cb013933d4c127349b3948aa8aaf2f12c0353ad0eccd715ca789c8a0f671646f", size = 4008774 }, + { url = "https://files.pythonhosted.org/packages/f7/74/028cea86db9315ba3f991e307adabf9f0aa15067011137c38b2fb2aa16eb/cryptography-43.0.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:fdcb265de28585de5b859ae13e3846a8e805268a823a12a4da2597f1f5afc9f0", size = 3900098 }, + { url = "https://files.pythonhosted.org/packages/bd/f6/e4387edb55563e2546028ba4c634522fe727693d3cdd9ec0ecacedc75411/cryptography-43.0.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:2905ccf93a8a2a416f3ec01b1a7911c3fe4073ef35640e7ee5296754e30b762b", size = 4096867 }, + { url = "https://files.pythonhosted.org/packages/ce/61/55560405e75432bdd9f6cf72fa516cab623b83a3f6d230791bc8fc4afeee/cryptography-43.0.0-cp39-abi3-win32.whl", hash = "sha256:47ca71115e545954e6c1d207dd13461ab81f4eccfcb1345eac874828b5e3eaaf", size = 2616481 }, + { url = "https://files.pythonhosted.org/packages/e6/3d/696e7a0f04555c58a2813d47aaa78cb5ba863c1f453c74a4f45ae772b054/cryptography-43.0.0-cp39-abi3-win_amd64.whl", hash = "sha256:0663585d02f76929792470451a5ba64424acc3cd5227b03921dab0e2f27b1709", size = 3081462 }, +] + +[[package]] +name = "docutils" +version = "0.21.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ae/ed/aefcc8cd0ba62a0560c3c18c33925362d46c6075480bfa4df87b28e169a9/docutils-0.21.2.tar.gz", hash = "sha256:3a6b18732edf182daa3cd12775bbb338cf5691468f91eeeb109deff6ebfa986f", size = 2204444 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8f/d7/9322c609343d929e75e7e5e6255e614fcc67572cfd083959cdef3b7aad79/docutils-0.21.2-py3-none-any.whl", hash = "sha256:dafca5b9e384f0e419294eb4d2ff9fa826435bf15f15b7bd45723e8ad76811b2", size = 587408 }, +] + +[[package]] +name = "hatchling" +version = "1.25.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging" }, + { name = "pathspec" }, + { name = "pluggy" }, + { name = "trove-classifiers" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a3/51/8a4a67a8174ce59cf49e816e38e9502900aea9b4af672d0127df8e10d3b0/hatchling-1.25.0.tar.gz", hash = "sha256:7064631a512610b52250a4d3ff1bd81551d6d1431c4eb7b72e734df6c74f4262", size = 64632 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0c/8b/90e80904fdc24ce33f6fc6f35ebd2232fe731a8528a22008458cf197bc4d/hatchling-1.25.0-py3-none-any.whl", hash = "sha256:b47948e45d4d973034584dd4cb39c14b6a70227cf287ab7ec0ad7983408a882c", size = 84077 }, +] + +[[package]] +name = "idna" +version = "3.7" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/21/ed/f86a79a07470cb07819390452f178b3bef1d375f2ec021ecfc709fc7cf07/idna-3.7.tar.gz", hash = "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc", size = 189575 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e5/3e/741d8c82801c347547f8a2a06aa57dbb1992be9e948df2ea0eda2c8b79e8/idna-3.7-py3-none-any.whl", hash = "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0", size = 66836 }, +] + +[[package]] +name = "importlib-metadata" +version = "8.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "zipp" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f6/a1/db39a513aa99ab3442010a994eef1cb977a436aded53042e69bee6959f74/importlib_metadata-8.2.0.tar.gz", hash = "sha256:72e8d4399996132204f9a16dcc751af254a48f8d1b20b9ff0f98d4a8f901e73d", size = 53907 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/82/47/bb25ec04985d0693da478797c3d8c1092b140f3a53ccb984fbbd38affa5b/importlib_metadata-8.2.0-py3-none-any.whl", hash = "sha256:11901fa0c2f97919b288679932bb64febaeacf289d18ac84dd68cb2e74213369", size = 25920 }, +] + +[[package]] +name = "iniconfig" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d7/4b/cbd8e699e64a6f16ca3a8220661b5f83792b3017d0f79807cb8708d33913/iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3", size = 4646 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374", size = 5892 }, +] + +[[package]] +name = "jaraco-classes" +version = "3.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "more-itertools" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/06/c0/ed4a27bc5571b99e3cff68f8a9fa5b56ff7df1c2251cc715a652ddd26402/jaraco.classes-3.4.0.tar.gz", hash = "sha256:47a024b51d0239c0dd8c8540c6c7f484be3b8fcf0b2d85c13825780d3b3f3acd", size = 11780 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7f/66/b15ce62552d84bbfcec9a4873ab79d993a1dd4edb922cbfccae192bd5b5f/jaraco.classes-3.4.0-py3-none-any.whl", hash = "sha256:f662826b6bed8cace05e7ff873ce0f9283b5c924470fe664fff1c2f00f581790", size = 6777 }, +] + +[[package]] +name = "jaraco-context" +version = "5.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c9/60/e83781b07f9a66d1d102a0459e5028f3a7816fdd0894cba90bee2bbbda14/jaraco.context-5.3.0.tar.gz", hash = "sha256:c2f67165ce1f9be20f32f650f25d8edfc1646a8aeee48ae06fb35f90763576d2", size = 13345 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d2/40/11b7bc1898cf1dcb87ccbe09b39f5088634ac78bb25f3383ff541c2b40aa/jaraco.context-5.3.0-py3-none-any.whl", hash = "sha256:3e16388f7da43d384a1a7cd3452e72e14732ac9fe459678773a3608a812bf266", size = 6527 }, +] + +[[package]] +name = "jaraco-functools" +version = "4.0.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "more-itertools" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/03/b1/6ca3c2052e584e9908a2c146f00378939b3c51b839304ab8ef4de067f042/jaraco_functools-4.0.2.tar.gz", hash = "sha256:3460c74cd0d32bf82b9576bbb3527c4364d5b27a21f5158a62aed6c4b42e23f5", size = 18319 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b1/54/7623e24ffc63730c3a619101361b08860c6b7c7cfc1aef6edb66d80ed708/jaraco.functools-4.0.2-py3-none-any.whl", hash = "sha256:c9d16a3ed4ccb5a889ad8e0b7a343401ee5b2a71cee6ed192d3f68bc351e94e3", size = 9883 }, +] + +[[package]] +name = "jeepney" +version = "0.8.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d6/f4/154cf374c2daf2020e05c3c6a03c91348d59b23c5366e968feb198306fdf/jeepney-0.8.0.tar.gz", hash = "sha256:5efe48d255973902f6badc3ce55e2aa6c5c3b3bc642059ef3a91247bcfcc5806", size = 106005 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ae/72/2a1e2290f1ab1e06f71f3d0f1646c9e4634e70e1d37491535e19266e8dc9/jeepney-0.8.0-py3-none-any.whl", hash = "sha256:c0a454ad016ca575060802ee4d590dd912e35c122fa04e70306de3d076cce755", size = 48435 }, +] + +[[package]] +name = "keyring" +version = "25.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jaraco-classes" }, + { name = "jaraco-context" }, + { name = "jaraco-functools" }, + { name = "jeepney", marker = "sys_platform == 'linux'" }, + { name = "pywin32-ctypes", marker = "sys_platform == 'win32'" }, + { name = "secretstorage", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/32/30/bfdde7294ba6bb2f519950687471dc6a0996d4f77ab30d75c841fa4994ed/keyring-25.3.0.tar.gz", hash = "sha256:8d85a1ea5d6db8515b59e1c5d1d1678b03cf7fc8b8dcfb1651e8c4a524eb42ef", size = 61495 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/63/42/ea8c9726e5ee5ff0731978aaf7cd5fa16674cf549c46279b279d7167c2b4/keyring-25.3.0-py3-none-any.whl", hash = "sha256:8d963da00ccdf06e356acd9bf3b743208878751032d8599c6cc89eb51310ffae", size = 38742 }, +] + +[[package]] +name = "markdown-it-py" +version = "3.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mdurl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/38/71/3b932df36c1a044d397a1f92d1cf91ee0a503d91e470cbd670aa66b07ed0/markdown-it-py-3.0.0.tar.gz", hash = "sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb", size = 74596 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl", hash = "sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1", size = 87528 }, +] + +[[package]] +name = "mdurl" +version = "0.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba", size = 8729 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979 }, +] + +[[package]] +name = "more-itertools" +version = "10.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/92/0d/ad6a82320cb8eba710fd0dceb0f678d5a1b58d67d03ae5be14874baa39e0/more-itertools-10.4.0.tar.gz", hash = "sha256:fe0e63c4ab068eac62410ab05cccca2dc71ec44ba8ef29916a0090df061cf923", size = 120755 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d8/0b/6a51175e1395774449fca317fb8861379b7a2d59be411b8cce3d19d6ce78/more_itertools-10.4.0-py3-none-any.whl", hash = "sha256:0f7d9f83a0a8dcfa8a2694a770590d98a67ea943e3d9f5298309a484758c4e27", size = 60935 }, +] + +[[package]] +name = "msgspec" +version = "0.18.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/5e/fb/42b1865063fddb14dbcbb6e74e0a366ecf1ba371c4948664dde0b0e10f95/msgspec-0.18.6.tar.gz", hash = "sha256:a59fc3b4fcdb972d09138cb516dbde600c99d07c38fd9372a6ef500d2d031b4e", size = 216757 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1d/b5/c8fbf1db814eb29eda402952374b594b2559419ba7ec6d0997a9e5687530/msgspec-0.18.6-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d86f5071fe33e19500920333c11e2267a31942d18fed4d9de5bc2fbab267d28c", size = 202109 }, + { url = "https://files.pythonhosted.org/packages/d7/9a/235d2dbab078a0b8e6f338205dc59be0b027ce000554ee6a9c41b19339e5/msgspec-0.18.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce13981bfa06f5eb126a3a5a38b1976bddb49a36e4f46d8e6edecf33ccf11df1", size = 190281 }, + { url = "https://files.pythonhosted.org/packages/0e/f2/f864ed36a8a62c26b57c3e08d212bd8f3d12a3ca3ef64600be5452aa3c82/msgspec-0.18.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e97dec6932ad5e3ee1e3c14718638ba333befc45e0661caa57033cd4cc489466", size = 210305 }, + { url = "https://files.pythonhosted.org/packages/73/16/dfef780ced7d690dd5497846ed242ef3e27e319d59d1ddaae816a4f2c15e/msgspec-0.18.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad237100393f637b297926cae1868b0d500f764ccd2f0623a380e2bcfb2809ca", size = 212510 }, + { url = "https://files.pythonhosted.org/packages/c1/90/f5b3a788c4b3d92190e3345d1afa3dd107d5f16b8194e1f61b72582ee9bd/msgspec-0.18.6-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:db1d8626748fa5d29bbd15da58b2d73af25b10aa98abf85aab8028119188ed57", size = 214844 }, + { url = "https://files.pythonhosted.org/packages/ce/0b/d4cc1b09f8dfcc6cc4cc9739c13a86e093fe70257b941ea9feb15df22996/msgspec-0.18.6-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:d70cb3d00d9f4de14d0b31d38dfe60c88ae16f3182988246a9861259c6722af6", size = 217113 }, + { url = "https://files.pythonhosted.org/packages/3f/76/30d8f152299f65c85c46a2cbeaf95ad1d18516b5ce730acdaef696d4cfe6/msgspec-0.18.6-cp312-cp312-win_amd64.whl", hash = "sha256:1003c20bfe9c6114cc16ea5db9c5466e49fae3d7f5e2e59cb70693190ad34da0", size = 187184 }, +] + +[[package]] +name = "nh3" +version = "0.2.18" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/62/73/10df50b42ddb547a907deeb2f3c9823022580a7a47281e8eae8e003a9639/nh3-0.2.18.tar.gz", hash = "sha256:94a166927e53972a9698af9542ace4e38b9de50c34352b962f4d9a7d4c927af4", size = 15028 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/89/1daff5d9ba5a95a157c092c7c5f39b8dd2b1ddb4559966f808d31cfb67e0/nh3-0.2.18-cp37-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:14c5a72e9fe82aea5fe3072116ad4661af5cf8e8ff8fc5ad3450f123e4925e86", size = 1374474 }, + { url = "https://files.pythonhosted.org/packages/2c/b6/42fc3c69cabf86b6b81e4c051a9b6e249c5ba9f8155590222c2622961f58/nh3-0.2.18-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:7b7c2a3c9eb1a827d42539aa64091640bd275b81e097cd1d8d82ef91ffa2e811", size = 694573 }, + { url = "https://files.pythonhosted.org/packages/45/b9/833f385403abaf0023c6547389ec7a7acf141ddd9d1f21573723a6eab39a/nh3-0.2.18-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42c64511469005058cd17cc1537578eac40ae9f7200bedcfd1fc1a05f4f8c200", size = 844082 }, + { url = "https://files.pythonhosted.org/packages/05/2b/85977d9e11713b5747595ee61f381bc820749daf83f07b90b6c9964cf932/nh3-0.2.18-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0411beb0589eacb6734f28d5497ca2ed379eafab8ad8c84b31bb5c34072b7164", size = 782460 }, + { url = "https://files.pythonhosted.org/packages/72/f2/5c894d5265ab80a97c68ca36f25c8f6f0308abac649aaf152b74e7e854a8/nh3-0.2.18-cp37-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:5f36b271dae35c465ef5e9090e1fdaba4a60a56f0bb0ba03e0932a66f28b9189", size = 879827 }, + { url = "https://files.pythonhosted.org/packages/ab/a7/375afcc710dbe2d64cfbd69e31f82f3e423d43737258af01f6a56d844085/nh3-0.2.18-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:34c03fa78e328c691f982b7c03d4423bdfd7da69cd707fe572f544cf74ac23ad", size = 841080 }, + { url = "https://files.pythonhosted.org/packages/c2/a8/3bb02d0c60a03ad3a112b76c46971e9480efa98a8946677b5a59f60130ca/nh3-0.2.18-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:19aaba96e0f795bd0a6c56291495ff59364f4300d4a39b29a0abc9cb3774a84b", size = 924144 }, + { url = "https://files.pythonhosted.org/packages/1b/63/6ab90d0e5225ab9780f6c9fb52254fa36b52bb7c188df9201d05b647e5e1/nh3-0.2.18-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de3ceed6e661954871d6cd78b410213bdcb136f79aafe22aa7182e028b8c7307", size = 769192 }, + { url = "https://files.pythonhosted.org/packages/a4/17/59391c28580e2c32272761629893e761442fc7666da0b1cdb479f3b67b88/nh3-0.2.18-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6955369e4d9f48f41e3f238a9e60f9410645db7e07435e62c6a9ea6135a4907f", size = 791042 }, + { url = "https://files.pythonhosted.org/packages/a3/da/0c4e282bc3cff4a0adf37005fa1fb42257673fbc1bbf7d1ff639ec3d255a/nh3-0.2.18-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:f0eca9ca8628dbb4e916ae2491d72957fdd35f7a5d326b7032a345f111ac07fe", size = 1010073 }, + { url = "https://files.pythonhosted.org/packages/de/81/c291231463d21da5f8bba82c8167a6d6893cc5419b0639801ee5d3aeb8a9/nh3-0.2.18-cp37-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:3a157ab149e591bb638a55c8c6bcb8cdb559c8b12c13a8affaba6cedfe51713a", size = 1029782 }, + { url = "https://files.pythonhosted.org/packages/63/1d/842fed85cf66c973be0aed8770093d6a04741f65e2c388ddd4c07fd3296e/nh3-0.2.18-cp37-abi3-musllinux_1_2_i686.whl", hash = "sha256:c8b3a1cebcba9b3669ed1a84cc65bf005728d2f0bc1ed2a6594a992e817f3a50", size = 942504 }, + { url = "https://files.pythonhosted.org/packages/eb/61/73a007c74c37895fdf66e0edcd881f5eaa17a348ff02f4bb4bc906d61085/nh3-0.2.18-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:36c95d4b70530b320b365659bb5034341316e6a9b30f0b25fa9c9eff4c27a204", size = 941541 }, + { url = "https://files.pythonhosted.org/packages/78/48/54a788fc9428e481b2f58e0cd8564f6c74ffb6e9ef73d39e8acbeae8c629/nh3-0.2.18-cp37-abi3-win32.whl", hash = "sha256:a7f1b5b2c15866f2db413a3649a8fe4fd7b428ae58be2c0f6bca5eefd53ca2be", size = 573750 }, + { url = "https://files.pythonhosted.org/packages/26/8d/53c5b19c4999bdc6ba95f246f4ef35ca83d7d7423e5e38be43ad66544e5d/nh3-0.2.18-cp37-abi3-win_amd64.whl", hash = "sha256:8ce0f819d2f1933953fca255db2471ad58184a60508f03e6285e5114b6254844", size = 579012 }, +] + +[[package]] +name = "packaging" +version = "24.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/51/65/50db4dda066951078f0a96cf12f4b9ada6e4b811516bf0262c0f4f7064d4/packaging-24.1.tar.gz", hash = "sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002", size = 148788 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/08/aa/cc0199a5f0ad350994d660967a8efb233fe0416e4639146c089643407ce6/packaging-24.1-py3-none-any.whl", hash = "sha256:5b8f2217dbdbd2f7f384c41c628544e6d52f2d0f53c6d0c3ea61aa5d1d7ff124", size = 53985 }, +] + +[[package]] +name = "packse" +version = "0.0.0" +source = { editable = "." } +dependencies = [ + { name = "chevron-blue" }, + { name = "hatchling" }, + { name = "msgspec" }, + { name = "pyyaml" }, + { name = "setuptools" }, + { name = "twine" }, +] + +[package.optional-dependencies] +index = [ + { name = "pypiserver" }, +] +serve = [ + { name = "pypiserver" }, + { name = "watchfiles" }, +] + +[package.dev-dependencies] +dev = [ + { name = "psutil" }, + { name = "pytest" }, + { name = "syrupy" }, +] + +[[package]] +name = "pathspec" +version = "0.12.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ca/bc/f35b8446f4531a7cb215605d100cd88b7ac6f44ab3fc94870c120ab3adbf/pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712", size = 51043 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl", hash = "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08", size = 31191 }, +] + +[[package]] +name = "pip" +version = "24.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4d/87/fb90046e096a03aeab235e139436b3fe804cdd447ed2093b0d70eba3f7f8/pip-24.2.tar.gz", hash = "sha256:5b5e490b5e9cb275c879595064adce9ebd31b854e3e803740b72f9ccf34a45b8", size = 1922041 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d4/55/90db48d85f7689ec6f81c0db0622d704306c5284850383c090e6c7195a5c/pip-24.2-py3-none-any.whl", hash = "sha256:2cd581cf58ab7fcfca4ce8efa6dcacd0de5bf8d0a3eb9ec927e07405f4d9e2a2", size = 1815170 }, +] + +[[package]] +name = "pkginfo" +version = "1.10.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2f/72/347ec5be4adc85c182ed2823d8d1c7b51e13b9a6b0c1aae59582eca652df/pkginfo-1.10.0.tar.gz", hash = "sha256:5df73835398d10db79f8eecd5cd86b1f6d29317589ea70796994d49399af6297", size = 378457 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/56/09/054aea9b7534a15ad38a363a2bd974c20646ab1582a387a95b8df1bfea1c/pkginfo-1.10.0-py3-none-any.whl", hash = "sha256:889a6da2ed7ffc58ab5b900d888ddce90bce912f2d2de1dc1c26f4cb9fe65097", size = 30392 }, +] + +[[package]] +name = "pluggy" +version = "1.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/96/2d/02d4312c973c6050a18b314a5ad0b3210edb65a906f868e31c111dede4a6/pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1", size = 67955 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/5f/e351af9a41f866ac3f1fac4ca0613908d9a41741cfcf2228f4ad853b697d/pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669", size = 20556 }, +] + +[[package]] +name = "psutil" +version = "6.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/18/c7/8c6872f7372eb6a6b2e4708b88419fb46b857f7a2e1892966b851cc79fc9/psutil-6.0.0.tar.gz", hash = "sha256:8faae4f310b6d969fa26ca0545338b21f73c6b15db7c4a8d934a5482faa818f2", size = 508067 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c5/66/78c9c3020f573c58101dc43a44f6855d01bbbd747e24da2f0c4491200ea3/psutil-6.0.0-cp27-none-win32.whl", hash = "sha256:02b69001f44cc73c1c5279d02b30a817e339ceb258ad75997325e0e6169d8b35", size = 249766 }, + { url = "https://files.pythonhosted.org/packages/e1/3f/2403aa9558bea4d3854b0e5e567bc3dd8e9fbc1fc4453c0aa9aafeb75467/psutil-6.0.0-cp27-none-win_amd64.whl", hash = "sha256:21f1fb635deccd510f69f485b87433460a603919b45e2a324ad65b0cc74f8fb1", size = 253024 }, + { url = "https://files.pythonhosted.org/packages/0b/37/f8da2fbd29690b3557cca414c1949f92162981920699cd62095a984983bf/psutil-6.0.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:c588a7e9b1173b6e866756dde596fd4cad94f9399daf99ad8c3258b3cb2b47a0", size = 250961 }, + { url = "https://files.pythonhosted.org/packages/35/56/72f86175e81c656a01c4401cd3b1c923f891b31fbcebe98985894176d7c9/psutil-6.0.0-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ed2440ada7ef7d0d608f20ad89a04ec47d2d3ab7190896cd62ca5fc4fe08bf0", size = 287478 }, + { url = "https://files.pythonhosted.org/packages/19/74/f59e7e0d392bc1070e9a70e2f9190d652487ac115bb16e2eff6b22ad1d24/psutil-6.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5fd9a97c8e94059b0ef54a7d4baf13b405011176c3b6ff257c247cae0d560ecd", size = 290455 }, + { url = "https://files.pythonhosted.org/packages/cd/5f/60038e277ff0a9cc8f0c9ea3d0c5eb6ee1d2470ea3f9389d776432888e47/psutil-6.0.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e2e8d0054fc88153ca0544f5c4d554d42e33df2e009c4ff42284ac9ebdef4132", size = 292046 }, + { url = "https://files.pythonhosted.org/packages/8b/20/2ff69ad9c35c3df1858ac4e094f20bd2374d33c8643cf41da8fd7cdcb78b/psutil-6.0.0-cp37-abi3-win32.whl", hash = "sha256:a495580d6bae27291324fe60cea0b5a7c23fa36a7cd35035a16d93bdcf076b9d", size = 253560 }, + { url = "https://files.pythonhosted.org/packages/73/44/561092313ae925f3acfaace6f9ddc4f6a9c748704317bad9c8c8f8a36a79/psutil-6.0.0-cp37-abi3-win_amd64.whl", hash = "sha256:33ea5e1c975250a720b3a6609c490db40dae5d83a4eb315170c4fe0d8b1f34b3", size = 257399 }, + { url = "https://files.pythonhosted.org/packages/7c/06/63872a64c312a24fb9b4af123ee7007a306617da63ff13bcc1432386ead7/psutil-6.0.0-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:ffe7fc9b6b36beadc8c322f84e1caff51e8703b88eee1da46d1e3a6ae11b4fd0", size = 251988 }, +] + +[[package]] +name = "pycparser" +version = "2.22" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1d/b2/31537cf4b1ca988837256c910a668b553fceb8f069bedc4b1c826024b52c/pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6", size = 172736 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc", size = 117552 }, +] + +[[package]] +name = "pygments" +version = "2.18.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8e/62/8336eff65bcbc8e4cb5d05b55faf041285951b6e80f33e2bff2024788f31/pygments-2.18.0.tar.gz", hash = "sha256:786ff802f32e91311bff3889f6e9a86e81505fe99f2735bb6d60ae0c5004f199", size = 4891905 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f7/3f/01c8b82017c199075f8f788d0d906b9ffbbc5a47dc9918a945e13d5a2bda/pygments-2.18.0-py3-none-any.whl", hash = "sha256:b8e6aca0523f3ab76fee51799c488e38782ac06eafcf95e7ba832985c8e7b13a", size = 1205513 }, +] + +[[package]] +name = "pypiserver" +version = "2.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging" }, + { name = "pip" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/bb/31/007c532dea348eae41cd309920c01263ddde18cd9a9c307a8d75e7994b38/pypiserver-2.1.1.tar.gz", hash = "sha256:3f15a94969265add2ef44a035117b8dd18d7525af871ed58ac2571276293579b", size = 188504 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/97/1f/846aa2ea6e264efc2de4f293a2f548b8ac932041e1e0ab91eb81426983a7/pypiserver-2.1.1-py2.py3-none-any.whl", hash = "sha256:8c7ed96b2f76f2843e4a27002846bd7ebb7217e143cf60456ee6fa2a415c2d73", size = 92886 }, +] + +[[package]] +name = "pytest" +version = "8.3.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "iniconfig" }, + { name = "packaging" }, + { name = "pluggy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b4/8c/9862305bdcd6020bc7b45b1b5e7397a6caf1a33d3025b9a003b39075ffb2/pytest-8.3.2.tar.gz", hash = "sha256:c132345d12ce551242c87269de812483f5bcc87cdbb4722e48487ba194f9fdce", size = 1439314 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0f/f9/cf155cf32ca7d6fa3601bc4c5dd19086af4b320b706919d48a4c79081cf9/pytest-8.3.2-py3-none-any.whl", hash = "sha256:4ba08f9ae7dcf84ded419494d229b48d0903ea6407b030eaec46df5e6a73bba5", size = 341802 }, +] + +[[package]] +name = "pywin32-ctypes" +version = "0.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/10/3d/0cfbca45201351fe8c09cca743403e6c2407892e256e25d126ad64dc6bb7/pywin32-ctypes-0.2.2.tar.gz", hash = "sha256:3426e063bdd5fd4df74a14fa3cf80a0b42845a87e1d1e81f6549f9daec593a60", size = 26950 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a4/bc/78b2c00cc64c31dbb3be42a0e8600bcebc123ad338c3b714754d668c7c2d/pywin32_ctypes-0.2.2-py3-none-any.whl", hash = "sha256:bf490a1a709baf35d688fe0ecf980ed4de11d2b3e37b51e5442587a75d9957e7", size = 30152 }, +] + +[[package]] +name = "pyyaml" +version = "6.0.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/54/ed/79a089b6be93607fa5cdaedf301d7dfb23af5f25c398d5ead2525b063e17/pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e", size = 130631 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/86/0c/c581167fc46d6d6d7ddcfb8c843a4de25bdd27e4466938109ca68492292c/PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab", size = 183873 }, + { url = "https://files.pythonhosted.org/packages/a8/0c/38374f5bb272c051e2a69281d71cba6fdb983413e6758b84482905e29a5d/PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725", size = 173302 }, + { url = "https://files.pythonhosted.org/packages/c3/93/9916574aa8c00aa06bbac729972eb1071d002b8e158bd0e83a3b9a20a1f7/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5", size = 739154 }, + { url = "https://files.pythonhosted.org/packages/95/0f/b8938f1cbd09739c6da569d172531567dbcc9789e0029aa070856f123984/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425", size = 766223 }, + { url = "https://files.pythonhosted.org/packages/b9/2b/614b4752f2e127db5cc206abc23a8c19678e92b23c3db30fc86ab731d3bd/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476", size = 767542 }, + { url = "https://files.pythonhosted.org/packages/d4/00/dd137d5bcc7efea1836d6264f049359861cf548469d18da90cd8216cf05f/PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48", size = 731164 }, + { url = "https://files.pythonhosted.org/packages/c9/1f/4f998c900485e5c0ef43838363ba4a9723ac0ad73a9dc42068b12aaba4e4/PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b", size = 756611 }, + { url = "https://files.pythonhosted.org/packages/df/d1/f5a275fdb252768b7a11ec63585bc38d0e87c9e05668a139fea92b80634c/PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4", size = 140591 }, + { url = "https://files.pythonhosted.org/packages/0c/e8/4f648c598b17c3d06e8753d7d13d57542b30d56e6c2dedf9c331ae56312e/PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8", size = 156338 }, + { url = "https://files.pythonhosted.org/packages/ef/e3/3af305b830494fa85d95f6d95ef7fa73f2ee1cc8ef5b495c7c3269fb835f/PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba", size = 181309 }, + { url = "https://files.pythonhosted.org/packages/45/9f/3b1c20a0b7a3200524eb0076cc027a970d320bd3a6592873c85c92a08731/PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1", size = 171679 }, + { url = "https://files.pythonhosted.org/packages/7c/9a/337322f27005c33bcb656c655fa78325b730324c78620e8328ae28b64d0c/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133", size = 733428 }, + { url = "https://files.pythonhosted.org/packages/a3/69/864fbe19e6c18ea3cc196cbe5d392175b4cf3d5d0ac1403ec3f2d237ebb5/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484", size = 763361 }, + { url = "https://files.pythonhosted.org/packages/04/24/b7721e4845c2f162d26f50521b825fb061bc0a5afcf9a386840f23ea19fa/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5", size = 759523 }, + { url = "https://files.pythonhosted.org/packages/2b/b2/e3234f59ba06559c6ff63c4e10baea10e5e7df868092bf9ab40e5b9c56b6/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc", size = 726660 }, + { url = "https://files.pythonhosted.org/packages/fe/0f/25911a9f080464c59fab9027482f822b86bf0608957a5fcc6eaac85aa515/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652", size = 751597 }, + { url = "https://files.pythonhosted.org/packages/14/0d/e2c3b43bbce3cf6bd97c840b46088a3031085179e596d4929729d8d68270/PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183", size = 140527 }, + { url = "https://files.pythonhosted.org/packages/fa/de/02b54f42487e3d3c6efb3f89428677074ca7bf43aae402517bc7cca949f3/PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563", size = 156446 }, +] + +[[package]] +name = "readme-renderer" +version = "44.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "docutils" }, + { name = "nh3" }, + { name = "pygments" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5a/a9/104ec9234c8448c4379768221ea6df01260cd6c2ce13182d4eac531c8342/readme_renderer-44.0.tar.gz", hash = "sha256:8712034eabbfa6805cacf1402b4eeb2a73028f72d1166d6f5cb7f9c047c5d1e1", size = 32056 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e1/67/921ec3024056483db83953ae8e48079ad62b92db7880013ca77632921dd0/readme_renderer-44.0-py3-none-any.whl", hash = "sha256:2fbca89b81a08526aadf1357a8c2ae889ec05fb03f5da67f9769c9a592166151", size = 13310 }, +] + +[[package]] +name = "requests" +version = "2.32.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "charset-normalizer" }, + { name = "idna" }, + { name = "urllib3" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/63/70/2bf7780ad2d390a8d301ad0b550f1581eadbd9a20f896afe06353c2a2913/requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760", size = 131218 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/9b/335f9764261e915ed497fcdeb11df5dfd6f7bf257d4a6a2a686d80da4d54/requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6", size = 64928 }, +] + +[[package]] +name = "requests-toolbelt" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "requests" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f3/61/d7545dafb7ac2230c70d38d31cbfe4cc64f7144dc41f6e4e4b78ecd9f5bb/requests-toolbelt-1.0.0.tar.gz", hash = "sha256:7681a0a3d047012b5bdc0ee37d7f8f07ebe76ab08caeccfc3921ce23c88d5bc6", size = 206888 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3f/51/d4db610ef29373b879047326cbf6fa98b6c1969d6f6dc423279de2b1be2c/requests_toolbelt-1.0.0-py2.py3-none-any.whl", hash = "sha256:cccfdd665f0a24fcf4726e690f65639d272bb0637b9b92dfd91a5568ccf6bd06", size = 54481 }, +] + +[[package]] +name = "rfc3986" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/85/40/1520d68bfa07ab5a6f065a186815fb6610c86fe957bc065754e47f7b0840/rfc3986-2.0.0.tar.gz", hash = "sha256:97aacf9dbd4bfd829baad6e6309fa6573aaf1be3f6fa735c8ab05e46cecb261c", size = 49026 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ff/9a/9afaade874b2fa6c752c36f1548f718b5b83af81ed9b76628329dab81c1b/rfc3986-2.0.0-py2.py3-none-any.whl", hash = "sha256:50b1502b60e289cb37883f3dfd34532b8873c7de9f49bb546641ce9cbd256ebd", size = 31326 }, +] + +[[package]] +name = "rich" +version = "13.7.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markdown-it-py" }, + { name = "pygments" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b3/01/c954e134dc440ab5f96952fe52b4fdc64225530320a910473c1fe270d9aa/rich-13.7.1.tar.gz", hash = "sha256:9be308cb1fe2f1f57d67ce99e95af38a1e2bc71ad9813b0e247cf7ffbcc3a432", size = 221248 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/87/67/a37f6214d0e9fe57f6ae54b2956d550ca8365857f42a1ce0392bb21d9410/rich-13.7.1-py3-none-any.whl", hash = "sha256:4edbae314f59eb482f54e9e30bf00d33350aaa94f4bfcd4e9e3110e64d0d7222", size = 240681 }, +] + +[[package]] +name = "secretstorage" +version = "3.3.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cryptography" }, + { name = "jeepney" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/53/a4/f48c9d79cb507ed1373477dbceaba7401fd8a23af63b837fa61f1dcd3691/SecretStorage-3.3.3.tar.gz", hash = "sha256:2403533ef369eca6d2ba81718576c5e0f564d5cca1b58f73a8b23e7d4eeebd77", size = 19739 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/54/24/b4293291fa1dd830f353d2cb163295742fa87f179fcc8a20a306a81978b7/SecretStorage-3.3.3-py3-none-any.whl", hash = "sha256:f356e6628222568e3af06f2eba8df495efa13b3b63081dafd4f7d9a7b7bc9f99", size = 15221 }, +] + +[[package]] +name = "setuptools" +version = "72.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/5e/11/487b18cc768e2ae25a919f230417983c8d5afa1b6ee0abd8b6db0b89fa1d/setuptools-72.1.0.tar.gz", hash = "sha256:8d243eff56d095e5817f796ede6ae32941278f542e0f941867cc05ae52b162ec", size = 2419487 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e1/58/e0ef3b9974a04ce9cde2a7a33881ddcb2d68450803745804545cdd8d258f/setuptools-72.1.0-py3-none-any.whl", hash = "sha256:5a03e1860cf56bb6ef48ce186b0e557fdba433237481a9a625176c2831be15d1", size = 2337965 }, +] + +[[package]] +name = "sniffio" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a2/87/a6771e1546d97e7e041b6ae58d80074f81b7d5121207425c964ddf5cfdbd/sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc", size = 20372 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2", size = 10235 }, +] + +[[package]] +name = "syrupy" +version = "4.6.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pytest" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/57/1f/940533d37d87a89bce0ff9e071217a30bacda2c008ce20b8bc7f64094696/syrupy-4.6.1.tar.gz", hash = "sha256:37a835c9ce7857eeef86d62145885e10b3cb9615bc6abeb4ce404b3f18e1bb36", size = 47550 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/10/37/c1a22c32b6736c7f0345b9573d6874c94a68aff19ca8d1015e3d5f8a91e1/syrupy-4.6.1-py3-none-any.whl", hash = "sha256:203e52f9cb9fa749cf683f29bd68f02c16c3bc7e7e5fe8f2fc59bdfe488ce133", size = 47211 }, +] + +[[package]] +name = "trove-classifiers" +version = "2024.7.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/78/c9/83f915c3f6f94f4c862c7470284fd714f312cce8e3cf98361312bc02493d/trove_classifiers-2024.7.2.tar.gz", hash = "sha256:8328f2ac2ce3fd773cbb37c765a0ed7a83f89dc564c7d452f039b69249d0ac35", size = 16071 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0f/b0/09794439a62a7dc18bffdbf145aaf50297fd994890b11da27a13e376b947/trove_classifiers-2024.7.2-py3-none-any.whl", hash = "sha256:ccc57a33717644df4daca018e7ec3ef57a835c48e96a1e71fc07eb7edac67af6", size = 13468 }, +] + +[[package]] +name = "twine" +version = "5.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "importlib-metadata" }, + { name = "keyring" }, + { name = "pkginfo" }, + { name = "readme-renderer" }, + { name = "requests" }, + { name = "requests-toolbelt" }, + { name = "rfc3986" }, + { name = "rich" }, + { name = "urllib3" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/77/68/bd982e5e949ef8334e6f7dcf76ae40922a8750aa2e347291ae1477a4782b/twine-5.1.1.tar.gz", hash = "sha256:9aa0825139c02b3434d913545c7b847a21c835e11597f5255842d457da2322db", size = 225531 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5d/ec/00f9d5fd040ae29867355e559a94e9a8429225a0284a3f5f091a3878bfc0/twine-5.1.1-py3-none-any.whl", hash = "sha256:215dbe7b4b94c2c50a7315c0275d2258399280fbb7d04182c7e55e24b5f93997", size = 38650 }, +] + +[[package]] +name = "urllib3" +version = "2.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/43/6d/fa469ae21497ddc8bc93e5877702dca7cb8f911e337aca7452b5724f1bb6/urllib3-2.2.2.tar.gz", hash = "sha256:dd505485549a7a552833da5e6063639d0d177c04f23bc3864e41e5dc5f612168", size = 292266 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ca/1c/89ffc63a9605b583d5df2be791a27bc1a42b7c32bab68d3c8f2f73a98cd4/urllib3-2.2.2-py3-none-any.whl", hash = "sha256:a448b2f64d686155468037e1ace9f2d2199776e17f0a46610480d311f73e3472", size = 121444 }, +] + +[[package]] +name = "watchfiles" +version = "0.23.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/9e/1a/b06613ef620d7f5ca712a3d4928ec1c07182159a64277fcdf7738edb0b32/watchfiles-0.23.0.tar.gz", hash = "sha256:9338ade39ff24f8086bb005d16c29f8e9f19e55b18dcb04dfa26fcbc09da497b", size = 37384 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/61/52/85cdf326a53f1ae3fbe5dcab13f5729ca91ec2d61140e095a2a4cdf6a9ca/watchfiles-0.23.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:1db691bad0243aed27c8354b12d60e8e266b75216ae99d33e927ff5238d270b5", size = 373314 }, + { url = "https://files.pythonhosted.org/packages/20/5e/a97417a6544615b21c7960a45aeea13e3b42779e0ed3ebdd2d76ad62ab50/watchfiles-0.23.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:62d2b18cb1edaba311fbbfe83fb5e53a858ba37cacb01e69bc20553bb70911b8", size = 368915 }, + { url = "https://files.pythonhosted.org/packages/bc/82/537945ed624af6248c9820a99cbfd5902bb5e6a71a01a5b3de0c00f1872e/watchfiles-0.23.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e087e8fdf1270d000913c12e6eca44edd02aad3559b3e6b8ef00f0ce76e0636f", size = 441495 }, + { url = "https://files.pythonhosted.org/packages/28/24/060b064f28083866d916052fcced5c3547c5081a8e27b0702434666aa9a0/watchfiles-0.23.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd41d5c72417b87c00b1b635738f3c283e737d75c5fa5c3e1c60cd03eac3af77", size = 437357 }, + { url = "https://files.pythonhosted.org/packages/b6/00/ac760f3fa8d8975dbeaef9af99b21077e7c38898ac5051c8601649d86d99/watchfiles-0.23.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e5f3ca0ff47940ce0a389457b35d6df601c317c1e1a9615981c474452f98de1", size = 456584 }, + { url = "https://files.pythonhosted.org/packages/f7/52/2f7bbedc5f524d2ba0e9d792dab01ef4418d0f5045a9f5f4e5aca142a30d/watchfiles-0.23.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6991e3a78f642368b8b1b669327eb6751439f9f7eaaa625fae67dd6070ecfa0b", size = 471863 }, + { url = "https://files.pythonhosted.org/packages/b1/64/a80f51cb55c967629930682bf120d5ca9d1c65077c38328be635ed0d567c/watchfiles-0.23.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7f7252f52a09f8fa5435dc82b6af79483118ce6bd51eb74e6269f05ee22a7b9f", size = 478307 }, + { url = "https://files.pythonhosted.org/packages/03/f1/fdacfdbffb0635a7d0140ecca6ef7b5bce6566a085f76a65eb796ee54ddd/watchfiles-0.23.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e01bcb8d767c58865207a6c2f2792ad763a0fe1119fb0a430f444f5b02a5ea0", size = 427117 }, + { url = "https://files.pythonhosted.org/packages/d1/23/89b2bef692c350de8a4c2bde501fdf6087889a55f52a3201f0c53b616087/watchfiles-0.23.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:8e56fbcdd27fce061854ddec99e015dd779cae186eb36b14471fc9ae713b118c", size = 616352 }, + { url = "https://files.pythonhosted.org/packages/2c/35/a683945181a527083a1146620997b5d6ffe06d716c4497d388bfea813f0c/watchfiles-0.23.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:bd3e2d64500a6cad28bcd710ee6269fbeb2e5320525acd0cfab5f269ade68581", size = 597165 }, + { url = "https://files.pythonhosted.org/packages/9e/9b/ec2eabc996e5332fc89c633fbe762e08a58a7df6b5e595dd458c5f7778a4/watchfiles-0.23.0-cp312-none-win32.whl", hash = "sha256:eb99c954291b2fad0eff98b490aa641e128fbc4a03b11c8a0086de8b7077fb75", size = 264293 }, + { url = "https://files.pythonhosted.org/packages/e0/3a/62add8d90070f4b17f8bbfd66c9eaa9e08af3bc4020c07a9400d1b959aaf/watchfiles-0.23.0-cp312-none-win_amd64.whl", hash = "sha256:dccc858372a56080332ea89b78cfb18efb945da858fabeb67f5a44fa0bcb4ebb", size = 275514 }, + { url = "https://files.pythonhosted.org/packages/e8/9a/2792d4c24105104bfaf959bffefb09e02d14050913a83242ce4eb1e3f2ff/watchfiles-0.23.0-cp312-none-win_arm64.whl", hash = "sha256:6c21a5467f35c61eafb4e394303720893066897fca937bade5b4f5877d350ff8", size = 266607 }, + { url = "https://files.pythonhosted.org/packages/f6/5b/1a1d9bca4eae8cf191e74b62cd970f4a010f56f897c11dd2e6caef3ce7e3/watchfiles-0.23.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:ba31c32f6b4dceeb2be04f717811565159617e28d61a60bb616b6442027fd4b9", size = 372999 }, + { url = "https://files.pythonhosted.org/packages/98/e1/76ad010c0a2bb6efbb80383c0bba56db065238f12b0da6e6026b4e69f6aa/watchfiles-0.23.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:85042ab91814fca99cec4678fc063fb46df4cbb57b4835a1cc2cb7a51e10250e", size = 368511 }, + { url = "https://files.pythonhosted.org/packages/a1/13/d2d59d545b84fd3cf4f08b69da358209b4276c2c932d060d94a421015074/watchfiles-0.23.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:24655e8c1c9c114005c3868a3d432c8aa595a786b8493500071e6a52f3d09217", size = 441063 }, + { url = "https://files.pythonhosted.org/packages/4b/d1/dab28bed3bc9172d44100e5fae8107bd01ef85fc6bddb80d223d0d9f709f/watchfiles-0.23.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6b1a950ab299a4a78fd6369a97b8763732bfb154fdb433356ec55a5bce9515c1", size = 436805 }, + { url = "https://files.pythonhosted.org/packages/06/9c/46e0d17853b62b5d4bf8095e7b9bb0b0ad4babb6c6133138929473f161f3/watchfiles-0.23.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b8d3c5cd327dd6ce0edfc94374fb5883d254fe78a5e9d9dfc237a1897dc73cd1", size = 456411 }, + { url = "https://files.pythonhosted.org/packages/2c/ff/e891b230bcf3a648352a00b920d4a1142a938f0b97c9e8e27c2eaaeda221/watchfiles-0.23.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9ff785af8bacdf0be863ec0c428e3288b817e82f3d0c1d652cd9c6d509020dd0", size = 471563 }, + { url = "https://files.pythonhosted.org/packages/0b/07/f5b54afa8b7c33386c5778d92e681562939900f4ee1c6de9bffc49e7221f/watchfiles-0.23.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:02b7ba9d4557149410747353e7325010d48edcfe9d609a85cb450f17fd50dc3d", size = 478385 }, + { url = "https://files.pythonhosted.org/packages/a3/b6/243c1dd351ac9b8258a3ea99c33d04ecdc9766e6c7f13a43452883e92a7a/watchfiles-0.23.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48a1b05c0afb2cd2f48c1ed2ae5487b116e34b93b13074ed3c22ad5c743109f0", size = 427485 }, + { url = "https://files.pythonhosted.org/packages/28/8a/6d00aa4aa9a9938de645c1d411e3af82e74db8d25a0c05427b7a88b4d8d3/watchfiles-0.23.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:109a61763e7318d9f821b878589e71229f97366fa6a5c7720687d367f3ab9eef", size = 615839 }, + { url = "https://files.pythonhosted.org/packages/5a/d9/120d212d2952342e2c9673096f5c17cd48e90a7c9ff203ab1ad2f974befe/watchfiles-0.23.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:9f8e6bb5ac007d4a4027b25f09827ed78cbbd5b9700fd6c54429278dacce05d1", size = 596603 }, + { url = "https://files.pythonhosted.org/packages/3b/25/ec3676b140a93ac256d058a6f82810cf5e0e42fd444b948c62bc56f57f52/watchfiles-0.23.0-cp313-none-win32.whl", hash = "sha256:f46c6f0aec8d02a52d97a583782d9af38c19a29900747eb048af358a9c1d8e5b", size = 263898 }, + { url = "https://files.pythonhosted.org/packages/1a/c6/bf3b8cbe6944499fbe0d400175560a200cdecadccbacc8ace74486565d74/watchfiles-0.23.0-cp313-none-win_amd64.whl", hash = "sha256:f449afbb971df5c6faeb0a27bca0427d7b600dd8f4a068492faec18023f0dcff", size = 275220 }, +] + +[[package]] +name = "zipp" +version = "3.19.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d3/20/b48f58857d98dcb78f9e30ed2cfe533025e2e9827bbd36ea0a64cc00cbc1/zipp-3.19.2.tar.gz", hash = "sha256:bf1dcf6450f873a13e952a29504887c89e6de7506209e5b1bcc3460135d4de19", size = 22922 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/20/38/f5c473fe9b90c8debdd29ea68d5add0289f1936d6f923b6b9cc0b931194c/zipp-3.19.2-py3-none-any.whl", hash = "sha256:f091755f667055f2d02b32c53771a7a6c8b47e1fdbc4b72a8b9072b3eef8015c", size = 9039 }, +] diff --git a/crates/uv/tests/snapshots/ecosystem__packse-uv-lock-output.snap b/crates/uv/tests/snapshots/ecosystem__packse-uv-lock-output.snap new file mode 100644 index 000000000000..f92ad808718f --- /dev/null +++ b/crates/uv/tests/snapshots/ecosystem__packse-uv-lock-output.snap @@ -0,0 +1,11 @@ +--- +source: crates/uv/tests/ecosystem.rs +expression: snapshot +--- +success: true +exit_code: 0 +----- stdout ----- + +----- stderr ----- +warning: `uv lock` is experimental and may change without warning +Resolved 49 packages in [TIME] diff --git a/crates/uv/tests/snapshots/ecosystem__transformers-lock-file.snap b/crates/uv/tests/snapshots/ecosystem__transformers-lock-file.snap new file mode 100644 index 000000000000..7c7fb073d791 --- /dev/null +++ b/crates/uv/tests/snapshots/ecosystem__transformers-lock-file.snap @@ -0,0 +1,5690 @@ +--- +source: crates/uv/tests/ecosystem.rs +expression: lock +--- +version = 1 +requires-python = ">=3.9.0" +environment-markers = [ + "python_version >= '3.13'", + "python_version == '3.11' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version == '3.11' and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", + "python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')", + "python_version < '3.10' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.10' and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", + "python_version < '3.11' and python_version >= '3.10'", + "python_version < '3.11' and python_version >= '3.10' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", + "python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", +] + +[options] +exclude-newer = "2024-08-08 00:00:00 UTC" + +[[package]] +name = "absl-py" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7a/8f/fc001b92ecc467cc32ab38398bd0bfb45df46e7523bf33c2ad22a505f06e/absl-py-2.1.0.tar.gz", hash = "sha256:7820790efbb316739cde8b4e19357243fc3608a152024288513dd968d7d959ff", size = 118055 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a2/ad/e0d3c824784ff121c03cc031f944bc7e139a8f1870ffd2845cc2dd76f6c4/absl_py-2.1.0-py3-none-any.whl", hash = "sha256:526a04eadab8b4ee719ce68f204172ead1027549089702d99b9059f129ff1308", size = 133706 }, +] + +[[package]] +name = "accelerate" +version = "0.33.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "huggingface-hub", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "psutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "safetensors", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d4/24/5e813a41495ec7fdbc6a0f08e38c099caccf49147b8cd84053f4c3007c35/accelerate-0.33.0.tar.gz", hash = "sha256:11ba481ed6ea09191775df55ce464aeeba67a024bd0261a44b77b30fb439e26a", size = 314567 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/15/33/b6b4ad5efa8b9f4275d4ed17ff8a44c97276171341ba565fdffb0e3dc5e8/accelerate-0.33.0-py3-none-any.whl", hash = "sha256:0a7f33d60ba09afabd028d4f0856dd19c5a734b7a596d637d9dd6e3d0eadbaf3", size = 315131 }, +] + +[[package]] +name = "aiohappyeyeballs" +version = "2.3.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b7/c3/112f2f992aeb321de483754c1c5acab08c8ac3388c9c7e6f3e4f45ec1c42/aiohappyeyeballs-2.3.5.tar.gz", hash = "sha256:6fa48b9f1317254f122a07a131a86b71ca6946ca989ce6326fff54a99a920105", size = 16791 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8b/b4/0983e94060405eb51f23be493e3f5c28003f7ebc5efcd0803c1cb23ea407/aiohappyeyeballs-2.3.5-py3-none-any.whl", hash = "sha256:4d6dea59215537dbc746e93e779caea8178c866856a721c9c660d7a5a7b8be03", size = 12139 }, +] + +[[package]] +name = "aiohttp" +version = "3.10.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "aiohappyeyeballs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "aiosignal", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "async-timeout", marker = "python_version < '3.11'" }, + { name = "attrs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "frozenlist", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "multidict", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "yarl", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f7/e1/bfcafd54dee859b2e6e690c5f8a8a30343d590a8822bb0669afba4c2c9e6/aiohttp-3.10.1.tar.gz", hash = "sha256:8b0d058e4e425d3b45e8ec70d49b402f4d6b21041e674798b1f91ba027c73f28", size = 7517572 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d3/41/466751dafbc16d335ce771e2c73ca0ee2d6605a04ca30b52521edbd3da14/aiohttp-3.10.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:47b4c2412960e64d97258f40616efddaebcb34ff664c8a972119ed38fac2a62c", size = 583103 }, + { url = "https://files.pythonhosted.org/packages/a0/b8/354b2b93ce26b7cfadffe45fcaa9e50b38561ca57c2d1bd20fe548bb6472/aiohttp-3.10.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e7dbf637f87dd315fa1f36aaed8afa929ee2c607454fb7791e74c88a0d94da59", size = 394690 }, + { url = "https://files.pythonhosted.org/packages/24/56/b4b4cc5d93023b703fc997441a2c7b3e191118bf1e40278859c33a3be9b5/aiohttp-3.10.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c8fb76214b5b739ce59e2236a6489d9dc3483649cfd6f563dbf5d8e40dbdd57d", size = 385249 }, + { url = "https://files.pythonhosted.org/packages/ad/cc/5305199d55a463e9980b8dc65444b8905aa89cf9ef2cd67b283191ef81cf/aiohttp-3.10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c577cdcf8f92862363b3d598d971c6a84ed8f0bf824d4cc1ce70c2fb02acb4a", size = 1242620 }, + { url = "https://files.pythonhosted.org/packages/a3/52/2f4497d2bdbf3a27daff1d275ae6949db7c793f42ed1dcdbc1e002734699/aiohttp-3.10.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:777e23609899cb230ad2642b4bdf1008890f84968be78de29099a8a86f10b261", size = 1272945 }, + { url = "https://files.pythonhosted.org/packages/1e/a4/21a37f3ff7fae63e061ea5f78d331715ee11fa28314aec9bbfec854daabd/aiohttp-3.10.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b07286a1090483799599a2f72f76ac396993da31f6e08efedb59f40876c144fa", size = 1308105 }, + { url = "https://files.pythonhosted.org/packages/79/ac/0319ee00dcc4ab36856d85a2185721f29806163212fb9e1745c836830aea/aiohttp-3.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b9db600a86414a9a653e3c1c7f6a2f6a1894ab8f83d11505247bd1b90ad57157", size = 1232769 }, + { url = "https://files.pythonhosted.org/packages/49/36/754c0a3aa25fad98d62a21ff5a2ec13492f9cb7353203c80c15f30409402/aiohttp-3.10.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:01c3f1eb280008e51965a8d160a108c333136f4a39d46f516c64d2aa2e6a53f2", size = 1206309 }, + { url = "https://files.pythonhosted.org/packages/08/84/f8977e543717c267c9c1a25420609849d821861364ba87b590e0953aaea5/aiohttp-3.10.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f5dd109a925fee4c9ac3f6a094900461a2712df41745f5d04782ebcbe6479ccb", size = 1203872 }, + { url = "https://files.pythonhosted.org/packages/e6/ac/eb0ed9d127225d49d3c23877f90511a29684b64d32cf3e9270a28dac04c5/aiohttp-3.10.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:8c81ff4afffef9b1186639506d70ea90888218f5ddfff03870e74ec80bb59970", size = 1202487 }, + { url = "https://files.pythonhosted.org/packages/f6/fe/d01d171e12f5f05fd0e63253fbff3f3dfbf4e4346d355a16aee709a3633f/aiohttp-3.10.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:2a384dfbe8bfebd203b778a30a712886d147c61943675f4719b56725a8bbe803", size = 1254417 }, + { url = "https://files.pythonhosted.org/packages/c0/d0/d8f5a81d7925ee6d8bffea2000848305b61b8eba3bbd30bfbada023d239b/aiohttp-3.10.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:b9fb6508893dc31cfcbb8191ef35abd79751db1d6871b3e2caee83959b4d91eb", size = 1270849 }, + { url = "https://files.pythonhosted.org/packages/b1/1c/a3e962faae37cec5eb54578aec9067ee1c1b1d189de1ac73e07e73b24696/aiohttp-3.10.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:88596384c3bec644a96ae46287bb646d6a23fa6014afe3799156aef42669c6bd", size = 1222899 }, + { url = "https://files.pythonhosted.org/packages/c3/e4/ab2a3fff1e8e3054b8ca32a9183b08ddfc2eee4d240223ddac4608f313df/aiohttp-3.10.1-cp310-cp310-win32.whl", hash = "sha256:68164d43c580c2e8bf8e0eb4960142919d304052ccab92be10250a3a33b53268", size = 356598 }, + { url = "https://files.pythonhosted.org/packages/75/cf/b299e7f1b4943cf59cfc1e0e47b7368a23a4a38b16aa1dfa2c4ac1bcf2b2/aiohttp-3.10.1-cp310-cp310-win_amd64.whl", hash = "sha256:d6bbe2c90c10382ca96df33b56e2060404a4f0f88673e1e84b44c8952517e5f3", size = 375548 }, + { url = "https://files.pythonhosted.org/packages/1f/b4/682aefe768cf7799aa38841724d446d532c687afad96fec379f1f2651146/aiohttp-3.10.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f6979b4f20d3e557a867da9d9227de4c156fcdcb348a5848e3e6190fd7feb972", size = 582530 }, + { url = "https://files.pythonhosted.org/packages/cc/dd/11045c0b347e5acd796648adbf02fb1f7d83d07ec5437bb288d3b349e846/aiohttp-3.10.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:03c0c380c83f8a8d4416224aafb88d378376d6f4cadebb56b060688251055cd4", size = 394293 }, + { url = "https://files.pythonhosted.org/packages/b1/59/d14ec2a49dc58ec18f67c92bb111113440a3e0010cb3dd3d9f4f16563609/aiohttp-3.10.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1c2b104e81b3c3deba7e6f5bc1a9a0e9161c380530479970766a6655b8b77c7c", size = 385102 }, + { url = "https://files.pythonhosted.org/packages/9d/f9/8aa14244f9d4a02e7b1239326f3ffd38c212e515ab59d1b3e62d78bb98a1/aiohttp-3.10.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b023b68c61ab0cd48bd38416b421464a62c381e32b9dc7b4bdfa2905807452a4", size = 1317213 }, + { url = "https://files.pythonhosted.org/packages/58/f1/6fe725d90806f22a49e3a4653795b322d89f4596549dfb219d2f1aee28dd/aiohttp-3.10.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1a07c76a82390506ca0eabf57c0540cf5a60c993c442928fe4928472c4c6e5e6", size = 1353971 }, + { url = "https://files.pythonhosted.org/packages/ba/87/bf8e4351f552dd8c70bcf9a33b187de56e198c1f7ec89e46c4553cd7cf2a/aiohttp-3.10.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:41d8dab8c64ded1edf117d2a64f353efa096c52b853ef461aebd49abae979f16", size = 1391301 }, + { url = "https://files.pythonhosted.org/packages/5e/46/5c102cb40305b38c9d7bceee84ca87a6c12e8fae52a2e8375bc55555adb0/aiohttp-3.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:615348fab1a9ef7d0960a905e83ad39051ae9cb0d2837da739b5d3a7671e497a", size = 1302114 }, + { url = "https://files.pythonhosted.org/packages/cd/1d/5ac784a10db7dd054240d07538ad463e2d1fad24fbfb32b46f0ac67e6ce2/aiohttp-3.10.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:256ee6044214ee9d66d531bb374f065ee94e60667d6bbeaa25ca111fc3997158", size = 1261793 }, + { url = "https://files.pythonhosted.org/packages/2c/ec/7c15d8d2b7cff7bb705d3b9257184fccb9255425cfb9c66ff52cb8049790/aiohttp-3.10.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b7d5bb926805022508b7ddeaad957f1fce7a8d77532068d7bdb431056dc630cd", size = 1282815 }, + { url = "https://files.pythonhosted.org/packages/e3/37/863dd5d9f265b850a48aa8e45a883d51ed881f044fe21c206e87a07c7abf/aiohttp-3.10.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:028faf71b338f069077af6315ad54281612705d68889f5d914318cbc2aab0d50", size = 1277020 }, + { url = "https://files.pythonhosted.org/packages/19/4c/6fe69dbfc2fc6ae9ca31452c0c756bdf2c71e683c83937b50f41a02bf8df/aiohttp-3.10.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:5c12310d153b27aa630750be44e79313acc4e864c421eb7d2bc6fa3429c41bf8", size = 1330103 }, + { url = "https://files.pythonhosted.org/packages/dd/61/f6bdf4e5ad57de9929f4e4623d088b10345b68cf680e58667c1b97380f79/aiohttp-3.10.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:de1a91d5faded9054957ed0a9e01b9d632109341942fc123947ced358c5d9009", size = 1350433 }, + { url = "https://files.pythonhosted.org/packages/6d/f4/e10165c17a280e8edf68595cbbf22a6f89768e61621e050882d7c0ca533f/aiohttp-3.10.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9c186b270979fb1dee3ababe2d12fb243ed7da08b30abc83ebac3a928a4ddb15", size = 1309638 }, + { url = "https://files.pythonhosted.org/packages/ef/10/0c63bf328ebbd90453b415fb5d92b1a1a92d6b277e96c55dce600caddfe3/aiohttp-3.10.1-cp311-cp311-win32.whl", hash = "sha256:4a9ce70f5e00380377aac0e568abd075266ff992be2e271765f7b35d228a990c", size = 355786 }, + { url = "https://files.pythonhosted.org/packages/82/81/49afec048067b4436fafdf5d0ac8ce07fb8058ca19cb7a37a15e283397c8/aiohttp-3.10.1-cp311-cp311-win_amd64.whl", hash = "sha256:a77c79bac8d908d839d32c212aef2354d2246eb9deb3e2cb01ffa83fb7a6ea5d", size = 375614 }, + { url = "https://files.pythonhosted.org/packages/b9/35/bc0ad5fdf85ef6d8188cc0c75360c0abb02463c5576ebb99565fb381010d/aiohttp-3.10.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:2212296cdb63b092e295c3e4b4b442e7b7eb41e8a30d0f53c16d5962efed395d", size = 579105 }, + { url = "https://files.pythonhosted.org/packages/e4/2a/f34963d61ad73e01d2b1f60e7100c29d66bab6b3e9f3af5b5e1863c40314/aiohttp-3.10.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:4dcb127ca3eb0a61205818a606393cbb60d93b7afb9accd2fd1e9081cc533144", size = 390785 }, + { url = "https://files.pythonhosted.org/packages/93/17/dff64781014a8595c06d3ec88a3f76d063c61371f81dcc0eb40b1d9399c5/aiohttp-3.10.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:cb8b79a65332e1a426ccb6290ce0409e1dc16b4daac1cc5761e059127fa3d134", size = 385426 }, + { url = "https://files.pythonhosted.org/packages/e4/17/14c37f43cf46ae883185c479e010472636577b7d17fba36daef5ddcdec57/aiohttp-3.10.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68cc24f707ed9cb961f6ee04020ca01de2c89b2811f3cf3361dc7c96a14bfbcc", size = 1323084 }, + { url = "https://files.pythonhosted.org/packages/8a/da/6486c426dde538b24e3f02a6fd841142a4cd2fd9c9a80e8537db5c36e144/aiohttp-3.10.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9cb54f5725b4b37af12edf6c9e834df59258c82c15a244daa521a065fbb11717", size = 1362741 }, + { url = "https://files.pythonhosted.org/packages/f6/7e/87e0ada9b0a7dea935671c0a33ec1428267efee857f93564aa0e83eb942e/aiohttp-3.10.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:51d03e948e53b3639ce4d438f3d1d8202898ec6655cadcc09ec99229d4adc2a9", size = 1404852 }, + { url = "https://files.pythonhosted.org/packages/22/11/9960494844f900d34693a5d49a9491340e708ed530b5bb2b8bdd4a0136eb/aiohttp-3.10.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:786299d719eb5d868f161aeec56d589396b053925b7e0ce36e983d30d0a3e55c", size = 1318565 }, + { url = "https://files.pythonhosted.org/packages/02/40/d26e1a4af08f092dee09eff33a16562cb43a721251023e7e1cd9fdeb8f0f/aiohttp-3.10.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abda4009a30d51d3f06f36bc7411a62b3e647fa6cc935ef667e3e3d3a7dd09b1", size = 1270651 }, + { url = "https://files.pythonhosted.org/packages/b8/a8/24a04764c0e7f30c901ff40408941049ee8c496ef9f60ffa51798c776321/aiohttp-3.10.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:67f7639424c313125213954e93a6229d3a1d386855d70c292a12628f600c7150", size = 1285321 }, + { url = "https://files.pythonhosted.org/packages/32/4c/9e0162927eda41006891f0e3e0499dcbb19513f6643291c5742c69d4b5bd/aiohttp-3.10.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:8e5a26d7aac4c0d8414a347da162696eea0629fdce939ada6aedf951abb1d745", size = 1287408 }, + { url = "https://files.pythonhosted.org/packages/9f/62/71ac0a332408f66b6ba31300532987287b85c38a56ef9e3d7fe8247cc81a/aiohttp-3.10.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:120548d89f14b76a041088b582454d89389370632ee12bf39d919cc5c561d1ca", size = 1333511 }, + { url = "https://files.pythonhosted.org/packages/49/85/52e2ac28584b0c140737bd378143d4398a6e2838097764d5e6ffc862d85e/aiohttp-3.10.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:f5293726943bdcea24715b121d8c4ae12581441d22623b0e6ab12d07ce85f9c4", size = 1356616 }, + { url = "https://files.pythonhosted.org/packages/ea/78/3a01012380be75c8c42373ad54fea3cce73e590d2b863e490f709210ca4b/aiohttp-3.10.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1f8605e573ed6c44ec689d94544b2c4bb1390aaa723a8b5a2cc0a5a485987a68", size = 1321986 }, + { url = "https://files.pythonhosted.org/packages/49/4e/7a7c6988884425dfb9d4bbe24e1fab0e7b24bfd6f857c1521b4b5a42f229/aiohttp-3.10.1-cp312-cp312-win32.whl", hash = "sha256:e7168782621be4448d90169a60c8b37e9b0926b3b79b6097bc180c0a8a119e73", size = 353400 }, + { url = "https://files.pythonhosted.org/packages/c0/66/ae547a96abcbed450cabf2d438d9376b852c028838a50ee2c7678e2e5830/aiohttp-3.10.1-cp312-cp312-win_amd64.whl", hash = "sha256:8fbf8c0ded367c5c8eaf585f85ca8dd85ff4d5b73fb8fe1e6ac9e1b5e62e11f7", size = 374114 }, + { url = "https://files.pythonhosted.org/packages/ec/76/d36deef134d03e506aa8dde08febde79e2f53a7adcc53a49776f0c08a8be/aiohttp-3.10.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:440954ddc6b77257e67170d57b1026aa9545275c33312357472504eef7b4cc0b", size = 584804 }, + { url = "https://files.pythonhosted.org/packages/a7/33/185ae02c2f86e164d13d08a53a38b051842ca2ab582eeb8fbfa46c3ae018/aiohttp-3.10.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f9f8beed277488a52ee2b459b23c4135e54d6a819eaba2e120e57311015b58e9", size = 395617 }, + { url = "https://files.pythonhosted.org/packages/e9/38/a37c4537be517947467630100ccbd5da9843e54e0710c822567ba046a0af/aiohttp-3.10.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d8a8221a63602008550022aa3a4152ca357e1dde7ab3dd1da7e1925050b56863", size = 386004 }, + { url = "https://files.pythonhosted.org/packages/f9/89/cce6b7f2703537fc89b85094ca63d775aff8321ff51e220cb500f2f0d5c5/aiohttp-3.10.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a702bd3663b5cbf3916e84bf332400d24cdb18399f0877ca6b313ce6c08bfb43", size = 1245936 }, + { url = "https://files.pythonhosted.org/packages/25/79/b822bfb9770f1da0c92343abb39d7742fcb94023bca19cce6ac2df5e7fdd/aiohttp-3.10.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1988b370536eb14f0ce7f3a4a5b422ab64c4e255b3f5d7752c5f583dc8c967fc", size = 1279737 }, + { url = "https://files.pythonhosted.org/packages/6c/1a/5a40b549a8cd8d7f3a86c8b9b4ea7d17d725c5f19ef1b85d01027df410ec/aiohttp-3.10.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7ccf1f0a304352c891d124ac1a9dea59b14b2abed1704aaa7689fc90ef9c5be1", size = 1315128 }, + { url = "https://files.pythonhosted.org/packages/fe/e6/72ac673299f897a2291f34f5d165cf1645fe72c4f87e8e78e4c30dddbca7/aiohttp-3.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc3ea6ef2a83edad84bbdb5d96e22f587b67c68922cd7b6f9d8f24865e655bcf", size = 1235647 }, + { url = "https://files.pythonhosted.org/packages/93/76/0517c26049dd5a5a12ca38fe4646d13ec030bdafe5fbc5eead6f3b825f3c/aiohttp-3.10.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:89b47c125ab07f0831803b88aeb12b04c564d5f07a1c1a225d4eb4d2f26e8b5e", size = 1208955 }, + { url = "https://files.pythonhosted.org/packages/11/c4/5aa68031c3526eb1bbeea4af2a3fe2af5dd4a9212bce0fd1ed8db249fa8d/aiohttp-3.10.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:21778552ef3d44aac3278cc6f6d13a6423504fa5f09f2df34bfe489ed9ded7f5", size = 1207790 }, + { url = "https://files.pythonhosted.org/packages/f8/81/31d598e608d7beeebc7112aa940ff8319e61f815422a0eb5392a5afcc4c8/aiohttp-3.10.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:bde0693073fd5e542e46ea100aa6c1a5d36282dbdbad85b1c3365d5421490a92", size = 1208143 }, + { url = "https://files.pythonhosted.org/packages/94/b5/9cd00fc1ba34fb8d9305a0c9f4d9575509513503a11c05c40921b3532a9c/aiohttp-3.10.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:bf66149bb348d8e713f3a8e0b4f5b952094c2948c408e1cfef03b49e86745d60", size = 1261154 }, + { url = "https://files.pythonhosted.org/packages/97/d2/88e551cdeb4fffaabb688b54a6622e773d32825f82744a22c4d545e5dcf1/aiohttp-3.10.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:587237571a85716d6f71f60d103416c9df7d5acb55d96d3d3ced65f39bff9c0c", size = 1276608 }, + { url = "https://files.pythonhosted.org/packages/ba/7a/805c76b7e22c8eead5c02d0440a7fcb3d350a97e1beae825ec8ca3270c79/aiohttp-3.10.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:bfe33cba6e127d0b5b417623c9aa621f0a69f304742acdca929a9fdab4593693", size = 1226559 }, + { url = "https://files.pythonhosted.org/packages/de/f2/1d3234b473f0964138d06f29eb66700262ee1921129afa8ef9bb02d1f588/aiohttp-3.10.1-cp39-cp39-win32.whl", hash = "sha256:9fbff00646cf8211b330690eb2fd64b23e1ce5b63a342436c1d1d6951d53d8dd", size = 357276 }, + { url = "https://files.pythonhosted.org/packages/c2/9c/68da5e6ee6d201cf246e86b5da17024d7e11456478047bae046cde86acd5/aiohttp-3.10.1-cp39-cp39-win_amd64.whl", hash = "sha256:5951c328f9ac42d7bce7a6ded535879bc9ae13032818d036749631fa27777905", size = 376212 }, +] + +[[package]] +name = "aiosignal" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "frozenlist", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ae/67/0952ed97a9793b4958e5736f6d2b346b414a2cd63e82d05940032f45b32f/aiosignal-1.3.1.tar.gz", hash = "sha256:54cd96e15e1649b75d6c87526a6ff0b6c1b0dd3459f43d9ca11d48c339b68cfc", size = 19422 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/76/ac/a7305707cb852b7e16ff80eaf5692309bde30e2b1100a1fcacdc8f731d97/aiosignal-1.3.1-py3-none-any.whl", hash = "sha256:f8376fb07dd1e86a584e4fcdec80b36b7f81aac666ebc724e2c090300dd83b17", size = 7617 }, +] + +[[package]] +name = "alembic" +version = "1.13.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mako", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sqlalchemy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/66/e2/efa88e86029cada2da5941ec664d50d9a3b2a91f5066405c6f90e5016c16/alembic-1.13.2.tar.gz", hash = "sha256:1ff0ae32975f4fd96028c39ed9bb3c867fe3af956bd7bb37343b54c9fe7445ef", size = 1206463 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/df/ed/c884465c33c25451e4a5cd4acad154c29e5341e3214e220e7f3478aa4b0d/alembic-1.13.2-py3-none-any.whl", hash = "sha256:6b8733129a6224a9a711e17c99b08462dbf7cc9670ba8f2e2ae9af860ceb1953", size = 232990 }, +] + +[[package]] +name = "annotated-types" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ee/67/531ea369ba64dcff5ec9c3402f9f51bf748cec26dde048a2f973a4eea7f5/annotated_types-0.7.0.tar.gz", hash = "sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89", size = 16081 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl", hash = "sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53", size = 13643 }, +] + +[[package]] +name = "anyio" +version = "4.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "exceptiongroup", marker = "python_version < '3.11'" }, + { name = "idna", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sniffio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version < '3.11'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e6/e3/c4c8d473d6780ef1853d630d581f70d655b4f8d7553c6997958c283039a2/anyio-4.4.0.tar.gz", hash = "sha256:5aadc6a1bbb7cdb0bede386cac5e2940f5e2ff3aa20277e991cf028e0585ce94", size = 163930 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/a2/10639a79341f6c019dedc95bd48a4928eed9f1d1197f4c04f546fc7ae0ff/anyio-4.4.0-py3-none-any.whl", hash = "sha256:c1b2d8f46a8a812513012e1107cb0e68c17159a7a594208005a57dc776e1bdc7", size = 86780 }, +] + +[[package]] +name = "apscheduler" +version = "3.10.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pytz", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tzlocal", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5e/34/5dcb368cf89f93132d9a31bd3747962a9dc874480e54333b0c09fa7d56ac/APScheduler-3.10.4.tar.gz", hash = "sha256:e6df071b27d9be898e486bc7940a7be50b4af2e9da7c08f0744a96d4bd4cef4a", size = 100832 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/13/b5/7af0cb920a476dccd612fbc9a21a3745fb29b1fcd74636078db8f7ba294c/APScheduler-3.10.4-py3-none-any.whl", hash = "sha256:fb91e8a768632a4756a585f79ec834e0e27aad5860bac7eaa523d9ccefd87661", size = 59303 }, +] + +[[package]] +name = "arrow" +version = "1.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "python-dateutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "types-python-dateutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/2e/00/0f6e8fcdb23ea632c866620cc872729ff43ed91d284c866b515c6342b173/arrow-1.3.0.tar.gz", hash = "sha256:d4540617648cb5f895730f1ad8c82a65f2dad0166f57b75f3ca54759c4d67a85", size = 131960 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f8/ed/e97229a566617f2ae958a6b13e7cc0f585470eac730a73e9e82c32a3cdd2/arrow-1.3.0-py3-none-any.whl", hash = "sha256:c728b120ebc00eb84e01882a6f5e7927a53960aa990ce7dd2b10f39005a67f80", size = 66419 }, +] + +[[package]] +name = "astunparse" +version = "1.6.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "wheel", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f3/af/4182184d3c338792894f34a62672919db7ca008c89abee9b564dd34d8029/astunparse-1.6.3.tar.gz", hash = "sha256:5ad93a8456f0d084c3456d059fd9a92cce667963232cbf763eac3bc5b7940872", size = 18290 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2b/03/13dde6512ad7b4557eb792fbcf0c653af6076b81e5941d36ec61f7ce6028/astunparse-1.6.3-py2.py3-none-any.whl", hash = "sha256:c2652417f2c8b5bb325c885ae329bdf3f86424075c4fd1a128674bc6fba4b8e8", size = 12732 }, +] + +[[package]] +name = "async-timeout" +version = "4.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/87/d6/21b30a550dafea84b1b8eee21b5e23fa16d010ae006011221f33dcd8d7f8/async-timeout-4.0.3.tar.gz", hash = "sha256:4640d96be84d82d02ed59ea2b7105a0f7b33abe8703703cd0ab0bf87c427522f", size = 8345 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/fa/e01228c2938de91d47b307831c62ab9e4001e747789d0b05baf779a6488c/async_timeout-4.0.3-py3-none-any.whl", hash = "sha256:7405140ff1230c310e51dc27b3145b9092d659ce68ff733fb0cefe3ee42be028", size = 5721 }, +] + +[[package]] +name = "attrs" +version = "23.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e3/fc/f800d51204003fa8ae392c4e8278f256206e7a919b708eef054f5f4b650d/attrs-23.2.0.tar.gz", hash = "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30", size = 780820 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e0/44/827b2a91a5816512fcaf3cc4ebc465ccd5d598c45cefa6703fcf4a79018f/attrs-23.2.0-py3-none-any.whl", hash = "sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1", size = 60752 }, +] + +[[package]] +name = "audioread" +version = "3.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/db/d2/87016ca9f083acadffb2d8da59bfa3253e4da7eeb9f71fb8e7708dc97ecd/audioread-3.0.1.tar.gz", hash = "sha256:ac5460a5498c48bdf2e8e767402583a4dcd13f4414d286f42ce4379e8b35066d", size = 116513 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/57/8d/30aa32745af16af0a9a650115fbe81bde7c610ed5c21b381fca0196f3a7f/audioread-3.0.1-py3-none-any.whl", hash = "sha256:4cdce70b8adc0da0a3c9e0d85fb10b3ace30fbdf8d1670fd443929b61d117c33", size = 23492 }, +] + +[[package]] +name = "av" +version = "9.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/56/e9/8928607b46177d907deeb8a10f40156afab401b7120e63662f392074475b/av-9.2.0.tar.gz", hash = "sha256:f2a7c226724d7f7745b376b459c500d9d17bd8d0473b7ea6bf8ddb4f7957c69d", size = 2391613 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3c/44/b73cfa0e13c4cf9f8cc2ec55012417e62023e9076c8261c588fbface11fc/av-9.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:29373aa86a055a07eebb14d253cb202033f63ba98c5a4b0233d6d4c07fc7a292", size = 24333176 }, + { url = "https://files.pythonhosted.org/packages/3c/18/7653aa99623e27c78b3d52b9b34b08555eccc4b30bdea728eeca4a4ce9ff/av-9.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:343b11d9b03e71da29f3ce56bc0a6c2d40aba448225dcf8296ab53c10527fff0", size = 20087989 }, + { url = "https://files.pythonhosted.org/packages/21/e5/724ac61e407b88d289d9a1dd4a53e229b8ae147147b882556cb9a833521a/av-9.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ea180bfd89bc0a9e392c32de204cf4e51648aefe2f375d430ce39c04e3ed625", size = 27521265 }, + { url = "https://files.pythonhosted.org/packages/4f/69/1ef57d9e33764f3686c2fe1f8ce03fa9b72ecb38807946500880bd0bcec2/av-9.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b07b91f534ee7a096068149404c67c3c0e5b4c373580b016151de0fcb440cd3f", size = 27493874 }, + { url = "https://files.pythonhosted.org/packages/a8/98/07775747e406eaad457328fe38ddf8a9d169e171e08eb4dace2b6874a299/av-9.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9983bc45dab65d2416d2f8a63785caa076a751590823fc8c199617d0dbad390", size = 28762961 }, + { url = "https://files.pythonhosted.org/packages/79/43/ef9c554e3cf9ec007ee15bd0f547c74705f8400d239f2006a21487e58b53/av-9.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:0340cc68f3d222bc9438b4fde12e3d68f949eeb5de9e090db182f2cb06e23d53", size = 24396821 }, + { url = "https://files.pythonhosted.org/packages/7d/63/22b40835cd8044d67e939094339b8036d7247f84cb88726a086182488e80/av-9.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:ba3d9e3fe23fd8a14e810f291386225acbdef1c7e5376cc10c8e85c2d4280771", size = 24331156 }, + { url = "https://files.pythonhosted.org/packages/5e/95/1ed89449948fb8afed91ce3ab416ecbdfb3866e4a7c79e73457057f6db3c/av-9.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b6be9388618af978304b56d1cf6b74c811db4f220dd320da5bd79640aa443358", size = 20086261 }, + { url = "https://files.pythonhosted.org/packages/7f/62/1bdf8d3a77128c0c333edfb521ed397e373b9f580978d0c0477f52639b18/av-9.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e59e4ab0e8832bf87707e5024283b3a24cc01784604f0b0e96fbfbadbd8d9fc0", size = 27457899 }, + { url = "https://files.pythonhosted.org/packages/d6/ea/9341315ce3cfe07f1dd5e7591f08d6ffacbab7c3692c154a704f6b2fdc37/av-9.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9b0f124e335561cf4de6b7cdc461283c5eba5f05cccb1a5e1b8ceb1cd15393d8", size = 27430190 }, + { url = "https://files.pythonhosted.org/packages/ac/45/887aec42446923081693a292f1bf22879e3a02d7083e3fb0cd2e47e4538d/av-9.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:49481c2d5bc296f451ccd3f93b1cb692d7f58a804b794b99c8b7743e058cae71", size = 28701235 }, + { url = "https://files.pythonhosted.org/packages/21/18/43633a745ade96c45fa59e689c960476d12d7027ae3e9f6dd389e46b2438/av-9.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:1cbf031f650f89943023eef80e8b2c99588bf9ba26ffef8b3b54bef7102ea3dc", size = 24395186 }, + { url = "https://files.pythonhosted.org/packages/08/0f/e5ed45543d788a3c5c6cab1ee4bd452baf66be42bd929c4b705437589208/av-9.2.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:ab90aa3ac2cbdf1f22087fc0fa439f643e96979f169ecfa1d496e114c3c3a8b3", size = 23948181 }, + { url = "https://files.pythonhosted.org/packages/f6/86/3c83412ed7fbdbd613ba19f9b2c85b025692dbd160eb280abd8a0ed0dea0/av-9.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:24dac414eafcc20423f2ec7e873706489433648f0e9af08a537996880aa55979", size = 21254363 }, + { url = "https://files.pythonhosted.org/packages/7f/8a/b5cb01b68bb7c09747015b02c5243b71f5d4454d1f25053a6e8800954f6a/av-9.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:17a7b6617d4201214f3dd5f628041b4fe56f4244dcd48399ed8d0cf324ca24d1", size = 21545764 }, + { url = "https://files.pythonhosted.org/packages/a1/e1/16f4a84419bbcb57860adc54c8885a3ab5af33d19be6f43d92182e5c8478/av-9.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8671fa01648ce7aac76e71816c2421ddb1939bf706e2e14684608ab1ce9dbbbb", size = 22486864 }, + { url = "https://files.pythonhosted.org/packages/94/2d/8daf20cc6238ca4fe7f31dab473fbe1b5619dea94fc5a12ebbcb14a8dab9/av-9.2.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7a5dc26b9df656bed5e1bdeaf8bcc4ff4a2e009ee90b3b3024a86cf8476b2cbf", size = 35786899 }, +] + +[[package]] +name = "babel" +version = "2.15.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/15/d2/9671b93d623300f0aef82cde40e25357f11330bdde91743891b22a555bed/babel-2.15.0.tar.gz", hash = "sha256:8daf0e265d05768bc6c7a314cf1321e9a123afc328cc635c18622a2f30a04413", size = 9390000 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/27/45/377f7e32a5c93d94cd56542349b34efab5ca3f9e2fd5a68c5e93169aa32d/Babel-2.15.0-py3-none-any.whl", hash = "sha256:08706bdad8d0a3413266ab61bd6c34d0c28d6e1e7badf40a2cebe67644e2e1fb", size = 9634913 }, +] + +[[package]] +name = "backoff" +version = "1.11.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/27/d2/9d2d0f0d6bbe17628b031040b1dadaee616286267e660ad5286a5ed657da/backoff-1.11.1.tar.gz", hash = "sha256:ccb962a2378418c667b3c979b504fdeb7d9e0d29c0579e3b13b86467177728cb", size = 14883 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d7/dd/88df7d5b2077825d6757a674123062c6e7545cc61556b42739e8757b7b65/backoff-1.11.1-py2.py3-none-any.whl", hash = "sha256:61928f8fa48d52e4faa81875eecf308eccfb1016b018bb6bd21e05b5d90a96c5", size = 13141 }, +] + +[[package]] +name = "beautifulsoup4" +version = "4.12.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "soupsieve", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b3/ca/824b1195773ce6166d388573fc106ce56d4a805bd7427b624e063596ec58/beautifulsoup4-4.12.3.tar.gz", hash = "sha256:74e3d1928edc070d21748185c46e3fb33490f22f52a3addee9aee0f4f7781051", size = 581181 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b1/fe/e8c672695b37eecc5cbf43e1d0638d88d66ba3a44c4d321c796f4e59167f/beautifulsoup4-4.12.3-py3-none-any.whl", hash = "sha256:b80878c9f40111313e55da8ba20bdba06d8fa3969fc68304167741bbf9e082ed", size = 147925 }, +] + +[[package]] +name = "binaryornot" +version = "0.4.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "chardet", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a7/fe/7ebfec74d49f97fc55cd38240c7a7d08134002b1e14be8c3897c0dd5e49b/binaryornot-0.4.4.tar.gz", hash = "sha256:359501dfc9d40632edc9fac890e19542db1a287bbcfa58175b66658392018061", size = 371054 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/24/7e/f7b6f453e6481d1e233540262ccbfcf89adcd43606f44a028d7f5fae5eb2/binaryornot-0.4.4-py2.py3-none-any.whl", hash = "sha256:b8b71173c917bddcd2c16070412e369c3ed7f0528926f70cac18a6c97fd563e4", size = 9006 }, +] + +[[package]] +name = "black" +version = "24.8.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "mypy-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pathspec", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "platformdirs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tomli", marker = "python_version < '3.11'" }, + { name = "typing-extensions", marker = "python_version < '3.11'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/04/b0/46fb0d4e00372f4a86a6f8efa3cb193c9f64863615e39010b1477e010578/black-24.8.0.tar.gz", hash = "sha256:2500945420b6784c38b9ee885af039f5e7471ef284ab03fa35ecdde4688cd83f", size = 644810 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/47/6e/74e29edf1fba3887ed7066930a87f698ffdcd52c5dbc263eabb06061672d/black-24.8.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:09cdeb74d494ec023ded657f7092ba518e8cf78fa8386155e4a03fdcc44679e6", size = 1632092 }, + { url = "https://files.pythonhosted.org/packages/ab/49/575cb6c3faee690b05c9d11ee2e8dba8fbd6d6c134496e644c1feb1b47da/black-24.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:81c6742da39f33b08e791da38410f32e27d632260e599df7245cccee2064afeb", size = 1457529 }, + { url = "https://files.pythonhosted.org/packages/7a/b4/d34099e95c437b53d01c4aa37cf93944b233066eb034ccf7897fa4e5f286/black-24.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:707a1ca89221bc8a1a64fb5e15ef39cd755633daa672a9db7498d1c19de66a42", size = 1757443 }, + { url = "https://files.pythonhosted.org/packages/87/a0/6d2e4175ef364b8c4b64f8441ba041ed65c63ea1db2720d61494ac711c15/black-24.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:d6417535d99c37cee4091a2f24eb2b6d5ec42b144d50f1f2e436d9fe1916fe1a", size = 1418012 }, + { url = "https://files.pythonhosted.org/packages/08/a6/0a3aa89de9c283556146dc6dbda20cd63a9c94160a6fbdebaf0918e4a3e1/black-24.8.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fb6e2c0b86bbd43dee042e48059c9ad7830abd5c94b0bc518c0eeec57c3eddc1", size = 1615080 }, + { url = "https://files.pythonhosted.org/packages/db/94/b803d810e14588bb297e565821a947c108390a079e21dbdcb9ab6956cd7a/black-24.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:837fd281f1908d0076844bc2b801ad2d369c78c45cf800cad7b61686051041af", size = 1438143 }, + { url = "https://files.pythonhosted.org/packages/a5/b5/f485e1bbe31f768e2e5210f52ea3f432256201289fd1a3c0afda693776b0/black-24.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:62e8730977f0b77998029da7971fa896ceefa2c4c4933fcd593fa599ecbf97a4", size = 1738774 }, + { url = "https://files.pythonhosted.org/packages/a8/69/a000fc3736f89d1bdc7f4a879f8aaf516fb03613bb51a0154070383d95d9/black-24.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:72901b4913cbac8972ad911dc4098d5753704d1f3c56e44ae8dce99eecb0e3af", size = 1427503 }, + { url = "https://files.pythonhosted.org/packages/a2/a8/05fb14195cfef32b7c8d4585a44b7499c2a4b205e1662c427b941ed87054/black-24.8.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:7c046c1d1eeb7aea9335da62472481d3bbf3fd986e093cffd35f4385c94ae368", size = 1646132 }, + { url = "https://files.pythonhosted.org/packages/41/77/8d9ce42673e5cb9988f6df73c1c5c1d4e9e788053cccd7f5fb14ef100982/black-24.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:649f6d84ccbae73ab767e206772cc2d7a393a001070a4c814a546afd0d423aed", size = 1448665 }, + { url = "https://files.pythonhosted.org/packages/cc/94/eff1ddad2ce1d3cc26c162b3693043c6b6b575f538f602f26fe846dfdc75/black-24.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2b59b250fdba5f9a9cd9d0ece6e6d993d91ce877d121d161e4698af3eb9c1018", size = 1762458 }, + { url = "https://files.pythonhosted.org/packages/28/ea/18b8d86a9ca19a6942e4e16759b2fa5fc02bbc0eb33c1b866fcd387640ab/black-24.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:6e55d30d44bed36593c3163b9bc63bf58b3b30e4611e4d88a0c3c239930ed5b2", size = 1436109 }, + { url = "https://files.pythonhosted.org/packages/13/b2/b3f24fdbb46f0e7ef6238e131f13572ee8279b70f237f221dd168a9dba1a/black-24.8.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:eab4dd44ce80dea27dc69db40dab62d4ca96112f87996bca68cd75639aeb2e4c", size = 1631706 }, + { url = "https://files.pythonhosted.org/packages/d9/35/31010981e4a05202a84a3116423970fd1a59d2eda4ac0b3570fbb7029ddc/black-24.8.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3c4285573d4897a7610054af5a890bde7c65cb466040c5f0c8b732812d7f0e5e", size = 1457429 }, + { url = "https://files.pythonhosted.org/packages/27/25/3f706b4f044dd569a20a4835c3b733dedea38d83d2ee0beb8178a6d44945/black-24.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9e84e33b37be070ba135176c123ae52a51f82306def9f7d063ee302ecab2cf47", size = 1756488 }, + { url = "https://files.pythonhosted.org/packages/63/72/79375cd8277cbf1c5670914e6bd4c1b15dea2c8f8e906dc21c448d0535f0/black-24.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:73bbf84ed136e45d451a260c6b73ed674652f90a2b3211d6a35e78054563a9bb", size = 1417721 }, + { url = "https://files.pythonhosted.org/packages/27/1e/83fa8a787180e1632c3d831f7e58994d7aaf23a0961320d21e84f922f919/black-24.8.0-py3-none-any.whl", hash = "sha256:972085c618ee94f402da1af548a4f218c754ea7e5dc70acb168bfaca4c2542ed", size = 206504 }, +] + +[[package]] +name = "blinker" +version = "1.8.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1e/57/a6a1721eff09598fb01f3c7cda070c1b6a0f12d63c83236edf79a440abcc/blinker-1.8.2.tar.gz", hash = "sha256:8f77b09d3bf7c795e969e9486f39c2c5e9c39d4ee07424be2bc594ece9642d83", size = 23161 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bb/2a/10164ed1f31196a2f7f3799368a821765c62851ead0e630ab52b8e14b4d0/blinker-1.8.2-py3-none-any.whl", hash = "sha256:1779309f71bf239144b9399d06ae925637cf6634cf6bd131104184531bf67c01", size = 9456 }, +] + +[[package]] +name = "boto3" +version = "1.34.156" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "botocore", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jmespath", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "s3transfer", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/75/2f/8c716c4ec9410746a7f6b83f0eee6e88f97d7e19fc1af308cb900c36de2c/boto3-1.34.156.tar.gz", hash = "sha256:b33e9a8f8be80d3053b8418836a7c1900410b23a30c7cb040927d601a1082e68", size = 108623 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/74/00/67f2443fb72af2d7d3b0b7f21c426d0a0508849b0f9cf501fbcea2b28f9b/boto3-1.34.156-py3-none-any.whl", hash = "sha256:cbbd453270b8ce94ef9da60dfbb6f9ceeb3eeee226b635aa9ec44b1def98cc96", size = 139176 }, +] + +[[package]] +name = "botocore" +version = "1.34.156" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jmespath", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "python-dateutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "urllib3" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/22/5b/b524a3109579262225c5954059538476d4b615930ca2f70e2dd9772b9bed/botocore-1.34.156.tar.gz", hash = "sha256:5d1478c41ab9681e660b3322432fe09c4055759c317984b7b8d3af9557ff769a", size = 12663276 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/13/1f/0db4626715ccaacf48cc203fa7ef6a0ecc2814a4df1d48ab11122cb07ba2/botocore-1.34.156-py3-none-any.whl", hash = "sha256:c48f8c8996216dfdeeb0aa6d3c0f2c7ae25234766434a2ea3e57bdc08494bdda", size = 12456483 }, +] + +[[package]] +name = "cachetools" +version = "5.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a7/3f/ea907ec6d15f68ea7f381546ba58adcb298417a59f01a2962cb5e486489f/cachetools-5.4.0.tar.gz", hash = "sha256:b8adc2e7c07f105ced7bc56dbb6dfbe7c4a00acce20e2227b3f355be89bc6827", size = 26975 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/e6/a1551acbaa06f3e48b311329828a34bc9c51a8cfaecdeb4d03c329a1ef85/cachetools-5.4.0-py3-none-any.whl", hash = "sha256:3ae3b49a3d5e28a77a0be2b37dbcb89005058959cb2323858c2657c4a8cab474", size = 9455 }, +] + +[[package]] +name = "certifi" +version = "2024.7.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c2/02/a95f2b11e207f68bc64d7aae9666fed2e2b3f307748d5123dffb72a1bbea/certifi-2024.7.4.tar.gz", hash = "sha256:5a1e7645bc0ec61a09e26c36f6106dd4cf40c6db3a1fb6352b0244e7fb057c7b", size = 164065 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1c/d5/c84e1a17bf61d4df64ca866a1c9a913874b4e9bdc131ec689a0ad013fb36/certifi-2024.7.4-py3-none-any.whl", hash = "sha256:c198e21b1289c2ab85ee4e67bb4b4ef3ead0892059901a8d5b622f24a1101e90", size = 162960 }, +] + +[[package]] +name = "cffi" +version = "1.17.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pycparser", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1e/bf/82c351342972702867359cfeba5693927efe0a8dd568165490144f554b18/cffi-1.17.0.tar.gz", hash = "sha256:f3157624b7558b914cb039fd1af735e5e8049a87c817cc215109ad1c8779df76", size = 516073 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/00/2a/9071bf1e20bf9f695643b6c3e0f838f340b95ee29de0d1bb7968772409be/cffi-1.17.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f9338cc05451f1942d0d8203ec2c346c830f8e86469903d5126c1f0a13a2bcbb", size = 181841 }, + { url = "https://files.pythonhosted.org/packages/4b/42/60116f10466d692b64aef32ac40fd79b11344ab6ef889ff8e3d047f2fcb2/cffi-1.17.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a0ce71725cacc9ebf839630772b07eeec220cbb5f03be1399e0457a1464f8e1a", size = 178242 }, + { url = "https://files.pythonhosted.org/packages/26/8e/a53f844454595c6e9215e56cda123db3427f8592f2c7b5ef1be782f620d6/cffi-1.17.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c815270206f983309915a6844fe994b2fa47e5d05c4c4cef267c3b30e34dbe42", size = 425676 }, + { url = "https://files.pythonhosted.org/packages/60/ac/6402563fb40b64c7ccbea87836d9c9498b374629af3449f3d8ff34df187d/cffi-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d6bdcd415ba87846fd317bee0774e412e8792832e7805938987e4ede1d13046d", size = 447842 }, + { url = "https://files.pythonhosted.org/packages/b2/e7/e2ffdb8de59f48f17b196813e9c717fbed2364e39b10bdb3836504e89486/cffi-1.17.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8a98748ed1a1df4ee1d6f927e151ed6c1a09d5ec21684de879c7ea6aa96f58f2", size = 455224 }, + { url = "https://files.pythonhosted.org/packages/59/55/3e8968e92fe35c1c368959a070a1276c10cae29cdad0fd0daa36c69e237e/cffi-1.17.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0a048d4f6630113e54bb4b77e315e1ba32a5a31512c31a273807d0027a7e69ab", size = 436341 }, + { url = "https://files.pythonhosted.org/packages/7f/df/700aaf009dfbfa04acb1ed487586c03c788c6a312f0361ad5f298c5f5a7d/cffi-1.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:24aa705a5f5bd3a8bcfa4d123f03413de5d86e497435693b638cbffb7d5d8a1b", size = 445861 }, + { url = "https://files.pythonhosted.org/packages/5a/70/637f070aae533ea11ab77708a820f3935c0edb4fbcef9393b788e6f426a5/cffi-1.17.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:856bf0924d24e7f93b8aee12a3a1095c34085600aa805693fb7f5d1962393206", size = 460982 }, + { url = "https://files.pythonhosted.org/packages/f7/1a/7d4740fa1ccc4fcc888963fc3165d69ef1a2c8d42c8911c946703ff5d4a5/cffi-1.17.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:4304d4416ff032ed50ad6bb87416d802e67139e31c0bde4628f36a47a3164bfa", size = 438434 }, + { url = "https://files.pythonhosted.org/packages/d0/d9/c48cc38aaf6f53a8b5d2dbf6fe788410fcbab33b15a69c56c01d2b08f6a2/cffi-1.17.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:331ad15c39c9fe9186ceaf87203a9ecf5ae0ba2538c9e898e3a6967e8ad3db6f", size = 461219 }, + { url = "https://files.pythonhosted.org/packages/26/ec/b6a7f660a7f27bd2bb53fe99a2ccafa279088395ec8639b25b8950985b2d/cffi-1.17.0-cp310-cp310-win32.whl", hash = "sha256:669b29a9eca6146465cc574659058ed949748f0809a2582d1f1a324eb91054dc", size = 171406 }, + { url = "https://files.pythonhosted.org/packages/08/42/8c00824787e6f5ec55194f5cd30c4ba4b9d9d5bb0d4d0007b1bb948d4ad4/cffi-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:48b389b1fd5144603d61d752afd7167dfd205973a43151ae5045b35793232aa2", size = 180809 }, + { url = "https://files.pythonhosted.org/packages/53/cc/9298fb6235522e00e47d78d6aa7f395332ef4e5f6fe124f9a03aa60600f7/cffi-1.17.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c5d97162c196ce54af6700949ddf9409e9833ef1003b4741c2b39ef46f1d9720", size = 181912 }, + { url = "https://files.pythonhosted.org/packages/e7/79/dc5334fbe60635d0846c56597a8d2af078a543ff22bc48d36551a0de62c2/cffi-1.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5ba5c243f4004c750836f81606a9fcb7841f8874ad8f3bf204ff5e56332b72b9", size = 178297 }, + { url = "https://files.pythonhosted.org/packages/39/d7/ef1b6b16b51ccbabaced90ff0d821c6c23567fc4b2e4a445aea25d3ceb92/cffi-1.17.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bb9333f58fc3a2296fb1d54576138d4cf5d496a2cc118422bd77835e6ae0b9cb", size = 444909 }, + { url = "https://files.pythonhosted.org/packages/29/b8/6e3c61885537d985c78ef7dd779b68109ba256263d74a2f615c40f44548d/cffi-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:435a22d00ec7d7ea533db494da8581b05977f9c37338c80bc86314bec2619424", size = 468854 }, + { url = "https://files.pythonhosted.org/packages/0b/49/adad1228e19b931e523c2731e6984717d5f9e33a2f9971794ab42815b29b/cffi-1.17.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d1df34588123fcc88c872f5acb6f74ae59e9d182a2707097f9e28275ec26a12d", size = 476890 }, + { url = "https://files.pythonhosted.org/packages/76/54/c00f075c3e7fd14d9011713bcdb5b4f105ad044c5ad948db7b1a0a7e4e78/cffi-1.17.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:df8bb0010fdd0a743b7542589223a2816bdde4d94bb5ad67884348fa2c1c67e8", size = 459374 }, + { url = "https://files.pythonhosted.org/packages/f3/b9/f163bb3fa4fbc636ee1f2a6a4598c096cdef279823ddfaa5734e556dd206/cffi-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8b5b9712783415695663bd463990e2f00c6750562e6ad1d28e072a611c5f2a6", size = 466891 }, + { url = "https://files.pythonhosted.org/packages/31/52/72bbc95f6d06ff2e88a6fa13786be4043e542cb24748e1351aba864cb0a7/cffi-1.17.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ffef8fd58a36fb5f1196919638f73dd3ae0db1a878982b27a9a5a176ede4ba91", size = 477658 }, + { url = "https://files.pythonhosted.org/packages/67/20/d694811457eeae0c7663fa1a7ca201ce495533b646c1180d4ac25684c69c/cffi-1.17.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:4e67d26532bfd8b7f7c05d5a766d6f437b362c1bf203a3a5ce3593a645e870b8", size = 453890 }, + { url = "https://files.pythonhosted.org/packages/dc/79/40cbf5739eb4f694833db5a27ce7f63e30a9b25b4a836c4f25fb7272aacc/cffi-1.17.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:45f7cd36186db767d803b1473b3c659d57a23b5fa491ad83c6d40f2af58e4dbb", size = 478254 }, + { url = "https://files.pythonhosted.org/packages/e9/eb/2c384c385cca5cae67ca10ac4ef685277680b8c552b99aedecf4ea23ff7e/cffi-1.17.0-cp311-cp311-win32.whl", hash = "sha256:a9015f5b8af1bb6837a3fcb0cdf3b874fe3385ff6274e8b7925d81ccaec3c5c9", size = 171285 }, + { url = "https://files.pythonhosted.org/packages/ca/42/74cb1e0f1b79cb64672f3cb46245b506239c1297a20c0d9c3aeb3929cb0c/cffi-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:b50aaac7d05c2c26dfd50c3321199f019ba76bb650e346a6ef3616306eed67b0", size = 180842 }, + { url = "https://files.pythonhosted.org/packages/1a/1f/7862231350cc959a3138889d2c8d33da7042b22e923457dfd4cd487d772a/cffi-1.17.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aec510255ce690d240f7cb23d7114f6b351c733a74c279a84def763660a2c3bc", size = 182826 }, + { url = "https://files.pythonhosted.org/packages/8b/8c/26119bf8b79e05a1c39812064e1ee7981e1f8a5372205ba5698ea4dd958d/cffi-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2770bb0d5e3cc0e31e7318db06efcbcdb7b31bcb1a70086d3177692a02256f59", size = 178494 }, + { url = "https://files.pythonhosted.org/packages/61/94/4882c47d3ad396d91f0eda6ef16d45be3d752a332663b7361933039ed66a/cffi-1.17.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:db9a30ec064129d605d0f1aedc93e00894b9334ec74ba9c6bdd08147434b33eb", size = 454459 }, + { url = "https://files.pythonhosted.org/packages/0f/7c/a6beb119ad515058c5ee1829742d96b25b2b9204ff920746f6e13bf574eb/cffi-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a47eef975d2b8b721775a0fa286f50eab535b9d56c70a6e62842134cf7841195", size = 478502 }, + { url = "https://files.pythonhosted.org/packages/61/8a/2575cd01a90e1eca96a30aec4b1ac101a6fae06c49d490ac2704fa9bc8ba/cffi-1.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f3e0992f23bbb0be00a921eae5363329253c3b86287db27092461c887b791e5e", size = 485381 }, + { url = "https://files.pythonhosted.org/packages/cd/66/85899f5a9f152db49646e0c77427173e1b77a1046de0191ab3b0b9a5e6e3/cffi-1.17.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6107e445faf057c118d5050560695e46d272e5301feffda3c41849641222a828", size = 470907 }, + { url = "https://files.pythonhosted.org/packages/00/13/150924609bf377140abe6e934ce0a57f3fc48f1fd956ec1f578ce97a4624/cffi-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eb862356ee9391dc5a0b3cbc00f416b48c1b9a52d252d898e5b7696a5f9fe150", size = 479074 }, + { url = "https://files.pythonhosted.org/packages/17/fd/7d73d7110155c036303b0a6462c56250e9bc2f4119d7591d27417329b4d1/cffi-1.17.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:c1c13185b90bbd3f8b5963cd8ce7ad4ff441924c31e23c975cb150e27c2bf67a", size = 484225 }, + { url = "https://files.pythonhosted.org/packages/fc/83/8353e5c9b01bb46332dac3dfb18e6c597a04ceb085c19c814c2f78a8c0d0/cffi-1.17.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:17c6d6d3260c7f2d94f657e6872591fe8733872a86ed1345bda872cfc8c74885", size = 488388 }, + { url = "https://files.pythonhosted.org/packages/73/0c/f9d5ca9a095b1fc88ef77d1f8b85d11151c374144e4606da33874e17b65b/cffi-1.17.0-cp312-cp312-win32.whl", hash = "sha256:c3b8bd3133cd50f6b637bb4322822c94c5ce4bf0d724ed5ae70afce62187c492", size = 172096 }, + { url = "https://files.pythonhosted.org/packages/72/21/8c5d285fe20a6e31d29325f1287bb0e55f7d93630a5a44cafdafb5922495/cffi-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:dca802c8db0720ce1c49cce1149ff7b06e91ba15fa84b1d59144fef1a1bc7ac2", size = 181478 }, + { url = "https://files.pythonhosted.org/packages/17/8f/581f2f3c3464d5f7cf87c2f7a5ba9acc6976253e02d73804240964243ec2/cffi-1.17.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:6ce01337d23884b21c03869d2f68c5523d43174d4fc405490eb0091057943118", size = 182638 }, + { url = "https://files.pythonhosted.org/packages/8d/1c/c9afa66684b7039f48018eb11b229b659dfb32b7a16b88251bac106dd1ff/cffi-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:cab2eba3830bf4f6d91e2d6718e0e1c14a2f5ad1af68a89d24ace0c6b17cced7", size = 178453 }, + { url = "https://files.pythonhosted.org/packages/cc/b6/1a134d479d3a5a1ff2fabbee551d1d3f1dd70f453e081b5f70d604aae4c0/cffi-1.17.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:14b9cbc8f7ac98a739558eb86fabc283d4d564dafed50216e7f7ee62d0d25377", size = 454441 }, + { url = "https://files.pythonhosted.org/packages/b1/b4/e1569475d63aad8042b0935dbf62ae2a54d1e9142424e2b0e924d2d4a529/cffi-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b00e7bcd71caa0282cbe3c90966f738e2db91e64092a877c3ff7f19a1628fdcb", size = 478543 }, + { url = "https://files.pythonhosted.org/packages/d2/40/a9ad03fbd64309dec5bb70bc803a9a6772602de0ee164d7b9a6ca5a89249/cffi-1.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:41f4915e09218744d8bae14759f983e466ab69b178de38066f7579892ff2a555", size = 485463 }, + { url = "https://files.pythonhosted.org/packages/a6/1a/f10be60e006dd9242a24bcc2b1cd55c34c578380100f742d8c610f7a5d26/cffi-1.17.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4760a68cab57bfaa628938e9c2971137e05ce48e762a9cb53b76c9b569f1204", size = 470854 }, + { url = "https://files.pythonhosted.org/packages/cc/b3/c035ed21aa3d39432bd749fe331ee90e4bc83ea2dbed1f71c4bc26c41084/cffi-1.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:011aff3524d578a9412c8b3cfaa50f2c0bd78e03eb7af7aa5e0df59b158efb2f", size = 479096 }, + { url = "https://files.pythonhosted.org/packages/00/cb/6f7edde01131de9382c89430b8e253b8c8754d66b63a62059663ceafeab2/cffi-1.17.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:a003ac9edc22d99ae1286b0875c460351f4e101f8c9d9d2576e78d7e048f64e0", size = 484013 }, + { url = "https://files.pythonhosted.org/packages/b9/83/8e4e8c211ea940210d293e951bf06b1bfb90f2eeee590e9778e99b4a8676/cffi-1.17.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ef9528915df81b8f4c7612b19b8628214c65c9b7f74db2e34a646a0a2a0da2d4", size = 488119 }, + { url = "https://files.pythonhosted.org/packages/5e/52/3f7cfbc4f444cb4f73ff17b28690d12436dde665f67d68f1e1687908ab6c/cffi-1.17.0-cp313-cp313-win32.whl", hash = "sha256:70d2aa9fb00cf52034feac4b913181a6e10356019b18ef89bc7c12a283bf5f5a", size = 172122 }, + { url = "https://files.pythonhosted.org/packages/94/19/cf5baa07ee0f0e55eab7382459fbddaba0fdb0ba45973dd92556ae0d02db/cffi-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:b7b6ea9e36d32582cda3465f54c4b454f62f23cb083ebc7a94e2ca6ef011c3a7", size = 181504 }, + { url = "https://files.pythonhosted.org/packages/96/22/7866bf5450d6a5b8cf4123abde25b2126fce03ac4efc1244a44367b01c65/cffi-1.17.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1a2ddbac59dc3716bc79f27906c010406155031a1c801410f1bafff17ea304d2", size = 181868 }, + { url = "https://files.pythonhosted.org/packages/0c/03/934cd50132c1637a52ab41c093ff89b93086181f6cdc40d43185083818c1/cffi-1.17.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6327b572f5770293fc062a7ec04160e89741e8552bf1c358d1a23eba68166759", size = 178261 }, + { url = "https://files.pythonhosted.org/packages/4a/1e/06c7bc7ed387e42f0ecdef2477a5b291455c2158bb7a565848ef96bba113/cffi-1.17.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dbc183e7bef690c9abe5ea67b7b60fdbca81aa8da43468287dae7b5c046107d4", size = 424564 }, + { url = "https://files.pythonhosted.org/packages/b7/9b/43f26a558d192bb0691051153add44404af0adf6e3e35d5ce83340d41a92/cffi-1.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bdc0f1f610d067c70aa3737ed06e2726fd9d6f7bfee4a351f4c40b6831f4e82", size = 446854 }, + { url = "https://files.pythonhosted.org/packages/b5/5c/7777c4b0fc212caf180b20ec51da3d9fa00910d40f042004d33679f39ec7/cffi-1.17.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6d872186c1617d143969defeadac5a904e6e374183e07977eedef9c07c8953bf", size = 454217 }, + { url = "https://files.pythonhosted.org/packages/8f/90/a40b9821755bd3dfd2dd9a341b660cd57dfa2fc3bb9d8c4499477fa27ae3/cffi-1.17.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0d46ee4764b88b91f16661a8befc6bfb24806d885e27436fdc292ed7e6f6d058", size = 435285 }, + { url = "https://files.pythonhosted.org/packages/e1/d3/36e54b85f670400ff0440ab743fa0de66bdd89b8f54b7d2370708cdcb03f/cffi-1.17.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f76a90c345796c01d85e6332e81cab6d70de83b829cf1d9762d0a3da59c7932", size = 444868 }, + { url = "https://files.pythonhosted.org/packages/15/aa/62f87ceb24b03e42061050b1139864347fd73291d2b70b3daefd0c4fdaa8/cffi-1.17.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0e60821d312f99d3e1569202518dddf10ae547e799d75aef3bca3a2d9e8ee693", size = 460136 }, + { url = "https://files.pythonhosted.org/packages/d4/b6/7abfb922035cc03d2a6c05b6e90f55d60bfea26ef97a2d10357b3f0bdbf3/cffi-1.17.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:eb09b82377233b902d4c3fbeeb7ad731cdab579c6c6fda1f763cd779139e47c3", size = 437565 }, + { url = "https://files.pythonhosted.org/packages/83/a8/306c52a4625eef30a6d7828c0c7ecaf9a11e1fc83efe506d6fcf980b68c7/cffi-1.17.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:24658baf6224d8f280e827f0a50c46ad819ec8ba380a42448e24459daf809cf4", size = 460284 }, + { url = "https://files.pythonhosted.org/packages/a8/05/4daca3a5d2af2af95828b35e65221d4f8afb6155c9d80a1ebda7a11348ab/cffi-1.17.0-cp39-cp39-win32.whl", hash = "sha256:0fdacad9e0d9fc23e519efd5ea24a70348305e8d7d85ecbb1a5fa66dc834e7fb", size = 171382 }, + { url = "https://files.pythonhosted.org/packages/89/2d/ec3ae32daf8713681ded997aa2e6d68306c11a41627fb351201111ea0d24/cffi-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:7cbc78dc018596315d4e7841c8c3a7ae31cc4d638c9b627f87d52e8abaaf2d29", size = 180820 }, +] + +[[package]] +name = "chardet" +version = "5.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f3/0d/f7b6ab21ec75897ed80c17d79b15951a719226b9fababf1e40ea74d69079/chardet-5.2.0.tar.gz", hash = "sha256:1b3b6ff479a8c414bc3fa2c0852995695c4a026dcd6d0633b2dd092ca39c1cf7", size = 2069618 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/38/6f/f5fbc992a329ee4e0f288c1fe0e2ad9485ed064cac731ed2fe47dcc38cbf/chardet-5.2.0-py3-none-any.whl", hash = "sha256:e1cf59446890a00105fe7b7912492ea04b6e6f06d4b742b2c788469e34c82970", size = 199385 }, +] + +[[package]] +name = "charset-normalizer" +version = "3.3.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/63/09/c1bc53dab74b1816a00d8d030de5bf98f724c52c1635e07681d312f20be8/charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5", size = 104809 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2b/61/095a0aa1a84d1481998b534177c8566fdc50bb1233ea9a0478cd3cc075bd/charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3", size = 194219 }, + { url = "https://files.pythonhosted.org/packages/cc/94/f7cf5e5134175de79ad2059edf2adce18e0685ebdb9227ff0139975d0e93/charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027", size = 122521 }, + { url = "https://files.pythonhosted.org/packages/46/6a/d5c26c41c49b546860cc1acabdddf48b0b3fb2685f4f5617ac59261b44ae/charset_normalizer-3.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03", size = 120383 }, + { url = "https://files.pythonhosted.org/packages/b8/60/e2f67915a51be59d4539ed189eb0a2b0d292bf79270410746becb32bc2c3/charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d", size = 138223 }, + { url = "https://files.pythonhosted.org/packages/05/8c/eb854996d5fef5e4f33ad56927ad053d04dc820e4a3d39023f35cad72617/charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e", size = 148101 }, + { url = "https://files.pythonhosted.org/packages/f6/93/bb6cbeec3bf9da9b2eba458c15966658d1daa8b982c642f81c93ad9b40e1/charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6", size = 140699 }, + { url = "https://files.pythonhosted.org/packages/da/f1/3702ba2a7470666a62fd81c58a4c40be00670e5006a67f4d626e57f013ae/charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5", size = 142065 }, + { url = "https://files.pythonhosted.org/packages/3f/ba/3f5e7be00b215fa10e13d64b1f6237eb6ebea66676a41b2bcdd09fe74323/charset_normalizer-3.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537", size = 144505 }, + { url = "https://files.pythonhosted.org/packages/33/c3/3b96a435c5109dd5b6adc8a59ba1d678b302a97938f032e3770cc84cd354/charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c", size = 139425 }, + { url = "https://files.pythonhosted.org/packages/43/05/3bf613e719efe68fb3a77f9c536a389f35b95d75424b96b426a47a45ef1d/charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12", size = 145287 }, + { url = "https://files.pythonhosted.org/packages/58/78/a0bc646900994df12e07b4ae5c713f2b3e5998f58b9d3720cce2aa45652f/charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f", size = 149929 }, + { url = "https://files.pythonhosted.org/packages/eb/5c/97d97248af4920bc68687d9c3b3c0f47c910e21a8ff80af4565a576bd2f0/charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269", size = 141605 }, + { url = "https://files.pythonhosted.org/packages/a8/31/47d018ef89f95b8aded95c589a77c072c55e94b50a41aa99c0a2008a45a4/charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519", size = 142646 }, + { url = "https://files.pythonhosted.org/packages/ae/d5/4fecf1d58bedb1340a50f165ba1c7ddc0400252d6832ff619c4568b36cc0/charset_normalizer-3.3.2-cp310-cp310-win32.whl", hash = "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73", size = 92846 }, + { url = "https://files.pythonhosted.org/packages/a2/a0/4af29e22cb5942488cf45630cbdd7cefd908768e69bdd90280842e4e8529/charset_normalizer-3.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09", size = 100343 }, + { url = "https://files.pythonhosted.org/packages/68/77/02839016f6fbbf808e8b38601df6e0e66c17bbab76dff4613f7511413597/charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db", size = 191647 }, + { url = "https://files.pythonhosted.org/packages/3e/33/21a875a61057165e92227466e54ee076b73af1e21fe1b31f1e292251aa1e/charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96", size = 121434 }, + { url = "https://files.pythonhosted.org/packages/dd/51/68b61b90b24ca35495956b718f35a9756ef7d3dd4b3c1508056fa98d1a1b/charset_normalizer-3.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e", size = 118979 }, + { url = "https://files.pythonhosted.org/packages/e4/a6/7ee57823d46331ddc37dd00749c95b0edec2c79b15fc0d6e6efb532e89ac/charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f", size = 136582 }, + { url = "https://files.pythonhosted.org/packages/74/f1/0d9fe69ac441467b737ba7f48c68241487df2f4522dd7246d9426e7c690e/charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574", size = 146645 }, + { url = "https://files.pythonhosted.org/packages/05/31/e1f51c76db7be1d4aef220d29fbfa5dbb4a99165d9833dcbf166753b6dc0/charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4", size = 139398 }, + { url = "https://files.pythonhosted.org/packages/40/26/f35951c45070edc957ba40a5b1db3cf60a9dbb1b350c2d5bef03e01e61de/charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8", size = 140273 }, + { url = "https://files.pythonhosted.org/packages/07/07/7e554f2bbce3295e191f7e653ff15d55309a9ca40d0362fcdab36f01063c/charset_normalizer-3.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc", size = 142577 }, + { url = "https://files.pythonhosted.org/packages/d8/b5/eb705c313100defa57da79277d9207dc8d8e45931035862fa64b625bfead/charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae", size = 137747 }, + { url = "https://files.pythonhosted.org/packages/19/28/573147271fd041d351b438a5665be8223f1dd92f273713cb882ddafe214c/charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887", size = 143375 }, + { url = "https://files.pythonhosted.org/packages/cf/7c/f3b682fa053cc21373c9a839e6beba7705857075686a05c72e0f8c4980ca/charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae", size = 148474 }, + { url = "https://files.pythonhosted.org/packages/1e/49/7ab74d4ac537ece3bc3334ee08645e231f39f7d6df6347b29a74b0537103/charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce", size = 140232 }, + { url = "https://files.pythonhosted.org/packages/2d/dc/9dacba68c9ac0ae781d40e1a0c0058e26302ea0660e574ddf6797a0347f7/charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f", size = 140859 }, + { url = "https://files.pythonhosted.org/packages/6c/c2/4a583f800c0708dd22096298e49f887b49d9746d0e78bfc1d7e29816614c/charset_normalizer-3.3.2-cp311-cp311-win32.whl", hash = "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab", size = 92509 }, + { url = "https://files.pythonhosted.org/packages/57/ec/80c8d48ac8b1741d5b963797b7c0c869335619e13d4744ca2f67fc11c6fc/charset_normalizer-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77", size = 99870 }, + { url = "https://files.pythonhosted.org/packages/d1/b2/fcedc8255ec42afee97f9e6f0145c734bbe104aac28300214593eb326f1d/charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8", size = 192892 }, + { url = "https://files.pythonhosted.org/packages/2e/7d/2259318c202f3d17f3fe6438149b3b9e706d1070fe3fcbb28049730bb25c/charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b", size = 122213 }, + { url = "https://files.pythonhosted.org/packages/3a/52/9f9d17c3b54dc238de384c4cb5a2ef0e27985b42a0e5cc8e8a31d918d48d/charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6", size = 119404 }, + { url = "https://files.pythonhosted.org/packages/99/b0/9c365f6d79a9f0f3c379ddb40a256a67aa69c59609608fe7feb6235896e1/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a", size = 137275 }, + { url = "https://files.pythonhosted.org/packages/91/33/749df346e93d7a30cdcb90cbfdd41a06026317bfbfb62cd68307c1a3c543/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389", size = 147518 }, + { url = "https://files.pythonhosted.org/packages/72/1a/641d5c9f59e6af4c7b53da463d07600a695b9824e20849cb6eea8a627761/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa", size = 140182 }, + { url = "https://files.pythonhosted.org/packages/ee/fb/14d30eb4956408ee3ae09ad34299131fb383c47df355ddb428a7331cfa1e/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b", size = 141869 }, + { url = "https://files.pythonhosted.org/packages/df/3e/a06b18788ca2eb6695c9b22325b6fde7dde0f1d1838b1792a0076f58fe9d/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed", size = 144042 }, + { url = "https://files.pythonhosted.org/packages/45/59/3d27019d3b447a88fe7e7d004a1e04be220227760264cc41b405e863891b/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26", size = 138275 }, + { url = "https://files.pythonhosted.org/packages/7b/ef/5eb105530b4da8ae37d506ccfa25057961b7b63d581def6f99165ea89c7e/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d", size = 144819 }, + { url = "https://files.pythonhosted.org/packages/a2/51/e5023f937d7f307c948ed3e5c29c4b7a3e42ed2ee0b8cdf8f3a706089bf0/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068", size = 149415 }, + { url = "https://files.pythonhosted.org/packages/24/9d/2e3ef673dfd5be0154b20363c5cdcc5606f35666544381bee15af3778239/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143", size = 141212 }, + { url = "https://files.pythonhosted.org/packages/5b/ae/ce2c12fcac59cb3860b2e2d76dc405253a4475436b1861d95fe75bdea520/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4", size = 142167 }, + { url = "https://files.pythonhosted.org/packages/ed/3a/a448bf035dce5da359daf9ae8a16b8a39623cc395a2ffb1620aa1bce62b0/charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7", size = 93041 }, + { url = "https://files.pythonhosted.org/packages/b6/7c/8debebb4f90174074b827c63242c23851bdf00a532489fba57fef3416e40/charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001", size = 100397 }, + { url = "https://files.pythonhosted.org/packages/f7/9d/bcf4a449a438ed6f19790eee543a86a740c77508fbc5ddab210ab3ba3a9a/charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4", size = 194198 }, + { url = "https://files.pythonhosted.org/packages/66/fe/c7d3da40a66a6bf2920cce0f436fa1f62ee28aaf92f412f0bf3b84c8ad6c/charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d", size = 122494 }, + { url = "https://files.pythonhosted.org/packages/2a/9d/a6d15bd1e3e2914af5955c8eb15f4071997e7078419328fee93dfd497eb7/charset_normalizer-3.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0", size = 120393 }, + { url = "https://files.pythonhosted.org/packages/3d/85/5b7416b349609d20611a64718bed383b9251b5a601044550f0c8983b8900/charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269", size = 138331 }, + { url = "https://files.pythonhosted.org/packages/79/66/8946baa705c588521afe10b2d7967300e49380ded089a62d38537264aece/charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c", size = 148097 }, + { url = "https://files.pythonhosted.org/packages/44/80/b339237b4ce635b4af1c73742459eee5f97201bd92b2371c53e11958392e/charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519", size = 140711 }, + { url = "https://files.pythonhosted.org/packages/98/69/5d8751b4b670d623aa7a47bef061d69c279e9f922f6705147983aa76c3ce/charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796", size = 142251 }, + { url = "https://files.pythonhosted.org/packages/1f/8d/33c860a7032da5b93382cbe2873261f81467e7b37f4ed91e25fed62fd49b/charset_normalizer-3.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185", size = 144636 }, + { url = "https://files.pythonhosted.org/packages/c2/65/52aaf47b3dd616c11a19b1052ce7fa6321250a7a0b975f48d8c366733b9f/charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c", size = 139514 }, + { url = "https://files.pythonhosted.org/packages/51/fd/0ee5b1c2860bb3c60236d05b6e4ac240cf702b67471138571dad91bcfed8/charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458", size = 145528 }, + { url = "https://files.pythonhosted.org/packages/e1/9c/60729bf15dc82e3aaf5f71e81686e42e50715a1399770bcde1a9e43d09db/charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2", size = 149804 }, + { url = "https://files.pythonhosted.org/packages/53/cd/aa4b8a4d82eeceb872f83237b2d27e43e637cac9ffaef19a1321c3bafb67/charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8", size = 141708 }, + { url = "https://files.pythonhosted.org/packages/54/7f/cad0b328759630814fcf9d804bfabaf47776816ad4ef2e9938b7e1123d04/charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561", size = 142708 }, + { url = "https://files.pythonhosted.org/packages/c1/9d/254a2f1bcb0ce9acad838e94ed05ba71a7cb1e27affaa4d9e1ca3958cdb6/charset_normalizer-3.3.2-cp39-cp39-win32.whl", hash = "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f", size = 92830 }, + { url = "https://files.pythonhosted.org/packages/2f/0e/d7303ccae9735ff8ff01e36705ad6233ad2002962e8668a970fc000c5e1b/charset_normalizer-3.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d", size = 100376 }, + { url = "https://files.pythonhosted.org/packages/28/76/e6222113b83e3622caa4bb41032d0b1bf785250607392e1b778aca0b8a7d/charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc", size = 48543 }, +] + +[[package]] +name = "chex" +version = "0.1.82" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jaxlib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "toolz", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/48/32/8986136bcda43de50b6189bd9c3b43ecbc3cd457831dfd06679ef21ca1a3/chex-0.1.82.tar.gz", hash = "sha256:a9b151ada0b5c1bc5a8ae572617eb09f2fe4ff110fe1d75045f9083eecf5b2c1", size = 86801 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/84/c9/a2182cbf8bc066de9433930c41e76b7f4e904f155c5881235dbb54f8148b/chex-0.1.82-py3-none-any.whl", hash = "sha256:4df8f087e30c3879c15d3765f9081d5996e57682fa1fbaa8a16a1eab6f6eb2d0", size = 94804 }, +] + +[[package]] +name = "click" +version = "8.1.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "platform_system == 'Windows'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/96/d3/f04c7bfcf5c1862a2a5b845c6b2b360488cf47af55dfa79c98f6a6bf98b5/click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de", size = 336121 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/00/2e/d53fa4befbf2cfa713304affc7ca780ce4fc1fd8710527771b58311a3229/click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28", size = 97941 }, +] + +[[package]] +name = "clldutils" +version = "3.21.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "colorlog", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "lxml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "markdown", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "markupsafe", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pylatexenc", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "python-dateutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tabulate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/29/a9/20fe03d6990599fe00879f0e8adb03666a790ab9b86ebccac368ae11d2c2/clldutils-3.21.0.tar.gz", hash = "sha256:a73ab7d664b90efb87a0a057718ac4389782a59b7eb046ef312d5a60d054bf95", size = 1710419 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/52/32/f8f97b5fb1d3c14ab8b0895082f4eccc280e6787d2b9a5c9d91a34f203f4/clldutils-3.21.0-py2.py3-none-any.whl", hash = "sha256:204851d8897ab590f059e272bcce222f5e15f75e7099e2e50cdc69b388a02792", size = 1723784 }, +] + +[[package]] +name = "cloudpickle" +version = "2.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/5f/51/913ecca3970a2227cf4d5e8937df52cc28f465ac442216110b8e3323262d/cloudpickle-2.2.1.tar.gz", hash = "sha256:d89684b8de9e34a2a43b3460fbca07d09d6e25ce858df4d5a44240403b6178f5", size = 60800 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/15/80/44286939ca215e88fa827b2aeb6fa3fd2b4a7af322485c7170d6f9fd96e0/cloudpickle-2.2.1-py3-none-any.whl", hash = "sha256:61f594d1f4c295fa5cd9014ceb3a1fc4a70b0de1164b94fbc2d854ccba056f9f", size = 25944 }, +] + +[[package]] +name = "codecarbon" +version = "1.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "apscheduler", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "dash", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "dash-bootstrap-components", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fire", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pandas", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "py-cpuinfo", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pynvml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ab/42/818ec7aeca4690749e86fb9787626635ca7fba6c34b0fb4bf56b8fe4b380/codecarbon-1.2.0.tar.gz", hash = "sha256:8a89a321f6ce371abc20b9e9faf2d743d9276cdcd474c1960f194043532d0412", size = 129013 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c9/48/230b30d4e87b831b96563ac199a95e0007d4dc333fe3cffff1d5a64b6fef/codecarbon-1.2.0-py3-none-any.whl", hash = "sha256:270137da70bdf6ecec9cda9bdd0920590f7d4434f31c28bd2d31fa3c7a10a9ed", size = 135030 }, +] + +[[package]] +name = "colorama" +version = "0.4.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335 }, +] + +[[package]] +name = "coloredlogs" +version = "15.0.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "humanfriendly", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cc/c7/eed8f27100517e8c0e6b923d5f0845d0cb99763da6fdee00478f91db7325/coloredlogs-15.0.1.tar.gz", hash = "sha256:7c991aa71a4577af2f82600d8f8f3a89f936baeaf9b50a9c197da014e5bf16b0", size = 278520 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/06/3d6badcf13db419e25b07041d9c7b4a2c331d3f4e7134445ec5df57714cd/coloredlogs-15.0.1-py2.py3-none-any.whl", hash = "sha256:612ee75c546f53e92e70049c9dbfcc18c935a2b9a53b66085ce9ef6a6e5c0934", size = 46018 }, +] + +[[package]] +name = "colorlog" +version = "6.8.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/db/38/2992ff192eaa7dd5a793f8b6570d6bbe887c4fbbf7e72702eb0a693a01c8/colorlog-6.8.2.tar.gz", hash = "sha256:3e3e079a41feb5a1b64f978b5ea4f46040a94f11f0e8bbb8261e3dbbeca64d44", size = 16529 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f3/18/3e867ab37a24fdf073c1617b9c7830e06ec270b1ea4694a624038fc40a03/colorlog-6.8.2-py3-none-any.whl", hash = "sha256:4dcbb62368e2800cb3c5abd348da7e53f6c362dda502ec27c560b2e58a66bd33", size = 11357 }, +] + +[[package]] +name = "cookiecutter" +version = "1.7.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "binaryornot", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "click", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jinja2", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jinja2-time", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "poyo", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "python-slugify", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/58/f5/6f41fa38e6efe4a0e85771f99a4ad8c33b4c14f03b4cc53b459aac4a629a/cookiecutter-1.7.3.tar.gz", hash = "sha256:6b9a4d72882e243be077a7397d0f1f76fe66cf3df91f3115dbb5330e214fa457", size = 133496 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a2/62/d061b19f307455506e63825586e2e1816b71d56b4a5873c278cb315b9660/cookiecutter-1.7.3-py2.py3-none-any.whl", hash = "sha256:f8671531fa96ab14339d0c59b4f662a4f12a2ecacd94a0f70a3500843da588e2", size = 34803 }, +] + +[[package]] +name = "csvw" +version = "3.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "babel", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "colorama", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "isodate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jsonschema", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "language-tags", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "python-dateutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rdflib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rfc3986", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "uritemplate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5b/29/9613d6e9913e100f0afc489c836cd86a8b0d2d6ff6c75313ce0b1579dcce/csvw-3.3.0.tar.gz", hash = "sha256:59b6c4c725fb02138b3adb5e678e7b94f3baf7f8286c958fbd6d9d9aac5540d7", size = 71403 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0d/1b/85a62fc18a098560c5f6477dc8029ae895e913fd5d14b152ecec6143b5f6/csvw-3.3.0-py2.py3-none-any.whl", hash = "sha256:a8fc72d2a6ab36f0b9a8dab1c9a49ee5bbef1e6aa4b2a82076b0a91aa3eabb2f", size = 57837 }, +] + +[[package]] +name = "dash" +version = "2.17.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "dash-core-components", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "dash-html-components", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "dash-table", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "flask", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "importlib-metadata", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "nest-asyncio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "plotly", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "retrying", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "setuptools", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "werkzeug", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6f/5c/e5a3b9a0e90e4cfbd2bb930ea01dd1df83d21908e297a8da0e94118b57fe/dash-2.17.1.tar.gz", hash = "sha256:ee2d9c319de5dcc1314085710b72cd5fa63ff994d913bf72979b7130daeea28e", size = 7152875 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/27/ad/7047095224013ec2ae37ba8ece5956773e7953c39a3af5aa20d821ed99aa/dash-2.17.1-py3-none-any.whl", hash = "sha256:3eefc9ac67003f93a06bc3e500cae0a6787c48e6c81f6f61514239ae2da414e4", size = 7486058 }, +] + +[[package]] +name = "dash-bootstrap-components" +version = "1.6.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "dash", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a6/1e/59da44351adaaa2a747eb00993c498cadbe0f642b44ced7e7aabf368eaf6/dash_bootstrap_components-1.6.0.tar.gz", hash = "sha256:960a1ec9397574792f49a8241024fa3cecde0f5930c971a3fc81f016cbeb1095", size = 146828 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cc/72/dda12d6c6a9a2901f5549cea05c7f180e89dee6fb8c5f5f037ce7101ba24/dash_bootstrap_components-1.6.0-py3-none-any.whl", hash = "sha256:97f0f47b38363f18863e1b247462229266ce12e1e171cfb34d3c9898e6e5cd1e", size = 222526 }, +] + +[[package]] +name = "dash-core-components" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/41/55/ad4a2cf9b7d4134779bd8d3a7e5b5f8cc757f421809e07c3e73bb374fdd7/dash_core_components-2.0.0.tar.gz", hash = "sha256:c6733874af975e552f95a1398a16c2ee7df14ce43fa60bb3718a3c6e0b63ffee", size = 3427 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/00/9e/a29f726e84e531a36d56cff187e61d8c96d2cc253c5bcef9a7695acb7e6a/dash_core_components-2.0.0-py3-none-any.whl", hash = "sha256:52b8e8cce13b18d0802ee3acbc5e888cb1248a04968f962d63d070400af2e346", size = 3822 }, +] + +[[package]] +name = "dash-html-components" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/14/c6/957d5e83b620473eb3c8557a253fb01c6a817b10ca43d3ff9d31796f32a6/dash_html_components-2.0.0.tar.gz", hash = "sha256:8703a601080f02619a6390998e0b3da4a5daabe97a1fd7a9cebc09d015f26e50", size = 3840 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/75/65/1b16b853844ef59b2742a7de74a598f376ac0ab581f0dcc34db294e5c90e/dash_html_components-2.0.0-py3-none-any.whl", hash = "sha256:b42cc903713c9706af03b3f2548bda4be7307a7cf89b7d6eae3da872717d1b63", size = 4092 }, +] + +[[package]] +name = "dash-table" +version = "5.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3a/81/34983fa0c67125d7fff9d55e5d1a065127bde7ca49ca32d04dedd55f9f35/dash_table-5.0.0.tar.gz", hash = "sha256:18624d693d4c8ef2ddec99a6f167593437a7ea0bf153aa20f318c170c5bc7308", size = 3391 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/da/ce/43f77dc8e7bbad02a9f88d07bf794eaf68359df756a28bb9f2f78e255bb1/dash_table-5.0.0-py3-none-any.whl", hash = "sha256:19036fa352bb1c11baf38068ec62d172f0515f73ca3276c79dee49b95ddc16c9", size = 3912 }, +] + +[[package]] +name = "datasets" +version = "2.14.4" +source = { registry = "https://pypi.org/simple" } +environment-markers = [ + "python_version < '3.10' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.11' and python_version >= '3.10' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", +] +dependencies = [ + { name = "aiohttp", marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "dill", marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "fsspec", version = "2024.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "fsspec", version = "2024.6.1", source = { registry = "https://pypi.org/simple" }, extra = ["http"] }, + { name = "huggingface-hub", marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "multiprocess", marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "numpy", marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "packaging", marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "pandas", marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "pyarrow", marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "pyyaml", marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "requests", marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "tqdm", marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "xxhash", marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1d/69/8cc725b5d38968fd118e4ce56a483b16e75b7793854c1a392ec4a34eeb31/datasets-2.14.4.tar.gz", hash = "sha256:ef29c2b5841de488cd343cfc26ab979bff77efa4d2285af51f1ad7db5c46a83b", size = 2178719 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/66/f8/38298237d18d4b6a8ee5dfe390e97bed5adb8e01ec6f9680c0ddf3066728/datasets-2.14.4-py3-none-any.whl", hash = "sha256:29336bd316a7d827ccd4da2236596279b20ca2ac78f64c04c9483da7cbc2459b", size = 519335 }, +] + +[[package]] +name = "datasets" +version = "2.20.0" +source = { registry = "https://pypi.org/simple" } +environment-markers = [ + "python_version >= '3.13'", + "python_version == '3.11' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version == '3.11' and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", + "python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')", + "python_version < '3.10' and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", + "python_version < '3.11' and python_version >= '3.10'", + "python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", + "python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", +] +dependencies = [ + { name = "aiohttp", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "dill", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "filelock", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fsspec", version = "2024.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fsspec", version = "2024.5.0", source = { registry = "https://pypi.org/simple" }, extra = ["http"] }, + { name = "huggingface-hub", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "multiprocess", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pandas", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyarrow", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyarrow-hotfix", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "xxhash", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d5/59/b94bfb5f6225c4c931cd516390b3f006e232a036a48337f72889c6c9ab27/datasets-2.20.0.tar.gz", hash = "sha256:3c4dbcd27e0f642b9d41d20ff2efa721a5e04b32b2ca4009e0fc9139e324553f", size = 2225757 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/60/2d/963b266bb8f88492d5ab4232d74292af8beb5b6fdae97902df9e284d4c32/datasets-2.20.0-py3-none-any.whl", hash = "sha256:76ac02e3bdfff824492e20678f0b6b1b6d080515957fe834b00c2ba8d6b18e5e", size = 547777 }, +] + +[[package]] +name = "decorator" +version = "5.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/66/0c/8d907af351aa16b42caae42f9d6aa37b900c67308052d10fdce809f8d952/decorator-5.1.1.tar.gz", hash = "sha256:637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253acbc330", size = 35016 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d5/50/83c593b07763e1161326b3b8c6686f0f4b0f24d5526546bee538c89837d6/decorator-5.1.1-py3-none-any.whl", hash = "sha256:b8c3f85900b9dc423225913c5aace94729fe1fa9763b38939a95226f02d37186", size = 9073 }, +] + +[[package]] +name = "decord" +version = "0.6.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/11/79/936af42edf90a7bd4e41a6cac89c913d4b47fa48a26b042d5129a9242ee3/decord-0.6.0-py3-none-manylinux2010_x86_64.whl", hash = "sha256:51997f20be8958e23b7c4061ba45d0efcd86bffd5fe81c695d0befee0d442976", size = 13602299 }, + { url = "https://files.pythonhosted.org/packages/6c/be/e15b5b866da452e62635a7b27513f31cb581fa2ea9cc9b768b535d62a955/decord-0.6.0-py3-none-win_amd64.whl", hash = "sha256:02665d7c4f1193a330205a791bc128f7e108eb6ae5b67144437a02f700943bad", size = 24733380 }, +] + +[[package]] +name = "deepspeed" +version = "0.14.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "hjson", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ninja", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "nvidia-ml-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "psutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "py-cpuinfo", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pydantic", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/2e/06/7315113506f1804b8ba4f77cb31905c62f7080452a0af2d13eaadaa83a08/deepspeed-0.14.4.tar.gz", hash = "sha256:bb2f404b4a1d06aedd40c64d661f71307c22945d04a42d397ad39bbfeef9c8b8", size = 1340883 } + +[[package]] +name = "diffusers" +version = "0.30.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "filelock", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "huggingface-hub", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "importlib-metadata", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pillow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "regex", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "safetensors", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6b/63/bba1b32402a199c580b8b8649b75bd27834cdbb82d7c9f732608bb07ad1a/diffusers-0.30.0.tar.gz", hash = "sha256:57acd59cab035f62bde1108fc4c93e76e6988a5b3f8ae9f06051146c1cecb2aa", size = 2089547 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/74/2b/69bb842f7567cd92a540f8a9a63a20e09304ad8ff84530f26762e7e19626/diffusers-0.30.0-py3-none-any.whl", hash = "sha256:114194eb61498aff06243ade750fca6fbc179ca9df68923bb175b70030bed495", size = 2630173 }, +] + +[[package]] +name = "dill" +version = "0.3.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/57/b7/c4aa04a27040e6a3b09f5a652976ead00b66504c014425a7aad887aa8d7f/dill-0.3.4.zip", hash = "sha256:9f9734205146b2b353ab3fec9af0070237b6ddae78452af83d2fca84d739e675", size = 186823 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/c3/973676ceb86b60835bb3978c6db67a5dc06be6cfdbd14ef0f5a13e3fc9fd/dill-0.3.4-py2.py3-none-any.whl", hash = "sha256:7e40e4a70304fd9ceab3535d36e58791d9c4a776b38ec7f7ec9afc8d3dca4d4f", size = 86926 }, +] + +[[package]] +name = "dlinfo" +version = "1.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/20/08/5aa1aef097360959525443f087172046ebc3843a9601b4d9f9cdc3189657/dlinfo-1.2.1.tar.gz", hash = "sha256:5f6f43b47f3aa5fe12bd347cf536dc8fca6068c61a0a260e408bec7f6eb4bd38", size = 11814 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/f9/e014eb5740dfc6ebe6105f4c38890f361e5b0e1537a9f04bb4f34432efb9/dlinfo-1.2.1-py3-none-any.whl", hash = "sha256:a97d7cc66d997b4ac491f0e8068eb324790994834951a9beb5a4619835b361d9", size = 3559 }, +] + +[[package]] +name = "docker" +version = "7.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pywin32", marker = "sys_platform == 'win32'" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "urllib3", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/91/9b/4a2ea29aeba62471211598dac5d96825bb49348fa07e906ea930394a83ce/docker-7.1.0.tar.gz", hash = "sha256:ad8c70e6e3f8926cb8a92619b832b4ea5299e2831c14284663184e200546fa6c", size = 117834 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e3/26/57c6fb270950d476074c087527a558ccb6f4436657314bfb6cdf484114c4/docker-7.1.0-py3-none-any.whl", hash = "sha256:c96b93b7f0a746f9e77d325bcfb87422a3d8bd4f03136ae8a85b37f1898d5fc0", size = 147774 }, +] + +[[package]] +name = "etils" +version = "1.5.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ad/fa/8637c95271dd9eed00e258184295dd00ba163bb8924ba3be978ec89f093f/etils-1.5.2.tar.gz", hash = "sha256:ba6a3e1aff95c769130776aa176c11540637f5dd881f3b79172a5149b6b1c446", size = 87021 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0f/6a/d2aaebacf73d5da7126c632ec0d9dc2df99cc4bbd259bad48904a034fc1b/etils-1.5.2-py3-none-any.whl", hash = "sha256:6dc882d355e1e98a5d1a148d6323679dc47c9a5792939b9de72615aa4737eb0b", size = 140603 }, +] + +[package.optional-dependencies] +epath = [ + { name = "fsspec", version = "2024.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fsspec", version = "2024.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "importlib-resources", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "zipp", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +epy = [ + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] + +[[package]] +name = "evaluate" +version = "0.4.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "datasets", version = "2.14.4", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "datasets", version = "2.20.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "dill", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fsspec", version = "2024.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fsspec", version = "2024.5.0", source = { registry = "https://pypi.org/simple" }, extra = ["http"] }, + { name = "fsspec", version = "2024.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "fsspec", version = "2024.6.1", source = { registry = "https://pypi.org/simple" }, extra = ["http"] }, + { name = "huggingface-hub", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "multiprocess", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pandas", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "xxhash", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a5/97/5a5261a51545910ec471d3e143b74d932633320b3e3d810d838cddf440ed/evaluate-0.4.2.tar.gz", hash = "sha256:851ab767df8ec4031366c512eb88d8174adfba65d2c8c4c9bfdfe9c702212234", size = 65749 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c2/d6/ff9baefc8fc679dcd9eb21b29da3ef10c81aa36be630a7ae78e4611588e1/evaluate-0.4.2-py3-none-any.whl", hash = "sha256:5fdcaf8a086b075c2b8e2c5898f501224b020b0ac7d07be76536e47e661c0c65", size = 84135 }, +] + +[[package]] +name = "exceptiongroup" +version = "1.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/09/35/2495c4ac46b980e4ca1f6ad6db102322ef3ad2410b79fdde159a4b0f3b92/exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc", size = 28883 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/02/cc/b7e31358aac6ed1ef2bb790a9746ac2c69bcb3c8588b41616914eb106eaf/exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b", size = 16453 }, +] + +[[package]] +name = "execnet" +version = "2.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bb/ff/b4c0dc78fbe20c3e59c0c7334de0c27eb4001a2b2017999af398bf730817/execnet-2.1.1.tar.gz", hash = "sha256:5189b52c6121c24feae288166ab41b32549c7e2348652736540b9e6e7d4e72e3", size = 166524 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl", hash = "sha256:26dee51f1b80cebd6d0ca8e74dd8745419761d3bef34163928cbebbdc4749fdc", size = 40612 }, +] + +[[package]] +name = "faiss-cpu" +version = "1.8.0.post1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5e/a3/7213833216238e7dd7ef9f9a3a66bfb1ae24235e7fd32aad75afa3e78f3f/faiss_cpu-1.8.0.post1.tar.gz", hash = "sha256:5686af34414678c3d49c4fa8d774df7156e9cb48d7029071e56230e74b01cc13", size = 63668 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a3/6c/025d4b55e81c23b63ce093880afa5944f7f5cdc1a93e7a10b0f67fcc26b5/faiss_cpu-1.8.0.post1-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:fd84721eb599aa1da19b1b36345bb8705a60bb1d2887bbbc395a29e3d36a1a62", size = 7345861 }, + { url = "https://files.pythonhosted.org/packages/1f/22/231e1b30cf7d90da6a59bf6169c509ae62d3c3b1e9a88b702c267cd25e41/faiss_cpu-1.8.0.post1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b78ff9079d15fd0f156bf5dd8a2975a8abffac1854a86ece263eec1500a2e836", size = 5979513 }, + { url = "https://files.pythonhosted.org/packages/78/f1/40dc20554510728ee35d0aaa7aae1820fffd673ab04d44f76413dad55754/faiss_cpu-1.8.0.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9de25c943d1789e35fe06a20884c88cd32aedbb1a33bb8da2238cdea7bd9633f", size = 3554885 }, + { url = "https://files.pythonhosted.org/packages/87/da/d0caea09df6b6b3ef1dc6662154e095e1049c3881d841609c2438eb17e80/faiss_cpu-1.8.0.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:adae0f1b144e7216da696f14bc4991ca4300c94baaa59247c3d322588e661c95", size = 27045888 }, + { url = "https://files.pythonhosted.org/packages/42/c6/48fcc1368b3bf6a72fc4d9311d24a2d9bac2735a7de5be640b8babcd24e2/faiss_cpu-1.8.0.post1-cp310-cp310-win_amd64.whl", hash = "sha256:00345290680a444a4b4cb2d98a3844bb5c401a2160fee547c7631d759fd2ec3e", size = 14588028 }, + { url = "https://files.pythonhosted.org/packages/17/d2/c90a810b594d11f66b0162a08415029b7e056243a5023a7d5c719353a057/faiss_cpu-1.8.0.post1-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:8d4bade10cb63e9f9ff261751edd7eb097b1f4bf30be4d0d25d6f688559d795e", size = 7345873 }, + { url = "https://files.pythonhosted.org/packages/44/90/a21e37b01a302b8bcf1f30747eae1812d43f45e7f1a08bfa7da28c6647ce/faiss_cpu-1.8.0.post1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:20bd43eca3b7d77e71ea56b7a558cc28e900d8abff417eb285e2d92e95d934d4", size = 5979514 }, + { url = "https://files.pythonhosted.org/packages/c5/d2/32832d55f6ef6e4ac9316fd4169b1c62c88c4e0248b8e76499308b7d100e/faiss_cpu-1.8.0.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8542a87743a7f94ac656fd3e9592ad57e58b04d961ad2fe654a22a8ca59defdb", size = 3555039 }, + { url = "https://files.pythonhosted.org/packages/76/6c/256239bd142101cd2ce50d920622ab6d5a03742eabc462db49d7910c69c7/faiss_cpu-1.8.0.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ed46928de3dc20170b10fec89c54075a11383c2aaf4f119c63e0f6ae5a507d74", size = 27045872 }, + { url = "https://files.pythonhosted.org/packages/4c/e1/657eb537027b2d7aa0f0ccfc58aee6fe0252ea3d9e49472aecc5c7f30992/faiss_cpu-1.8.0.post1-cp311-cp311-win_amd64.whl", hash = "sha256:4fa5fc8ea210b919aa469e27d6687e50052db906e7fec3f2257178b1384fa18b", size = 14588251 }, + { url = "https://files.pythonhosted.org/packages/e5/4f/5d063231073917edfe1af57d1fcb2e281f60eca64694fb062428d80a1966/faiss_cpu-1.8.0.post1-cp312-cp312-macosx_10_14_x86_64.whl", hash = "sha256:96aec0d08a3099883af3a9b6356cfe736e8bd879318a940a27e9d1ae6f33d788", size = 7376527 }, + { url = "https://files.pythonhosted.org/packages/75/b9/eb43cbcbdc8c1177f1f275659920fb002c18e381253efb7f6431471f87df/faiss_cpu-1.8.0.post1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:92b06147fa84732ecdc965922e8ef50dc7011ef8be65821ff4abb2118cb5dce0", size = 5983954 }, + { url = "https://files.pythonhosted.org/packages/19/5e/1fd33bee1ad83c12467d2850ecb7d9a6d28afb9a2c7aa88b92dfe75f3167/faiss_cpu-1.8.0.post1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:709ef9394d1148aef70dbe890edbde8c282a4a2e06a8b69ab64f65e90f5ba572", size = 3559706 }, + { url = "https://files.pythonhosted.org/packages/ba/91/6460e628d7d1cfbce2f1a62bdd617619e2d8fb3d4428b5e4a1e2858aeb61/faiss_cpu-1.8.0.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:327a9c30971bf72cd8392b15eb4aff5d898c453212eae656dfaa3ba555b9ca0c", size = 27046631 }, + { url = "https://files.pythonhosted.org/packages/3a/0a/d18ff177cab09587918b6e67ce75b7e0a2b90ea0b4fdc7c3535cca39c5e8/faiss_cpu-1.8.0.post1-cp312-cp312-win_amd64.whl", hash = "sha256:8756f1d93faba56349883fa2f5d47fe36bb2f11f789200c6b1c691ef805485f2", size = 14591209 }, + { url = "https://files.pythonhosted.org/packages/8f/f1/e7c2e9991a4c5779742c5069fc259b7b846658c17aac7c782f997fa8363b/faiss_cpu-1.8.0.post1-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:83ef04b17b19189dd6601a941bdf4bfa9de0740dbcd80305aeba51a1b1955f80", size = 7345876 }, + { url = "https://files.pythonhosted.org/packages/c2/2a/e72ebe364754fb110cfd802aec92c2a1bb3590f55d6c1910b3c6fe3c6d18/faiss_cpu-1.8.0.post1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c50c8697077470ede7f1939ef8dc8a846ec19cf1893b543f6b67f9af03b0a122", size = 5979510 }, + { url = "https://files.pythonhosted.org/packages/f9/71/5e22c2a2e3e3edb8902c41f9d307fc989c738f45bfa120a3b92d1c71d6af/faiss_cpu-1.8.0.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:98ce428a7a67fe5c64047280e5e12a8dbdecf7002f9d127b26cf1db354e9fe76", size = 3554461 }, + { url = "https://files.pythonhosted.org/packages/9c/59/210909b9583acdc684f9a80a0882c63b2d4b0965c65a4394668b973a3c6d/faiss_cpu-1.8.0.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5f3b36b80380bae523e3198cfb4a137867055945ce7bf10d18fe9f0284f2fb47", size = 27047168 }, + { url = "https://files.pythonhosted.org/packages/c8/ad/d74139e96d50b55f280a524475e4616dcb296397764f8216d0967515626a/faiss_cpu-1.8.0.post1-cp39-cp39-win_amd64.whl", hash = "sha256:4fcc67a2353f08a20c1ab955de3cde14ef3b447761b26244a5aa849c15cbc9b3", size = 14588529 }, +] + +[[package]] +name = "fastapi" +version = "0.112.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pydantic", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "starlette", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0a/50/c535521c0cdb8b78da923bfffca7eb38429828de1770bbd8820b55f3779f/fastapi-0.112.0.tar.gz", hash = "sha256:d262bc56b7d101d1f4e8fc0ad2ac75bb9935fec504d2b7117686cec50710cf05", size = 289904 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/26/34/d0dca5f1fc0113723a425c913a886709698c4110f960c0990905804e0b2c/fastapi-0.112.0-py3-none-any.whl", hash = "sha256:3487ded9778006a45834b8c816ec4a48d522e2631ca9e75ec5a774f1b052f821", size = 93135 }, +] + +[[package]] +name = "fastjsonschema" +version = "2.20.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/03/3f/3ad5e7be13b4b8b55f4477141885ab2364f65d5f6ad5f7a9daffd634d066/fastjsonschema-2.20.0.tar.gz", hash = "sha256:3d48fc5300ee96f5d116f10fe6f28d938e6008f59a6a025c2649475b87f76a23", size = 373056 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6d/ca/086311cdfc017ec964b2436fe0c98c1f4efcb7e4c328956a22456e497655/fastjsonschema-2.20.0-py3-none-any.whl", hash = "sha256:5875f0b0fa7a0043a91e93a9b8f793bcbbba9691e7fd83dca95c28ba26d21f0a", size = 23543 }, +] + +[[package]] +name = "filelock" +version = "3.15.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/08/dd/49e06f09b6645156550fb9aee9cc1e59aba7efbc972d665a1bd6ae0435d4/filelock-3.15.4.tar.gz", hash = "sha256:2207938cbc1844345cb01a5a95524dae30f0ce089eba5b00378295a17e3e90cb", size = 18007 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ae/f0/48285f0262fe47103a4a45972ed2f9b93e4c80b8fd609fa98da78b2a5706/filelock-3.15.4-py3-none-any.whl", hash = "sha256:6ca1fffae96225dab4c6eaf1c4f4f28cd2568d3ec2a44e15a08520504de468e7", size = 16159 }, +] + +[[package]] +name = "fire" +version = "0.6.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "termcolor", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1b/1b/84c63f592ecdfbb3d77d22a8d93c9b92791e4fa35677ad71a7d6449100f8/fire-0.6.0.tar.gz", hash = "sha256:54ec5b996ecdd3c0309c800324a0703d6da512241bc73b553db959d98de0aa66", size = 88439 } + +[[package]] +name = "flask" +version = "3.0.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "blinker", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "click", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "importlib-metadata", marker = "python_version < '3.10'" }, + { name = "itsdangerous", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jinja2", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "werkzeug", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/41/e1/d104c83026f8d35dfd2c261df7d64738341067526406b40190bc063e829a/flask-3.0.3.tar.gz", hash = "sha256:ceb27b0af3823ea2737928a4d99d125a06175b8512c445cbd9a9ce200ef76842", size = 676315 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/61/80/ffe1da13ad9300f87c93af113edd0638c75138c42a0994becfacac078c06/flask-3.0.3-py3-none-any.whl", hash = "sha256:34e815dfaa43340d1d15a5c3a02b8476004037eb4840b34910c6e21679d288f3", size = 101735 }, +] + +[[package]] +name = "flatbuffers" +version = "24.3.25" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a9/74/2df95ef84b214d2bee0886d572775a6f38793f5ca6d7630c3239c91104ac/flatbuffers-24.3.25.tar.gz", hash = "sha256:de2ec5b203f21441716617f38443e0a8ebf3d25bf0d9c0bb0ce68fa00ad546a4", size = 22139 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/41/f0/7e988a019bc54b2dbd0ad4182ef2d53488bb02e58694cd79d61369e85900/flatbuffers-24.3.25-py2.py3-none-any.whl", hash = "sha256:8dbdec58f935f3765e4f7f3cf635ac3a77f83568138d6a2311f524ec96364812", size = 26784 }, +] + +[[package]] +name = "flax" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "msgpack", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "optax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "orbax-checkpoint", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rich", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorstore", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/62/fe/3a6a89c088fd055e02446a2b921d6d1f619dc7d28d578c81fc303331b587/flax-0.7.0.tar.gz", hash = "sha256:171715d7df050eb748867f14a6d42338adba060edaa1e3b4d3e978a3483db8c5", size = 2040256 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bb/1d/d9dccc3b42aab0713f72f68c0de2b3b58c8a9f81e117fa95e02e66678499/flax-0.7.0-py3-none-any.whl", hash = "sha256:c63e64124be8011b3d2f65a866d98627a5879f243e18351e85bcd0ab29228fc4", size = 225883 }, +] + +[[package]] +name = "frozenlist" +version = "1.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cf/3d/2102257e7acad73efc4a0c306ad3953f68c504c16982bbdfee3ad75d8085/frozenlist-1.4.1.tar.gz", hash = "sha256:c037a86e8513059a2613aaba4d817bb90b9d9b6b69aace3ce9c877e8c8ed402b", size = 37820 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7a/35/1328c7b0f780d34f8afc1d87ebdc2bb065a123b24766a0b475f0d67da637/frozenlist-1.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:f9aa1878d1083b276b0196f2dfbe00c9b7e752475ed3b682025ff20c1c1f51ac", size = 94315 }, + { url = "https://files.pythonhosted.org/packages/f4/d6/ca016b0adcf8327714ccef969740688808c86e0287bf3a639ff582f24e82/frozenlist-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:29acab3f66f0f24674b7dc4736477bcd4bc3ad4b896f5f45379a67bce8b96868", size = 53805 }, + { url = "https://files.pythonhosted.org/packages/ae/83/bcdaa437a9bd693ba658a0310f8cdccff26bd78e45fccf8e49897904a5cd/frozenlist-1.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:74fb4bee6880b529a0c6560885fce4dc95936920f9f20f53d99a213f7bf66776", size = 52163 }, + { url = "https://files.pythonhosted.org/packages/d4/e9/759043ab7d169b74fe05ebfbfa9ee5c881c303ebc838e308346204309cd0/frozenlist-1.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:590344787a90ae57d62511dd7c736ed56b428f04cd8c161fcc5e7232c130c69a", size = 238595 }, + { url = "https://files.pythonhosted.org/packages/f8/ce/b9de7dc61e753dc318cf0de862181b484178210c5361eae6eaf06792264d/frozenlist-1.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:068b63f23b17df8569b7fdca5517edef76171cf3897eb68beb01341131fbd2ad", size = 262428 }, + { url = "https://files.pythonhosted.org/packages/36/ce/dc6f29e0352fa34ebe45421960c8e7352ca63b31630a576e8ffb381e9c08/frozenlist-1.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c849d495bf5154cd8da18a9eb15db127d4dba2968d88831aff6f0331ea9bd4c", size = 258867 }, + { url = "https://files.pythonhosted.org/packages/51/47/159ac53faf8a11ae5ee8bb9db10327575557504e549cfd76f447b969aa91/frozenlist-1.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9750cc7fe1ae3b1611bb8cfc3f9ec11d532244235d75901fb6b8e42ce9229dfe", size = 229412 }, + { url = "https://files.pythonhosted.org/packages/ec/25/0c87df2e53c0c5d90f7517ca0ff7aca78d050a8ec4d32c4278e8c0e52e51/frozenlist-1.4.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9b2de4cf0cdd5bd2dee4c4f63a653c61d2408055ab77b151c1957f221cabf2a", size = 239539 }, + { url = "https://files.pythonhosted.org/packages/97/94/a1305fa4716726ae0abf3b1069c2d922fcfd442538cb850f1be543f58766/frozenlist-1.4.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0633c8d5337cb5c77acbccc6357ac49a1770b8c487e5b3505c57b949b4b82e98", size = 253379 }, + { url = "https://files.pythonhosted.org/packages/53/82/274e19f122e124aee6d113188615f63b0736b4242a875f482a81f91e07e2/frozenlist-1.4.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:27657df69e8801be6c3638054e202a135c7f299267f1a55ed3a598934f6c0d75", size = 245901 }, + { url = "https://files.pythonhosted.org/packages/b8/28/899931015b8cffbe155392fe9ca663f981a17e1adc69589ee0e1e7cdc9a2/frozenlist-1.4.1-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:f9a3ea26252bd92f570600098783d1371354d89d5f6b7dfd87359d669f2109b5", size = 263797 }, + { url = "https://files.pythonhosted.org/packages/6e/4f/b8a5a2f10c4a58c52a52a40cf6cf1ffcdbf3a3b64f276f41dab989bf3ab5/frozenlist-1.4.1-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:4f57dab5fe3407b6c0c1cc907ac98e8a189f9e418f3b6e54d65a718aaafe3950", size = 264415 }, + { url = "https://files.pythonhosted.org/packages/b0/2c/7be3bdc59dbae444864dbd9cde82790314390ec54636baf6b9ce212627ad/frozenlist-1.4.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:e02a0e11cf6597299b9f3bbd3f93d79217cb90cfd1411aec33848b13f5c656cc", size = 253964 }, + { url = "https://files.pythonhosted.org/packages/2e/ec/4fb5a88f6b9a352aed45ab824dd7ce4801b7bcd379adcb927c17a8f0a1a8/frozenlist-1.4.1-cp310-cp310-win32.whl", hash = "sha256:a828c57f00f729620a442881cc60e57cfcec6842ba38e1b19fd3e47ac0ff8dc1", size = 44559 }, + { url = "https://files.pythonhosted.org/packages/61/15/2b5d644d81282f00b61e54f7b00a96f9c40224107282efe4cd9d2bf1433a/frozenlist-1.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:f56e2333dda1fe0f909e7cc59f021eba0d2307bc6f012a1ccf2beca6ba362439", size = 50434 }, + { url = "https://files.pythonhosted.org/packages/01/bc/8d33f2d84b9368da83e69e42720cff01c5e199b5a868ba4486189a4d8fa9/frozenlist-1.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a0cb6f11204443f27a1628b0e460f37fb30f624be6051d490fa7d7e26d4af3d0", size = 97060 }, + { url = "https://files.pythonhosted.org/packages/af/b2/904500d6a162b98a70e510e743e7ea992241b4f9add2c8063bf666ca21df/frozenlist-1.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b46c8ae3a8f1f41a0d2ef350c0b6e65822d80772fe46b653ab6b6274f61d4a49", size = 55347 }, + { url = "https://files.pythonhosted.org/packages/5b/9c/f12b69997d3891ddc0d7895999a00b0c6a67f66f79498c0e30f27876435d/frozenlist-1.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:fde5bd59ab5357e3853313127f4d3565fc7dad314a74d7b5d43c22c6a5ed2ced", size = 53374 }, + { url = "https://files.pythonhosted.org/packages/ac/6e/e0322317b7c600ba21dec224498c0c5959b2bce3865277a7c0badae340a9/frozenlist-1.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:722e1124aec435320ae01ee3ac7bec11a5d47f25d0ed6328f2273d287bc3abb0", size = 273288 }, + { url = "https://files.pythonhosted.org/packages/a7/76/180ee1b021568dad5b35b7678616c24519af130ed3fa1e0f1ed4014e0f93/frozenlist-1.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2471c201b70d58a0f0c1f91261542a03d9a5e088ed3dc6c160d614c01649c106", size = 284737 }, + { url = "https://files.pythonhosted.org/packages/05/08/40159d706a6ed983c8aca51922a93fc69f3c27909e82c537dd4054032674/frozenlist-1.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c757a9dd70d72b076d6f68efdbb9bc943665ae954dad2801b874c8c69e185068", size = 280267 }, + { url = "https://files.pythonhosted.org/packages/e0/18/9f09f84934c2b2aa37d539a322267939770362d5495f37783440ca9c1b74/frozenlist-1.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f146e0911cb2f1da549fc58fc7bcd2b836a44b79ef871980d605ec392ff6b0d2", size = 258778 }, + { url = "https://files.pythonhosted.org/packages/b3/c9/0bc5ee7e1f5cc7358ab67da0b7dfe60fbd05c254cea5c6108e7d1ae28c63/frozenlist-1.4.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f9c515e7914626b2a2e1e311794b4c35720a0be87af52b79ff8e1429fc25f19", size = 272276 }, + { url = "https://files.pythonhosted.org/packages/12/5d/147556b73a53ad4df6da8bbb50715a66ac75c491fdedac3eca8b0b915345/frozenlist-1.4.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c302220494f5c1ebeb0912ea782bcd5e2f8308037b3c7553fad0e48ebad6ad82", size = 272424 }, + { url = "https://files.pythonhosted.org/packages/83/61/2087bbf24070b66090c0af922685f1d0596c24bb3f3b5223625bdeaf03ca/frozenlist-1.4.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:442acde1e068288a4ba7acfe05f5f343e19fac87bfc96d89eb886b0363e977ec", size = 260881 }, + { url = "https://files.pythonhosted.org/packages/a8/be/a235bc937dd803258a370fe21b5aa2dd3e7bfe0287a186a4bec30c6cccd6/frozenlist-1.4.1-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:1b280e6507ea8a4fa0c0a7150b4e526a8d113989e28eaaef946cc77ffd7efc0a", size = 282327 }, + { url = "https://files.pythonhosted.org/packages/5d/e7/b2469e71f082948066b9382c7b908c22552cc705b960363c390d2e23f587/frozenlist-1.4.1-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:fe1a06da377e3a1062ae5fe0926e12b84eceb8a50b350ddca72dc85015873f74", size = 281502 }, + { url = "https://files.pythonhosted.org/packages/db/1b/6a5b970e55dffc1a7d0bb54f57b184b2a2a2ad0b7bca16a97ca26d73c5b5/frozenlist-1.4.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:db9e724bebd621d9beca794f2a4ff1d26eed5965b004a97f1f1685a173b869c2", size = 272292 }, + { url = "https://files.pythonhosted.org/packages/1a/05/ebad68130e6b6eb9b287dacad08ea357c33849c74550c015b355b75cc714/frozenlist-1.4.1-cp311-cp311-win32.whl", hash = "sha256:e774d53b1a477a67838a904131c4b0eef6b3d8a651f8b138b04f748fccfefe17", size = 44446 }, + { url = "https://files.pythonhosted.org/packages/b3/21/c5aaffac47fd305d69df46cfbf118768cdf049a92ee6b0b5cb029d449dcf/frozenlist-1.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:fb3c2db03683b5767dedb5769b8a40ebb47d6f7f45b1b3e3b4b51ec8ad9d9825", size = 50459 }, + { url = "https://files.pythonhosted.org/packages/b4/db/4cf37556a735bcdb2582f2c3fa286aefde2322f92d3141e087b8aeb27177/frozenlist-1.4.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:1979bc0aeb89b33b588c51c54ab0161791149f2461ea7c7c946d95d5f93b56ae", size = 93937 }, + { url = "https://files.pythonhosted.org/packages/46/03/69eb64642ca8c05f30aa5931d6c55e50b43d0cd13256fdd01510a1f85221/frozenlist-1.4.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:cc7b01b3754ea68a62bd77ce6020afaffb44a590c2289089289363472d13aedb", size = 53656 }, + { url = "https://files.pythonhosted.org/packages/3f/ab/c543c13824a615955f57e082c8a5ee122d2d5368e80084f2834e6f4feced/frozenlist-1.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c9c92be9fd329ac801cc420e08452b70e7aeab94ea4233a4804f0915c14eba9b", size = 51868 }, + { url = "https://files.pythonhosted.org/packages/a9/b8/438cfd92be2a124da8259b13409224d9b19ef8f5a5b2507174fc7e7ea18f/frozenlist-1.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c3894db91f5a489fc8fa6a9991820f368f0b3cbdb9cd8849547ccfab3392d86", size = 280652 }, + { url = "https://files.pythonhosted.org/packages/54/72/716a955521b97a25d48315c6c3653f981041ce7a17ff79f701298195bca3/frozenlist-1.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ba60bb19387e13597fb059f32cd4d59445d7b18b69a745b8f8e5db0346f33480", size = 286739 }, + { url = "https://files.pythonhosted.org/packages/65/d8/934c08103637567084568e4d5b4219c1016c60b4d29353b1a5b3587827d6/frozenlist-1.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8aefbba5f69d42246543407ed2461db31006b0f76c4e32dfd6f42215a2c41d09", size = 289447 }, + { url = "https://files.pythonhosted.org/packages/70/bb/d3b98d83ec6ef88f9bd63d77104a305d68a146fd63a683569ea44c3085f6/frozenlist-1.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:780d3a35680ced9ce682fbcf4cb9c2bad3136eeff760ab33707b71db84664e3a", size = 265466 }, + { url = "https://files.pythonhosted.org/packages/0b/f2/b8158a0f06faefec33f4dff6345a575c18095a44e52d4f10c678c137d0e0/frozenlist-1.4.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9acbb16f06fe7f52f441bb6f413ebae6c37baa6ef9edd49cdd567216da8600cd", size = 281530 }, + { url = "https://files.pythonhosted.org/packages/ea/a2/20882c251e61be653764038ece62029bfb34bd5b842724fff32a5b7a2894/frozenlist-1.4.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:23b701e65c7b36e4bf15546a89279bd4d8675faabc287d06bbcfac7d3c33e1e6", size = 281295 }, + { url = "https://files.pythonhosted.org/packages/4c/f9/8894c05dc927af2a09663bdf31914d4fb5501653f240a5bbaf1e88cab1d3/frozenlist-1.4.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:3e0153a805a98f5ada7e09826255ba99fb4f7524bb81bf6b47fb702666484ae1", size = 268054 }, + { url = "https://files.pythonhosted.org/packages/37/ff/a613e58452b60166507d731812f3be253eb1229808e59980f0405d1eafbf/frozenlist-1.4.1-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:dd9b1baec094d91bf36ec729445f7769d0d0cf6b64d04d86e45baf89e2b9059b", size = 286904 }, + { url = "https://files.pythonhosted.org/packages/cc/6e/0091d785187f4c2020d5245796d04213f2261ad097e0c1cf35c44317d517/frozenlist-1.4.1-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:1a4471094e146b6790f61b98616ab8e44f72661879cc63fa1049d13ef711e71e", size = 290754 }, + { url = "https://files.pythonhosted.org/packages/a5/c2/e42ad54bae8bcffee22d1e12a8ee6c7717f7d5b5019261a8c861854f4776/frozenlist-1.4.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:5667ed53d68d91920defdf4035d1cdaa3c3121dc0b113255124bcfada1cfa1b8", size = 282602 }, + { url = "https://files.pythonhosted.org/packages/b6/61/56bad8cb94f0357c4bc134acc30822e90e203b5cb8ff82179947de90c17f/frozenlist-1.4.1-cp312-cp312-win32.whl", hash = "sha256:beee944ae828747fd7cb216a70f120767fc9f4f00bacae8543c14a6831673f89", size = 44063 }, + { url = "https://files.pythonhosted.org/packages/3e/dc/96647994a013bc72f3d453abab18340b7f5e222b7b7291e3697ca1fcfbd5/frozenlist-1.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:64536573d0a2cb6e625cf309984e2d873979709f2cf22839bf2d61790b448ad5", size = 50452 }, + { url = "https://files.pythonhosted.org/packages/d3/fb/6f2a22086065bc16797f77168728f0e59d5b89be76dd184e06b404f1e43b/frozenlist-1.4.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:bfa4a17e17ce9abf47a74ae02f32d014c5e9404b6d9ac7f729e01562bbee601e", size = 97291 }, + { url = "https://files.pythonhosted.org/packages/4d/23/7f01123d0e5adcc65cbbde5731378237dea7db467abd19e391f1ddd4130d/frozenlist-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b7e3ed87d4138356775346e6845cccbe66cd9e207f3cd11d2f0b9fd13681359d", size = 55249 }, + { url = "https://files.pythonhosted.org/packages/8b/c9/a81e9af48291954a883d35686f32308238dc968043143133b8ac9e2772af/frozenlist-1.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c99169d4ff810155ca50b4da3b075cbde79752443117d89429595c2e8e37fed8", size = 53676 }, + { url = "https://files.pythonhosted.org/packages/57/15/172af60c7e150a1d88ecc832f2590721166ae41eab582172fe1e9844eab4/frozenlist-1.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:edb678da49d9f72c9f6c609fbe41a5dfb9a9282f9e6a2253d5a91e0fc382d7c0", size = 239365 }, + { url = "https://files.pythonhosted.org/packages/8c/a4/3dc43e259960ad268ef8f2bf92912c2d2cd2e5275a4838804e03fd6f085f/frozenlist-1.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6db4667b187a6742b33afbbaf05a7bc551ffcf1ced0000a571aedbb4aa42fc7b", size = 265592 }, + { url = "https://files.pythonhosted.org/packages/a0/c1/458cf031fc8cd29a751e305b1ec773785ce486106451c93986562c62a21e/frozenlist-1.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:55fdc093b5a3cb41d420884cdaf37a1e74c3c37a31f46e66286d9145d2063bd0", size = 261274 }, + { url = "https://files.pythonhosted.org/packages/4a/32/21329084b61a119ecce0b2942d30312a34a7a0dccd01dcf7b40bda80f22c/frozenlist-1.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82e8211d69a4f4bc360ea22cd6555f8e61a1bd211d1d5d39d3d228b48c83a897", size = 230787 }, + { url = "https://files.pythonhosted.org/packages/70/b0/6f1ebdabfb604e39a0f84428986b89ab55f246b64cddaa495f2c953e1f6b/frozenlist-1.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89aa2c2eeb20957be2d950b85974b30a01a762f3308cd02bb15e1ad632e22dc7", size = 240674 }, + { url = "https://files.pythonhosted.org/packages/a3/05/50c53f1cdbfdf3d2cb9582a4ea5e12cd939ce33bd84403e6d07744563486/frozenlist-1.4.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9d3e0c25a2350080e9319724dede4f31f43a6c9779be48021a7f4ebde8b2d742", size = 255712 }, + { url = "https://files.pythonhosted.org/packages/b8/3d/cbc6f057f7d10efb7f1f410e458ac090f30526fd110ed2b29bb56ec38fe1/frozenlist-1.4.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7268252af60904bf52c26173cbadc3a071cece75f873705419c8681f24d3edea", size = 247618 }, + { url = "https://files.pythonhosted.org/packages/96/86/d5e9cd583aed98c9ee35a3aac2ce4d022ce9de93518e963aadf34a18143b/frozenlist-1.4.1-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:0c250a29735d4f15321007fb02865f0e6b6a41a6b88f1f523ca1596ab5f50bd5", size = 266868 }, + { url = "https://files.pythonhosted.org/packages/0f/6e/542af762beb9113f13614a590cafe661e0e060cddddee6107c8833605776/frozenlist-1.4.1-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:96ec70beabbd3b10e8bfe52616a13561e58fe84c0101dd031dc78f250d5128b9", size = 266439 }, + { url = "https://files.pythonhosted.org/packages/ea/db/8b611e23fda75da5311b698730a598df54cfe6236678001f449b1dedb241/frozenlist-1.4.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:23b2d7679b73fe0e5a4560b672a39f98dfc6f60df63823b0a9970525325b95f6", size = 256677 }, + { url = "https://files.pythonhosted.org/packages/eb/06/732cefc0c46c638e4426a859a372a50e4c9d62e65dbfa7ddcf0b13e6a4f2/frozenlist-1.4.1-cp39-cp39-win32.whl", hash = "sha256:a7496bfe1da7fb1a4e1cc23bb67c58fab69311cc7d32b5a99c2007b4b2a0e932", size = 44825 }, + { url = "https://files.pythonhosted.org/packages/29/eb/2110c4be2f622e87864e433efd7c4ee6e4f8a59ff2a93c1aa426ee50a8b8/frozenlist-1.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:e6a20a581f9ce92d389a8c7d7c3dd47c81fd5d6e655c8dddf341e14aa48659d0", size = 50652 }, + { url = "https://files.pythonhosted.org/packages/83/10/466fe96dae1bff622021ee687f68e5524d6392b0a2f80d05001cd3a451ba/frozenlist-1.4.1-py3-none-any.whl", hash = "sha256:04ced3e6a46b4cfffe20f9ae482818e34eba9b5fb0ce4056e4cc9b6e212d09b7", size = 11552 }, +] + +[[package]] +name = "fsspec" +version = "2024.5.0" +source = { registry = "https://pypi.org/simple" } +environment-markers = [ + "python_version >= '3.13'", + "python_version == '3.11' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version == '3.11' and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", + "python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')", + "python_version < '3.10' and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", + "python_version < '3.11' and python_version >= '3.10'", + "python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", + "python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", +] +sdist = { url = "https://files.pythonhosted.org/packages/71/28/cbf337fddd6f22686b7c2639b80e006accd904db152fe333fd98f4cd8d1e/fsspec-2024.5.0.tar.gz", hash = "sha256:1d021b0b0f933e3b3029ed808eb400c08ba101ca2de4b3483fbc9ca23fcee94a", size = 400066 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ba/a3/16e9fe32187e9c8bc7f9b7bcd9728529faa725231a0c96f2f98714ff2fc5/fsspec-2024.5.0-py3-none-any.whl", hash = "sha256:e0fdbc446d67e182f49a70b82cf7889028a63588fde6b222521f10937b2b670c", size = 316106 }, +] + +[package.optional-dependencies] +http = [ + { name = "aiohttp", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] + +[[package]] +name = "fsspec" +version = "2024.6.1" +source = { registry = "https://pypi.org/simple" } +environment-markers = [ + "python_version < '3.10' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.11' and python_version >= '3.10' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", +] +sdist = { url = "https://files.pythonhosted.org/packages/90/b6/eba5024a9889fcfff396db543a34bef0ab9d002278f163129f9f01005960/fsspec-2024.6.1.tar.gz", hash = "sha256:fad7d7e209dd4c1208e3bbfda706620e0da5142bebbd9c384afb95b07e798e49", size = 284584 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5e/44/73bea497ac69bafde2ee4269292fa3b41f1198f4bb7bbaaabde30ad29d4a/fsspec-2024.6.1-py3-none-any.whl", hash = "sha256:3cb443f8bcd2efb31295a5b9fdb02aee81d8452c80d28f97a6d0959e6cee101e", size = 177561 }, +] + +[package.optional-dependencies] +http = [ + { name = "aiohttp", marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, +] + +[[package]] +name = "ftfy" +version = "6.2.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "wcwidth", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/da/a9/59f4354257e8350a25be1774021991fb3a99a2fb87d0c1f367592548aed3/ftfy-6.2.3.tar.gz", hash = "sha256:79b505988f29d577a58a9069afe75553a02a46e42de6091c0660cdc67812badc", size = 64165 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ed/46/14d230ad057048aea7ccd2f96a80905830866d281ea90a6662a825490659/ftfy-6.2.3-py3-none-any.whl", hash = "sha256:f15761b023f3061a66207d33f0c0149ad40a8319fd16da91796363e2c049fdf8", size = 43011 }, +] + +[[package]] +name = "fugashi" +version = "1.3.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8e/73/5e160668189cb4d7fa671eb589886fd8afaa2fbf4c257ca77743e39dc9a9/fugashi-1.3.2.tar.gz", hash = "sha256:964980b5d227ee41af7570542aaab56b1298c44416271cba5d8ff9a58ab40748", size = 338825 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f2/d6/1bfc92a8dd39ec44d6df86a426211e8eff34c9c044613b5591a29270290e/fugashi-1.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:583e7a14e6ddf8a03b500bec30d708f72e98035ab43e2c92940dd9c36ee63de9", size = 565250 }, + { url = "https://files.pythonhosted.org/packages/40/a3/9a7826472b3753436ebc2e81ecca4eb554c2c191f09f59b87a0f22f51891/fugashi-1.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6c67023cdc1b059b05751c1785c794c24d8862f37a16cdb805e33c7d7ae0c19d", size = 521023 }, + { url = "https://files.pythonhosted.org/packages/9e/49/4d0f9a30a18021bdc06e0610e7466a889332f6880f4db3388366ee11ac33/fugashi-1.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6b2e21be33ed72621d9f4a601a33c00b38052df947f297d792b221a33337f094", size = 514783 }, + { url = "https://files.pythonhosted.org/packages/c0/9a/ab902f4ea4deae2ced08f9565bbcb7047a9a1520c0993bfc8faccad7c94b/fugashi-1.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:af7abac3037c7421b075782897766b8f453f28ef3bbadd3e7d69c9df409a48a8", size = 586946 }, + { url = "https://files.pythonhosted.org/packages/f2/67/93fe7ae8606c44ea28fd6db3edf0d490a1bc9e7ba9702b43be5a753cb8af/fugashi-1.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b915d936e3eb30d50fde86889f8ab56968e5cb4d0ceeb497ac1bb6c58531f87", size = 600931 }, + { url = "https://files.pythonhosted.org/packages/f2/fe/556f79a19d39b2c7ddc58068e7bd7744d6a8b2c77f10664c37260d31bab7/fugashi-1.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:8dc57d07809fbecdfc277d50028d5b8d23fb4c0ed12e6d6f7f565709c18848a4", size = 499117 }, + { url = "https://files.pythonhosted.org/packages/8f/5f/8f9675a04ab663f61799bb6fe2c7d6392d1103693730b03db3614e751fa1/fugashi-1.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:50243df8758f5fb90bd2801e557168e613df61fa4d488acfe364070e8a4a234c", size = 561898 }, + { url = "https://files.pythonhosted.org/packages/e8/05/1ac2398b7c1d12d024fb03586b679787ac52fe4f53c1644824b9e77e5f86/fugashi-1.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:9c9fb77c42e6b421e5c20f74179ed479255545b40a28f9983f264a8b19a30374", size = 519541 }, + { url = "https://files.pythonhosted.org/packages/27/f2/2a0498bfdb7dd8a80b8901bc059ff87495684ba17c66e59cfc980f996756/fugashi-1.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6fdef6be3489279c670459a55b2dfa876c0856b3fc96b3590aa801f37af6b827", size = 513121 }, + { url = "https://files.pythonhosted.org/packages/82/51/a5054f29165a437eedf845ed9cb1dac410ece2c2f0f16411db6be6c11319/fugashi-1.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2b2ebe0d6722e05000a959df303e06937939009f4eef0b8692018eb019496013", size = 594281 }, + { url = "https://files.pythonhosted.org/packages/24/22/7acc383ae61ea7f35705b60e76d3e527d13f0af81b3570b810da7af4470f/fugashi-1.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:85d8e3a9e9d92f555525b2719153e7d3e4ec71d0bae0b076b5495634039b8490", size = 606680 }, + { url = "https://files.pythonhosted.org/packages/20/04/67db7a11e20e12f01618e6942d6ce2a3c1c88ade0b6878edba17d8e8722d/fugashi-1.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:9774bb52930fa17ebab17f8bcf2b5d20b6ef529b425ea65affb29a3307c003f8", size = 498335 }, + { url = "https://files.pythonhosted.org/packages/34/ad/aceb8b1fef41308db782265e81d30e400957e8ec4508b25287df1af4f641/fugashi-1.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:fcfb3908059f4dd15d7fda64edd3c027b4da668bf1731f147aa888f5db01bd6c", size = 559903 }, + { url = "https://files.pythonhosted.org/packages/ad/8a/751ddea5821266135bc9e4fb0565744197180b5d91ec5cc021946020606d/fugashi-1.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:49b44261f2051c43a9e31816d85bb89e5563c3e4c03ff7830d1ebf5942888cf9", size = 518178 }, + { url = "https://files.pythonhosted.org/packages/8b/0e/785dbaa42e0e7ef2a17e6c3c6eca48ef862340d92051f2b257a660944752/fugashi-1.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:3a2d8aecb2a239de33bcb70806b7688001e72f68bde68961c6f2899155f15f87", size = 512640 }, + { url = "https://files.pythonhosted.org/packages/22/c5/ff64272679471658d6c6313f647d0ad0a1a254fe73d26c60cf263e0bd6d0/fugashi-1.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4e24864e92ad3acf3c0b8f645e33d543fe569544bb6ee9728cb281325aa76d06", size = 605926 }, + { url = "https://files.pythonhosted.org/packages/d9/0f/dfceef3b7e26da34556b8c3ab33a901977da069726da012bc57cfa2749a7/fugashi-1.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea942e45214a99844146ce0e0f1ac43bff6e2ccbf6d1cbfde4f2bed9ca0951b1", size = 622075 }, + { url = "https://files.pythonhosted.org/packages/86/d9/49484b50c6df110e1a24bc71958899ddd454e7d48227696d29503d91ed1e/fugashi-1.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:da61498017e5cbee65c6eff88a13e17b45a5e3b0428733e99168344b8ff95da5", size = 497750 }, + { url = "https://files.pythonhosted.org/packages/7c/f1/fb3e5dc9205e1bf6178a7b1fb4ac462d82aad7a0d4974215d9c02c54f8a0/fugashi-1.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7e392f2c57068bb892c45c1b69067c3dde94b633c81c725a613ee7defe09de47", size = 564866 }, + { url = "https://files.pythonhosted.org/packages/4e/7e/f23c21f72ae28e78407bd1eb2a40ce88ec6178451e1b9d595941a6b01bba/fugashi-1.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:85de463fc30390c06d985f52fcfd422acf7ada6b13f723721ca964854b9ae435", size = 520937 }, + { url = "https://files.pythonhosted.org/packages/35/98/2f84da4a4c2568de8ffcb467ac9be266c6bb11b7a8a8c2a9f65b282196f6/fugashi-1.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5a640da3824aba966209fc425b2b19c38d22a3da637f83b4a7df83cb94376b87", size = 514509 }, + { url = "https://files.pythonhosted.org/packages/cb/a6/21a71f536e61c3ec5fbcec02b43a2b20398976804f9221c34dc0503ef74e/fugashi-1.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:11e95f57b78152be3a0a1a1e77d7887cfc25c30412d5f5825711b75ea6d415be", size = 602236 }, + { url = "https://files.pythonhosted.org/packages/a8/ff/242c6925b847aeb8f3ca915acdb708c305181b461eee183269bdf514fc52/fugashi-1.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:409b83f136a3c2da805cd999bd7e1792e7c71fa8e0637f77bdec2b6fd070a3bb", size = 614525 }, + { url = "https://files.pythonhosted.org/packages/63/9b/0fd0d9daea50204b469406a36a26bcd7c73d5eafb3a268cdd32d0e7759d9/fugashi-1.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:51eed11fee767597cfe735bd01326eb06deb2283112e29e9e5bdc954750e7a24", size = 500176 }, + { url = "https://files.pythonhosted.org/packages/aa/96/7f762bd0a88b88556d1314c5244f8cd1abd76e750f35c09d9ece9f5be895/fugashi-1.3.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:bc99b6e8f003c7a0e53e0f486caa1547f0ca8f86777610ea92af6e2f40ca212a", size = 508043 }, + { url = "https://files.pythonhosted.org/packages/e6/18/b9b2db4d763e6c9a73c758ed5bc1446d30177b5b903e165a884f1d3ca406/fugashi-1.3.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:21d2dac5b085632f1f9a24edf5d7ccaeb3272be672e4aa37a0b219fc7a3b0655", size = 507921 }, +] + +[[package]] +name = "gast" +version = "0.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3c/14/c566f5ca00c115db7725263408ff952b8ae6d6a4e792ef9c84e77d9af7a1/gast-0.6.0.tar.gz", hash = "sha256:88fc5300d32c7ac6ca7b515310862f71e6fdf2c029bbec7c66c0f5dd47b6b1fb", size = 27708 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a3/61/8001b38461d751cd1a0c3a6ae84346796a5758123f3ed97a1b121dfbf4f3/gast-0.6.0-py3-none-any.whl", hash = "sha256:52b182313f7330389f72b069ba00f174cfe2a06411099547288839c6cbafbd54", size = 21173 }, +] + +[[package]] +name = "gitdb" +version = "4.0.11" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "smmap", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/19/0d/bbb5b5ee188dec84647a4664f3e11b06ade2bde568dbd489d9d64adef8ed/gitdb-4.0.11.tar.gz", hash = "sha256:bf5421126136d6d0af55bc1e7c1af1c397a34f5b7bd79e776cd3e89785c2b04b", size = 394469 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fd/5b/8f0c4a5bb9fd491c277c21eff7ccae71b47d43c4446c9d0c6cff2fe8c2c4/gitdb-4.0.11-py3-none-any.whl", hash = "sha256:81a3407ddd2ee8df444cbacea00e2d038e40150acfa3001696fe0dcf1d3adfa4", size = 62721 }, +] + +[[package]] +name = "gitpython" +version = "3.1.18" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "gitdb", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/29/22/3d591875078c1c5e7e11b478616821995053968a74b76043c55448c46381/GitPython-3.1.18.tar.gz", hash = "sha256:b838a895977b45ab6f0cc926a9045c8d1c44e2b653c1fcc39fe91f42c6e8f05b", size = 181199 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bc/91/b38c4fabb6e5092ab23492ded4f318ab7299b19263272b703478038c0fbc/GitPython-3.1.18-py3-none-any.whl", hash = "sha256:fce760879cd2aebd2991b3542876dc5c4a909b30c9d69dfc488e504a8db37ee8", size = 170100 }, +] + +[[package]] +name = "google-auth" +version = "2.33.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cachetools", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyasn1-modules", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rsa", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/28/4d/626b37c6bcc1f211aef23f47c49375072c0cb19148627d98c85e099acbc8/google_auth-2.33.0.tar.gz", hash = "sha256:d6a52342160d7290e334b4d47ba390767e4438ad0d45b7630774533e82655b95", size = 257157 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/60/57/0f37c6f35847e26b7bea7d5e4f069cf037fd792cf8b67206311761e7bb92/google_auth-2.33.0-py2.py3-none-any.whl", hash = "sha256:8eff47d0d4a34ab6265c50a106a3362de6a9975bb08998700e389f857e4d39df", size = 200537 }, +] + +[[package]] +name = "google-auth-oauthlib" +version = "1.2.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "google-auth", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests-oauthlib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cc/0f/1772edb8d75ecf6280f1c7f51cbcebe274e8b17878b382f63738fd96cee5/google_auth_oauthlib-1.2.1.tar.gz", hash = "sha256:afd0cad092a2eaa53cd8e8298557d6de1034c6cb4a740500b5357b648af97263", size = 24970 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1a/8e/22a28dfbd218033e4eeaf3a0533b2b54852b6530da0c0fe934f0cc494b29/google_auth_oauthlib-1.2.1-py2.py3-none-any.whl", hash = "sha256:2d58a27262d55aa1b87678c3ba7142a080098cbc2024f903c62355deb235d91f", size = 24930 }, +] + +[[package]] +name = "google-pasta" +version = "0.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/35/4a/0bd53b36ff0323d10d5f24ebd67af2de10a1117f5cf4d7add90df92756f1/google-pasta-0.2.0.tar.gz", hash = "sha256:c9f2c8dfc8f96d0d5808299920721be30c9eec37f2389f28904f454565c8a16e", size = 40430 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a3/de/c648ef6835192e6e2cc03f40b19eeda4382c49b5bafb43d88b931c4c74ac/google_pasta-0.2.0-py3-none-any.whl", hash = "sha256:b32482794a366b5366a32c92a9a9201b107821889935a02b3e51f6b432ea84ed", size = 57471 }, +] + +[[package]] +name = "greenlet" +version = "3.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/17/14/3bddb1298b9a6786539ac609ba4b7c9c0842e12aa73aaa4d8d73ec8f8185/greenlet-3.0.3.tar.gz", hash = "sha256:43374442353259554ce33599da8b692d5aa96f8976d567d4badf263371fbe491", size = 182013 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a6/64/bea53c592e3e45799f7c8039a8ee7d6883c518eafef1fcae60beb776070f/greenlet-3.0.3-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:9da2bd29ed9e4f15955dd1595ad7bc9320308a3b766ef7f837e23ad4b4aac31a", size = 270098 }, + { url = "https://files.pythonhosted.org/packages/a6/d6/408ad9603339db28ce334021b1403dfcfbcb7501a435d49698408d928de7/greenlet-3.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d353cadd6083fdb056bb46ed07e4340b0869c305c8ca54ef9da3421acbdf6881", size = 651930 }, + { url = "https://files.pythonhosted.org/packages/6c/90/5b14670653f7363fb3e1665f8da6d64bd4c31d53a796d09ef69f48be7273/greenlet-3.0.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dca1e2f3ca00b84a396bc1bce13dd21f680f035314d2379c4160c98153b2059b", size = 667643 }, + { url = "https://files.pythonhosted.org/packages/ef/17/e8e72cabfb5a906c0d976d7fbcc88310df292beea0f816efbefdaf694284/greenlet-3.0.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3ed7fb269f15dc662787f4119ec300ad0702fa1b19d2135a37c2c4de6fadfd4a", size = 659188 }, + { url = "https://files.pythonhosted.org/packages/1c/2f/64628f6ae48e05f585e0eb3fb7399b52e240ef99f602107b445bf6be23ef/greenlet-3.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd4f49ae60e10adbc94b45c0b5e6a179acc1736cf7a90160b404076ee283cf83", size = 662673 }, + { url = "https://files.pythonhosted.org/packages/24/35/945d5b10648fec9b20bcc6df8952d20bb3bba76413cd71c1fdbee98f5616/greenlet-3.0.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:73a411ef564e0e097dbe7e866bb2dda0f027e072b04da387282b02c308807405", size = 616002 }, + { url = "https://files.pythonhosted.org/packages/74/00/27e2da76b926e9b5a2c97d3f4c0baf1b7d8181209d3026c0171f621ae6c0/greenlet-3.0.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:7f362975f2d179f9e26928c5b517524e89dd48530a0202570d55ad6ca5d8a56f", size = 1150603 }, + { url = "https://files.pythonhosted.org/packages/e1/65/506e0a80931170b0dac1a03d36b7fc299f3fa3576235b916718602fff2c3/greenlet-3.0.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:649dde7de1a5eceb258f9cb00bdf50e978c9db1b996964cd80703614c86495eb", size = 1176756 }, + { url = "https://files.pythonhosted.org/packages/a6/76/e1ee9f290bb0d46b09704c2fb0e609cae329eb308ad404c0ee6fa1ecb8a5/greenlet-3.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:68834da854554926fbedd38c76e60c4a2e3198c6fbed520b106a8986445caaf9", size = 292349 }, + { url = "https://files.pythonhosted.org/packages/6e/20/68a278a6f93fa36e21cfc3d7599399a8a831225644eb3b6b18755cd3d6fc/greenlet-3.0.3-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:b1b5667cced97081bf57b8fa1d6bfca67814b0afd38208d52538316e9422fc61", size = 271666 }, + { url = "https://files.pythonhosted.org/packages/21/b4/90e06e07c78513ab03855768200bdb35c8e764e805b3f14fb488e56f82dc/greenlet-3.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52f59dd9c96ad2fc0d5724107444f76eb20aaccb675bf825df6435acb7703559", size = 657689 }, + { url = "https://files.pythonhosted.org/packages/f6/a2/0ed21078039072f9dc738bbf3af12b103a84106b1385ac4723841f846ce7/greenlet-3.0.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:afaff6cf5200befd5cec055b07d1c0a5a06c040fe5ad148abcd11ba6ab9b114e", size = 673009 }, + { url = "https://files.pythonhosted.org/packages/42/11/42ad6b1104c357826bbee7d7b9e4f24dbd9fde94899a03efb004aab62963/greenlet-3.0.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fe754d231288e1e64323cfad462fcee8f0288654c10bdf4f603a39ed923bef33", size = 667432 }, + { url = "https://files.pythonhosted.org/packages/bb/6b/384dee7e0121cbd1757bdc1824a5ee28e43d8d4e3f99aa59521f629442fe/greenlet-3.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2797aa5aedac23af156bbb5a6aa2cd3427ada2972c828244eb7d1b9255846379", size = 667442 }, + { url = "https://files.pythonhosted.org/packages/c6/1f/12d5a6cc26e8b483c2e7975f9c22e088ac735c0d8dcb8a8f72d31a4e5f04/greenlet-3.0.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b7f009caad047246ed379e1c4dbcb8b020f0a390667ea74d2387be2998f58a22", size = 620032 }, + { url = "https://files.pythonhosted.org/packages/c7/ec/85b647e59e0f137c7792a809156f413e38379cf7f3f2e1353c37f4be4026/greenlet-3.0.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c5e1536de2aad7bf62e27baf79225d0d64360d4168cf2e6becb91baf1ed074f3", size = 1154218 }, + { url = "https://files.pythonhosted.org/packages/94/ed/1e5f4bca691a81700e5a88e86d6f0e538acb10188cd2cc17140e523255ef/greenlet-3.0.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:894393ce10ceac937e56ec00bb71c4c2f8209ad516e96033e4b3b1de270e200d", size = 1180754 }, + { url = "https://files.pythonhosted.org/packages/47/79/26d54d7d700ef65b689fc2665a40846d13e834da0486674a8d4f0f371a47/greenlet-3.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:1ea188d4f49089fc6fb283845ab18a2518d279c7cd9da1065d7a84e991748728", size = 292822 }, + { url = "https://files.pythonhosted.org/packages/a2/2f/461615adc53ba81e99471303b15ac6b2a6daa8d2a0f7f77fd15605e16d5b/greenlet-3.0.3-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:70fb482fdf2c707765ab5f0b6655e9cfcf3780d8d87355a063547b41177599be", size = 273085 }, + { url = "https://files.pythonhosted.org/packages/e9/55/2c3cfa3cdbb940cf7321fbcf544f0e9c74898eed43bf678abf416812d132/greenlet-3.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d4d1ac74f5c0c0524e4a24335350edad7e5f03b9532da7ea4d3c54d527784f2e", size = 660514 }, + { url = "https://files.pythonhosted.org/packages/38/77/efb21ab402651896c74f24a172eb4d7479f9f53898bd5e56b9e20bb24ffd/greenlet-3.0.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:149e94a2dd82d19838fe4b2259f1b6b9957d5ba1b25640d2380bea9c5df37676", size = 674295 }, + { url = "https://files.pythonhosted.org/packages/74/3a/92f188ace0190f0066dca3636cf1b09481d0854c46e92ec5e29c7cefe5b1/greenlet-3.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:15d79dd26056573940fcb8c7413d84118086f2ec1a8acdfa854631084393efcc", size = 669395 }, + { url = "https://files.pythonhosted.org/packages/63/0f/847ed02cdfce10f0e6e3425cd054296bddb11a17ef1b34681fa01a055187/greenlet-3.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:881b7db1ebff4ba09aaaeae6aa491daeb226c8150fc20e836ad00041bcb11230", size = 670455 }, + { url = "https://files.pythonhosted.org/packages/bd/37/56b0da468a85e7704f3b2bc045015301bdf4be2184a44868c71f6dca6fe2/greenlet-3.0.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fcd2469d6a2cf298f198f0487e0a5b1a47a42ca0fa4dfd1b6862c999f018ebbf", size = 625692 }, + { url = "https://files.pythonhosted.org/packages/7c/68/b5f4084c0a252d7e9c0d95fc1cfc845d08622037adb74e05be3a49831186/greenlet-3.0.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:1f672519db1796ca0d8753f9e78ec02355e862d0998193038c7073045899f305", size = 1152597 }, + { url = "https://files.pythonhosted.org/packages/a4/fa/31e22345518adcd69d1d6ab5087a12c178aa7f3c51103f6d5d702199d243/greenlet-3.0.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2516a9957eed41dd8f1ec0c604f1cdc86758b587d964668b5b196a9db5bfcde6", size = 1181043 }, + { url = "https://files.pythonhosted.org/packages/53/80/3d94d5999b4179d91bcc93745d1b0815b073d61be79dd546b840d17adb18/greenlet-3.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:bba5387a6975598857d86de9eac14210a49d554a77eb8261cc68b7d082f78ce2", size = 293635 }, + { url = "https://files.pythonhosted.org/packages/0b/8a/f5140c8713f919af0e98e6aaa40cb20edaaf3739d18c4a077581e2422ac4/greenlet-3.0.3-cp39-cp39-macosx_11_0_universal2.whl", hash = "sha256:da70d4d51c8b306bb7a031d5cff6cc25ad253affe89b70352af5f1cb68e74b53", size = 269242 }, + { url = "https://files.pythonhosted.org/packages/cf/5b/2de4a398840d3b4d99c4a3476cda0d82badfa349f3f89846ada2e32e9500/greenlet-3.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:086152f8fbc5955df88382e8a75984e2bb1c892ad2e3c80a2508954e52295257", size = 650174 }, + { url = "https://files.pythonhosted.org/packages/dc/c3/06ca5f34b01af6d6e2fd2f97c0ad3673123a442bf4a3add548d374b1cc7c/greenlet-3.0.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d73a9fe764d77f87f8ec26a0c85144d6a951a6c438dfe50487df5595c6373eac", size = 666285 }, + { url = "https://files.pythonhosted.org/packages/a2/92/f11dbbcf33809421447b24d2eefee0575c59c8569d6d03f7ca4d2b34d56f/greenlet-3.0.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b7dcbe92cc99f08c8dd11f930de4d99ef756c3591a5377d1d9cd7dd5e896da71", size = 658521 }, + { url = "https://files.pythonhosted.org/packages/9d/ea/8bc7ed08ba274bdaff08f2cb546d832b8f44af267e03ca6e449840486915/greenlet-3.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1551a8195c0d4a68fac7a4325efac0d541b48def35feb49d803674ac32582f61", size = 660753 }, + { url = "https://files.pythonhosted.org/packages/af/05/b7e068070a6c143f34dfcd7e9144684271b8067e310f6da68269580db1d8/greenlet-3.0.3-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:64d7675ad83578e3fc149b617a444fab8efdafc9385471f868eb5ff83e446b8b", size = 614348 }, + { url = "https://files.pythonhosted.org/packages/74/82/9737e7dee4ccb9e1be2a8f17cf760458be2c36c6ff7bbaef55cbe279e729/greenlet-3.0.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b37eef18ea55f2ffd8f00ff8fe7c8d3818abd3e25fb73fae2ca3b672e333a7a6", size = 1149569 }, + { url = "https://files.pythonhosted.org/packages/54/4b/965a542baf157f23912e466b50fa9c49dd66132d9495d201e6c607ea16f2/greenlet-3.0.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:77457465d89b8263bca14759d7c1684df840b6811b2499838cc5b040a8b5b113", size = 1176361 }, + { url = "https://files.pythonhosted.org/packages/20/70/2f99bdcb4e3912d844dee279e077ee670ec43161d96670a9dfad16b89dd1/greenlet-3.0.3-cp39-cp39-win32.whl", hash = "sha256:57e8974f23e47dac22b83436bdcf23080ade568ce77df33159e019d161ce1d1e", size = 272960 }, + { url = "https://files.pythonhosted.org/packages/c3/80/01ff837bc7122d049971960123d749ed16adbd43cbc008afdb780a40e3fa/greenlet-3.0.3-cp39-cp39-win_amd64.whl", hash = "sha256:c5ee858cfe08f34712f548c3c363e807e7186f03ad7a5039ebadb29e8c6be067", size = 290843 }, +] + +[[package]] +name = "grpcio" +version = "1.65.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cf/e7/739849982ca7fa1bf5e52a472803618e4f1f2963e9a73b1ca2cb056f95c7/grpcio-1.65.4.tar.gz", hash = "sha256:2a4f476209acffec056360d3e647ae0e14ae13dcf3dfb130c227ae1c594cbe39", size = 12254082 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ae/48/1c13c0963aa714406b46739f4fa57fb467979f9f07c528cf586d270f0043/grpcio-1.65.4-cp310-cp310-linux_armv7l.whl", hash = "sha256:0e85c8766cf7f004ab01aff6a0393935a30d84388fa3c58d77849fcf27f3e98c", size = 4878764 }, + { url = "https://files.pythonhosted.org/packages/52/df/9fe3671493b3ebb9a936f477749c9bb84dc2c78b3633f475594ffbd8716e/grpcio-1.65.4-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:e4a795c02405c7dfa8affd98c14d980f4acea16ea3b539e7404c645329460e5a", size = 10411328 }, + { url = "https://files.pythonhosted.org/packages/d7/ff/fa75c686920b0c83a07658d6cc665ef8ac9b0a89057ad1e91afac995ff0d/grpcio-1.65.4-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:d7b984a8dd975d949c2042b9b5ebcf297d6d5af57dcd47f946849ee15d3c2fb8", size = 5393965 }, + { url = "https://files.pythonhosted.org/packages/7d/ed/070a968c69f5b8c8d943f9300b3aad78b4befa44408b0b3169370915b1c0/grpcio-1.65.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:644a783ce604a7d7c91412bd51cf9418b942cf71896344b6dc8d55713c71ce82", size = 5980074 }, + { url = "https://files.pythonhosted.org/packages/a5/57/f03b02c4fad8b72539ab04b8b524782e071c89a2d9c182d60b5d9ded41d7/grpcio-1.65.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5764237d751d3031a36fafd57eb7d36fd2c10c658d2b4057c516ccf114849a3e", size = 5660544 }, + { url = "https://files.pythonhosted.org/packages/4f/5a/47ca58c5c275b5d1002d8a60a9544b30f6b5ca4f3689a75a6d9df890c004/grpcio-1.65.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:ee40d058cf20e1dd4cacec9c39e9bce13fedd38ce32f9ba00f639464fcb757de", size = 6287925 }, + { url = "https://files.pythonhosted.org/packages/ff/d9/77b7ebc1b3ac905644a4ec4ad5bb605680482c3ece5966c399bca164c874/grpcio-1.65.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4482a44ce7cf577a1f8082e807a5b909236bce35b3e3897f839f2fbd9ae6982d", size = 5909355 }, + { url = "https://files.pythonhosted.org/packages/ab/77/9480f757114cea5f31e8101de74cddcd1dd1d4e4e3d814a5a384a21635b1/grpcio-1.65.4-cp310-cp310-win32.whl", hash = "sha256:66bb051881c84aa82e4f22d8ebc9d1704b2e35d7867757f0740c6ef7b902f9b1", size = 3435366 }, + { url = "https://files.pythonhosted.org/packages/89/11/2dab356785e1df6e0a8224c0e4d5f8587fba345c065c3e27f0ad4456bc08/grpcio-1.65.4-cp310-cp310-win_amd64.whl", hash = "sha256:870370524eff3144304da4d1bbe901d39bdd24f858ce849b7197e530c8c8f2ec", size = 4144806 }, + { url = "https://files.pythonhosted.org/packages/a5/cf/969a2de144666f483a0c11aa2b33bf646689062f928bb361c57db8b7c90e/grpcio-1.65.4-cp311-cp311-linux_armv7l.whl", hash = "sha256:85e9c69378af02e483bc626fc19a218451b24a402bdf44c7531e4c9253fb49ef", size = 4884884 }, + { url = "https://files.pythonhosted.org/packages/9d/ee/4ce71fac8935862bb43e4d2a30d286e3de4d9f53d0cf486daa2e379e5c8f/grpcio-1.65.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:2bd672e005afab8bf0d6aad5ad659e72a06dd713020554182a66d7c0c8f47e18", size = 10438328 }, + { url = "https://files.pythonhosted.org/packages/40/ef/c85c23ce58d55ae21d4812be8462cce91d2f271d8e174c862f1cb1f5a51e/grpcio-1.65.4-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:abccc5d73f5988e8f512eb29341ed9ced923b586bb72e785f265131c160231d8", size = 5396919 }, + { url = "https://files.pythonhosted.org/packages/9d/48/595fa809256e09d9defbbd17a92dc7ee5d36cf7392c5cbc69eb9fa5b0daf/grpcio-1.65.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:886b45b29f3793b0c2576201947258782d7e54a218fe15d4a0468d9a6e00ce17", size = 5982481 }, + { url = "https://files.pythonhosted.org/packages/a7/40/086bcaa583f1c4b80c193f9269f0270fb6e5eb384cd855ec2660e1bbcc75/grpcio-1.65.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:be952436571dacc93ccc7796db06b7daf37b3b56bb97e3420e6503dccfe2f1b4", size = 5659542 }, + { url = "https://files.pythonhosted.org/packages/13/b4/5b60479e819889834a785dfceb67a8710e78518ac154158cf745e95fe853/grpcio-1.65.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:8dc9ddc4603ec43f6238a5c95400c9a901b6d079feb824e890623da7194ff11e", size = 6292647 }, + { url = "https://files.pythonhosted.org/packages/d5/2e/791a7c1d5582068adb87e63f291758c8c8e459b8aff0fe75f96e075ba42a/grpcio-1.65.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:ade1256c98cba5a333ef54636095f2c09e6882c35f76acb04412f3b1aa3c29a5", size = 5908730 }, + { url = "https://files.pythonhosted.org/packages/f9/75/87a399e96428270c9cc6700f1451d819bc8423ff242de6387a1a1f1b857e/grpcio-1.65.4-cp311-cp311-win32.whl", hash = "sha256:280e93356fba6058cbbfc6f91a18e958062ef1bdaf5b1caf46c615ba1ae71b5b", size = 3435309 }, + { url = "https://files.pythonhosted.org/packages/74/12/257ab1687ab913aa39330092a9816014bfcf108557f05869a4d40e01ece1/grpcio-1.65.4-cp311-cp311-win_amd64.whl", hash = "sha256:d2b819f9ee27ed4e3e737a4f3920e337e00bc53f9e254377dd26fc7027c4d558", size = 4145930 }, + { url = "https://files.pythonhosted.org/packages/10/32/29329ba27ddef8d502e2c279f0beab93fb60d13c1cb7e3e6c5bf2c1ef3d7/grpcio-1.65.4-cp312-cp312-linux_armv7l.whl", hash = "sha256:926a0750a5e6fb002542e80f7fa6cab8b1a2ce5513a1c24641da33e088ca4c56", size = 4822752 }, + { url = "https://files.pythonhosted.org/packages/a3/4e/218d076b1f939d02b4738bd0b1044ec6898f3e21a9fe8b7c4876dd970195/grpcio-1.65.4-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:2a1d4c84d9e657f72bfbab8bedf31bdfc6bfc4a1efb10b8f2d28241efabfaaf2", size = 10400601 }, + { url = "https://files.pythonhosted.org/packages/62/51/46f4366183f72986071bed97caa1aa19e05a9288df7b7fb3c439bd48d5ac/grpcio-1.65.4-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:17de4fda50967679677712eec0a5c13e8904b76ec90ac845d83386b65da0ae1e", size = 5337677 }, + { url = "https://files.pythonhosted.org/packages/24/dd/8d19248f6645e3acd34d2a22d84e7b3db14135db528a3003239f8e26460d/grpcio-1.65.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3dee50c1b69754a4228e933696408ea87f7e896e8d9797a3ed2aeed8dbd04b74", size = 5922221 }, + { url = "https://files.pythonhosted.org/packages/12/75/b25d1f130db4a294214ac300a38cc1f5a853ee8ea2e0e2529a200d3e6165/grpcio-1.65.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:74c34fc7562bdd169b77966068434a93040bfca990e235f7a67cdf26e1bd5c63", size = 5603315 }, + { url = "https://files.pythonhosted.org/packages/b5/0f/72647daa8dec968c338ed8fbf904369103377de73fe10ba4456eb843bd70/grpcio-1.65.4-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:24a2246e80a059b9eb981e4c2a6d8111b1b5e03a44421adbf2736cc1d4988a8a", size = 6236055 }, + { url = "https://files.pythonhosted.org/packages/d9/56/32bdcfdab28a42207095f6d799508d135b9d072521ce322165d0599478d1/grpcio-1.65.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:18c10f0d054d2dce34dd15855fcca7cc44ec3b811139437543226776730c0f28", size = 5853581 }, + { url = "https://files.pythonhosted.org/packages/63/7f/8716a0ecc1fc1a80e5071c4de52bb8b4993032f2841670f099eb865eca88/grpcio-1.65.4-cp312-cp312-win32.whl", hash = "sha256:d72962788b6c22ddbcdb70b10c11fbb37d60ae598c51eb47ec019db66ccfdff0", size = 3418578 }, + { url = "https://files.pythonhosted.org/packages/a9/2a/b104830e8ffe183d6e648fa2b4e200e7e1582191df195beaa93d28127f5f/grpcio-1.65.4-cp312-cp312-win_amd64.whl", hash = "sha256:7656376821fed8c89e68206a522522317787a3d9ed66fb5110b1dff736a5e416", size = 4130956 }, + { url = "https://files.pythonhosted.org/packages/95/02/5a1e0d025dd831235834a0ccce2f1e9504d64a8d3a3f0881cd2a98175171/grpcio-1.65.4-cp39-cp39-linux_armv7l.whl", hash = "sha256:874acd010e60a2ec1e30d5e505b0651ab12eb968157cd244f852b27c6dbed733", size = 4897236 }, + { url = "https://files.pythonhosted.org/packages/26/15/65a1612e87ed05545c19fe6d919a1ee5bef07a35f4d959f66d805379e8bc/grpcio-1.65.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b07f36faf01fca5427d4aa23645e2d492157d56c91fab7e06fe5697d7e171ad4", size = 10506647 }, + { url = "https://files.pythonhosted.org/packages/f9/9d/cbe5275f6a316a13a0320f47162c6f4949f50e62a3a530d0ab8905b1a209/grpcio-1.65.4-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:b81711bf4ec08a3710b534e8054c7dcf90f2edc22bebe11c1775a23f145595fe", size = 5416399 }, + { url = "https://files.pythonhosted.org/packages/e9/c8/0bf10fa500316d795fa3480db4299b6b79fe998ab9942e9a376e83f4642a/grpcio-1.65.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88fcabc332a4aef8bcefadc34a02e9ab9407ab975d2c7d981a8e12c1aed92aa1", size = 5999122 }, + { url = "https://files.pythonhosted.org/packages/bc/e4/710112ef9edd51430c99c75f306cd605b94c122403be3058cc0ef5c35d13/grpcio-1.65.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c9ba3e63108a8749994f02c7c0e156afb39ba5bdf755337de8e75eb685be244b", size = 5685252 }, + { url = "https://files.pythonhosted.org/packages/ae/87/45a5682482e4bba02a34dc507c82f5c96ad0e29ec388bb4f5c7b85df63dc/grpcio-1.65.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:8eb485801957a486bf5de15f2c792d9f9c897a86f2f18db8f3f6795a094b4bb2", size = 6307285 }, + { url = "https://files.pythonhosted.org/packages/f3/29/0f901894e763807cc420ab5fbcbfcb1f3797dc5a8755a399f78b5b7df0e8/grpcio-1.65.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:075f3903bc1749ace93f2b0664f72964ee5f2da5c15d4b47e0ab68e4f442c257", size = 5930544 }, + { url = "https://files.pythonhosted.org/packages/8c/8f/2555198771997a25891c8619bc0e1023ca937f2876a041c0ba65ddf4f920/grpcio-1.65.4-cp39-cp39-win32.whl", hash = "sha256:0a0720299bdb2cc7306737295d56e41ce8827d5669d4a3cd870af832e3b17c4d", size = 3436203 }, + { url = "https://files.pythonhosted.org/packages/85/c1/514b64320820122c8f5acc116b69b5c1ba42329f6050c0e5b09f6dcfe474/grpcio-1.65.4-cp39-cp39-win_amd64.whl", hash = "sha256:a146bc40fa78769f22e1e9ff4f110ef36ad271b79707577bf2a31e3e931141b9", size = 4144542 }, +] + +[[package]] +name = "h11" +version = "0.14.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f5/38/3af3d3633a34a3316095b39c8e8fb4853a28a536e55d347bd8d8e9a14b03/h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d", size = 100418 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/95/04/ff642e65ad6b90db43e668d70ffb6736436c7ce41fcc549f4e9472234127/h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761", size = 58259 }, +] + +[[package]] +name = "h5py" +version = "3.11.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/52/8f/e557819155a282da36fb21f8de4730cfd10a964b52b3ae8d20157ac1c668/h5py-3.11.0.tar.gz", hash = "sha256:7b7e8f78072a2edec87c9836f25f34203fd492a4475709a18b417a33cfb21fa9", size = 406519 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ac/25/a1cc81b3a742b73f9409bafe4762c9de0940cce0955d4b6754698fd5ce44/h5py-3.11.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1625fd24ad6cfc9c1ccd44a66dac2396e7ee74940776792772819fc69f3a3731", size = 3477113 }, + { url = "https://files.pythonhosted.org/packages/d4/03/bbb9a992fb43d3ce46687b7c14107f0fa56e6c8704c9ca945a9392cbc8ce/h5py-3.11.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c072655ad1d5fe9ef462445d3e77a8166cbfa5e599045f8aa3c19b75315f10e5", size = 2939879 }, + { url = "https://files.pythonhosted.org/packages/94/00/94bf8573e7487b7c37f2b613fc381880d48ec2311f2e859b8a5817deb4df/h5py-3.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:77b19a40788e3e362b54af4dcf9e6fde59ca016db2c61360aa30b47c7b7cef00", size = 5306122 }, + { url = "https://files.pythonhosted.org/packages/bb/0d/fbadb9c69e2a31f641bc24e8d21671129ef3b73f0c61bb16b094fadf1385/h5py-3.11.0-cp310-cp310-win_amd64.whl", hash = "sha256:ef4e2f338fc763f50a8113890f455e1a70acd42a4d083370ceb80c463d803972", size = 2968816 }, + { url = "https://files.pythonhosted.org/packages/a0/52/38bb74cc4362738cc7ef819503fc54d70f0c3a7378519ccb0ac309389122/h5py-3.11.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:bbd732a08187a9e2a6ecf9e8af713f1d68256ee0f7c8b652a32795670fb481ba", size = 3489913 }, + { url = "https://files.pythonhosted.org/packages/f0/af/dfbea0c69fe725e9e77259d42f4e14eb582eb094200aaf697feb36f513d8/h5py-3.11.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:75bd7b3d93fbeee40860fd70cdc88df4464e06b70a5ad9ce1446f5f32eb84007", size = 2946912 }, + { url = "https://files.pythonhosted.org/packages/af/26/f231ee425c8df93c1abbead3d90ea4a5ff3d6aa49e0edfd3b4c017e74844/h5py-3.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:52c416f8eb0daae39dabe71415cb531f95dce2d81e1f61a74537a50c63b28ab3", size = 5420165 }, + { url = "https://files.pythonhosted.org/packages/d8/5e/b7b83cfe60504cc4d24746aed04353af7ea8ec104e597e5ae71b8d0390cb/h5py-3.11.0-cp311-cp311-win_amd64.whl", hash = "sha256:083e0329ae534a264940d6513f47f5ada617da536d8dccbafc3026aefc33c90e", size = 2979079 }, + { url = "https://files.pythonhosted.org/packages/58/a9/2655d4b8355d0ee783dc89dd40b5f0780e6f54a4c9b60721dc235fd6c457/h5py-3.11.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:a76cae64080210389a571c7d13c94a1a6cf8cb75153044fd1f822a962c97aeab", size = 3466468 }, + { url = "https://files.pythonhosted.org/packages/9d/3f/cf80ef55e0a9b18aae96c763fbd275c54d0723e0f2cc54f954f87cc5c69a/h5py-3.11.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f3736fe21da2b7d8a13fe8fe415f1272d2a1ccdeff4849c1421d2fb30fd533bc", size = 2943214 }, + { url = "https://files.pythonhosted.org/packages/db/7e/fedac8bb8c4729409e2dec5e4136a289116d701d54f69ce73c5617afc5f0/h5py-3.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa6ae84a14103e8dc19266ef4c3e5d7c00b68f21d07f2966f0ca7bdb6c2761fb", size = 5378375 }, + { url = "https://files.pythonhosted.org/packages/2b/b2/0ee327933ffa37af1fc7915df7fc067e6009adcd8445d55ad07a9bec11b5/h5py-3.11.0-cp312-cp312-win_amd64.whl", hash = "sha256:21dbdc5343f53b2e25404673c4f00a3335aef25521bd5fa8c707ec3833934892", size = 2970991 }, + { url = "https://files.pythonhosted.org/packages/c2/1f/36a84945616881bd47e6c40dcdca7e929bc811725d78d001eddba6864185/h5py-3.11.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f4e025e852754ca833401777c25888acb96889ee2c27e7e629a19aee288833f0", size = 3490090 }, + { url = "https://files.pythonhosted.org/packages/3c/fb/e213586de5ea56f1747a843e725c62eef350512be57452186996ba660d52/h5py-3.11.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6c4b760082626120031d7902cd983d8c1f424cdba2809f1067511ef283629d4b", size = 2951710 }, + { url = "https://files.pythonhosted.org/packages/71/28/69a881e01f198ccdb65c36f7adcfef22bfe85e38ffbfdf833af24f58eb5e/h5py-3.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:67462d0669f8f5459529de179f7771bd697389fcb3faab54d63bf788599a48ea", size = 5326481 }, + { url = "https://files.pythonhosted.org/packages/c3/61/0b35ad9aac0ab0a33365879556fdb824fc83013df69b247386690db59015/h5py-3.11.0-cp39-cp39-win_amd64.whl", hash = "sha256:d9c944d364688f827dc889cf83f1fca311caf4fa50b19f009d1f2b525edd33a3", size = 2978689 }, +] + +[[package]] +name = "hf-doc-builder" +version = "0.5.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "black", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "gitpython", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "huggingface-hub", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "nbformat", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/97/f7/3a4e5528b79891159cd428d6c6d09bd47ca6b4c26315b9bb77828b162586/hf-doc-builder-0.5.0.tar.gz", hash = "sha256:e557660f76d1d90ac79e96d7b17642eca83f16a0a89ceabde180f0437d28179b", size = 152415 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/40/89/b794a9f2708f2926d3050132541952bc44eeeb1e560dc34fd00bace47655/hf_doc_builder-0.5.0-py3-none-any.whl", hash = "sha256:bdceb44a26b7eb90a344afb3560306e23e95f0676f94fbd8a8111cf7f096e2ea", size = 67780 }, +] + +[[package]] +name = "hjson" +version = "3.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/82/e5/0b56d723a76ca67abadbf7fb71609fb0ea7e6926e94fcca6c65a85b36a0e/hjson-3.1.0.tar.gz", hash = "sha256:55af475a27cf83a7969c808399d7bccdec8fb836a07ddbd574587593b9cdcf75", size = 40541 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1f/7f/13cd798d180af4bf4c0ceddeefba2b864a63c71645abc0308b768d67bb81/hjson-3.1.0-py3-none-any.whl", hash = "sha256:65713cdcf13214fb554eb8b4ef803419733f4f5e551047c9b711098ab7186b89", size = 54018 }, +] + +[[package]] +name = "huggingface-hub" +version = "0.24.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "filelock", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fsspec", version = "2024.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fsspec", version = "2024.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ec/07/b70a5b9c3da399a54a446a4750763c9030f47fa0491ef31a3fa8de4cb0d2/huggingface_hub-0.24.5.tar.gz", hash = "sha256:7b45d6744dd53ce9cbf9880957de00e9d10a9ae837f1c9b7255fc8fa4e8264f3", size = 349225 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0b/05/31b21998f68c31e7ffcc27ff08531fb9af5506d765ce8d661fb0036e6918/huggingface_hub-0.24.5-py3-none-any.whl", hash = "sha256:d93fb63b1f1a919a22ce91a14518974e81fc4610bf344dfe7572343ce8d3aced", size = 417510 }, +] + +[[package]] +name = "humanfriendly" +version = "10.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyreadline3", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cc/3f/2c29224acb2e2df4d2046e4c73ee2662023c58ff5b113c4c1adac0886c43/humanfriendly-10.0.tar.gz", hash = "sha256:6b0b831ce8f15f7300721aa49829fc4e83921a9a301cc7f606be6686a2288ddc", size = 360702 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f0/0f/310fb31e39e2d734ccaa2c0fb981ee41f7bd5056ce9bc29b2248bd569169/humanfriendly-10.0-py2.py3-none-any.whl", hash = "sha256:1697e1a8a8f550fd43c2865cd84542fc175a61dcb779b6fee18cf6b6ccba1477", size = 86794 }, +] + +[[package]] +name = "hypothesis" +version = "6.110.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "exceptiongroup", marker = "python_version < '3.11'" }, + { name = "sortedcontainers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/34/07/ae0e4c3f518e8fcc10ccd7f957838ea2ffedb57532c02799a50db876a7fc/hypothesis-6.110.0.tar.gz", hash = "sha256:fc1bd11cb913e83451d2cff3876ad771ab909d64b854a068d47cb4e6f53f2b0c", size = 406694 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ff/1b/97a429a8a2d92d373b47340ea485a03f904181546ba5b383fd6456b3e3b6/hypothesis-6.110.0-py3-none-any.whl", hash = "sha256:976200b4c0b3e315c04bf33e1bc176054dd07ff40ef2c7f4129768a50aca9753", size = 467528 }, +] + +[[package]] +name = "idna" +version = "3.7" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/21/ed/f86a79a07470cb07819390452f178b3bef1d375f2ec021ecfc709fc7cf07/idna-3.7.tar.gz", hash = "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc", size = 189575 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e5/3e/741d8c82801c347547f8a2a06aa57dbb1992be9e948df2ea0eda2c8b79e8/idna-3.7-py3-none-any.whl", hash = "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0", size = 66836 }, +] + +[[package]] +name = "importlib-metadata" +version = "6.11.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "zipp", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ee/eb/58c2ab27ee628ad801f56d4017fe62afab0293116f6d0b08f1d5bd46e06f/importlib_metadata-6.11.0.tar.gz", hash = "sha256:1231cf92d825c9e03cfc4da076a16de6422c863558229ea0b22b675657463443", size = 54593 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/59/9b/ecce94952ab5ea74c31dcf9ccf78ccd484eebebef06019bf8cb579ab4519/importlib_metadata-6.11.0-py3-none-any.whl", hash = "sha256:f0afba6205ad8f8947c7d338b5342d5db2afbfd82f9cbef7879a9539cc12eb9b", size = 23427 }, +] + +[[package]] +name = "importlib-resources" +version = "6.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "zipp", marker = "python_version < '3.10'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c8/9d/6ee73859d6be81c6ea7ebac89655e92740296419bd37e5c8abdb5b62fd55/importlib_resources-6.4.0.tar.gz", hash = "sha256:cdb2b453b8046ca4e3798eb1d84f3cce1446a0e8e7b5ef4efb600f19fc398145", size = 42040 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/75/06/4df55e1b7b112d183f65db9503bff189e97179b256e1ea450a3c365241e0/importlib_resources-6.4.0-py3-none-any.whl", hash = "sha256:50d10f043df931902d4194ea07ec57960f66a80449ff867bfe782b4c486ba78c", size = 38168 }, +] + +[[package]] +name = "iniconfig" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d7/4b/cbd8e699e64a6f16ca3a8220661b5f83792b3017d0f79807cb8708d33913/iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3", size = 4646 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374", size = 5892 }, +] + +[[package]] +name = "ipadic" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e7/4e/c459f94d62a0bef89f866857bc51b9105aff236b83928618315b41a26b7b/ipadic-1.0.0.tar.gz", hash = "sha256:f5923d31eca6131acaaf18ed28d8998665b1347b640d3a6476f64650e9a71c07", size = 13413189 } + +[[package]] +name = "isodate" +version = "0.6.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/db/7a/c0a56c7d56c7fa723988f122fa1f1ccf8c5c4ccc48efad0d214b49e5b1af/isodate-0.6.1.tar.gz", hash = "sha256:48c5881de7e8b0a0d648cb024c8062dc84e7b840ed81e864c7614fd3c127bde9", size = 28443 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/85/7882d311924cbcfc70b1890780763e36ff0b140c7e51c110fc59a532f087/isodate-0.6.1-py2.py3-none-any.whl", hash = "sha256:0751eece944162659049d35f4f549ed815792b38793f07cf73381c1c87cbed96", size = 41722 }, +] + +[[package]] +name = "isort" +version = "5.13.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/87/f9/c1eb8635a24e87ade2efce21e3ce8cd6b8630bb685ddc9cdaca1349b2eb5/isort-5.13.2.tar.gz", hash = "sha256:48fdfcb9face5d58a4f6dde2e72a1fb8dcaf8ab26f95ab49fab84c2ddefb0109", size = 175303 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/b3/8def84f539e7d2289a02f0524b944b15d7c75dab7628bedf1c4f0992029c/isort-5.13.2-py3-none-any.whl", hash = "sha256:8ca5e72a8d85860d5a3fa69b8745237f2939afe12dbf656afbcb47fe72d947a6", size = 92310 }, +] + +[[package]] +name = "itsdangerous" +version = "2.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9c/cb/8ac0172223afbccb63986cc25049b154ecfb5e85932587206f42317be31d/itsdangerous-2.2.0.tar.gz", hash = "sha256:e0050c0b7da1eea53ffaf149c0cfbb5c6e2e2b69c4bef22c81fa6eb73e5f6173", size = 54410 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/96/92447566d16df59b2a776c0fb82dbc4d9e07cd95062562af01e408583fc4/itsdangerous-2.2.0-py3-none-any.whl", hash = "sha256:c6242fc49e35958c8b15141343aa660db5fc54d4f13a1db01a3f5891b98700ef", size = 16234 }, +] + +[[package]] +name = "jax" +version = "0.4.13" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "importlib-metadata", marker = "python_version < '3.10'" }, + { name = "ml-dtypes", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "opt-einsum", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "scipy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1e/f2/03643b515aede51a812608e3fe37cbc30426241e512bb0fb8546c36ddd5b/jax-0.4.13.tar.gz", hash = "sha256:03bfe6749dfe647f16f15f6616638adae6c4a7ca7167c75c21961ecfd3a3baaa", size = 1312396 } + +[[package]] +name = "jaxlib" +version = "0.4.13" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ml-dtypes", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "scipy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/5b/3d/e6ec561f4d6dc822abbc86b6d2adb36753d6b3ba25dff2fa00cb7d7b941c/jaxlib-0.4.13-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:532ebc4fb11386282ad63b83941d4557f4038c1144acf026f1f8565f64c7e9c0", size = 75002669 }, + { url = "https://files.pythonhosted.org/packages/09/aa/7316c5df14e819cfbf6ade7c3196a731182318247e901a780708db9dfffe/jaxlib-0.4.13-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a259bb35429bfbd3b76e43019dfc8f7d6ea94bb217400b78f7d0824ce07a58ac", size = 60529784 }, + { url = "https://files.pythonhosted.org/packages/7d/69/9a71db7bac2d6543e8ec7f4236477b646b245b59b6bfcc99591cdfc76494/jaxlib-0.4.13-cp310-cp310-manylinux2014_x86_64.whl", hash = "sha256:ea1bc9811ef7d73a15e3213115e88fe7f5d14b59d95027bea9fccc98e5a14af8", size = 71571087 }, + { url = "https://files.pythonhosted.org/packages/8e/8c/c9ffca098a00bbd802a01dce5b78387a64c0e1419570c9775f42dcf1c6a3/jaxlib-0.4.13-cp310-cp310-win_amd64.whl", hash = "sha256:fde66a93e9be89d99e5792f677ed8e319667d6b2396865b1c52c1312844c47f9", size = 39121663 }, + { url = "https://files.pythonhosted.org/packages/02/e2/803075c7ad869b47b40e08b7fad35916f4536d3e6df40c02e38d7e0cf0d5/jaxlib-0.4.13-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:49690fcdd26560515fd15399fc3a44777e0bfc5db5c48fe76ff7bc7228e8b2fb", size = 75002379 }, + { url = "https://files.pythonhosted.org/packages/49/8c/986d8022a471e4a80e1f33cfab81ea3b7dc675fd2a2d210be217e64c09e3/jaxlib-0.4.13-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f4e9e34e5d8a6556f62fead14aee0b1614c2c6296f0078d8e6139d6aff109649", size = 60528240 }, + { url = "https://files.pythonhosted.org/packages/18/53/6c56ab4ab31f6f8a09fcdb9dbc8ad2dd9b08ea0718e93ec6739f81679b9e/jaxlib-0.4.13-cp311-cp311-manylinux2014_x86_64.whl", hash = "sha256:8000c0d15c107328e8f7b7b3ac91dd822f5c287a80231882b620503ed141fa89", size = 71569405 }, + { url = "https://files.pythonhosted.org/packages/ee/4a/681e13141877e3e9f367fc70cb898e16893db14c8c4abc074221ffa9b3e4/jaxlib-0.4.13-cp311-cp311-win_amd64.whl", hash = "sha256:19ae4c316b17a49342432c69f7f89f190b975333f3f9e9e175f686a651bc7347", size = 39123675 }, + { url = "https://files.pythonhosted.org/packages/cd/7c/45935fa8cd67664b492e9ad60a0fa32f6e7dde8c9909b3c3d9f4bfa4d118/jaxlib-0.4.13-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:c230ef85712e608d0f048869766a5a63afeb2e72309943db0df9f959ab17307f", size = 75004444 }, + { url = "https://files.pythonhosted.org/packages/fd/d7/c8707ac3203ef2198e1ec45b9afb62e634578cae9c54c455223846d094ab/jaxlib-0.4.13-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d19c05c15f962e098d49b45e2758aacf19330d192ec5395f9ef136f62db90edc", size = 60531230 }, + { url = "https://files.pythonhosted.org/packages/b8/29/09d0ce36bec04c1750688c6fec270df7502677f82f317f6c6b43e491b7e0/jaxlib-0.4.13-cp39-cp39-manylinux2014_x86_64.whl", hash = "sha256:b5c0a9737efd95fe18fd7715ce30dfce476546705ea8934aad6731777a9631a5", size = 71571249 }, + { url = "https://files.pythonhosted.org/packages/b5/88/574e2472005f1d3377621eeef3262282b48b322dfdc8bceddab6035c0454/jaxlib-0.4.13-cp39-cp39-win_amd64.whl", hash = "sha256:bebb4cf001f180dc431f9604daf930c2d9cc778e4dda26f401ac939b7bac912e", size = 39048355 }, +] + +[[package]] +name = "jinja2" +version = "3.1.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ed/55/39036716d19cab0747a5020fc7e907f362fbf48c984b14e62127f7e68e5d/jinja2-3.1.4.tar.gz", hash = "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369", size = 240245 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/31/80/3a54838c3fb461f6fec263ebf3a3a41771bd05190238de3486aae8540c36/jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d", size = 133271 }, +] + +[[package]] +name = "jinja2-time" +version = "0.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "arrow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jinja2", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/de/7c/ee2f2014a2a0616ad3328e58e7dac879251babdb4cb796d770b5d32c469f/jinja2-time-0.2.0.tar.gz", hash = "sha256:d14eaa4d315e7688daa4969f616f226614350c48730bfa1692d2caebd8c90d40", size = 5701 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6a/a1/d44fa38306ffa34a7e1af09632b158e13ec89670ce491f8a15af3ebcb4e4/jinja2_time-0.2.0-py2.py3-none-any.whl", hash = "sha256:d3eab6605e3ec8b7a0863df09cc1d23714908fa61aa6986a845c20ba488b4efa", size = 6360 }, +] + +[[package]] +name = "jmespath" +version = "1.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/00/2a/e867e8531cf3e36b41201936b7fa7ba7b5702dbef42922193f05c8976cd6/jmespath-1.0.1.tar.gz", hash = "sha256:90261b206d6defd58fdd5e85f478bf633a2901798906be2ad389150c5c60edbe", size = 25843 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/31/b4/b9b800c45527aadd64d5b442f9b932b00648617eb5d63d2c7a6587b7cafc/jmespath-1.0.1-py3-none-any.whl", hash = "sha256:02e2e4cc71b5bcab88332eebf907519190dd9e6e82107fa7f83b1003a6252980", size = 20256 }, +] + +[[package]] +name = "joblib" +version = "1.4.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/64/33/60135848598c076ce4b231e1b1895170f45fbcaeaa2c9d5e38b04db70c35/joblib-1.4.2.tar.gz", hash = "sha256:2382c5816b2636fbd20a09e0f4e9dad4736765fdfb7dca582943b9c1366b3f0e", size = 2116621 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/91/29/df4b9b42f2be0b623cbd5e2140cafcaa2bef0759a00b7b70104dcfe2fb51/joblib-1.4.2-py3-none-any.whl", hash = "sha256:06d478d5674cbc267e7496a410ee875abd68e4340feff4490bcb7afb88060ae6", size = 301817 }, +] + +[[package]] +name = "jsonschema" +version = "4.23.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jsonschema-specifications", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "referencing", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rpds-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/38/2e/03362ee4034a4c917f697890ccd4aec0800ccf9ded7f511971c75451deec/jsonschema-4.23.0.tar.gz", hash = "sha256:d71497fef26351a33265337fa77ffeb82423f3ea21283cd9467bb03999266bc4", size = 325778 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/69/4a/4f9dbeb84e8850557c02365a0eee0649abe5eb1d84af92a25731c6c0f922/jsonschema-4.23.0-py3-none-any.whl", hash = "sha256:fbadb6f8b144a8f8cf9f0b89ba94501d143e50411a1278633f56a7acf7fd5566", size = 88462 }, +] + +[[package]] +name = "jsonschema-specifications" +version = "2023.12.[X]" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "referencing", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f8/b9/cc0cc592e7c195fb8a650c1d5990b10175cf13b4c97465c72ec841de9e4b/jsonschema_specifications-2023.12.[X].tar.gz", hash = "sha256:48a76787b3e70f5ed53f1160d2b81f586e4ca6d1548c5de7085d1682674764cc", size = 13983 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ee/07/44bd408781594c4d0a027666ef27fab1e441b109dc3b76b4f836f8fd04fe/jsonschema_specifications-2023.12.[X]-py3-none-any.whl", hash = "sha256:87e4fdf3a94858b8a2ba2778d9ba57d8a9cafca7c7489c46ba0d30a8bc6a9c3c", size = 18482 }, +] + +[[package]] +name = "jupyter-core" +version = "5.7.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "platformdirs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pywin32", marker = "platform_python_implementation != 'PyPy' and sys_platform == 'win32'" }, + { name = "traitlets", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/00/11/b56381fa6c3f4cc5d2cf54a7dbf98ad9aa0b339ef7a601d6053538b079a7/jupyter_core-5.7.2.tar.gz", hash = "sha256:aa5f8d32bbf6b431ac830496da7392035d6f61b4f54872f15c4bd2a9c3f536d9", size = 87629 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c9/fb/108ecd1fe961941959ad0ee4e12ee7b8b1477247f30b1fdfd83ceaf017f0/jupyter_core-5.7.2-py3-none-any.whl", hash = "sha256:4f7315d2f6b4bcf2e3e7cb6e46772eba760ae459cd1f59d29eb57b0a01bd7409", size = 28965 }, +] + +[[package]] +name = "kagglehub" +version = "0.2.9" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/3f/9d/a3bbd76a48c8e06cc8c6817549c52148c7bc9d4ead9626cfb3e1093a0786/kagglehub-0.2.9.tar.gz", hash = "sha256:761366c7349910612c9df879fae0a305a2146bf3b3f90e8be8434ab823d53687", size = 55678 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5c/e7/71927b088047132317c14eb513d69c8375ddba3c9029d4154a054f6c8765/kagglehub-0.2.9-py3-none-any.whl", hash = "sha256:4689019c69f52a86130e3b8c02e41ba521d17ac1d2644d8178a9eb32bbc74ea9", size = 39787 }, +] + +[[package]] +name = "kenlm" +version = "0.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/97/76/6a7479e3546d34ee46fc960c8d0ccf281f26ed18956d17f4ec5dcb1fa377/kenlm-0.2.0.tar.gz", hash = "sha256:c2dc1dc09d3c150e6a1777ef0fd5cac3688e1dc1cc13e41472d0284e5e88ac7f", size = 427425 } + +[[package]] +name = "keras" +version = "2.15.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b5/03/80072f4ee46e3c77e95b06d684fadf90a67759e4e9f1d86a563e0965c71a/keras-2.15.0.tar.gz", hash = "sha256:81871d298c064dc4ac6b58440fdae67bfcf47c8d7ad28580fab401834c06a575", size = 1252015 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fc/a7/0d4490de967a67f68a538cc9cdb259bff971c4b5787f7765dc7c8f118f71/keras-2.15.0-py3-none-any.whl", hash = "sha256:2dcc6d2e30cf9c951064b63c1f4c404b966c59caf09e01f3549138ec8ee0dd1f", size = 1710438 }, +] + +[[package]] +name = "keras-nlp" +version = "0.14.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "kagglehub", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "regex", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rich", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-text", marker = "platform_system != 'Darwin'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/da/bf/7f34bfd78555f8ce68f51f6583b4a91a279e34dee2013047e338529c3f8a/keras_nlp-0.14.4.tar.gz", hash = "sha256:abd5886efc60d52f0970ac43d3791c87624bfa8f7a7048a66f9dbcb2d1d28771", size = 331838 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0e/e9/abbca8edef533acc7deec437742eb9c8c542d03534cab3bee7835bd97f3f/keras_nlp-0.14.4-py3-none-any.whl", hash = "sha256:13664b96c4551f4734074d502a961e8f994ee2ce15c7e94e472b33f1d4bf109c", size = 572242 }, +] + +[[package]] +name = "language-tags" +version = "1.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e0/7e/b6a0efe4fee11e9742c1baaedf7c574084238a70b03c1d8eb2761383848f/language_tags-1.2.0.tar.gz", hash = "sha256:e934acba3e3dc85f867703eca421847a9ab7b7679b11b5d5cfd096febbf8bde6", size = 207901 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b0/42/327554649ed2dd5ce59d3f5da176c7be20f9352c7c6c51597293660b7b08/language_tags-1.2.0-py3-none-any.whl", hash = "sha256:d815604622242fdfbbfd747b40c31213617fd03734a267f2e39ee4bd73c88722", size = 213449 }, +] + +[[package]] +name = "lazy-loader" +version = "0.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6f/6b/c875b30a1ba490860c93da4cabf479e03f584eba06fe5963f6f6644653d8/lazy_loader-0.4.tar.gz", hash = "sha256:47c75182589b91a4e1a85a136c074285a5ad4d9f39c63e0d7fb76391c4574cd1", size = 15431 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/83/60/d497a310bde3f01cb805196ac61b7ad6dc5dcf8dce66634dc34364b20b4f/lazy_loader-0.4-py3-none-any.whl", hash = "sha256:342aa8e14d543a154047afb4ba8ef17f5563baad3fc610d7b15b213b0f119efc", size = 12097 }, +] + +[[package]] +name = "libclang" +version = "18.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6e/5c/ca35e19a4f142adffa27e3d652196b7362fa612243e2b916845d801454fc/libclang-18.1.1.tar.gz", hash = "sha256:a1214966d08d73d971287fc3ead8dfaf82eb07fb197680d8b3859dbbbbf78250", size = 39612 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4b/49/f5e3e7e1419872b69f6f5e82ba56e33955a74bd537d8a1f5f1eff2f3668a/libclang-18.1.1-1-py2.py3-none-macosx_11_0_arm64.whl", hash = "sha256:0b2e143f0fac830156feb56f9231ff8338c20aecfe72b4ffe96f19e5a1dbb69a", size = 25836045 }, + { url = "https://files.pythonhosted.org/packages/e2/e5/fc61bbded91a8830ccce94c5294ecd6e88e496cc85f6704bf350c0634b70/libclang-18.1.1-py2.py3-none-macosx_10_9_x86_64.whl", hash = "sha256:6f14c3f194704e5d09769108f03185fce7acaf1d1ae4bbb2f30a72c2400cb7c5", size = 26502641 }, + { url = "https://files.pythonhosted.org/packages/db/ed/1df62b44db2583375f6a8a5e2ca5432bbdc3edb477942b9b7c848c720055/libclang-18.1.1-py2.py3-none-macosx_11_0_arm64.whl", hash = "sha256:83ce5045d101b669ac38e6da8e58765f12da2d3aafb3b9b98d88b286a60964d8", size = 26420207 }, + { url = "https://files.pythonhosted.org/packages/1d/fc/716c1e62e512ef1c160e7984a73a5fc7df45166f2ff3f254e71c58076f7c/libclang-18.1.1-py2.py3-none-manylinux2010_x86_64.whl", hash = "sha256:c533091d8a3bbf7460a00cb6c1a71da93bffe148f172c7d03b1c31fbf8aa2a0b", size = 24515943 }, + { url = "https://files.pythonhosted.org/packages/3c/3d/f0ac1150280d8d20d059608cf2d5ff61b7c3b7f7bcf9c0f425ab92df769a/libclang-18.1.1-py2.py3-none-manylinux2014_aarch64.whl", hash = "sha256:54dda940a4a0491a9d1532bf071ea3ef26e6dbaf03b5000ed94dd7174e8f9592", size = 23784972 }, + { url = "https://files.pythonhosted.org/packages/fe/2f/d920822c2b1ce9326a4c78c0c2b4aa3fde610c7ee9f631b600acb5376c26/libclang-18.1.1-py2.py3-none-manylinux2014_armv7l.whl", hash = "sha256:cf4a99b05376513717ab5d82a0db832c56ccea4fd61a69dbb7bccf2dfb207dbe", size = 20259606 }, + { url = "https://files.pythonhosted.org/packages/2d/c2/de1db8c6d413597076a4259cea409b83459b2db997c003578affdd32bf66/libclang-18.1.1-py2.py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:69f8eb8f65c279e765ffd28aaa7e9e364c776c17618af8bff22a8df58677ff4f", size = 24921494 }, + { url = "https://files.pythonhosted.org/packages/0b/2d/3f480b1e1d31eb3d6de5e3ef641954e5c67430d5ac93b7fa7e07589576c7/libclang-18.1.1-py2.py3-none-win_amd64.whl", hash = "sha256:4dd2d3b82fab35e2bf9ca717d7b63ac990a3519c7e312f19fa8e86dcc712f7fb", size = 26415083 }, + { url = "https://files.pythonhosted.org/packages/71/cf/e01dc4cc79779cd82d77888a88ae2fa424d93b445ad4f6c02bfc18335b70/libclang-18.1.1-py2.py3-none-win_arm64.whl", hash = "sha256:3f0e1f49f04d3cd198985fea0511576b0aee16f9ff0e0f0cad7f9c57ec3c20e8", size = 22361112 }, +] + +[[package]] +name = "librosa" +version = "0.10.2.post1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "audioread", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "decorator", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "joblib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "lazy-loader", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "msgpack", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numba", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pooch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "scikit-learn", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "scipy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "soundfile", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "soxr", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0e/2d/77783a52641a21ff7e2230aa588e4fb4a61422a64673096a36776b7e5bd9/librosa-0.10.2.post1.tar.gz", hash = "sha256:cd99f16717cbcd1e0983e37308d1db46a6f7dfc2e396e5a9e61e6821e44bd2e7", size = 325533 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8c/8a/2d231b35456506b7c98b3ab9bbf07917b205fed8615d2e59e976ab497fff/librosa-0.10.2.post1-py3-none-any.whl", hash = "sha256:dc882750e8b577a63039f25661b7e39ec4cfbacc99c1cffba666cd664fb0a7a0", size = 260089 }, +] + +[[package]] +name = "llvmlite" +version = "0.43.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9f/3d/f513755f285db51ab363a53e898b85562e950f79a2e6767a364530c2f645/llvmlite-0.43.0.tar.gz", hash = "sha256:ae2b5b5c3ef67354824fb75517c8db5fbe93bc02cd9671f3c62271626bc041d5", size = 157069 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/23/ff/6ca7e98998b573b4bd6566f15c35e5c8bea829663a6df0c7aa55ab559da9/llvmlite-0.43.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a289af9a1687c6cf463478f0fa8e8aa3b6fb813317b0d70bf1ed0759eab6f761", size = 31064408 }, + { url = "https://files.pythonhosted.org/packages/ca/5c/a27f9257f86f0cda3f764ff21d9f4217b9f6a0d45e7a39ecfa7905f524ce/llvmlite-0.43.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6d4fd101f571a31acb1559ae1af30f30b1dc4b3186669f92ad780e17c81e91bc", size = 28793153 }, + { url = "https://files.pythonhosted.org/packages/7e/3c/4410f670ad0a911227ea2ecfcba9f672a77cf1924df5280c4562032ec32d/llvmlite-0.43.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7d434ec7e2ce3cc8f452d1cd9a28591745de022f931d67be688a737320dfcead", size = 42857276 }, + { url = "https://files.pythonhosted.org/packages/c6/21/2ffbab5714e72f2483207b4a1de79b2eecd9debbf666ff4e7067bcc5c134/llvmlite-0.43.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6912a87782acdff6eb8bf01675ed01d60ca1f2551f8176a300a886f09e836a6a", size = 43871781 }, + { url = "https://files.pythonhosted.org/packages/f2/26/b5478037c453554a61625ef1125f7e12bb1429ae11c6376f47beba9b0179/llvmlite-0.43.0-cp310-cp310-win_amd64.whl", hash = "sha256:14f0e4bf2fd2d9a75a3534111e8ebeb08eda2f33e9bdd6dfa13282afacdde0ed", size = 28123487 }, + { url = "https://files.pythonhosted.org/packages/95/8c/de3276d773ab6ce3ad676df5fab5aac19696b2956319d65d7dd88fb10f19/llvmlite-0.43.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3e8d0618cb9bfe40ac38a9633f2493d4d4e9fcc2f438d39a4e854f39cc0f5f98", size = 31064409 }, + { url = "https://files.pythonhosted.org/packages/ee/e1/38deed89ced4cf378c61e232265cfe933ccde56ae83c901aa68b477d14b1/llvmlite-0.43.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e0a9a1a39d4bf3517f2af9d23d479b4175ead205c592ceeb8b89af48a327ea57", size = 28793149 }, + { url = "https://files.pythonhosted.org/packages/2f/b2/4429433eb2dc8379e2cb582502dca074c23837f8fd009907f78a24de4c25/llvmlite-0.43.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c1da416ab53e4f7f3bc8d4eeba36d801cc1894b9fbfbf2022b29b6bad34a7df2", size = 42857277 }, + { url = "https://files.pythonhosted.org/packages/6b/99/5d00a7d671b1ba1751fc9f19d3b36f3300774c6eebe2bcdb5f6191763eb4/llvmlite-0.43.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:977525a1e5f4059316b183fb4fd34fa858c9eade31f165427a3977c95e3ee749", size = 43871781 }, + { url = "https://files.pythonhosted.org/packages/20/ab/ed5ed3688c6ba4f0b8d789da19fd8e30a9cf7fc5852effe311bc5aefe73e/llvmlite-0.43.0-cp311-cp311-win_amd64.whl", hash = "sha256:d5bd550001d26450bd90777736c69d68c487d17bf371438f975229b2b8241a91", size = 28107433 }, + { url = "https://files.pythonhosted.org/packages/0b/67/9443509e5d2b6d8587bae3ede5598fa8bd586b1c7701696663ea8af15b5b/llvmlite-0.43.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f99b600aa7f65235a5a05d0b9a9f31150c390f31261f2a0ba678e26823ec38f7", size = 31064409 }, + { url = "https://files.pythonhosted.org/packages/a2/9c/24139d3712d2d352e300c39c0e00d167472c08b3bd350c3c33d72c88ff8d/llvmlite-0.43.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:35d80d61d0cda2d767f72de99450766250560399edc309da16937b93d3b676e7", size = 28793145 }, + { url = "https://files.pythonhosted.org/packages/bf/f1/4c205a48488e574ee9f6505d50e84370a978c90f08dab41a42d8f2c576b6/llvmlite-0.43.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eccce86bba940bae0d8d48ed925f21dbb813519169246e2ab292b5092aba121f", size = 42857276 }, + { url = "https://files.pythonhosted.org/packages/00/5f/323c4d56e8401c50185fd0e875fcf06b71bf825a863699be1eb10aa2a9cb/llvmlite-0.43.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:df6509e1507ca0760787a199d19439cc887bfd82226f5af746d6977bd9f66844", size = 43871781 }, + { url = "https://files.pythonhosted.org/packages/c6/94/dea10e263655ce78d777e78d904903faae39d1fc440762be4a9dc46bed49/llvmlite-0.43.0-cp312-cp312-win_amd64.whl", hash = "sha256:7a2872ee80dcf6b5dbdc838763d26554c2a18aa833d31a2635bff16aafefb9c9", size = 28107442 }, + { url = "https://files.pythonhosted.org/packages/2a/73/12925b1bbb3c2beb6d96f892ef5b4d742c34f00ddb9f4a125e9e87b22f52/llvmlite-0.43.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9cd2a7376f7b3367019b664c21f0c61766219faa3b03731113ead75107f3b66c", size = 31064410 }, + { url = "https://files.pythonhosted.org/packages/cc/61/58c70aa0808a8cba825a7d98cc65bef4801b99328fba80837bfcb5fc767f/llvmlite-0.43.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:18e9953c748b105668487b7c81a3e97b046d8abf95c4ddc0cd3c94f4e4651ae8", size = 28793145 }, + { url = "https://files.pythonhosted.org/packages/c8/c6/9324eb5de2ba9d99cbed853d85ba7a318652a48e077797bec27cf40f911d/llvmlite-0.43.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:74937acd22dc11b33946b67dca7680e6d103d6e90eeaaaf932603bec6fe7b03a", size = 42857276 }, + { url = "https://files.pythonhosted.org/packages/e0/d0/889e9705107db7b1ec0767b03f15d7b95b4c4f9fdf91928ab1c7e9ffacf6/llvmlite-0.43.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc9efc739cc6ed760f795806f67889923f7274276f0eb45092a1473e40d9b867", size = 43871777 }, + { url = "https://files.pythonhosted.org/packages/df/41/73cc26a2634b538cfe813f618c91e7e9960b8c163f8f0c94a2b0f008b9da/llvmlite-0.43.0-cp39-cp39-win_amd64.whl", hash = "sha256:47e147cdda9037f94b399bf03bfd8a6b6b1f2f90be94a454e3386f006455a9b4", size = 28123489 }, +] + +[[package]] +name = "lxml" +version = "5.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/63/f7/ffbb6d2eb67b80a45b8a0834baa5557a14a5ffce0979439e7cd7f0c4055b/lxml-5.2.2.tar.gz", hash = "sha256:bb2dc4898180bea79863d5487e5f9c7c34297414bad54bcd0f0852aee9cfdb87", size = 3678631 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9b/e9/73c7e6f9a933ee82cd68599d6291c875379cbce2c47717b811744cfd2256/lxml-5.2.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:364d03207f3e603922d0d3932ef363d55bbf48e3647395765f9bfcbdf6d23632", size = 8124248 }, + { url = "https://files.pythonhosted.org/packages/f2/1e/364a7e4afe9d27cef4f7a684ace409a379c953fe0881b0f2ff67380ed9ea/lxml-5.2.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:50127c186f191b8917ea2fb8b206fbebe87fd414a6084d15568c27d0a21d60db", size = 4412062 }, + { url = "https://files.pythonhosted.org/packages/06/0f/fd5d42f906eff843c9080fba7fdd005cdf1be697e19517013938c0581eed/lxml-5.2.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:74e4f025ef3db1c6da4460dd27c118d8cd136d0391da4e387a15e48e5c975147", size = 5138539 }, + { url = "https://files.pythonhosted.org/packages/06/53/6994084d29251e9ee0e8486d82416836a9d009208853e8216cbc4c924c8c/lxml-5.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:981a06a3076997adf7c743dcd0d7a0415582661e2517c7d961493572e909aa1d", size = 4839289 }, + { url = "https://files.pythonhosted.org/packages/68/ad/3cbe5b7005722cae504f3cc2879f444f6407fb1a8a1f53050f03ca784c46/lxml-5.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aef5474d913d3b05e613906ba4090433c515e13ea49c837aca18bde190853dff", size = 5420758 }, + { url = "https://files.pythonhosted.org/packages/6b/2d/ea82f53acc12e7245a1927de78093654d140e6ef12bd2fcae41436c936da/lxml-5.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1e275ea572389e41e8b039ac076a46cb87ee6b8542df3fff26f5baab43713bca", size = 4874778 }, + { url = "https://files.pythonhosted.org/packages/98/59/3877fd55ebc6d0f426583137bedeee21c9f6d5d5c829664a14103f5279a7/lxml-5.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5b65529bb2f21ac7861a0e94fdbf5dc0daab41497d18223b46ee8515e5ad297", size = 5013017 }, + { url = "https://files.pythonhosted.org/packages/84/2e/dac726231781599429ea0b3faf018c081334a68c68708e7381077f447033/lxml-5.2.2-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:bcc98f911f10278d1daf14b87d65325851a1d29153caaf146877ec37031d5f36", size = 4816824 }, + { url = "https://files.pythonhosted.org/packages/54/4d/47eb532c0472bb5495efe899740e3d928ddb79599e73d156d4cfa8e126a3/lxml-5.2.2-cp310-cp310-manylinux_2_28_ppc64le.whl", hash = "sha256:b47633251727c8fe279f34025844b3b3a3e40cd1b198356d003aa146258d13a2", size = 5468541 }, + { url = "https://files.pythonhosted.org/packages/78/73/82a00717a29330cf56a4a7f3077aa7ee4d5171e79fcdd7d161d90df53122/lxml-5.2.2-cp310-cp310-manylinux_2_28_s390x.whl", hash = "sha256:fbc9d316552f9ef7bba39f4edfad4a734d3d6f93341232a9dddadec4f15d425f", size = 4977853 }, + { url = "https://files.pythonhosted.org/packages/c6/24/8ddb86ab14428d4d222a383a5260eea93728192359a1fff5de8f7fa13374/lxml-5.2.2-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:13e69be35391ce72712184f69000cda04fc89689429179bc4c0ae5f0b7a8c21b", size = 5030426 }, + { url = "https://files.pythonhosted.org/packages/1f/fb/510777421d0231b3f601d7d6a9a494717bac3a206eca1518b38a869f5289/lxml-5.2.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:3b6a30a9ab040b3f545b697cb3adbf3696c05a3a68aad172e3fd7ca73ab3c835", size = 4865825 }, + { url = "https://files.pythonhosted.org/packages/27/0a/82b3f5b375d3252a76e73efb56857424804f5dabce62712e256f96d0fa69/lxml-5.2.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:a233bb68625a85126ac9f1fc66d24337d6e8a0f9207b688eec2e7c880f012ec0", size = 5417133 }, + { url = "https://files.pythonhosted.org/packages/03/f4/73ea84c176aaff04ca10093fc7ac3912c4aa4793ef1c3f5a963a40db0a6f/lxml-5.2.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:dfa7c241073d8f2b8e8dbc7803c434f57dbb83ae2a3d7892dd068d99e96efe2c", size = 4838827 }, + { url = "https://files.pythonhosted.org/packages/38/bc/e9269ba955b66ef2af8559d405514d8c055b5dfa58cec71f78f0bc4d7493/lxml-5.2.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:1a7aca7964ac4bb07680d5c9d63b9d7028cace3e2d43175cb50bba8c5ad33316", size = 5004832 }, + { url = "https://files.pythonhosted.org/packages/0a/99/a3abdfcde8f2a171a9e5f63b97bf2a6a6612c2356af151fb2bdc949e77ba/lxml-5.2.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ae4073a60ab98529ab8a72ebf429f2a8cc612619a8c04e08bed27450d52103c0", size = 4860569 }, + { url = "https://files.pythonhosted.org/packages/1e/3c/ba4aa85a49a7bb9fef7062cd7f584b3da59d4bba82cef375164b95f60834/lxml-5.2.2-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:ffb2be176fed4457e445fe540617f0252a72a8bc56208fd65a690fdb1f57660b", size = 5506124 }, + { url = "https://files.pythonhosted.org/packages/5c/5d/faebbdaae16a40eb559b3e1bf0548e23ad43716f1c5e781c1d2f9ac900ec/lxml-5.2.2-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:e290d79a4107d7d794634ce3e985b9ae4f920380a813717adf61804904dc4393", size = 4946883 }, + { url = "https://files.pythonhosted.org/packages/31/47/64914d8e752c9dd13b7da69ca7b9f645983412206936058b5261c2c9e093/lxml-5.2.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:96e85aa09274955bb6bd483eaf5b12abadade01010478154b0ec70284c1b1526", size = 5046267 }, + { url = "https://files.pythonhosted.org/packages/54/c2/cc28433f429a6767e0de7b9f908ed0c88dc5c60195330d15686d6ba623a4/lxml-5.2.2-cp310-cp310-win32.whl", hash = "sha256:f956196ef61369f1685d14dad80611488d8dc1ef00be57c0c5a03064005b0f30", size = 3478736 }, + { url = "https://files.pythonhosted.org/packages/5b/bc/51530ee31e3ce25634ed790e38a62ffaea6507befd73b51926e19ce794f9/lxml-5.2.2-cp310-cp310-win_amd64.whl", hash = "sha256:875a3f90d7eb5c5d77e529080d95140eacb3c6d13ad5b616ee8095447b1d22e7", size = 3807856 }, + { url = "https://files.pythonhosted.org/packages/da/6a/24e9f77d17668dd4ac0a6c2a56113fd3e0db07cee51e3a67afcd47c597e5/lxml-5.2.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:45f9494613160d0405682f9eee781c7e6d1bf45f819654eb249f8f46a2c22545", size = 8137962 }, + { url = "https://files.pythonhosted.org/packages/4e/42/3bfe92749715c819763d2205370ecc7f586b44e277f38839e27cce7d6bb8/lxml-5.2.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b0b3f2df149efb242cee2ffdeb6674b7f30d23c9a7af26595099afaf46ef4e88", size = 4424403 }, + { url = "https://files.pythonhosted.org/packages/d5/fd/4899215277e3ef1767019fab178fad8a149081f80cf886a73dc0ba1badae/lxml-5.2.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d28cb356f119a437cc58a13f8135ab8a4c8ece18159eb9194b0d269ec4e28083", size = 5099309 }, + { url = "https://files.pythonhosted.org/packages/15/3d/d84d07fc450af34ce49b88a5aac805b486f38c9f9305fba647a39367c51c/lxml-5.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:657a972f46bbefdbba2d4f14413c0d079f9ae243bd68193cb5061b9732fa54c1", size = 4810147 }, + { url = "https://files.pythonhosted.org/packages/bc/c6/32af0ec3e8323e12212c064f924ddf993017e68d1f50e03da2a3be1289c1/lxml-5.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b74b9ea10063efb77a965a8d5f4182806fbf59ed068b3c3fd6f30d2ac7bee734", size = 5406165 }, + { url = "https://files.pythonhosted.org/packages/67/c7/6060ea3efbd1a60a10963b1b09f493fc8f6f6728310a7a77479a3f9ab20a/lxml-5.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:07542787f86112d46d07d4f3c4e7c760282011b354d012dc4141cc12a68cef5f", size = 4866924 }, + { url = "https://files.pythonhosted.org/packages/8a/f7/f5df71c70c4d14d186dd86fd0e9ebeffdb63b9b86fb19fe9315f9576266b/lxml-5.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:303f540ad2dddd35b92415b74b900c749ec2010e703ab3bfd6660979d01fd4ed", size = 4967116 }, + { url = "https://files.pythonhosted.org/packages/4e/56/c35969591789763657eb16c2fa79c924823b97da5536da8b89e11582da89/lxml-5.2.2-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:2eb2227ce1ff998faf0cd7fe85bbf086aa41dfc5af3b1d80867ecfe75fb68df3", size = 4811365 }, + { url = "https://files.pythonhosted.org/packages/e7/28/1809a5406282c03df561a3c8143c143bd515d5668f1a138f51aec6d2618e/lxml-5.2.2-cp311-cp311-manylinux_2_28_ppc64le.whl", hash = "sha256:1d8a701774dfc42a2f0b8ccdfe7dbc140500d1049e0632a611985d943fcf12df", size = 5452505 }, + { url = "https://files.pythonhosted.org/packages/99/a1/d91217a8d7fef5ac41af87c916d322c273a9b2047c735ea1dafa2ac46d16/lxml-5.2.2-cp311-cp311-manylinux_2_28_s390x.whl", hash = "sha256:56793b7a1a091a7c286b5f4aa1fe4ae5d1446fe742d00cdf2ffb1077865db10d", size = 4973479 }, + { url = "https://files.pythonhosted.org/packages/ad/b7/0dc82afed00c4c189cfd0b83464f9a431c66de8e73d911063956a147276a/lxml-5.2.2-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:eb00b549b13bd6d884c863554566095bf6fa9c3cecb2e7b399c4bc7904cb33b5", size = 5013920 }, + { url = "https://files.pythonhosted.org/packages/5f/e0/4cd021850f2e8ab5ce6ce294556300bd4b5c1eb7def88b5f859449dc883c/lxml-5.2.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:1a2569a1f15ae6c8c64108a2cd2b4a858fc1e13d25846be0666fc144715e32ab", size = 4849156 }, + { url = "https://files.pythonhosted.org/packages/f0/f4/fb01451fda1e121eb8f117a00040454ca05a9c9d82b308272042eebd05f3/lxml-5.2.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:8cf85a6e40ff1f37fe0f25719aadf443686b1ac7652593dc53c7ef9b8492b115", size = 5408551 }, + { url = "https://files.pythonhosted.org/packages/2f/ca/0376418e202e9423d47f86ae09db885fa6e109d0efb602f6468e6d1e8e77/lxml-5.2.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:d237ba6664b8e60fd90b8549a149a74fcc675272e0e95539a00522e4ca688b04", size = 4829966 }, + { url = "https://files.pythonhosted.org/packages/74/c4/4e6f5e2be18f8eb76dff5bff3619c2c654650fee93aea37a92866efe90bc/lxml-5.2.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0b3f5016e00ae7630a4b83d0868fca1e3d494c78a75b1c7252606a3a1c5fc2ad", size = 4976003 }, + { url = "https://files.pythonhosted.org/packages/3b/ca/5d74a0572c911f8dbf12d89abe0fdcbe0409c18978b5694392becd4d56fb/lxml-5.2.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:23441e2b5339bc54dc949e9e675fa35efe858108404ef9aa92f0456929ef6fe8", size = 4852709 }, + { url = "https://files.pythonhosted.org/packages/83/07/d95e9663ad8d875f344930e4fb52a0a6f56225267d3cc6e3e9bfa44ca736/lxml-5.2.2-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:2fb0ba3e8566548d6c8e7dd82a8229ff47bd8fb8c2da237607ac8e5a1b8312e5", size = 5479261 }, + { url = "https://files.pythonhosted.org/packages/df/e1/9ebae8d05492a8e9f632f2add15199e7bca5c1b063444e360a7bde685718/lxml-5.2.2-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:79d1fb9252e7e2cfe4de6e9a6610c7cbb99b9708e2c3e29057f487de5a9eaefa", size = 4944199 }, + { url = "https://files.pythonhosted.org/packages/ec/ab/189f571450e3393d4d442f88683d11b5a47c88e66a4e6b0d467500360483/lxml-5.2.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6dcc3d17eac1df7859ae01202e9bb11ffa8c98949dcbeb1069c8b9a75917e01b", size = 5033723 }, + { url = "https://files.pythonhosted.org/packages/80/d7/f28ccad4f08596592a58ad945c636140268bb4de9dcf4d10c9f72108d8a5/lxml-5.2.2-cp311-cp311-win32.whl", hash = "sha256:4c30a2f83677876465f44c018830f608fa3c6a8a466eb223535035fbc16f3438", size = 3475657 }, + { url = "https://files.pythonhosted.org/packages/04/19/d6aa2d980f220a04c91d4de538d2fea1a65535e7b0a4aec0998ce46e3667/lxml-5.2.2-cp311-cp311-win_amd64.whl", hash = "sha256:49095a38eb333aaf44c06052fd2ec3b8f23e19747ca7ec6f6c954ffea6dbf7be", size = 3816665 }, + { url = "https://files.pythonhosted.org/packages/26/36/6e00905cb4de2d014f4a62df58f0e82d262b5461245d951a6e7442b0222a/lxml-5.2.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:7429e7faa1a60cad26ae4227f4dd0459efde239e494c7312624ce228e04f6391", size = 8171540 }, + { url = "https://files.pythonhosted.org/packages/d6/68/7e9de19d47cd5430414063cd7739e8c8d8386016740c18af5ff13b64ff5c/lxml-5.2.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:50ccb5d355961c0f12f6cf24b7187dbabd5433f29e15147a67995474f27d1776", size = 4441241 }, + { url = "https://files.pythonhosted.org/packages/b4/1f/6a88a8e1b6a9be644c74e5f72cf581cb342a392e020c60a389cd194ebba1/lxml-5.2.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dc911208b18842a3a57266d8e51fc3cfaccee90a5351b92079beed912a7914c2", size = 5052926 }, + { url = "https://files.pythonhosted.org/packages/6b/cc/8e73a63c2aeb205fbed44272fea8c5ded07920233b9956e8e304e2516931/lxml-5.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:33ce9e786753743159799fdf8e92a5da351158c4bfb6f2db0bf31e7892a1feb5", size = 4748543 }, + { url = "https://files.pythonhosted.org/packages/ae/fc/6020fe1468fccb684619df6765a79b67229091631e5f14b97c3efcd75ca7/lxml-5.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec87c44f619380878bd49ca109669c9f221d9ae6883a5bcb3616785fa8f94c97", size = 5320915 }, + { url = "https://files.pythonhosted.org/packages/25/6c/02cecb6a26b0baec373baa3f4fb55343cf0d8710d6a853ff4c4b12a9cf16/lxml-5.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08ea0f606808354eb8f2dfaac095963cb25d9d28e27edcc375d7b30ab01abbf6", size = 4814179 }, + { url = "https://files.pythonhosted.org/packages/de/12/0253de661bb9f8c26b47059be4ed2ec5b9e4411fd2b1d45a2f4b399a7616/lxml-5.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75a9632f1d4f698b2e6e2e1ada40e71f369b15d69baddb8968dcc8e683839b18", size = 4923168 }, + { url = "https://files.pythonhosted.org/packages/cd/e7/63435cfa76534fb33a9656507057b96a25bb850ae932424b9724c9fe379e/lxml-5.2.2-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:74da9f97daec6928567b48c90ea2c82a106b2d500f397eeb8941e47d30b1ca85", size = 4741798 }, + { url = "https://files.pythonhosted.org/packages/27/7f/9e203e850609fa12c8b347fcceaba8655f062bc19ace7a837bb7fcf64b8f/lxml-5.2.2-cp312-cp312-manylinux_2_28_ppc64le.whl", hash = "sha256:0969e92af09c5687d769731e3f39ed62427cc72176cebb54b7a9d52cc4fa3b73", size = 5347143 }, + { url = "https://files.pythonhosted.org/packages/d9/d2/089fcb90e6bdd16639656c2632573508ae02f42a3b034376d3e32efd2ccc/lxml-5.2.2-cp312-cp312-manylinux_2_28_s390x.whl", hash = "sha256:9164361769b6ca7769079f4d426a41df6164879f7f3568be9086e15baca61466", size = 4901745 }, + { url = "https://files.pythonhosted.org/packages/9a/87/cff3c63ebe067ec9a7cc1948c379b8a16e7990c29bd5baf77c0a1dbd03c0/lxml-5.2.2-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:d26a618ae1766279f2660aca0081b2220aca6bd1aa06b2cf73f07383faf48927", size = 4947584 }, + { url = "https://files.pythonhosted.org/packages/73/3f/5a22be26edce482cb5dbdc5cf75544cfd1d3fb1389124d06995395829617/lxml-5.2.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ab67ed772c584b7ef2379797bf14b82df9aa5f7438c5b9a09624dd834c1c1aaf", size = 4790271 }, + { url = "https://files.pythonhosted.org/packages/b5/66/007666e7878ca746e44da3b4c2acf9d5c617dd51e152e89589e7eeb59f87/lxml-5.2.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:3d1e35572a56941b32c239774d7e9ad724074d37f90c7a7d499ab98761bd80cf", size = 5340401 }, + { url = "https://files.pythonhosted.org/packages/9d/3e/b7464d5c06a57cb206fd14a9251bfa75ae03d4f6b1c0c41cf82111bdfa3b/lxml-5.2.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:8268cbcd48c5375f46e000adb1390572c98879eb4f77910c6053d25cc3ac2c67", size = 4784839 }, + { url = "https://files.pythonhosted.org/packages/5b/70/1c45927de1cd7dc47292cfa8a9eb7928b38ce5647d66601bd169b25af4a7/lxml-5.2.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:e282aedd63c639c07c3857097fc0e236f984ceb4089a8b284da1c526491e3f3d", size = 4933979 }, + { url = "https://files.pythonhosted.org/packages/08/e1/51f6ad2bdb5f28fceeb6bd591d4a0ed5de42ffc6741fd88eb2209c6a46f2/lxml-5.2.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6dfdc2bfe69e9adf0df4915949c22a25b39d175d599bf98e7ddf620a13678585", size = 4782412 }, + { url = "https://files.pythonhosted.org/packages/81/13/7df8804d4fb678e0216f6f4532754fd471856b5cb24726dab55a3b65f527/lxml-5.2.2-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:4aefd911793b5d2d7a921233a54c90329bf3d4a6817dc465f12ffdfe4fc7b8fe", size = 5371318 }, + { url = "https://files.pythonhosted.org/packages/d7/7d/c98b7ef3e496a9c371057dc955be1fda04dab4e8af488b01bec254e1b59b/lxml-5.2.2-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:8b8df03a9e995b6211dafa63b32f9d405881518ff1ddd775db4e7b98fb545e1c", size = 4871432 }, + { url = "https://files.pythonhosted.org/packages/3e/fa/b361d670ffa8f477504b7fc0e5734a7878815c7e0b6769f3a5a903a94aee/lxml-5.2.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f11ae142f3a322d44513de1018b50f474f8f736bc3cd91d969f464b5bfef8836", size = 4972719 }, + { url = "https://files.pythonhosted.org/packages/fc/43/70e469a190a8f39ca5829b4ef4f2f7299ce65243abe46ba4a73dc58c1365/lxml-5.2.2-cp312-cp312-win32.whl", hash = "sha256:16a8326e51fcdffc886294c1e70b11ddccec836516a343f9ed0f82aac043c24a", size = 3487299 }, + { url = "https://files.pythonhosted.org/packages/58/16/99b03974974537c8c786fb98183d7c213ceb16e71205174a29ae869ca988/lxml-5.2.2-cp312-cp312-win_amd64.whl", hash = "sha256:bbc4b80af581e18568ff07f6395c02114d05f4865c2812a1f02f2eaecf0bfd48", size = 3817779 }, + { url = "https://files.pythonhosted.org/packages/51/79/9f7d249850c9f8357538055359bffa91cc9f0606fcea72b6881fdea9ee39/lxml-5.2.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:fb91819461b1b56d06fa4bcf86617fac795f6a99d12239fb0c68dbeba41a0a30", size = 8129295 }, + { url = "https://files.pythonhosted.org/packages/40/94/cc5a570ae1dcd337a6b63330d8fd6ff81dc27310574157129faca3ddbfe7/lxml-5.2.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d4ed0c7cbecde7194cd3228c044e86bf73e30a23505af852857c09c24e77ec5d", size = 4415097 }, + { url = "https://files.pythonhosted.org/packages/bc/41/38d7e67e72f87fea0d9f2fd37e394484eb32b102d3a0520611a65e992602/lxml-5.2.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:54401c77a63cc7d6dc4b4e173bb484f28a5607f3df71484709fe037c92d4f0ed", size = 5139658 }, + { url = "https://files.pythonhosted.org/packages/6f/3f/66f7869f12bf6f21af6b24b0b29e4bccc162efa276ee46a58e6993b63f5a/lxml-5.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:625e3ef310e7fa3a761d48ca7ea1f9d8718a32b1542e727d584d82f4453d5eeb", size = 4839453 }, + { url = "https://files.pythonhosted.org/packages/f5/67/5dd78932c10e49f5fd3d0cd63d27bcaa801fae8f64c643a931e0391c56e2/lxml-5.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:519895c99c815a1a24a926d5b60627ce5ea48e9f639a5cd328bda0515ea0f10c", size = 5422704 }, + { url = "https://files.pythonhosted.org/packages/0f/e8/c0dd37abb15dd982e348c666ae02a7767d7a70acf143d5e24a906de2b29f/lxml-5.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c7079d5eb1c1315a858bbf180000757db8ad904a89476653232db835c3114001", size = 4875536 }, + { url = "https://files.pythonhosted.org/packages/e5/43/d60da0fe90a9a48198a23268dd2dafeac46f880adda6739b4cbbcec65a02/lxml-5.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:343ab62e9ca78094f2306aefed67dcfad61c4683f87eee48ff2fd74902447726", size = 5013656 }, + { url = "https://files.pythonhosted.org/packages/f6/59/74549a8c486d60c24c8cae942325e60916fb2699b1cbec89025ceeb49e51/lxml-5.2.2-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:cd9e78285da6c9ba2d5c769628f43ef66d96ac3085e59b10ad4f3707980710d3", size = 4818873 }, + { url = "https://files.pythonhosted.org/packages/9b/d5/469cc5b87f704d951d558ab8dcf4a6a1e339dbfd4cf82788d6c5f76daa55/lxml-5.2.2-cp39-cp39-manylinux_2_28_ppc64le.whl", hash = "sha256:546cf886f6242dff9ec206331209db9c8e1643ae642dea5fdbecae2453cb50fd", size = 5470990 }, + { url = "https://files.pythonhosted.org/packages/0d/89/d2f6f90e30cf7eb4477554a13f8a7b8aadaf762d595c76a434eb26d0947c/lxml-5.2.2-cp39-cp39-manylinux_2_28_s390x.whl", hash = "sha256:02f6a8eb6512fdc2fd4ca10a49c341c4e109aa6e9448cc4859af5b949622715a", size = 4979955 }, + { url = "https://files.pythonhosted.org/packages/c4/34/11d8b7bacec6b9af6305a266cc5a2695f81427dba9a4c2d59791b5b156e5/lxml-5.2.2-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:339ee4a4704bc724757cd5dd9dc8cf4d00980f5d3e6e06d5847c1b594ace68ab", size = 5028329 }, + { url = "https://files.pythonhosted.org/packages/2b/40/9a1782445756e1c3b028a26d8ce1864042d13ba8c7e5aa1eeb12a6b3b410/lxml-5.2.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0a028b61a2e357ace98b1615fc03f76eb517cc028993964fe08ad514b1e8892d", size = 4866331 }, + { url = "https://files.pythonhosted.org/packages/b4/10/741b8edfacede7a3bcec3f0f781fcc9270efe276b0fe73aa0330217c41fa/lxml-5.2.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:f90e552ecbad426eab352e7b2933091f2be77115bb16f09f78404861c8322981", size = 5420205 }, + { url = "https://files.pythonhosted.org/packages/88/8f/320abad6e805b6bff2920ce99fea4e818598bee771e10744a2a173402a4d/lxml-5.2.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:d83e2d94b69bf31ead2fa45f0acdef0757fa0458a129734f59f67f3d2eb7ef32", size = 4841182 }, + { url = "https://files.pythonhosted.org/packages/2b/94/fc50d1b8b8dcd75e3020b420339d650657fc2f6fcdeadbfcd39f63ee4292/lxml-5.2.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a02d3c48f9bb1e10c7788d92c0c7db6f2002d024ab6e74d6f45ae33e3d0288a3", size = 5006820 }, + { url = "https://files.pythonhosted.org/packages/21/83/46e40a901e00105a3520d57d6726ac1e5c8a9276f5972ef26b4be54789f1/lxml-5.2.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:6d68ce8e7b2075390e8ac1e1d3a99e8b6372c694bbe612632606d1d546794207", size = 4861349 }, + { url = "https://files.pythonhosted.org/packages/ee/92/a5a02b2b556b8736061532588a07dafdd0fa3bd34c515d600790ff931a5b/lxml-5.2.2-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:453d037e09a5176d92ec0fd282e934ed26d806331a8b70ab431a81e2fbabf56d", size = 5507842 }, + { url = "https://files.pythonhosted.org/packages/ab/a1/4c25151d56943c76937a976d5f5cc5047e4e60322e3af189d76d1a09e021/lxml-5.2.2-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:3b019d4ee84b683342af793b56bb35034bd749e4cbdd3d33f7d1107790f8c472", size = 4949210 }, + { url = "https://files.pythonhosted.org/packages/bc/7a/6b40c5bca97a9b685d1db5217cd51f829c5ed16fe797b0c40eb6e33f7cb5/lxml-5.2.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:cb3942960f0beb9f46e2a71a3aca220d1ca32feb5a398656be934320804c0df9", size = 5047392 }, + { url = "https://files.pythonhosted.org/packages/fb/53/7b3959a5d41c696db8cf7e4481bf1ac630f7a882215b332e795107d10d19/lxml-5.2.2-cp39-cp39-win32.whl", hash = "sha256:ac6540c9fff6e3813d29d0403ee7a81897f1d8ecc09a8ff84d2eea70ede1cdbf", size = 3479661 }, + { url = "https://files.pythonhosted.org/packages/78/c7/0479936ae05ec99a855cea94fcedfa6b3b2d642689e52122722811f54afe/lxml-5.2.2-cp39-cp39-win_amd64.whl", hash = "sha256:610b5c77428a50269f38a534057444c249976433f40f53e3b47e68349cca1425", size = 3809160 }, + { url = "https://files.pythonhosted.org/packages/00/68/cd5637510441ab4556f087b342000e4ae2d0cf3bea67b073a4327f31020c/lxml-5.2.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:b537bd04d7ccd7c6350cdaaaad911f6312cbd61e6e6045542f781c7f8b2e99d2", size = 3927145 }, + { url = "https://files.pythonhosted.org/packages/f6/e0/1122d5b6a10eb71fac4276a0d3b1f5cf1ef0a29f774601d4740e80a70e1a/lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4820c02195d6dfb7b8508ff276752f6b2ff8b64ae5d13ebe02e7667e035000b9", size = 4215917 }, + { url = "https://files.pythonhosted.org/packages/95/d1/ff0c68a61a385f6dffd4c099bc9720cb127bb94f0df8e71f52fe539f85b7/lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2a09f6184f17a80897172863a655467da2b11151ec98ba8d7af89f17bf63dae", size = 4326313 }, + { url = "https://files.pythonhosted.org/packages/a8/3c/c9ce5ba91764aaea8944b8e90543ba2e8fc2610d4c5c052160e83ac100b6/lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:76acba4c66c47d27c8365e7c10b3d8016a7da83d3191d053a58382311a8bf4e1", size = 4218518 }, + { url = "https://files.pythonhosted.org/packages/59/03/df1fc5b9f1db8502863ebef8f6a6f37131d7e7c432e997724689221052d9/lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b128092c927eaf485928cec0c28f6b8bead277e28acf56800e972aa2c2abd7a2", size = 4351481 }, + { url = "https://files.pythonhosted.org/packages/f0/ca/8f3b5500119f2651e45d261506e2246b960691239aa499411b763aa79a61/lxml-5.2.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:ae791f6bd43305aade8c0e22f816b34f3b72b6c820477aab4d18473a37e8090b", size = 3488498 }, + { url = "https://files.pythonhosted.org/packages/37/ee/4e2c2d6b86c448a39f4d8bfdce5fa65a116c716dc6bfb257f404ebf5f222/lxml-5.2.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:34e17913c431f5ae01d8658dbf792fdc457073dcdfbb31dc0cc6ab256e664a8d", size = 3924281 }, + { url = "https://files.pythonhosted.org/packages/76/51/0e53d8b7dfce944b6f9136ec4346f910c507ced0b16b520b61f2e98cbc55/lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:05f8757b03208c3f50097761be2dea0aba02e94f0dc7023ed73a7bb14ff11eb0", size = 4214485 }, + { url = "https://files.pythonhosted.org/packages/b1/d9/7a3aebdf5eb50b8a1e3b70c8b693fdc314b5e41b289d31c9c6d383b1aa44/lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6a520b4f9974b0a0a6ed73c2154de57cdfd0c8800f4f15ab2b73238ffed0b36e", size = 4324516 }, + { url = "https://files.pythonhosted.org/packages/a0/f9/c079a1690bfab601122e9355f34a71c17e2d7c74b0ea460c42288b68f96c/lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:5e097646944b66207023bc3c634827de858aebc226d5d4d6d16f0b77566ea182", size = 4215143 }, + { url = "https://files.pythonhosted.org/packages/c6/63/27d3d039276e87ac956cb1c3ddc3a2f949512630de6ecf202a9780588927/lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b5e4ef22ff25bfd4ede5f8fb30f7b24446345f3e79d9b7455aef2836437bc38a", size = 4347095 }, + { url = "https://files.pythonhosted.org/packages/2a/a6/86ef80e010cb757107ff079990b0e07d41b0b60c9eae20423be809877355/lxml-5.2.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:ff69a9a0b4b17d78170c73abe2ab12084bdf1691550c5629ad1fe7849433f324", size = 3487478 }, +] + +[[package]] +name = "mako" +version = "1.3.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/67/03/fb5ba97ff65ce64f6d35b582aacffc26b693a98053fa831ab43a437cbddb/Mako-1.3.5.tar.gz", hash = "sha256:48dbc20568c1d276a2698b36d968fa76161bf127194907ea6fc594fa81f943bc", size = 392738 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/03/62/70f5a0c2dd208f9f3f2f9afd103aec42ee4d9ad2401d78342f75e9b8da36/Mako-1.3.5-py3-none-any.whl", hash = "sha256:260f1dbc3a519453a9c856dedfe4beb4e50bd5a26d96386cb6c80856556bb91a", size = 78565 }, +] + +[[package]] +name = "markdown" +version = "3.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "importlib-metadata", marker = "python_version < '3.10'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/22/02/4785861427848cc11e452cc62bb541006a1087cf04a1de83aedd5530b948/Markdown-3.6.tar.gz", hash = "sha256:ed4f41f6daecbeeb96e576ce414c41d2d876daa9a16cb35fa8ed8c2ddfad0224", size = 354715 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fc/b3/0c0c994fe49cd661084f8d5dc06562af53818cc0abefaca35bdc894577c3/Markdown-3.6-py3-none-any.whl", hash = "sha256:48f276f4d8cfb8ce6527c8f79e2ee29708508bf4d40aa410fbc3b4ee832c850f", size = 105381 }, +] + +[[package]] +name = "markdown-it-py" +version = "3.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mdurl", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/38/71/3b932df36c1a044d397a1f92d1cf91ee0a503d91e470cbd670aa66b07ed0/markdown-it-py-3.0.0.tar.gz", hash = "sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb", size = 74596 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl", hash = "sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1", size = 87528 }, +] + +[[package]] +name = "markupsafe" +version = "2.1.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/87/5b/aae44c6655f3801e81aa3eef09dbbf012431987ba564d7231722f68df02d/MarkupSafe-2.1.5.tar.gz", hash = "sha256:d283d37a890ba4c1ae73ffadf8046435c76e7bc2247bbb63c00bd1a709c6544b", size = 19384 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e4/54/ad5eb37bf9d51800010a74e4665425831a9db4e7c4e0fde4352e391e808e/MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a17a92de5231666cfbe003f0e4b9b3a7ae3afb1ec2845aadc2bacc93ff85febc", size = 18206 }, + { url = "https://files.pythonhosted.org/packages/6a/4a/a4d49415e600bacae038c67f9fecc1d5433b9d3c71a4de6f33537b89654c/MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:72b6be590cc35924b02c78ef34b467da4ba07e4e0f0454a2c5907f473fc50ce5", size = 14079 }, + { url = "https://files.pythonhosted.org/packages/0a/7b/85681ae3c33c385b10ac0f8dd025c30af83c78cec1c37a6aa3b55e67f5ec/MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e61659ba32cf2cf1481e575d0462554625196a1f2fc06a1c777d3f48e8865d46", size = 26620 }, + { url = "https://files.pythonhosted.org/packages/7c/52/2b1b570f6b8b803cef5ac28fdf78c0da318916c7d2fe9402a84d591b394c/MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2174c595a0d73a3080ca3257b40096db99799265e1c27cc5a610743acd86d62f", size = 25818 }, + { url = "https://files.pythonhosted.org/packages/29/fe/a36ba8c7ca55621620b2d7c585313efd10729e63ef81e4e61f52330da781/MarkupSafe-2.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae2ad8ae6ebee9d2d94b17fb62763125f3f374c25618198f40cbb8b525411900", size = 25493 }, + { url = "https://files.pythonhosted.org/packages/60/ae/9c60231cdfda003434e8bd27282b1f4e197ad5a710c14bee8bea8a9ca4f0/MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:075202fa5b72c86ad32dc7d0b56024ebdbcf2048c0ba09f1cde31bfdd57bcfff", size = 30630 }, + { url = "https://files.pythonhosted.org/packages/65/dc/1510be4d179869f5dafe071aecb3f1f41b45d37c02329dfba01ff59e5ac5/MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:598e3276b64aff0e7b3451b72e94fa3c238d452e7ddcd893c3ab324717456bad", size = 29745 }, + { url = "https://files.pythonhosted.org/packages/30/39/8d845dd7d0b0613d86e0ef89549bfb5f61ed781f59af45fc96496e897f3a/MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fce659a462a1be54d2ffcacea5e3ba2d74daa74f30f5f143fe0c58636e355fdd", size = 30021 }, + { url = "https://files.pythonhosted.org/packages/c7/5c/356a6f62e4f3c5fbf2602b4771376af22a3b16efa74eb8716fb4e328e01e/MarkupSafe-2.1.5-cp310-cp310-win32.whl", hash = "sha256:d9fad5155d72433c921b782e58892377c44bd6252b5af2f67f16b194987338a4", size = 16659 }, + { url = "https://files.pythonhosted.org/packages/69/48/acbf292615c65f0604a0c6fc402ce6d8c991276e16c80c46a8f758fbd30c/MarkupSafe-2.1.5-cp310-cp310-win_amd64.whl", hash = "sha256:bf50cd79a75d181c9181df03572cdce0fbb75cc353bc350712073108cba98de5", size = 17213 }, + { url = "https://files.pythonhosted.org/packages/11/e7/291e55127bb2ae67c64d66cef01432b5933859dfb7d6949daa721b89d0b3/MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:629ddd2ca402ae6dbedfceeba9c46d5f7b2a61d9749597d4307f943ef198fc1f", size = 18219 }, + { url = "https://files.pythonhosted.org/packages/6b/cb/aed7a284c00dfa7c0682d14df85ad4955a350a21d2e3b06d8240497359bf/MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b7b716f97b52c5a14bffdf688f971b2d5ef4029127f1ad7a513973cfd818df2", size = 14098 }, + { url = "https://files.pythonhosted.org/packages/1c/cf/35fe557e53709e93feb65575c93927942087e9b97213eabc3fe9d5b25a55/MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ec585f69cec0aa07d945b20805be741395e28ac1627333b1c5b0105962ffced", size = 29014 }, + { url = "https://files.pythonhosted.org/packages/97/18/c30da5e7a0e7f4603abfc6780574131221d9148f323752c2755d48abad30/MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b91c037585eba9095565a3556f611e3cbfaa42ca1e865f7b8015fe5c7336d5a5", size = 28220 }, + { url = "https://files.pythonhosted.org/packages/0c/40/2e73e7d532d030b1e41180807a80d564eda53babaf04d65e15c1cf897e40/MarkupSafe-2.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7502934a33b54030eaf1194c21c692a534196063db72176b0c4028e140f8f32c", size = 27756 }, + { url = "https://files.pythonhosted.org/packages/18/46/5dca760547e8c59c5311b332f70605d24c99d1303dd9a6e1fc3ed0d73561/MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0e397ac966fdf721b2c528cf028494e86172b4feba51d65f81ffd65c63798f3f", size = 33988 }, + { url = "https://files.pythonhosted.org/packages/6d/c5/27febe918ac36397919cd4a67d5579cbbfa8da027fa1238af6285bb368ea/MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c061bb86a71b42465156a3ee7bd58c8c2ceacdbeb95d05a99893e08b8467359a", size = 32718 }, + { url = "https://files.pythonhosted.org/packages/f8/81/56e567126a2c2bc2684d6391332e357589a96a76cb9f8e5052d85cb0ead8/MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3a57fdd7ce31c7ff06cdfbf31dafa96cc533c21e443d57f5b1ecc6cdc668ec7f", size = 33317 }, + { url = "https://files.pythonhosted.org/packages/00/0b/23f4b2470accb53285c613a3ab9ec19dc944eaf53592cb6d9e2af8aa24cc/MarkupSafe-2.1.5-cp311-cp311-win32.whl", hash = "sha256:397081c1a0bfb5124355710fe79478cdbeb39626492b15d399526ae53422b906", size = 16670 }, + { url = "https://files.pythonhosted.org/packages/b7/a2/c78a06a9ec6d04b3445a949615c4c7ed86a0b2eb68e44e7541b9d57067cc/MarkupSafe-2.1.5-cp311-cp311-win_amd64.whl", hash = "sha256:2b7c57a4dfc4f16f7142221afe5ba4e093e09e728ca65c51f5620c9aaeb9a617", size = 17224 }, + { url = "https://files.pythonhosted.org/packages/53/bd/583bf3e4c8d6a321938c13f49d44024dbe5ed63e0a7ba127e454a66da974/MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:8dec4936e9c3100156f8a2dc89c4b88d5c435175ff03413b443469c7c8c5f4d1", size = 18215 }, + { url = "https://files.pythonhosted.org/packages/48/d6/e7cd795fc710292c3af3a06d80868ce4b02bfbbf370b7cee11d282815a2a/MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:3c6b973f22eb18a789b1460b4b91bf04ae3f0c4234a0a6aa6b0a92f6f7b951d4", size = 14069 }, + { url = "https://files.pythonhosted.org/packages/51/b5/5d8ec796e2a08fc814a2c7d2584b55f889a55cf17dd1a90f2beb70744e5c/MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac07bad82163452a6884fe8fa0963fb98c2346ba78d779ec06bd7a6262132aee", size = 29452 }, + { url = "https://files.pythonhosted.org/packages/0a/0d/2454f072fae3b5a137c119abf15465d1771319dfe9e4acbb31722a0fff91/MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5dfb42c4604dddc8e4305050aa6deb084540643ed5804d7455b5df8fe16f5e5", size = 28462 }, + { url = "https://files.pythonhosted.org/packages/2d/75/fd6cb2e68780f72d47e6671840ca517bda5ef663d30ada7616b0462ad1e3/MarkupSafe-2.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ea3d8a3d18833cf4304cd2fc9cbb1efe188ca9b5efef2bdac7adc20594a0e46b", size = 27869 }, + { url = "https://files.pythonhosted.org/packages/b0/81/147c477391c2750e8fc7705829f7351cf1cd3be64406edcf900dc633feb2/MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d050b3361367a06d752db6ead6e7edeb0009be66bc3bae0ee9d97fb326badc2a", size = 33906 }, + { url = "https://files.pythonhosted.org/packages/8b/ff/9a52b71839d7a256b563e85d11050e307121000dcebc97df120176b3ad93/MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:bec0a414d016ac1a18862a519e54b2fd0fc8bbfd6890376898a6c0891dd82e9f", size = 32296 }, + { url = "https://files.pythonhosted.org/packages/88/07/2dc76aa51b481eb96a4c3198894f38b480490e834479611a4053fbf08623/MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:58c98fee265677f63a4385256a6d7683ab1832f3ddd1e66fe948d5880c21a169", size = 33038 }, + { url = "https://files.pythonhosted.org/packages/96/0c/620c1fb3661858c0e37eb3cbffd8c6f732a67cd97296f725789679801b31/MarkupSafe-2.1.5-cp312-cp312-win32.whl", hash = "sha256:8590b4ae07a35970728874632fed7bd57b26b0102df2d2b233b6d9d82f6c62ad", size = 16572 }, + { url = "https://files.pythonhosted.org/packages/3f/14/c3554d512d5f9100a95e737502f4a2323a1959f6d0d01e0d0997b35f7b10/MarkupSafe-2.1.5-cp312-cp312-win_amd64.whl", hash = "sha256:823b65d8706e32ad2df51ed89496147a42a2a6e01c13cfb6ffb8b1e92bc910bb", size = 17127 }, + { url = "https://files.pythonhosted.org/packages/0f/31/780bb297db036ba7b7bbede5e1d7f1e14d704ad4beb3ce53fb495d22bc62/MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7a68b554d356a91cce1236aa7682dc01df0edba8d043fd1ce607c49dd3c1edcf", size = 18193 }, + { url = "https://files.pythonhosted.org/packages/6c/77/d77701bbef72892affe060cdacb7a2ed7fd68dae3b477a8642f15ad3b132/MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:db0b55e0f3cc0be60c1f19efdde9a637c32740486004f20d1cff53c3c0ece4d2", size = 14073 }, + { url = "https://files.pythonhosted.org/packages/d9/a7/1e558b4f78454c8a3a0199292d96159eb4d091f983bc35ef258314fe7269/MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e53af139f8579a6d5f7b76549125f0d94d7e630761a2111bc431fd820e163b8", size = 26486 }, + { url = "https://files.pythonhosted.org/packages/5f/5a/360da85076688755ea0cceb92472923086993e86b5613bbae9fbc14136b0/MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17b950fccb810b3293638215058e432159d2b71005c74371d784862b7e4683f3", size = 25685 }, + { url = "https://files.pythonhosted.org/packages/6a/18/ae5a258e3401f9b8312f92b028c54d7026a97ec3ab20bfaddbdfa7d8cce8/MarkupSafe-2.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4c31f53cdae6ecfa91a77820e8b151dba54ab528ba65dfd235c80b086d68a465", size = 25338 }, + { url = "https://files.pythonhosted.org/packages/0b/cc/48206bd61c5b9d0129f4d75243b156929b04c94c09041321456fd06a876d/MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bff1b4290a66b490a2f4719358c0cdcd9bafb6b8f061e45c7a2460866bf50c2e", size = 30439 }, + { url = "https://files.pythonhosted.org/packages/d1/06/a41c112ab9ffdeeb5f77bc3e331fdadf97fa65e52e44ba31880f4e7f983c/MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bc1667f8b83f48511b94671e0e441401371dfd0f0a795c7daa4a3cd1dde55bea", size = 29531 }, + { url = "https://files.pythonhosted.org/packages/02/8c/ab9a463301a50dab04d5472e998acbd4080597abc048166ded5c7aa768c8/MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5049256f536511ee3f7e1b3f87d1d1209d327e818e6ae1365e8653d7e3abb6a6", size = 29823 }, + { url = "https://files.pythonhosted.org/packages/bc/29/9bc18da763496b055d8e98ce476c8e718dcfd78157e17f555ce6dd7d0895/MarkupSafe-2.1.5-cp39-cp39-win32.whl", hash = "sha256:00e046b6dd71aa03a41079792f8473dc494d564611a8f89bbbd7cb93295ebdcf", size = 16658 }, + { url = "https://files.pythonhosted.org/packages/f6/f8/4da07de16f10551ca1f640c92b5f316f9394088b183c6a57183df6de5ae4/MarkupSafe-2.1.5-cp39-cp39-win_amd64.whl", hash = "sha256:fa173ec60341d6bb97a89f5ea19c85c5643c1e7dedebc22f5181eb73573142c5", size = 17211 }, +] + +[[package]] +name = "mdurl" +version = "0.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba", size = 8729 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979 }, +] + +[[package]] +name = "ml-dtypes" +version = "0.3.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "(python_version == '3.11' and platform_machine == 'aarch64' and platform_system == 'Linux') or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and platform_machine == 'aarch64' and platform_system == 'Linux')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/39/7d/8d85fcba868758b3a546e6914e727abd8f29ea6918079f816975c9eecd63/ml_dtypes-0.3.2.tar.gz", hash = "sha256:533059bc5f1764fac071ef54598db358c167c51a718f68f5bb55e3dee79d2967", size = 692014 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/62/0a/2b586fd10be7b8311068f4078623a73376fc49c8b3768be9965034062982/ml_dtypes-0.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7afde548890a92b41c0fed3a6c525f1200a5727205f73dc21181a2726571bb53", size = 389797 }, + { url = "https://files.pythonhosted.org/packages/bc/6d/de99642d98feb7e83ccfbc5eb2b5970ff19ec6834094b690205bebe1c22d/ml_dtypes-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d1a746fe5fb9cd974a91070174258f0be129c592b93f9ce7df6cc336416c3fbd", size = 2182877 }, + { url = "https://files.pythonhosted.org/packages/71/01/7dc0e2cdead686a758810d08fd4111602088fe3f0d88064a83cbfb635593/ml_dtypes-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:961134ea44c7b8ca63eda902a44b58cd8bd670e21d62e255c81fba0a8e70d9b7", size = 2160459 }, + { url = "https://files.pythonhosted.org/packages/30/a5/0480b23b2213c746cd874894bc485eb49310d7045159a36c7c03cab729ce/ml_dtypes-0.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:6b35c4e8ca957c877ac35c79ffa77724ecc3702a1e4b18b08306c03feae597bb", size = 127768 }, + { url = "https://files.pythonhosted.org/packages/6e/a4/6aabb78f1569550fd77c74d2c1d008b502c8ce72776bd88b14ea6c182c9e/ml_dtypes-0.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:763697ab8a88d47443997a7cdf3aac7340049aed45f7521f6b0ec8a0594821fe", size = 389791 }, + { url = "https://files.pythonhosted.org/packages/d1/ed/211bf2e1c66e4ec9b712c3be848a876185c7f0d5e94bf647b60e64ef32eb/ml_dtypes-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b89b194e9501a92d289c1ffd411380baf5daafb9818109a4f49b0a1b6dce4462", size = 2185796 }, + { url = "https://files.pythonhosted.org/packages/77/a0/d4ee9e3aca5b9101c590b58555820618e8201c2ccb7004eabb417ec046ac/ml_dtypes-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2c34f2ba9660b21fe1034b608308a01be82bbef2a92fb8199f24dc6bad0d5226", size = 2164071 }, + { url = "https://files.pythonhosted.org/packages/a4/db/1784b87285588788170f87e987bfb4bda218d62a70a81ebb66c94e7f9b95/ml_dtypes-0.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:6604877d567a29bfe7cc02969ae0f2425260e5335505cf5e7fefc3e5465f5655", size = 127681 }, + { url = "https://files.pythonhosted.org/packages/ad/2d/57a8aa1ba7472a93a675bfba3f0c90d9396d01d040617a5345ce87884330/ml_dtypes-0.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:93b78f53431c93953f7850bb1b925a17f0ab5d97527e38a7e865b5b4bc5cfc18", size = 393571 }, + { url = "https://files.pythonhosted.org/packages/6a/05/ec30199c791cf0d788a26f56d8efb8ee4133ede79a9680fd8cc05e706404/ml_dtypes-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3a17ef2322e60858d93584e9c52a5be7dd6236b056b7fa1ec57f1bb6ba043e33", size = 2180925 }, + { url = "https://files.pythonhosted.org/packages/e5/f1/93219c44bae4017e6e43391fa4433592de08e05def9d885227d3596f21a5/ml_dtypes-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e8505946df1665db01332d885c2020b4cb9e84a8b1241eb4ba69d59591f65855", size = 2160573 }, + { url = "https://files.pythonhosted.org/packages/47/f3/847da54c3d243ff2aa778078ecf09da199194d282744718ef325dd8afd41/ml_dtypes-0.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:f47619d978ab1ae7dfdc4052ea97c636c6263e1f19bd1be0e42c346b98d15ff4", size = 128649 }, + { url = "https://files.pythonhosted.org/packages/7b/bb/4513133bccda7e66eb56ee38f68d1a8bbc81f072d00a40ee369c43f25ba9/ml_dtypes-0.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c7b3fb3d4f6b39bcd4f6c4b98f406291f0d681a895490ee29a0f95bab850d53c", size = 389810 }, + { url = "https://files.pythonhosted.org/packages/ea/58/c56da71b1d9f9c6c1e61f63d27f901c3526e13da0589ec2ff993e9a72c04/ml_dtypes-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7a4c3fcbf86fa52d0204f07cfd23947ef05b4ad743a1a988e163caa34a201e5e", size = 2180720 }, + { url = "https://files.pythonhosted.org/packages/86/29/b389f235add26220bc7b7f100362f4e3a84e14f7c837abd34a11347df1b0/ml_dtypes-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:91f8783fd1f2c23fd3b9ee5ad66b785dafa58ba3cdb050c4458021fa4d1eb226", size = 2158181 }, + { url = "https://files.pythonhosted.org/packages/38/3c/5d058a50340759423b25cb99f930cb3691fc30ebe86d53fdf1bff55c2d71/ml_dtypes-0.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:7ba8e1fafc7fff3e643f453bffa7d082df1678a73286ce8187d3e825e776eb94", size = 127704 }, +] + +[[package]] +name = "mpmath" +version = "1.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e0/47/dd32fa426cc72114383ac549964eecb20ecfd886d1e5ccf5340b55b02f57/mpmath-1.3.0.tar.gz", hash = "sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f", size = 508106 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/43/e3/7d92a15f894aa0c9c4b49b8ee9ac9850d6e63b03c9c32c0367a13ae62209/mpmath-1.3.0-py3-none-any.whl", hash = "sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c", size = 536198 }, +] + +[[package]] +name = "msgpack" +version = "1.0.8" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/08/4c/17adf86a8fbb02c144c7569dc4919483c01a2ac270307e2d59e1ce394087/msgpack-1.0.8.tar.gz", hash = "sha256:95c02b0e27e706e48d0e5426d1710ca78e0f0628d6e89d5b5a5b91a5f12274f3", size = 167014 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/c2/8ecbafd6d3178ad408989c82d6d518fec76e053bae20c0fd9f47bffe7dda/msgpack-1.0.8-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:505fe3d03856ac7d215dbe005414bc28505d26f0c128906037e66d98c4e95868", size = 157691 }, + { url = "https://files.pythonhosted.org/packages/0d/7e/93373ffbe6561e719996a90b6d112604f52da3ab46e7c395db7607458553/msgpack-1.0.8-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e6b7842518a63a9f17107eb176320960ec095a8ee3b4420b5f688e24bf50c53c", size = 87954 }, + { url = "https://files.pythonhosted.org/packages/ba/13/d000e53b067aee19d57a4f26d5bffed7890e6896538ac5f97605b0f64985/msgpack-1.0.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:376081f471a2ef24828b83a641a02c575d6103a3ad7fd7dade5486cad10ea659", size = 84945 }, + { url = "https://files.pythonhosted.org/packages/2b/6e/3dcd4f7d8b978277393fd5b7c0abd9d2b6ef7ba8eb12834bed59158ecf5f/msgpack-1.0.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e390971d082dba073c05dbd56322427d3280b7cc8b53484c9377adfbae67dc2", size = 376004 }, + { url = "https://files.pythonhosted.org/packages/d9/96/a1868dd8997d65732476dfc70fef44d046c1b4dbe36ec1481ab744d87775/msgpack-1.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:00e073efcba9ea99db5acef3959efa45b52bc67b61b00823d2a1a6944bf45982", size = 385107 }, + { url = "https://files.pythonhosted.org/packages/9b/db/8d629233bba3cbe6d7a6e0fd018ed684c5f0befea4428d4217ce066d2f20/msgpack-1.0.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82d92c773fbc6942a7a8b520d22c11cfc8fd83bba86116bfcf962c2f5c2ecdaa", size = 374290 }, + { url = "https://files.pythonhosted.org/packages/f0/75/553cc9ddfe59c62654dd398c16cd8ab1b3eeb145e56805f52115cbe9f5a0/msgpack-1.0.8-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:9ee32dcb8e531adae1f1ca568822e9b3a738369b3b686d1477cbc643c4a9c128", size = 380759 }, + { url = "https://files.pythonhosted.org/packages/7c/40/c6f31cef899b54e3f6a759204d0b152c9205aef7219c9d2279f608c421eb/msgpack-1.0.8-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e3aa7e51d738e0ec0afbed661261513b38b3014754c9459508399baf14ae0c9d", size = 413943 }, + { url = "https://files.pythonhosted.org/packages/b0/a8/29426f7af85406116e1cdbd21d8f02e30ef8f4afe3cfcbb43c498cbadadf/msgpack-1.0.8-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:69284049d07fce531c17404fcba2bb1df472bc2dcdac642ae71a2d079d950653", size = 385405 }, + { url = "https://files.pythonhosted.org/packages/98/b4/a32559cd8604402f55560ab7e5ebf20a92b533f376d693bb67a9c0aff41e/msgpack-1.0.8-cp310-cp310-win32.whl", hash = "sha256:13577ec9e247f8741c84d06b9ece5f654920d8365a4b636ce0e44f15e07ec693", size = 69043 }, + { url = "https://files.pythonhosted.org/packages/21/47/b7217d54e15dbae5492b845364427fa3cb1b0ccb58160b04ba47b551d7d9/msgpack-1.0.8-cp310-cp310-win_amd64.whl", hash = "sha256:e532dbd6ddfe13946de050d7474e3f5fb6ec774fbb1a188aaf469b08cf04189a", size = 75106 }, + { url = "https://files.pythonhosted.org/packages/3e/0e/96477b0448c593cc5c679e855c7bb58bb6543a065760e67cad0c3f90deb1/msgpack-1.0.8-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9517004e21664f2b5a5fd6333b0731b9cf0817403a941b393d89a2f1dc2bd836", size = 157669 }, + { url = "https://files.pythonhosted.org/packages/46/ca/96051d40050cd17bf054996662dbf8900da9995fa0a3308f2597a47bedad/msgpack-1.0.8-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d16a786905034e7e34098634b184a7d81f91d4c3d246edc6bd7aefb2fd8ea6ad", size = 87994 }, + { url = "https://files.pythonhosted.org/packages/17/29/7f3f30dd40bf1c2599350099645d3664b3aadb803583cbfce57a28047c4d/msgpack-1.0.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e2872993e209f7ed04d963e4b4fbae72d034844ec66bc4ca403329db2074377b", size = 84887 }, + { url = "https://files.pythonhosted.org/packages/1a/01/01a88f7971c68037dab4be2737b50e00557bbdaf179ab988803c736043ed/msgpack-1.0.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c330eace3dd100bdb54b5653b966de7f51c26ec4a7d4e87132d9b4f738220ba", size = 400836 }, + { url = "https://files.pythonhosted.org/packages/f6/f0/a7bdb48223cd21b9abed814b08fca8fe6a40931e70ec97c24d2f15d68ef3/msgpack-1.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:83b5c044f3eff2a6534768ccfd50425939e7a8b5cf9a7261c385de1e20dcfc85", size = 409267 }, + { url = "https://files.pythonhosted.org/packages/f5/9a/88388f7960930a7dc0bbcde3d1db1bd543c9645483f3172c64853f4cab67/msgpack-1.0.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1876b0b653a808fcd50123b953af170c535027bf1d053b59790eebb0aeb38950", size = 397264 }, + { url = "https://files.pythonhosted.org/packages/43/7c/82b729d105dae9f8be500228fdd8cfc1f918a18e285afcbf6d6915146037/msgpack-1.0.8-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:dfe1f0f0ed5785c187144c46a292b8c34c1295c01da12e10ccddfc16def4448a", size = 404763 }, + { url = "https://files.pythonhosted.org/packages/e0/3f/978df03be94c2198be22df5d6e31b69ef7a9759c6cc0cce4ed1d08e2b27b/msgpack-1.0.8-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3528807cbbb7f315bb81959d5961855e7ba52aa60a3097151cb21956fbc7502b", size = 434775 }, + { url = "https://files.pythonhosted.org/packages/dd/06/adb6c8cdea18f9ba09b7dc1442b50ce222858ae4a85703420349784429d0/msgpack-1.0.8-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e2f879ab92ce502a1e65fce390eab619774dda6a6ff719718069ac94084098ce", size = 409109 }, + { url = "https://files.pythonhosted.org/packages/c6/d6/46eec1866b1ff58001a4be192ec43675620392de078fd4baf394f7d03552/msgpack-1.0.8-cp311-cp311-win32.whl", hash = "sha256:26ee97a8261e6e35885c2ecd2fd4a6d38252246f94a2aec23665a4e66d066305", size = 68779 }, + { url = "https://files.pythonhosted.org/packages/33/e9/f450b8e1243704c0ab656dcd37f6146881d11bbb68588132d8ae673c455b/msgpack-1.0.8-cp311-cp311-win_amd64.whl", hash = "sha256:eadb9f826c138e6cf3c49d6f8de88225a3c0ab181a9b4ba792e006e5292d150e", size = 75180 }, + { url = "https://files.pythonhosted.org/packages/97/73/757eeca26527ebac31d86d35bf4ba20155ee14d35c8619dd96bc80a037f3/msgpack-1.0.8-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:114be227f5213ef8b215c22dde19532f5da9652e56e8ce969bf0a26d7c419fee", size = 158948 }, + { url = "https://files.pythonhosted.org/packages/11/df/558899a5f90d450e988484be25be0b49c6930858d6fe44ea6f1f66502fe5/msgpack-1.0.8-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d661dc4785affa9d0edfdd1e59ec056a58b3dbb9f196fa43587f3ddac654ac7b", size = 88696 }, + { url = "https://files.pythonhosted.org/packages/99/3e/49d430df1e9abf06bb91e9824422cd6ceead2114662417286da3ddcdd295/msgpack-1.0.8-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d56fd9f1f1cdc8227d7b7918f55091349741904d9520c65f0139a9755952c9e8", size = 85428 }, + { url = "https://files.pythonhosted.org/packages/54/f7/84828d0c6be6b7f0770777f1a7b1f76f3a78e8b6afb5e4e9c1c9350242be/msgpack-1.0.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0726c282d188e204281ebd8de31724b7d749adebc086873a59efb8cf7ae27df3", size = 396116 }, + { url = "https://files.pythonhosted.org/packages/04/2a/c833a8503be9030083f0469e7a3c74d3622a3b4eae676c3934d3ccc01036/msgpack-1.0.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8db8e423192303ed77cff4dce3a4b88dbfaf43979d280181558af5e2c3c71afc", size = 408331 }, + { url = "https://files.pythonhosted.org/packages/04/50/b988d0a8e8835f705e4bbcb6433845ff11dd50083c0aa43e607bb7b2ff96/msgpack-1.0.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:99881222f4a8c2f641f25703963a5cefb076adffd959e0558dc9f803a52d6a58", size = 394182 }, + { url = "https://files.pythonhosted.org/packages/98/e1/0d18496cbeef771db605b6a14794f9b4235d371f36b43f7223c1613969ec/msgpack-1.0.8-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:b5505774ea2a73a86ea176e8a9a4a7c8bf5d521050f0f6f8426afe798689243f", size = 401226 }, + { url = "https://files.pythonhosted.org/packages/03/79/ae000bde2aee4b9f0d50c1ca1ab301ade873b59dd6968c28f918d1cf8be4/msgpack-1.0.8-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:ef254a06bcea461e65ff0373d8a0dd1ed3aa004af48839f002a0c994a6f72d04", size = 432994 }, + { url = "https://files.pythonhosted.org/packages/cb/46/f97bedf3ab16d38eeea0aafa3ad93cc7b9adf898218961faaea9c3c639f1/msgpack-1.0.8-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:e1dd7839443592d00e96db831eddb4111a2a81a46b028f0facd60a09ebbdd543", size = 410432 }, + { url = "https://files.pythonhosted.org/packages/8f/59/db5b61c74341b6fdf2c8a5743bb242c395d728666cf3105ff17290eb421a/msgpack-1.0.8-cp312-cp312-win32.whl", hash = "sha256:64d0fcd436c5683fdd7c907eeae5e2cbb5eb872fafbc03a43609d7941840995c", size = 69255 }, + { url = "https://files.pythonhosted.org/packages/72/5c/5facaa9b5d1b3ead831697daacf37d485af312bbe483ac6ecf43a3dd777f/msgpack-1.0.8-cp312-cp312-win_amd64.whl", hash = "sha256:74398a4cf19de42e1498368c36eed45d9528f5fd0155241e82c4082b7e16cffd", size = 75348 }, + { url = "https://files.pythonhosted.org/packages/76/2f/a06b5ca0ba80aeb5f0b50449fb57a55c2c70bc495f2569442c743ed8478d/msgpack-1.0.8-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:f51bab98d52739c50c56658cc303f190785f9a2cd97b823357e7aeae54c8f68a", size = 157945 }, + { url = "https://files.pythonhosted.org/packages/7a/c7/c95fe31dd0d7bf49fd3590df8e0089a8b9b18222909439d68dcc7973fd13/msgpack-1.0.8-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:73ee792784d48aa338bba28063e19a27e8d989344f34aad14ea6e1b9bd83f596", size = 88030 }, + { url = "https://files.pythonhosted.org/packages/42/fa/9379d11dd1b83570b2e9dc0d7c7e45aec2fb99d80540170f82d79f83132a/msgpack-1.0.8-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f9904e24646570539a8950400602d66d2b2c492b9010ea7e965025cb71d0c86d", size = 85101 }, + { url = "https://files.pythonhosted.org/packages/ad/61/225d64e983e51f960cac41fd1084188764fcc7430e75f609ad9d86e47839/msgpack-1.0.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e75753aeda0ddc4c28dce4c32ba2f6ec30b1b02f6c0b14e547841ba5b24f753f", size = 375971 }, + { url = "https://files.pythonhosted.org/packages/09/b1/d80b0a71ac05655f73146492601e91b1dbb7eb0d95d8261bec1c981e8a36/msgpack-1.0.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5dbf059fb4b7c240c873c1245ee112505be27497e90f7c6591261c7d3c3a8228", size = 385062 }, + { url = "https://files.pythonhosted.org/packages/20/40/4eb8e9dc0e949bf22e5bcd74d16996ad61eb87220a1d719d6badd169be1a/msgpack-1.0.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4916727e31c28be8beaf11cf117d6f6f188dcc36daae4e851fee88646f5b6b18", size = 373871 }, + { url = "https://files.pythonhosted.org/packages/39/e2/cac717fd842a6d0d321b2f34add877033aede4f2e6321d93799ab68c6aea/msgpack-1.0.8-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:7938111ed1358f536daf311be244f34df7bf3cdedb3ed883787aca97778b28d8", size = 379532 }, + { url = "https://files.pythonhosted.org/packages/56/7a/2a9b40ca2d9ff8f9b5628b15b820676d830b006cff6ca6b3bdffbafd2142/msgpack-1.0.8-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:493c5c5e44b06d6c9268ce21b302c9ca055c1fd3484c25ba41d34476c76ee746", size = 413708 }, + { url = "https://files.pythonhosted.org/packages/ff/21/1b3545b88fe47526925b37217729036df4088340cad6e665609cb36ba84e/msgpack-1.0.8-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5fbb160554e319f7b22ecf530a80a3ff496d38e8e07ae763b9e82fadfe96f273", size = 383553 }, + { url = "https://files.pythonhosted.org/packages/aa/ef/bde2160092b87c76e3733b94bb4fba5fbd7937173a9d4a4bf0f78c246cc2/msgpack-1.0.8-cp39-cp39-win32.whl", hash = "sha256:f9af38a89b6a5c04b7d18c492c8ccf2aee7048aff1ce8437c4683bb5a1df893d", size = 69215 }, + { url = "https://files.pythonhosted.org/packages/c8/03/5ded16a0da44662b131af259fb2f95cd9b11a5850e57d290a5341b16d9ca/msgpack-1.0.8-cp39-cp39-win_amd64.whl", hash = "sha256:ed59dd52075f8fc91da6053b12e8c89e37aa043f8986efd89e61fae69dc1b011", size = 75081 }, +] + +[[package]] +name = "multidict" +version = "6.0.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f9/79/722ca999a3a09a63b35aac12ec27dfa8e5bb3a38b0f857f7a1a209a88836/multidict-6.0.5.tar.gz", hash = "sha256:f7e301075edaf50500f0b341543c41194d8df3ae5caf4702f2095f3ca73dd8da", size = 59867 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/36/48097b96135017ed1b806c5ea27b6cdc2ed3a6861c5372b793563206c586/multidict-6.0.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:228b644ae063c10e7f324ab1ab6b548bdf6f8b47f3ec234fef1093bc2735e5f9", size = 50955 }, + { url = "https://files.pythonhosted.org/packages/d9/48/037440edb5d4a1c65e002925b2f24071d6c27754e6f4734f63037e3169d6/multidict-6.0.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:896ebdcf62683551312c30e20614305f53125750803b614e9e6ce74a96232604", size = 30361 }, + { url = "https://files.pythonhosted.org/packages/a4/eb/d8e7693c9064554a1585698d1902839440c6c695b0f53c9a8be5d9d4a3b8/multidict-6.0.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:411bf8515f3be9813d06004cac41ccf7d1cd46dfe233705933dd163b60e37600", size = 30508 }, + { url = "https://files.pythonhosted.org/packages/f3/7d/fe7648d4b2f200f8854066ce6e56bf51889abfaf859814c62160dd0e32a9/multidict-6.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1d147090048129ce3c453f0292e7697d333db95e52616b3793922945804a433c", size = 126318 }, + { url = "https://files.pythonhosted.org/packages/8d/ea/0230b6faa9a5bc10650fd50afcc4a86e6c37af2fe05bc679b74d79253732/multidict-6.0.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:215ed703caf15f578dca76ee6f6b21b7603791ae090fbf1ef9d865571039ade5", size = 133998 }, + { url = "https://files.pythonhosted.org/packages/36/6d/d2f982fb485175727a193b4900b5f929d461e7aa87d6fb5a91a377fcc9c0/multidict-6.0.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c6390cf87ff6234643428991b7359b5f59cc15155695deb4eda5c777d2b880f", size = 129150 }, + { url = "https://files.pythonhosted.org/packages/33/62/2c9085e571318d51212a6914566fe41dd0e33d7f268f7e2f23dcd3f06c56/multidict-6.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21fd81c4ebdb4f214161be351eb5bcf385426bf023041da2fd9e60681f3cebae", size = 124266 }, + { url = "https://files.pythonhosted.org/packages/ce/e2/88cdfeaf03eab3498f688a19b62ca704d371cd904cb74b682541ca7b20a7/multidict-6.0.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3cc2ad10255f903656017363cd59436f2111443a76f996584d1077e43ee51182", size = 116637 }, + { url = "https://files.pythonhosted.org/packages/12/4d/99dfc36872dcc53956879f5da80a6505bbd29214cce90ce792a86e15fddf/multidict-6.0.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:6939c95381e003f54cd4c5516740faba40cf5ad3eeff460c3ad1d3e0ea2549bf", size = 155908 }, + { url = "https://files.pythonhosted.org/packages/c2/5c/1e76b2c742cb9e0248d1e8c4ed420817879230c833fa27d890b5fd22290b/multidict-6.0.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:220dd781e3f7af2c2c1053da9fa96d9cf3072ca58f057f4c5adaaa1cab8fc442", size = 147111 }, + { url = "https://files.pythonhosted.org/packages/bc/84/9579004267e1cc5968ef2ef8718dab9d8950d99354d85b739dd67b09c273/multidict-6.0.5-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:766c8f7511df26d9f11cd3a8be623e59cca73d44643abab3f8c8c07620524e4a", size = 160502 }, + { url = "https://files.pythonhosted.org/packages/11/b7/bef33e84e3722bc42531af020d7ae8c31235ce8846bacaa852b6484cf868/multidict-6.0.5-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:fe5d7785250541f7f5019ab9cba2c71169dc7d74d0f45253f8313f436458a4ef", size = 156587 }, + { url = "https://files.pythonhosted.org/packages/26/ce/f745a2d6104e56f7fa0d7d0756bb9ed27b771dd7b8d9d7348cd7f0f7b9de/multidict-6.0.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c1c1496e73051918fcd4f58ff2e0f2f3066d1c76a0c6aeffd9b45d53243702cc", size = 151948 }, + { url = "https://files.pythonhosted.org/packages/f1/50/714da64281d2b2b3b4068e84f115e1ef3bd3ed3715b39503ff3c59e8d30d/multidict-6.0.5-cp310-cp310-win32.whl", hash = "sha256:7afcdd1fc07befad18ec4523a782cde4e93e0a2bf71239894b8d61ee578c1319", size = 25734 }, + { url = "https://files.pythonhosted.org/packages/ef/3d/ba0dc18e96c5d83731c54129819d5892389e180f54ebb045c6124b2e8b87/multidict-6.0.5-cp310-cp310-win_amd64.whl", hash = "sha256:99f60d34c048c5c2fabc766108c103612344c46e35d4ed9ae0673d33c8fb26e8", size = 28182 }, + { url = "https://files.pythonhosted.org/packages/5f/da/b10ea65b850b54f44a6479177c6987f456bc2d38f8dc73009b78afcf0ede/multidict-6.0.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f285e862d2f153a70586579c15c44656f888806ed0e5b56b64489afe4a2dbfba", size = 50815 }, + { url = "https://files.pythonhosted.org/packages/21/db/3403263f158b0bc7b0d4653766d71cb39498973f2042eead27b2e9758782/multidict-6.0.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:53689bb4e102200a4fafa9de9c7c3c212ab40a7ab2c8e474491914d2305f187e", size = 30269 }, + { url = "https://files.pythonhosted.org/packages/02/c1/b15ecceb6ffa5081ed2ed450aea58d65b0e0358001f2b426705f9f41f4c2/multidict-6.0.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:612d1156111ae11d14afaf3a0669ebf6c170dbb735e510a7438ffe2369a847fd", size = 30500 }, + { url = "https://files.pythonhosted.org/packages/3f/e1/7fdd0f39565df3af87d6c2903fb66a7d529fbd0a8a066045d7a5b6ad1145/multidict-6.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7be7047bd08accdb7487737631d25735c9a04327911de89ff1b26b81745bd4e3", size = 130751 }, + { url = "https://files.pythonhosted.org/packages/76/bc/9f593f9e38c6c09bbf0344b56ad67dd53c69167937c2edadee9719a5e17d/multidict-6.0.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de170c7b4fe6859beb8926e84f7d7d6c693dfe8e27372ce3b76f01c46e489fcf", size = 138185 }, + { url = "https://files.pythonhosted.org/packages/28/32/d7799a208701d537b92705f46c777ded812a6dc139c18d8ed599908f6b1c/multidict-6.0.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:04bde7a7b3de05732a4eb39c94574db1ec99abb56162d6c520ad26f83267de29", size = 133585 }, + { url = "https://files.pythonhosted.org/packages/52/ec/be54a3ad110f386d5bd7a9a42a4ff36b3cd723ebe597f41073a73ffa16b8/multidict-6.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:85f67aed7bb647f93e7520633d8f51d3cbc6ab96957c71272b286b2f30dc70ed", size = 128684 }, + { url = "https://files.pythonhosted.org/packages/36/e1/a680eabeb71e25d4733276d917658dfa1cd3a99b1223625dbc247d266c98/multidict-6.0.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:425bf820055005bfc8aa9a0b99ccb52cc2f4070153e34b701acc98d201693733", size = 120994 }, + { url = "https://files.pythonhosted.org/packages/ef/08/08f4f44a8a43ea4cee13aa9cdbbf4a639af8db49310a0637ca389c4cf817/multidict-6.0.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d3eb1ceec286eba8220c26f3b0096cf189aea7057b6e7b7a2e60ed36b373b77f", size = 159689 }, + { url = "https://files.pythonhosted.org/packages/aa/a9/46cdb4cb40bbd4b732169413f56b04a6553460b22bd914f9729c9ba63761/multidict-6.0.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:7901c05ead4b3fb75113fb1dd33eb1253c6d3ee37ce93305acd9d38e0b5f21a4", size = 150611 }, + { url = "https://files.pythonhosted.org/packages/e9/32/35668bb3e6ab2f12f4e4f7f4000f72f714882a94f904d4c3633fbd036753/multidict-6.0.5-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:e0e79d91e71b9867c73323a3444724d496c037e578a0e1755ae159ba14f4f3d1", size = 164444 }, + { url = "https://files.pythonhosted.org/packages/fa/10/f1388a91552af732d8ec48dab928abc209e732767e9e8f92d24c3544353c/multidict-6.0.5-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:29bfeb0dff5cb5fdab2023a7a9947b3b4af63e9c47cae2a10ad58394b517fddc", size = 160158 }, + { url = "https://files.pythonhosted.org/packages/14/c3/f602601f1819983e018156e728e57b3f19726cb424b543667faab82f6939/multidict-6.0.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e030047e85cbcedbfc073f71836d62dd5dadfbe7531cae27789ff66bc551bd5e", size = 156072 }, + { url = "https://files.pythonhosted.org/packages/82/a6/0290af8487326108c0d03d14f8a0b8b1001d71e4494df5f96ab0c88c0b88/multidict-6.0.5-cp311-cp311-win32.whl", hash = "sha256:2f4848aa3baa109e6ab81fe2006c77ed4d3cd1e0ac2c1fbddb7b1277c168788c", size = 25731 }, + { url = "https://files.pythonhosted.org/packages/88/aa/ea217cb18325aa05cb3e3111c19715f1e97c50a4a900cbc20e54648de5f5/multidict-6.0.5-cp311-cp311-win_amd64.whl", hash = "sha256:2faa5ae9376faba05f630d7e5e6be05be22913782b927b19d12b8145968a85ea", size = 28176 }, + { url = "https://files.pythonhosted.org/packages/90/9c/7fda9c0defa09538c97b1f195394be82a1f53238536f70b32eb5399dfd4e/multidict-6.0.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:51d035609b86722963404f711db441cf7134f1889107fb171a970c9701f92e1e", size = 49575 }, + { url = "https://files.pythonhosted.org/packages/be/21/d6ca80dd1b9b2c5605ff7475699a8ff5dc6ea958cd71fb2ff234afc13d79/multidict-6.0.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:cbebcd5bcaf1eaf302617c114aa67569dd3f090dd0ce8ba9e35e9985b41ac35b", size = 29638 }, + { url = "https://files.pythonhosted.org/packages/9c/18/9565f32c19d186168731e859692dfbc0e98f66a1dcf9e14d69c02a78b75a/multidict-6.0.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2ffc42c922dbfddb4a4c3b438eb056828719f07608af27d163191cb3e3aa6cc5", size = 29874 }, + { url = "https://files.pythonhosted.org/packages/4e/4e/3815190e73e6ef101b5681c174c541bf972a1b064e926e56eea78d06e858/multidict-6.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ceb3b7e6a0135e092de86110c5a74e46bda4bd4fbfeeb3a3bcec79c0f861e450", size = 129914 }, + { url = "https://files.pythonhosted.org/packages/0c/08/bb47f886457e2259aefc10044e45c8a1b62f0c27228557e17775869d0341/multidict-6.0.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:79660376075cfd4b2c80f295528aa6beb2058fd289f4c9252f986751a4cd0496", size = 134589 }, + { url = "https://files.pythonhosted.org/packages/d5/2f/952f79b5f0795cf4e34852fc5cf4dfda6166f63c06c798361215b69c131d/multidict-6.0.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4428b29611e989719874670fd152b6625500ad6c686d464e99f5aaeeaca175a", size = 133259 }, + { url = "https://files.pythonhosted.org/packages/24/1f/af976383b0b772dd351210af5b60ff9927e3abb2f4a103e93da19a957da0/multidict-6.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d84a5c3a5f7ce6db1f999fb9438f686bc2e09d38143f2d93d8406ed2dd6b9226", size = 130779 }, + { url = "https://files.pythonhosted.org/packages/fc/b1/b0a7744be00b0f5045c7ed4e4a6b8ee6bde4672b2c620474712299df5979/multidict-6.0.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:76c0de87358b192de7ea9649beb392f107dcad9ad27276324c24c91774ca5271", size = 120125 }, + { url = "https://files.pythonhosted.org/packages/d0/bf/2a1d667acf11231cdf0b97a6cd9f30e7a5cf847037b5cf6da44884284bd0/multidict-6.0.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:79a6d2ba910adb2cbafc95dad936f8b9386e77c84c35bc0add315b856d7c3abb", size = 167095 }, + { url = "https://files.pythonhosted.org/packages/5e/e8/ad6ee74b1a2050d3bc78f566dabcc14c8bf89cbe87eecec866c011479815/multidict-6.0.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:92d16a3e275e38293623ebf639c471d3e03bb20b8ebb845237e0d3664914caef", size = 155823 }, + { url = "https://files.pythonhosted.org/packages/45/7c/06926bb91752c52abca3edbfefac1ea90d9d1bc00c84d0658c137589b920/multidict-6.0.5-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:fb616be3538599e797a2017cccca78e354c767165e8858ab5116813146041a24", size = 170233 }, + { url = "https://files.pythonhosted.org/packages/3c/29/3dd36cf6b9c5abba8b97bba84eb499a168ba59c3faec8829327b3887d123/multidict-6.0.5-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:14c2976aa9038c2629efa2c148022ed5eb4cb939e15ec7aace7ca932f48f9ba6", size = 169035 }, + { url = "https://files.pythonhosted.org/packages/60/47/9a0f43470c70bbf6e148311f78ef5a3d4996b0226b6d295bdd50fdcfe387/multidict-6.0.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:435a0984199d81ca178b9ae2c26ec3d49692d20ee29bc4c11a2a8d4514c67eda", size = 166229 }, + { url = "https://files.pythonhosted.org/packages/1d/23/c1b7ae7a0b8a3e08225284ef3ecbcf014b292a3ee821bc4ed2185fd4ce7d/multidict-6.0.5-cp312-cp312-win32.whl", hash = "sha256:9fe7b0653ba3d9d65cbe7698cca585bf0f8c83dbbcc710db9c90f478e175f2d5", size = 25840 }, + { url = "https://files.pythonhosted.org/packages/4a/68/66fceb758ad7a88993940dbdf3ac59911ba9dc46d7798bf6c8652f89f853/multidict-6.0.5-cp312-cp312-win_amd64.whl", hash = "sha256:01265f5e40f5a17f8241d52656ed27192be03bfa8764d88e8220141d1e4b3556", size = 27905 }, + { url = "https://files.pythonhosted.org/packages/c6/7c/c8f4445389c0bbc5ea85d1e737233c257f314d0f836a6644e097a5ef512f/multidict-6.0.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:e7be68734bd8c9a513f2b0cfd508802d6609da068f40dc57d4e3494cefc92929", size = 50828 }, + { url = "https://files.pythonhosted.org/packages/7d/5c/c364a77b37f580cc28da4194b77ed04286c7631933d3e64fdae40f1972e2/multidict-6.0.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1d9ea7a7e779d7a3561aade7d596649fbecfa5c08a7674b11b423783217933f9", size = 30315 }, + { url = "https://files.pythonhosted.org/packages/1a/25/f4b60a34dde70c475f4dcaeb4796c256db80d2e03198052d0c3cee5d5fbb/multidict-6.0.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ea1456df2a27c73ce51120fa2f519f1bea2f4a03a917f4a43c8707cf4cbbae1a", size = 30451 }, + { url = "https://files.pythonhosted.org/packages/d0/10/2ff646c471e84af25fe8111985ffb8ec85a3f6e1ade8643bfcfcc0f4d2b1/multidict-6.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cf590b134eb70629e350691ecca88eac3e3b8b3c86992042fb82e3cb1830d5e1", size = 125880 }, + { url = "https://files.pythonhosted.org/packages/c9/ee/a4775297550dfb127641bd335d00d6d896e4ba5cf0216f78654e5ad6ac80/multidict-6.0.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5c0631926c4f58e9a5ccce555ad7747d9a9f8b10619621f22f9635f069f6233e", size = 133606 }, + { url = "https://files.pythonhosted.org/packages/7d/e9/95746d0c7c40bb0f43fc5424b7d7cf783e8638ce67f05fa677fff9ad76bb/multidict-6.0.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dce1c6912ab9ff5f179eaf6efe7365c1f425ed690b03341911bf4939ef2f3046", size = 128720 }, + { url = "https://files.pythonhosted.org/packages/39/a9/1f8d42c8103bcb1da6bb719f1bc018594b5acc8eae56b3fec4720ebee225/multidict-6.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0868d64af83169e4d4152ec612637a543f7a336e4a307b119e98042e852ad9c", size = 123750 }, + { url = "https://files.pythonhosted.org/packages/b5/f8/c8abbe7c425497d8bf997b1fffd9650ca175325ff397fadc9d63ae5dc027/multidict-6.0.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:141b43360bfd3bdd75f15ed811850763555a251e38b2405967f8e25fb43f7d40", size = 116213 }, + { url = "https://files.pythonhosted.org/packages/c2/bb/242664de860cd1201f4d207f0bd2011c1a730877e1dbffbe5d6ec4089e2d/multidict-6.0.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:7df704ca8cf4a073334e0427ae2345323613e4df18cc224f647f251e5e75a527", size = 155410 }, + { url = "https://files.pythonhosted.org/packages/f6/5b/35d20c85b8ccd0c9afc47b8dd46e028b6650ad9660a4b6ad191301d220f5/multidict-6.0.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6214c5a5571802c33f80e6c84713b2c79e024995b9c5897f794b43e714daeec9", size = 146668 }, + { url = "https://files.pythonhosted.org/packages/1b/52/6e984685d048f6728807c3fd9b8a6e3e3d51a06a4d6665d6e0102115455d/multidict-6.0.5-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:cd6c8fca38178e12c00418de737aef1261576bd1b6e8c6134d3e729a4e858b38", size = 160140 }, + { url = "https://files.pythonhosted.org/packages/76/c0/3aa6238557ed1d235be70d9c3f86d63a835c421b76073b8ce06bf32725e8/multidict-6.0.5-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:e02021f87a5b6932fa6ce916ca004c4d441509d33bbdbeca70d05dff5e9d2479", size = 156185 }, + { url = "https://files.pythonhosted.org/packages/85/82/02ed81023b5812582bf7c46e8e2868ffd6a29f8c313af1dd76e82e243c39/multidict-6.0.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ebd8d160f91a764652d3e51ce0d2956b38efe37c9231cd82cfc0bed2e40b581c", size = 151518 }, + { url = "https://files.pythonhosted.org/packages/d8/00/fd6eef9830046c063939cbf119c101898cbb611ea20301ae911b74caca19/multidict-6.0.5-cp39-cp39-win32.whl", hash = "sha256:04da1bb8c8dbadf2a18a452639771951c662c5ad03aefe4884775454be322c9b", size = 25732 }, + { url = "https://files.pythonhosted.org/packages/58/a3/4d2c1b4d1859c89d9ce48a4ae410ee019485e324e484b0160afdba8cc42b/multidict-6.0.5-cp39-cp39-win_amd64.whl", hash = "sha256:d6f6d4f185481c9669b9447bf9d9cf3b95a0e9df9d169bbc17e363b7d5487755", size = 28181 }, + { url = "https://files.pythonhosted.org/packages/fa/a2/17e1e23c6be0a916219c5292f509360c345b5fa6beeb50d743203c27532c/multidict-6.0.5-py3-none-any.whl", hash = "sha256:0d63c74e3d7ab26de115c49bffc92cc77ed23395303d496eae515d4204a625e7", size = 9729 }, +] + +[[package]] +name = "multiprocess" +version = "0.70.12.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "dill", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/99/1a/472900644359cdd208d1fbe71706bdeecbc6e8db2e39c35ebe89459e9172/multiprocess-0.70.12.2.zip", hash = "sha256:206bb9b97b73f87fec1ed15a19f8762950256aa84225450abc7150d02855a083", size = 3308461 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/97/0a/c9e66e0c3fd4f2a9404c91ba1a967858041c865c958746bb6939454eed10/multiprocess-0.70.12.2-pp27-none-any.whl", hash = "sha256:a9f58945edb234591684c0a181b744a3231643814ef3a8f47cea9a2073b4b2bb", size = 82019 }, + { url = "https://files.pythonhosted.org/packages/e3/12/c1c7b5574a574a5bc898c8656b0ab8514d0609356b3ca18180e2ae94c2f7/multiprocess-0.70.12.2-py39-none-any.whl", hash = "sha256:6f812a1d3f198b7cacd63983f60e2dc1338bd4450893f90c435067b5a3127e6f", size = 128693 }, +] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/98/a4/1ab47638b92648243faf97a5aeb6ea83059cc3624972ab6b8d2316078d3f/mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782", size = 4433 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2a/e2/5d3f6ada4297caebe1a2add3b126fe800c96f56dbe5d1988a2cbe0b267aa/mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d", size = 4695 }, +] + +[[package]] +name = "nbformat" +version = "5.10.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "fastjsonschema", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jsonschema", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jupyter-core", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "traitlets", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6d/fd/91545e604bc3dad7dca9ed03284086039b294c6b3d75c0d2fa45f9e9caf3/nbformat-5.10.4.tar.gz", hash = "sha256:322168b14f937a5d11362988ecac2a4952d3d8e3a2cbeb2319584631226d5b3a", size = 142749 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl", hash = "sha256:3b48d6c8fbca4b299bf3982ea7db1af21580e4fec269ad087b9e81588891200b", size = 78454 }, +] + +[[package]] +name = "nest-asyncio" +version = "1.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/83/f8/51569ac65d696c8ecbee95938f89d4abf00f47d58d48f6fbabfe8f0baefe/nest_asyncio-1.6.0.tar.gz", hash = "sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe", size = 7418 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a0/c4/c2971a3ba4c6103a3d10c4b0f24f461ddc027f0f09763220cf35ca1401b3/nest_asyncio-1.6.0-py3-none-any.whl", hash = "sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c", size = 5195 }, +] + +[[package]] +name = "networkx" +version = "3.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c4/80/a84676339aaae2f1cfdf9f418701dd634aef9cc76f708ef55c36ff39c3ca/networkx-3.2.1.tar.gz", hash = "sha256:9f1bb5cf3409bf324e0a722c20bdb4c20ee39bf1c30ce8ae499c8502b0b5e0c6", size = 2073928 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d5/f0/8fbc882ca80cf077f1b246c0e3c3465f7f415439bdea6b899f6b19f61f70/networkx-3.2.1-py3-none-any.whl", hash = "sha256:f18c69adc97877c42332c170849c96cefa91881c99a7cb3e95b7c659ebdc1ec2", size = 1647772 }, +] + +[[package]] +name = "ninja" +version = "1.11.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/37/2c/d717d13a413d6f7579cdaa1e28e6e2c98de95461549b08d311c8a5bf4c51/ninja-1.11.1.1.tar.gz", hash = "sha256:9d793b08dd857e38d0b6ffe9e6b7145d7c485a42dcfea04905ca0cdb6017cc3c", size = 132392 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3d/6e/04ed11bb244039908f6f212cb5f3e97933e238655248e4ce307c1687ba1f/ninja-1.11.1.1-py2.py3-none-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl", hash = "sha256:376889c76d87b95b5719fdd61dd7db193aa7fd4432e5d52d2e44e4c497bdbbee", size = 270611 }, + { url = "https://files.pythonhosted.org/packages/2c/52/0e5423311eb9939b6f9354059a6d88a6211eb4fa1c7a4ef303ecee1c1fe0/ninja-1.11.1.1-py2.py3-none-manylinux1_i686.manylinux_2_5_i686.whl", hash = "sha256:ecf80cf5afd09f14dcceff28cb3f11dc90fb97c999c89307aea435889cb66877", size = 324256 }, + { url = "https://files.pythonhosted.org/packages/6d/92/8d7aebd4430ab5ff65df2bfee6d5745f95c004284db2d8ca76dcbfd9de47/ninja-1.11.1.1-py2.py3-none-manylinux1_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:84502ec98f02a037a169c4b0d5d86075eaf6afc55e1879003d6cab51ced2ea4b", size = 307194 }, + { url = "https://files.pythonhosted.org/packages/01/c8/96424839fd127b4492229acf50763ed9940d864ca35d17d151934aef1f6f/ninja-1.11.1.1-py2.py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:73b93c14046447c7c5cc892433d4fae65d6364bec6685411cb97a8bcf815f93a", size = 155643 }, + { url = "https://files.pythonhosted.org/packages/6b/fa/5ca8e65a98cdb9a71d4f1e38cac7bd757bbb9555a5aef5a4d293aa890e5c/ninja-1.11.1.1-py2.py3-none-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:18302d96a5467ea98b68e1cae1ae4b4fb2b2a56a82b955193c637557c7273dbd", size = 179538 }, + { url = "https://files.pythonhosted.org/packages/45/ef/60086f02cbc6882da00a02c81d645cefd8d2d65b01fade41b873d8dd85a2/ninja-1.11.1.1-py2.py3-none-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:aad34a70ef15b12519946c5633344bc775a7656d789d9ed5fdb0d456383716ef", size = 156217 }, + { url = "https://files.pythonhosted.org/packages/1c/00/2fd13ac6aafdb566f00d6b541101fca54e58ae58bf96c00f9780df019607/ninja-1.11.1.1-py2.py3-none-musllinux_1_1_aarch64.whl", hash = "sha256:d491fc8d89cdcb416107c349ad1e3a735d4c4af5e1cb8f5f727baca6350fdaea", size = 372069 }, + { url = "https://files.pythonhosted.org/packages/ad/5d/6e97c8a25167d4867694c7fb0b9bdbc9b096d6479c8e56c5bd41b49613f6/ninja-1.11.1.1-py2.py3-none-musllinux_1_1_i686.whl", hash = "sha256:7563ce1d9fe6ed5af0b8dd9ab4a214bf4ff1f2f6fd6dc29f480981f0f8b8b249", size = 418859 }, + { url = "https://files.pythonhosted.org/packages/43/78/34af88d753389a9412438d16142c77e587e0d69152faf0bbf99701063dd8/ninja-1.11.1.1-py2.py3-none-musllinux_1_1_ppc64le.whl", hash = "sha256:9df724344202b83018abb45cb1efc22efd337a1496514e7e6b3b59655be85205", size = 419782 }, + { url = "https://files.pythonhosted.org/packages/3b/74/de0633f8bced3b188942fca64a950e8f2206c60c10c97af465b356ae9b25/ninja-1.11.1.1-py2.py3-none-musllinux_1_1_s390x.whl", hash = "sha256:3e0f9be5bb20d74d58c66cc1c414c3e6aeb45c35b0d0e41e8d739c2c0d57784f", size = 415476 }, + { url = "https://files.pythonhosted.org/packages/9a/f3/3e4a56ff77739d1582749b93497bdebf11e003fbc7a66363ef6c772ebd0a/ninja-1.11.1.1-py2.py3-none-musllinux_1_1_x86_64.whl", hash = "sha256:76482ba746a2618eecf89d5253c0d1e4f1da1270d41e9f54dfbd91831b0f6885", size = 379229 }, + { url = "https://files.pythonhosted.org/packages/c5/ee/53df34fcc9c0b1db62b2f2e2c848e28d9354e1c7f0dce029ee50b16ca157/ninja-1.11.1.1-py2.py3-none-win32.whl", hash = "sha256:fa2ba9d74acfdfbfbcf06fad1b8282de8a7a8c481d9dee45c859a8c93fcc1082", size = 265049 }, + { url = "https://files.pythonhosted.org/packages/b6/2f/a3bc50fa63fc4fe9348e15b53dc8c87febfd4e0c660fcf250c4b19a3aa3b/ninja-1.11.1.1-py2.py3-none-win_amd64.whl", hash = "sha256:95da904130bfa02ea74ff9c0116b4ad266174fafb1c707aa50212bc7859aebf1", size = 312958 }, + { url = "https://files.pythonhosted.org/packages/73/2a/f5b7b3b7ecd5cf4e31375580bf5c6a01a328ed1ebdfff90fab463e3f4bc7/ninja-1.11.1.1-py2.py3-none-win_arm64.whl", hash = "sha256:185e0641bde601e53841525c4196278e9aaf4463758da6dd1e752c0a0f54136a", size = 272686 }, +] + +[[package]] +name = "nltk" +version = "3.8.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "joblib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "regex", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/57/49/51af17a2b0d850578d0022408802aa452644d40281a6c6e82f7cb0235ddb/nltk-3.8.1.zip", hash = "sha256:1834da3d0682cba4f2cede2f9aad6b0fafb6461ba451db0efb6f9c39798d64d3", size = 4620388 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a6/0a/0d20d2c0f16be91b9fa32a77b76c60f9baf6eba419e5ef5deca17af9c582/nltk-3.8.1-py3-none-any.whl", hash = "sha256:fd5c9109f976fa86bcadba8f91e47f5e9293bd034474752e92a520f81c93dda5", size = 1510663 }, +] + +[[package]] +name = "numba" +version = "0.60.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "llvmlite", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/3c/93/2849300a9184775ba274aba6f82f303343669b0592b7bb0849ea713dabb0/numba-0.60.0.tar.gz", hash = "sha256:5df6158e5584eece5fc83294b949fd30b9f1125df7708862205217e068aabf16", size = 2702171 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f7/cf/baa13a7e3556d73d9e38021e6d6aa4aeb30d8b94545aa8b70d0f24a1ccc4/numba-0.60.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:5d761de835cd38fb400d2c26bb103a2726f548dc30368853121d66201672e651", size = 2647627 }, + { url = "https://files.pythonhosted.org/packages/ac/ba/4b57fa498564457c3cc9fc9e570a6b08e6086c74220f24baaf04e54b995f/numba-0.60.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:159e618ef213fba758837f9837fb402bbe65326e60ba0633dbe6c7f274d42c1b", size = 2650322 }, + { url = "https://files.pythonhosted.org/packages/28/98/7ea97ee75870a54f938a8c70f7e0be4495ba5349c5f9db09d467c4a5d5b7/numba-0.60.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:1527dc578b95c7c4ff248792ec33d097ba6bef9eda466c948b68dfc995c25781", size = 3407390 }, + { url = "https://files.pythonhosted.org/packages/79/58/cb4ac5b8f7ec64200460aef1fed88258fb872ceef504ab1f989d2ff0f684/numba-0.60.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:fe0b28abb8d70f8160798f4de9d486143200f34458d34c4a214114e445d7124e", size = 3699694 }, + { url = "https://files.pythonhosted.org/packages/1c/b0/c61a93ca947d12233ff45de506ddbf52af3f752066a0b8be4d27426e16da/numba-0.60.0-cp310-cp310-win_amd64.whl", hash = "sha256:19407ced081d7e2e4b8d8c36aa57b7452e0283871c296e12d798852bc7d7f198", size = 2687030 }, + { url = "https://files.pythonhosted.org/packages/98/ad/df18d492a8f00d29a30db307904b9b296e37507034eedb523876f3a2e13e/numba-0.60.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a17b70fc9e380ee29c42717e8cc0bfaa5556c416d94f9aa96ba13acb41bdece8", size = 2647254 }, + { url = "https://files.pythonhosted.org/packages/9a/51/a4dc2c01ce7a850b8e56ff6d5381d047a5daea83d12bad08aa071d34b2ee/numba-0.60.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3fb02b344a2a80efa6f677aa5c40cd5dd452e1b35f8d1c2af0dfd9ada9978e4b", size = 2649970 }, + { url = "https://files.pythonhosted.org/packages/f9/4c/8889ac94c0b33dca80bed11564b8c6d9ea14d7f094e674c58e5c5b05859b/numba-0.60.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:5f4fde652ea604ea3c86508a3fb31556a6157b2c76c8b51b1d45eb40c8598703", size = 3412492 }, + { url = "https://files.pythonhosted.org/packages/57/03/2b4245b05b71c0cee667e6a0b51606dfa7f4157c9093d71c6b208385a611/numba-0.60.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:4142d7ac0210cc86432b818338a2bc368dc773a2f5cf1e32ff7c5b378bd63ee8", size = 3705018 }, + { url = "https://files.pythonhosted.org/packages/79/89/2d924ca60dbf949f18a6fec223a2445f5f428d9a5f97a6b29c2122319015/numba-0.60.0-cp311-cp311-win_amd64.whl", hash = "sha256:cac02c041e9b5bc8cf8f2034ff6f0dbafccd1ae9590dc146b3a02a45e53af4e2", size = 2686920 }, + { url = "https://files.pythonhosted.org/packages/eb/5c/b5ec752c475e78a6c3676b67c514220dbde2725896bbb0b6ec6ea54b2738/numba-0.60.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d7da4098db31182fc5ffe4bc42c6f24cd7d1cb8a14b59fd755bfee32e34b8404", size = 2647866 }, + { url = "https://files.pythonhosted.org/packages/65/42/39559664b2e7c15689a638c2a38b3b74c6e69a04e2b3019b9f7742479188/numba-0.60.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:38d6ea4c1f56417076ecf8fc327c831ae793282e0ff51080c5094cb726507b1c", size = 2650208 }, + { url = "https://files.pythonhosted.org/packages/67/88/c4459ccc05674ef02119abf2888ccd3e2fed12a323f52255f4982fc95876/numba-0.60.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:62908d29fb6a3229c242e981ca27e32a6e606cc253fc9e8faeb0e48760de241e", size = 3466946 }, + { url = "https://files.pythonhosted.org/packages/8b/41/ac11cf33524def12aa5bd698226ae196a1185831c05ed29dc0c56eaa308b/numba-0.60.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:0ebaa91538e996f708f1ab30ef4d3ddc344b64b5227b67a57aa74f401bb68b9d", size = 3761463 }, + { url = "https://files.pythonhosted.org/packages/ca/bd/0fe29fcd1b6a8de479a4ed25c6e56470e467e3611c079d55869ceef2b6d1/numba-0.60.0-cp312-cp312-win_amd64.whl", hash = "sha256:f75262e8fe7fa96db1dca93d53a194a38c46da28b112b8a4aca168f0df860347", size = 2707588 }, + { url = "https://files.pythonhosted.org/packages/68/1a/87c53f836cdf557083248c3f47212271f220280ff766538795e77c8c6bbf/numba-0.60.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:01ef4cd7d83abe087d644eaa3d95831b777aa21d441a23703d649e06b8e06b74", size = 2647186 }, + { url = "https://files.pythonhosted.org/packages/28/14/a5baa1f2edea7b49afa4dc1bb1b126645198cf1075186853b5b497be826e/numba-0.60.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:819a3dfd4630d95fd574036f99e47212a1af41cbcb019bf8afac63ff56834449", size = 2650038 }, + { url = "https://files.pythonhosted.org/packages/3b/bd/f1985719ff34e37e07bb18f9d3acd17e5a21da255f550c8eae031e2ddf5f/numba-0.60.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:0b983bd6ad82fe868493012487f34eae8bf7dd94654951404114f23c3466d34b", size = 3403010 }, + { url = "https://files.pythonhosted.org/packages/54/9b/cd73d3f6617ddc8398a63ef97d8dc9139a9879b9ca8a7ca4b8789056ea46/numba-0.60.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:c151748cd269ddeab66334bd754817ffc0cabd9433acb0f551697e5151917d25", size = 3695086 }, + { url = "https://files.pythonhosted.org/packages/01/01/8b7b670c77c5ea0e47e283d82332969bf672ab6410d0b2610cac5b7a3ded/numba-0.60.0-cp39-cp39-win_amd64.whl", hash = "sha256:3031547a015710140e8c87226b4cfe927cac199835e5bf7d4fe5cb64e814e3ab", size = 2686978 }, +] + +[[package]] +name = "numpy" +version = "1.26.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/65/6e/09db70a523a96d25e115e71cc56a6f9031e7b8cd166c1ac8438307c14058/numpy-1.26.4.tar.gz", hash = "sha256:2a02aba9ed12e4ac4eb3ea9421c420301a0c6460d9830d74a9df87efa4912010", size = 15786129 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/94/ace0fdea5241a27d13543ee117cbc65868e82213fb31a8eb7fe9ff23f313/numpy-1.26.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0", size = 20631468 }, + { url = "https://files.pythonhosted.org/packages/20/f7/b24208eba89f9d1b58c1668bc6c8c4fd472b20c45573cb767f59d49fb0f6/numpy-1.26.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a", size = 13966411 }, + { url = "https://files.pythonhosted.org/packages/fc/a5/4beee6488160798683eed5bdb7eead455892c3b4e1f78d79d8d3f3b084ac/numpy-1.26.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d209d8969599b27ad20994c8e41936ee0964e6da07478d6c35016bc386b66ad4", size = 14219016 }, + { url = "https://files.pythonhosted.org/packages/4b/d7/ecf66c1cd12dc28b4040b15ab4d17b773b87fa9d29ca16125de01adb36cd/numpy-1.26.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ffa75af20b44f8dba823498024771d5ac50620e6915abac414251bd971b4529f", size = 18240889 }, + { url = "https://files.pythonhosted.org/packages/24/03/6f229fe3187546435c4f6f89f6d26c129d4f5bed40552899fcf1f0bf9e50/numpy-1.26.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:62b8e4b1e28009ef2846b4c7852046736bab361f7aeadeb6a5b89ebec3c7055a", size = 13876746 }, + { url = "https://files.pythonhosted.org/packages/39/fe/39ada9b094f01f5a35486577c848fe274e374bbf8d8f472e1423a0bbd26d/numpy-1.26.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a4abb4f9001ad2858e7ac189089c42178fcce737e4169dc61321660f1a96c7d2", size = 18078620 }, + { url = "https://files.pythonhosted.org/packages/d5/ef/6ad11d51197aad206a9ad2286dc1aac6a378059e06e8cf22cd08ed4f20dc/numpy-1.26.4-cp310-cp310-win32.whl", hash = "sha256:bfe25acf8b437eb2a8b2d49d443800a5f18508cd811fea3181723922a8a82b07", size = 5972659 }, + { url = "https://files.pythonhosted.org/packages/19/77/538f202862b9183f54108557bfda67e17603fc560c384559e769321c9d92/numpy-1.26.4-cp310-cp310-win_amd64.whl", hash = "sha256:b97fe8060236edf3662adfc2c633f56a08ae30560c56310562cb4f95500022d5", size = 15808905 }, + { url = "https://files.pythonhosted.org/packages/11/57/baae43d14fe163fa0e4c47f307b6b2511ab8d7d30177c491960504252053/numpy-1.26.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4c66707fabe114439db9068ee468c26bbdf909cac0fb58686a42a24de1760c71", size = 20630554 }, + { url = "https://files.pythonhosted.org/packages/1a/2e/151484f49fd03944c4a3ad9c418ed193cfd02724e138ac8a9505d056c582/numpy-1.26.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:edd8b5fe47dab091176d21bb6de568acdd906d1887a4584a15a9a96a1dca06ef", size = 13997127 }, + { url = "https://files.pythonhosted.org/packages/79/ae/7e5b85136806f9dadf4878bf73cf223fe5c2636818ba3ab1c585d0403164/numpy-1.26.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ab55401287bfec946ced39700c053796e7cc0e3acbef09993a9ad2adba6ca6e", size = 14222994 }, + { url = "https://files.pythonhosted.org/packages/3a/d0/edc009c27b406c4f9cbc79274d6e46d634d139075492ad055e3d68445925/numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:666dbfb6ec68962c033a450943ded891bed2d54e6755e35e5835d63f4f6931d5", size = 18252005 }, + { url = "https://files.pythonhosted.org/packages/09/bf/2b1aaf8f525f2923ff6cfcf134ae5e750e279ac65ebf386c75a0cf6da06a/numpy-1.26.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:96ff0b2ad353d8f990b63294c8986f1ec3cb19d749234014f4e7eb0112ceba5a", size = 13885297 }, + { url = "https://files.pythonhosted.org/packages/df/a0/4e0f14d847cfc2a633a1c8621d00724f3206cfeddeb66d35698c4e2cf3d2/numpy-1.26.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:60dedbb91afcbfdc9bc0b1f3f402804070deed7392c23eb7a7f07fa857868e8a", size = 18093567 }, + { url = "https://files.pythonhosted.org/packages/d2/b7/a734c733286e10a7f1a8ad1ae8c90f2d33bf604a96548e0a4a3a6739b468/numpy-1.26.4-cp311-cp311-win32.whl", hash = "sha256:1af303d6b2210eb850fcf03064d364652b7120803a0b872f5211f5234b399f20", size = 5968812 }, + { url = "https://files.pythonhosted.org/packages/3f/6b/5610004206cf7f8e7ad91c5a85a8c71b2f2f8051a0c0c4d5916b76d6cbb2/numpy-1.26.4-cp311-cp311-win_amd64.whl", hash = "sha256:cd25bcecc4974d09257ffcd1f098ee778f7834c3ad767fe5db785be9a4aa9cb2", size = 15811913 }, + { url = "https://files.pythonhosted.org/packages/95/12/8f2020a8e8b8383ac0177dc9570aad031a3beb12e38847f7129bacd96228/numpy-1.26.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:b3ce300f3644fb06443ee2222c2201dd3a89ea6040541412b8fa189341847218", size = 20335901 }, + { url = "https://files.pythonhosted.org/packages/75/5b/ca6c8bd14007e5ca171c7c03102d17b4f4e0ceb53957e8c44343a9546dcc/numpy-1.26.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:03a8c78d01d9781b28a6989f6fa1bb2c4f2d51201cf99d3dd875df6fbd96b23b", size = 13685868 }, + { url = "https://files.pythonhosted.org/packages/79/f8/97f10e6755e2a7d027ca783f63044d5b1bc1ae7acb12afe6a9b4286eac17/numpy-1.26.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9fad7dcb1aac3c7f0584a5a8133e3a43eeb2fe127f47e3632d43d677c66c102b", size = 13925109 }, + { url = "https://files.pythonhosted.org/packages/0f/50/de23fde84e45f5c4fda2488c759b69990fd4512387a8632860f3ac9cd225/numpy-1.26.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:675d61ffbfa78604709862923189bad94014bef562cc35cf61d3a07bba02a7ed", size = 17950613 }, + { url = "https://files.pythonhosted.org/packages/4c/0c/9c603826b6465e82591e05ca230dfc13376da512b25ccd0894709b054ed0/numpy-1.26.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ab47dbe5cc8210f55aa58e4805fe224dac469cde56b9f731a4c098b91917159a", size = 13572172 }, + { url = "https://files.pythonhosted.org/packages/76/8c/2ba3902e1a0fc1c74962ea9bb33a534bb05984ad7ff9515bf8d07527cadd/numpy-1.26.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:1dda2e7b4ec9dd512f84935c5f126c8bd8b9f2fc001e9f54af255e8c5f16b0e0", size = 17786643 }, + { url = "https://files.pythonhosted.org/packages/28/4a/46d9e65106879492374999e76eb85f87b15328e06bd1550668f79f7b18c6/numpy-1.26.4-cp312-cp312-win32.whl", hash = "sha256:50193e430acfc1346175fcbdaa28ffec49947a06918b7b92130744e81e640110", size = 5677803 }, + { url = "https://files.pythonhosted.org/packages/16/2e/86f24451c2d530c88daf997cb8d6ac622c1d40d19f5a031ed68a4b73a374/numpy-1.26.4-cp312-cp312-win_amd64.whl", hash = "sha256:08beddf13648eb95f8d867350f6a018a4be2e5ad54c8d8caed89ebca558b2818", size = 15517754 }, + { url = "https://files.pythonhosted.org/packages/7d/24/ce71dc08f06534269f66e73c04f5709ee024a1afe92a7b6e1d73f158e1f8/numpy-1.26.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7349ab0fa0c429c82442a27a9673fc802ffdb7c7775fad780226cb234965e53c", size = 20636301 }, + { url = "https://files.pythonhosted.org/packages/ae/8c/ab03a7c25741f9ebc92684a20125fbc9fc1b8e1e700beb9197d750fdff88/numpy-1.26.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:52b8b60467cd7dd1e9ed082188b4e6bb35aa5cdd01777621a1658910745b90be", size = 13971216 }, + { url = "https://files.pythonhosted.org/packages/6d/64/c3bcdf822269421d85fe0d64ba972003f9bb4aa9a419da64b86856c9961f/numpy-1.26.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d5241e0a80d808d70546c697135da2c613f30e28251ff8307eb72ba696945764", size = 14226281 }, + { url = "https://files.pythonhosted.org/packages/54/30/c2a907b9443cf42b90c17ad10c1e8fa801975f01cb9764f3f8eb8aea638b/numpy-1.26.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f870204a840a60da0b12273ef34f7051e98c3b5961b61b0c2c1be6dfd64fbcd3", size = 18249516 }, + { url = "https://files.pythonhosted.org/packages/43/12/01a563fc44c07095996d0129b8899daf89e4742146f7044cdbdb3101c57f/numpy-1.26.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:679b0076f67ecc0138fd2ede3a8fd196dddc2ad3254069bcb9faf9a79b1cebcd", size = 13882132 }, + { url = "https://files.pythonhosted.org/packages/16/ee/9df80b06680aaa23fc6c31211387e0db349e0e36d6a63ba3bd78c5acdf11/numpy-1.26.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:47711010ad8555514b434df65f7d7b076bb8261df1ca9bb78f53d3b2db02e95c", size = 18084181 }, + { url = "https://files.pythonhosted.org/packages/28/7d/4b92e2fe20b214ffca36107f1a3e75ef4c488430e64de2d9af5db3a4637d/numpy-1.26.4-cp39-cp39-win32.whl", hash = "sha256:a354325ee03388678242a4d7ebcd08b5c727033fcff3b2f536aea978e15ee9e6", size = 5976360 }, + { url = "https://files.pythonhosted.org/packages/b5/42/054082bd8220bbf6f297f982f0a8f5479fcbc55c8b511d928df07b965869/numpy-1.26.4-cp39-cp39-win_amd64.whl", hash = "sha256:3373d5d70a5fe74a2c1bb6d2cfd9609ecf686d47a2d7b1d37a8f3b6bf6003aea", size = 15814633 }, + { url = "https://files.pythonhosted.org/packages/3f/72/3df6c1c06fc83d9cfe381cccb4be2532bbd38bf93fbc9fad087b6687f1c0/numpy-1.26.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:afedb719a9dcfc7eaf2287b839d8198e06dcd4cb5d276a3df279231138e83d30", size = 20455961 }, + { url = "https://files.pythonhosted.org/packages/8e/02/570545bac308b58ffb21adda0f4e220ba716fb658a63c151daecc3293350/numpy-1.26.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95a7476c59002f2f6c590b9b7b998306fba6a5aa646b1e22ddfeaf8f78c3a29c", size = 18061071 }, + { url = "https://files.pythonhosted.org/packages/f4/5f/fafd8c51235f60d49f7a88e2275e13971e90555b67da52dd6416caec32fe/numpy-1.26.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7e50d0a0cc3189f9cb0aeb3a6a6af18c16f59f004b866cd2be1c14b36134a4a0", size = 15709730 }, +] + +[[package]] +name = "nvidia-cublas-cu12" +version = "12.1.3.1" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/37/6d/121efd7382d5b0284239f4ab1fc1590d86d34ed4a4a2fdb13b30ca8e5740/nvidia_cublas_cu12-12.1.3.1-py3-none-manylinux1_x86_64.whl", hash = "sha256:ee53ccca76a6fc08fb9701aa95b6ceb242cdaab118c3bb152af4e579af792728", size = 410594774 }, + { url = "https://files.pythonhosted.org/packages/c5/ef/32a375b74bea706c93deea5613552f7c9104f961b21df423f5887eca713b/nvidia_cublas_cu12-12.1.3.1-py3-none-win_amd64.whl", hash = "sha256:2b964d60e8cf11b5e1073d179d85fa340c120e99b3067558f3cf98dd69d02906", size = 439918445 }, +] + +[[package]] +name = "nvidia-cuda-cupti-cu12" +version = "12.1.105" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/00/6b218edd739ecfc60524e585ba8e6b00554dd908de2c9c66c1af3e44e18d/nvidia_cuda_cupti_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:e54fde3983165c624cb79254ae9818a456eb6e87a7fd4d56a2352c24ee542d7e", size = 14109015 }, + { url = "https://files.pythonhosted.org/packages/d0/56/0021e32ea2848c24242f6b56790bd0ccc8bf99f973ca790569c6ca028107/nvidia_cuda_cupti_cu12-12.1.105-py3-none-win_amd64.whl", hash = "sha256:bea8236d13a0ac7190bd2919c3e8e6ce1e402104276e6f9694479e48bb0eb2a4", size = 10154340 }, +] + +[[package]] +name = "nvidia-cuda-nvrtc-cu12" +version = "12.1.105" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/9f/c64c03f49d6fbc56196664d05dba14e3a561038a81a638eeb47f4d4cfd48/nvidia_cuda_nvrtc_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:339b385f50c309763ca65456ec75e17bbefcbbf2893f462cb8b90584cd27a1c2", size = 23671734 }, + { url = "https://files.pythonhosted.org/packages/ad/1d/f76987c4f454eb86e0b9a0e4f57c3bf1ac1d13ad13cd1a4da4eb0e0c0ce9/nvidia_cuda_nvrtc_cu12-12.1.105-py3-none-win_amd64.whl", hash = "sha256:0a98a522d9ff138b96c010a65e145dc1b4850e9ecb75a0172371793752fd46ed", size = 19331863 }, +] + +[[package]] +name = "nvidia-cuda-runtime-cu12" +version = "12.1.105" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/eb/d5/c68b1d2cdfcc59e72e8a5949a37ddb22ae6cade80cd4a57a84d4c8b55472/nvidia_cuda_runtime_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:6e258468ddf5796e25f1dc591a31029fa317d97a0a94ed93468fc86301d61e40", size = 823596 }, + { url = "https://files.pythonhosted.org/packages/9f/e2/7a2b4b5064af56ea8ea2d8b2776c0f2960d95c88716138806121ae52a9c9/nvidia_cuda_runtime_cu12-12.1.105-py3-none-win_amd64.whl", hash = "sha256:dfb46ef84d73fababab44cf03e3b83f80700d27ca300e537f85f636fac474344", size = 821226 }, +] + +[[package]] +name = "nvidia-cudnn-cu12" +version = "9.1.0.70" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-cublas-cu12", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/9f/fd/713452cd72343f682b1c7b9321e23829f00b842ceaedcda96e742ea0b0b3/nvidia_cudnn_cu12-9.1.0.70-py3-none-manylinux2014_x86_64.whl", hash = "sha256:165764f44ef8c61fcdfdfdbe769d687e06374059fbb388b6c89ecb0e28793a6f", size = 664752741 }, + { url = "https://files.pythonhosted.org/packages/3f/d0/f90ee6956a628f9f04bf467932c0a25e5a7e706a684b896593c06c82f460/nvidia_cudnn_cu12-9.1.0.70-py3-none-win_amd64.whl", hash = "sha256:6278562929433d68365a07a4a1546c237ba2849852c0d4b2262a486e805b977a", size = 679925892 }, +] + +[[package]] +name = "nvidia-cufft-cu12" +version = "11.0.2.54" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/86/94/eb540db023ce1d162e7bea9f8f5aa781d57c65aed513c33ee9a5123ead4d/nvidia_cufft_cu12-11.0.2.54-py3-none-manylinux1_x86_64.whl", hash = "sha256:794e3948a1aa71fd817c3775866943936774d1c14e7628c74f6f7417224cdf56", size = 121635161 }, + { url = "https://files.pythonhosted.org/packages/f7/57/7927a3aa0e19927dfed30256d1c854caf991655d847a4e7c01fe87e3d4ac/nvidia_cufft_cu12-11.0.2.54-py3-none-win_amd64.whl", hash = "sha256:d9ac353f78ff89951da4af698f80870b1534ed69993f10a4cf1d96f21357e253", size = 121344196 }, +] + +[[package]] +name = "nvidia-curand-cu12" +version = "10.3.2.106" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/44/31/4890b1c9abc496303412947fc7dcea3d14861720642b49e8ceed89636705/nvidia_curand_cu12-10.3.2.106-py3-none-manylinux1_x86_64.whl", hash = "sha256:9d264c5036dde4e64f1de8c50ae753237c12e0b1348738169cd0f8a536c0e1e0", size = 56467784 }, + { url = "https://files.pythonhosted.org/packages/5c/97/4c9c7c79efcdf5b70374241d48cf03b94ef6707fd18ea0c0f53684931d0b/nvidia_curand_cu12-10.3.2.106-py3-none-win_amd64.whl", hash = "sha256:75b6b0c574c0037839121317e17fd01f8a69fd2ef8e25853d826fec30bdba74a", size = 55995813 }, +] + +[[package]] +name = "nvidia-cusolver-cu12" +version = "11.4.5.107" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-cublas-cu12", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "nvidia-cusparse-cu12", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "nvidia-nvjitlink-cu12", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/bc/1d/8de1e5c67099015c834315e333911273a8c6aaba78923dd1d1e25fc5f217/nvidia_cusolver_cu12-11.4.5.107-py3-none-manylinux1_x86_64.whl", hash = "sha256:8a7ec542f0412294b15072fa7dab71d31334014a69f953004ea7a118206fe0dd", size = 124161928 }, + { url = "https://files.pythonhosted.org/packages/b8/80/8fca0bf819122a631c3976b6fc517c1b10741b643b94046bd8dd451522c5/nvidia_cusolver_cu12-11.4.5.107-py3-none-win_amd64.whl", hash = "sha256:74e0c3a24c78612192a74fcd90dd117f1cf21dea4822e66d89e8ea80e3cd2da5", size = 121643081 }, +] + +[[package]] +name = "nvidia-cusparse-cu12" +version = "12.1.0.106" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-nvjitlink-cu12", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/65/5b/cfaeebf25cd9fdec14338ccb16f6b2c4c7fa9163aefcf057d86b9cc248bb/nvidia_cusparse_cu12-12.1.0.106-py3-none-manylinux1_x86_64.whl", hash = "sha256:f3b50f42cf363f86ab21f720998517a659a48131e8d538dc02f8768237bd884c", size = 195958278 }, + { url = "https://files.pythonhosted.org/packages/0f/95/48fdbba24c93614d1ecd35bc6bdc6087bd17cbacc3abc4b05a9c2a1ca232/nvidia_cusparse_cu12-12.1.0.106-py3-none-win_amd64.whl", hash = "sha256:b798237e81b9719373e8fae8d4f091b70a0cf09d9d85c95a557e11df2d8e9a5a", size = 195414588 }, +] + +[[package]] +name = "nvidia-ml-py" +version = "12.555.43" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ee/c6/2348fc1fb776ff41a34635fb1f18010a6d6fd7ba6e57184dabd9d98ba9cf/nvidia-ml-py-12.555.43.tar.gz", hash = "sha256:e9e7f12ef1ec234bb0dc22d2bdc762ffafab394bdc472a07a4377c95bbf93afe", size = 38214 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/50/13/fcc6b604dea9782d69e675b1481af16e9a02c44d1d43819af209b0a1e6bb/nvidia_ml_py-12.555.43-py3-none-any.whl", hash = "sha256:b89ba66e8ba8032fdbbaa907323f248be0ed001e106f814a1e1137e58eba2a80", size = 39552 }, +] + +[[package]] +name = "nvidia-nccl-cu12" +version = "2.20.5" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c1/bb/d09dda47c881f9ff504afd6f9ca4f502ded6d8fc2f572cacc5e39da91c28/nvidia_nccl_cu12-2.20.5-py3-none-manylinux2014_aarch64.whl", hash = "sha256:1fc150d5c3250b170b29410ba682384b14581db722b2531b0d8d33c595f33d01", size = 176238458 }, + { url = "https://files.pythonhosted.org/packages/4b/2a/0a131f572aa09f741c30ccd45a8e56316e8be8dfc7bc19bf0ab7cfef7b19/nvidia_nccl_cu12-2.20.5-py3-none-manylinux2014_x86_64.whl", hash = "sha256:057f6bf9685f75215d0c53bf3ac4a10b3e6578351de307abad9e18a99182af56", size = 176249402 }, +] + +[[package]] +name = "nvidia-nvjitlink-cu12" +version = "12.6.20" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/81/b3/e456a1b2d499bb84bdc6670bfbcf41ff3bac58bd2fae6880d62834641558/nvidia_nvjitlink_cu12-12.6.20-py3-none-manylinux2014_aarch64.whl", hash = "sha256:84fb38465a5bc7c70cbc320cfd0963eb302ee25a5e939e9f512bbba55b6072fb", size = 19252608 }, + { url = "https://files.pythonhosted.org/packages/59/65/7ff0569494fbaea45ad2814972cc88da843d53cc96eb8554fcd0908941d9/nvidia_nvjitlink_cu12-12.6.20-py3-none-manylinux2014_x86_64.whl", hash = "sha256:562ab97ea2c23164823b2a89cb328d01d45cb99634b8c65fe7cd60d14562bd79", size = 19724950 }, + { url = "https://files.pythonhosted.org/packages/cb/ef/8f96c82e1cfcf6d5b770f7b043c3cc24841fc247b37629a7cc643dbf72a1/nvidia_nvjitlink_cu12-12.6.20-py3-none-win_amd64.whl", hash = "sha256:ed3c43a17f37b0c922a919203d2d36cbef24d41cc3e6b625182f8b58203644f6", size = 162012830 }, +] + +[[package]] +name = "nvidia-nvtx-cu12" +version = "12.1.105" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/da/d3/8057f0587683ed2fcd4dbfbdfdfa807b9160b809976099d36b8f60d08f03/nvidia_nvtx_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:dc21cf308ca5691e7c04d962e213f8a4aa9bbfa23d95412f452254c2caeb09e5", size = 99138 }, + { url = "https://files.pythonhosted.org/packages/b8/d7/bd7cb2d95ac6ac6e8d05bfa96cdce69619f1ef2808e072919044c2d47a8c/nvidia_nvtx_cu12-12.1.105-py3-none-win_amd64.whl", hash = "sha256:65f4d98982b31b60026e0e6de73fbdfc09d08a96f4656dd3665ca616a11e1e82", size = 66307 }, +] + +[[package]] +name = "oauthlib" +version = "3.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6d/fa/fbf4001037904031639e6bfbfc02badfc7e12f137a8afa254df6c4c8a670/oauthlib-3.2.2.tar.gz", hash = "sha256:9859c40929662bec5d64f34d01c99e093149682a3f38915dc0655d5a633dd918", size = 177352 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/80/cab10959dc1faead58dc8384a781dfbf93cb4d33d50988f7a69f1b7c9bbe/oauthlib-3.2.2-py3-none-any.whl", hash = "sha256:8139f29aac13e25d502680e9e19963e83f16838d48a0d71c287fe40e7067fbca", size = 151688 }, +] + +[[package]] +name = "onnx" +version = "1.16.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d8/83/09d7715612f72236b439eba6ebfecdaac59d99562dfc1d7a90dddb6168e1/onnx-1.16.2.tar.gz", hash = "sha256:b33a282b038813c4b69e73ea65c2909768e8dd6cc10619b70632335daf094646", size = 12308861 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/49/0c/f5b531a10344648ef577d0c3eca70fa40156928f1f927237eb6f107c74bb/onnx-1.16.2-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:ab0a1aa6b0470020ea3636afdce3e2a67f856fefe4be8c73b20371b07fcde69c", size = 16505840 }, + { url = "https://files.pythonhosted.org/packages/c2/8f/65582450430242811ec955806a870437a9d66f9dceccd53d05dd902d76ad/onnx-1.16.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a449122a49534bb9c2b6f16c8493b606ef0accda6b9dbf0c513ca4b31ebe8b38", size = 15793170 }, + { url = "https://files.pythonhosted.org/packages/f5/3d/d28484e5d87d4500db0d3b44836d9cd31d88f1efbe168356dbb1dd4f2571/onnx-1.16.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec6a425e59291fff430da4a884aa07a1d0cbb5dcd22cc78f6cf4ba5adb9f3367", size = 15924158 }, + { url = "https://files.pythonhosted.org/packages/c7/b9/0588350b9c779246a4f0302961e7b065c181fee70bb4a1219f13e4698fc1/onnx-1.16.2-cp310-cp310-win32.whl", hash = "sha256:55fbaf38acd4cd8fdd0b4f36871fb596b075518d3e981acc893f2ab887d1891a", size = 14337983 }, + { url = "https://files.pythonhosted.org/packages/0c/e4/1bc3ae56e6581587926a50a5c9dce3cfacf510e592e2512c7f5f2a9a4859/onnx-1.16.2-cp310-cp310-win_amd64.whl", hash = "sha256:4e496d301756e0a22fd2bdfac24b861c7b1ddbdd9ce7677b2a252c00c4c8f2a7", size = 14440121 }, + { url = "https://files.pythonhosted.org/packages/ea/d0/b6e02665c3e7ec097f194a75afc16698ce7729b810f0e67ac085a735f6e5/onnx-1.16.2-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:859b41574243c9bfd0abce03c15c78a1f270cc03c7f99629b984daf7adfa5003", size = 16505840 }, + { url = "https://files.pythonhosted.org/packages/82/fc/04b03e31b6741c3b430d04cfa055660242eba800e15c1c3394db3082098d/onnx-1.16.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:39a57d196fe5d73861e70d9625674e6caf8ca13c5e9c740462cf530a07cd2e1c", size = 15793427 }, + { url = "https://files.pythonhosted.org/packages/0b/8b/443486985df06b2e934d1a833f44786f22af06f2ba144ec5ce61f63beb2e/onnx-1.16.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7b98aa9733bd4b781eb931d33b4078ff2837e7d68062460726d6dd011f332bd4", size = 15924140 }, + { url = "https://files.pythonhosted.org/packages/de/20/74f04969a7d0112ce261e549a8b776bf0a262dc109c1e5e70b794ebecedb/onnx-1.16.2-cp311-cp311-win32.whl", hash = "sha256:e9f018b2e172efeea8c2473a51a825652767726374145d7cfdebdc7a27446fdd", size = 14338020 }, + { url = "https://files.pythonhosted.org/packages/41/d3/6f18b81626b9bc7f53f85e766fb688026e803da4ff20160afd80172542e7/onnx-1.16.2-cp311-cp311-win_amd64.whl", hash = "sha256:e66e4512a30df8916db5cf84f47d47b3250b9ab9a98d9cffe142c98c54598ba0", size = 14439804 }, + { url = "https://files.pythonhosted.org/packages/8c/a4/bd05b4a952d07a12c42206ea67fe855e633bb455c6128e388f3d66b46a7e/onnx-1.16.2-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:bfdb8c2eb4c92f55626376e00993db8fcc753da4b80babf28d99636af8dbae6b", size = 16510753 }, + { url = "https://files.pythonhosted.org/packages/8f/3d/6d623912bd7262abba8f7d1b2930896c8ccc3e11eda668b27d28e43c7705/onnx-1.16.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9b77a6c138f284dfc9b06fa370768aa4fd167efc49ff740e2158dd02eedde8d0", size = 15791696 }, + { url = "https://files.pythonhosted.org/packages/bb/2a/68851578adab1fd8abc4418c29f9944ad3d653452db76269c87f42ebe7e3/onnx-1.16.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ca12e47965e590b63f31681c8c563c75449a04178f27eac1ff64bad314314fb3", size = 15923654 }, + { url = "https://files.pythonhosted.org/packages/76/54/f909b428ab922cf9f3b1deec372173a0f4be313ae249b44c2db627a1f3e9/onnx-1.16.2-cp312-cp312-win32.whl", hash = "sha256:324fe3551e91ffd74b43dbcf1d48e96579f4c1be2ff1224591ecd3ec6daa6139", size = 14338109 }, + { url = "https://files.pythonhosted.org/packages/2b/66/121875d593a51ffd7a35315855c0e09ceca43c0bfe0e98af72053cc83682/onnx-1.16.2-cp312-cp312-win_amd64.whl", hash = "sha256:080b19b0bd2b5536b4c61812464fe495758d6c9cfed3fdd3f20516e616212bee", size = 14441282 }, + { url = "https://files.pythonhosted.org/packages/4e/35/abbf2fa3dbb96b430f6e810e3fb7bc042ed150f371cb1aedb47052c40f8e/onnx-1.16.2-cp39-cp39-macosx_11_0_universal2.whl", hash = "sha256:e79edba750ae06059d82d8ff8129a6488a7e692cd23cd7fe010f7ec7d6a14bad", size = 16506179 }, + { url = "https://files.pythonhosted.org/packages/64/fd/f38042d1e807cc0c6fbd8663b8aef6f2a08d87ee71669ff6130e4e550b39/onnx-1.16.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2d192db8501103fede9c1725861e65ed41efb65da1ce915ba969aae40073eb94", size = 15793392 }, + { url = "https://files.pythonhosted.org/packages/0b/c2/b7583750a65df9f47cd3ec6d16b92762807859d860d4c658ab205b978710/onnx-1.16.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da01d4a3bd7a0d0ee5084f65441fc9ca38450fc18835b7f9d5da5b9e7ca8b85d", size = 15924625 }, + { url = "https://files.pythonhosted.org/packages/cb/0d/22769fa03571ce4e8fa23e359a91e24c38be5ca1192267878e627473b8a7/onnx-1.16.2-cp39-cp39-win32.whl", hash = "sha256:0b765b09bdb01fa2338ea52483aa3d9c75e249f85446f0d9ad1dc5bd2b149082", size = 14338210 }, + { url = "https://files.pythonhosted.org/packages/d4/29/03f15191571fdef99d6e3f641e6385159d4bc826cdcad9b819b48fb30455/onnx-1.16.2-cp39-cp39-win_amd64.whl", hash = "sha256:bfee781a59919e797f4dae380e63a0390ec01ce5c337a1459b992aac2f49a3c2", size = 14435298 }, +] + +[[package]] +name = "onnxconverter-common" +version = "1.13.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnx", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ec/44/54c6b7f1a28d919a15caf642113fb44651087d1bb0658f028c54b93df8e3/onnxconverter-common-1.13.0.tar.gz", hash = "sha256:03db8a6033a3d6590f22df3f64234079caa826375d1fcb0b37b8123c06bf598c", size = 73935 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/51/a4/4439174c879c33557eab08e4dd480c1e096bc26c487c85a62e4c0d8f78ff/onnxconverter_common-1.13.0-py2.py3-none-any.whl", hash = "sha256:5ee1c025ef6c3b4abaede8425bc6b393248941a6cf8c21563d0d0e3f04634a0a", size = 83796 }, +] + +[[package]] +name = "onnxruntime" +version = "1.18.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "coloredlogs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "flatbuffers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sympy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/02/83/b72ef2d6cc8f8b4d60bc6b41641eaa8975c5f968a49bc69ff3c5e9b28b7f/onnxruntime-1.18.1-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:29ef7683312393d4ba04252f1b287d964bd67d5e6048b94d2da3643986c74d80", size = 15892232 }, + { url = "https://files.pythonhosted.org/packages/cd/ef/4f4e45d49c2587080f0252dba644620a9808e2d19591bb0b327650ace6b6/onnxruntime-1.18.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:fc706eb1df06ddf55776e15a30519fb15dda7697f987a2bbda4962845e3cec05", size = 6013528 }, + { url = "https://files.pythonhosted.org/packages/04/da/cd671caf4231942c4f68bf0dc1a959303df91dfd0e1d55c556b924d8e68e/onnxruntime-1.18.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b7de69f5ced2a263531923fa68bbec52a56e793b802fcd81a03487b5e292bc3a", size = 6788962 }, + { url = "https://files.pythonhosted.org/packages/63/ea/7f1396f7279073e1288e1d39874f39999ee7ea5b2f3f5ad838214b4a3620/onnxruntime-1.18.1-cp310-cp310-win32.whl", hash = "sha256:221e5b16173926e6c7de2cd437764492aa12b6811f45abd37024e7cf2ae5d7e3", size = 5069833 }, + { url = "https://files.pythonhosted.org/packages/74/8e/0db236760a60ba59fac48e253c2c645bfd7d6ade58d4ce796b645d73e2de/onnxruntime-1.18.1-cp310-cp310-win_amd64.whl", hash = "sha256:75211b619275199c861ee94d317243b8a0fcde6032e5a80e1aa9ded8ab4c6060", size = 5581426 }, + { url = "https://files.pythonhosted.org/packages/d7/ae/e257a5ffa4ef84e51255a38b62b4fdb538d92455e1f0f0ad056074f89c94/onnxruntime-1.18.1-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:f26582882f2dc581b809cfa41a125ba71ad9e715738ec6402418df356969774a", size = 15892594 }, + { url = "https://files.pythonhosted.org/packages/54/4b/f4c52a6b5e62f98f852a946fefc48f12d5838652eb7da5c300dc27a80ba4/onnxruntime-1.18.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ef36f3a8b768506d02be349ac303fd95d92813ba3ba70304d40c3cd5c25d6a4c", size = 6010462 }, + { url = "https://files.pythonhosted.org/packages/dd/ae/163375ec2b6aee385c26889b4a0bd4546133b1da7c66285ef8db180781c5/onnxruntime-1.18.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:170e711393e0618efa8ed27b59b9de0ee2383bd2a1f93622a97006a5ad48e434", size = 6794885 }, + { url = "https://files.pythonhosted.org/packages/25/76/3a3007573abd458c22453838c8620d2b37e14ca82b92c8fa7a85b620d031/onnxruntime-1.18.1-cp311-cp311-win32.whl", hash = "sha256:9b6a33419b6949ea34e0dc009bc4470e550155b6da644571ecace4b198b0d88f", size = 5069708 }, + { url = "https://files.pythonhosted.org/packages/99/b2/488704f6298ac249015f65b64c24bf5611fcf2594ab0e75fa6bcce5e873f/onnxruntime-1.18.1-cp311-cp311-win_amd64.whl", hash = "sha256:5c1380a9f1b7788da742c759b6a02ba771fe1ce620519b2b07309decbd1a2fe1", size = 5581717 }, + { url = "https://files.pythonhosted.org/packages/23/e9/8a2d3e5521b896d6483b101cd698912f9ad19b26314b0c671d98656d028c/onnxruntime-1.18.1-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:31bd57a55e3f983b598675dfc7e5d6f0877b70ec9864b3cc3c3e1923d0a01919", size = 15909435 }, + { url = "https://files.pythonhosted.org/packages/bf/75/305c44288ad9733d4209c8c5cb7eba6f09f25462bf2d64bbdfca742585c3/onnxruntime-1.18.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b9e03c4ba9f734500691a4d7d5b381cd71ee2f3ce80a1154ac8f7aed99d1ecaa", size = 6007788 }, + { url = "https://files.pythonhosted.org/packages/a3/0a/89bc7acdf7b311ec5cdf6c01983e8ecb23f7b1ba7a1b2d2fd10d33dfd24a/onnxruntime-1.18.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:781aa9873640f5df24524f96f6070b8c550c66cb6af35710fd9f92a20b4bfbf6", size = 6793752 }, + { url = "https://files.pythonhosted.org/packages/b7/ea/8eac166b5903b1f0e6e08ff8c64986654b1b21e410b1f18c45e97a225a88/onnxruntime-1.18.1-cp312-cp312-win32.whl", hash = "sha256:3a2d9ab6254ca62adbb448222e630dc6883210f718065063518c8f93a32432be", size = 5070749 }, + { url = "https://files.pythonhosted.org/packages/80/62/3f54fd70511e004869a2bc5c4ba4303a5b51b625ff81bd989c35d1d8086a/onnxruntime-1.18.1-cp312-cp312-win_amd64.whl", hash = "sha256:ad93c560b1c38c27c0275ffd15cd7f45b3ad3fc96653c09ce2931179982ff204", size = 5584630 }, + { url = "https://files.pythonhosted.org/packages/9c/95/b581d7e2134ef49d9f4d63bfd0aa7ad91e6c8fecf8ce71a229306a78857c/onnxruntime-1.18.1-cp39-cp39-macosx_11_0_universal2.whl", hash = "sha256:128df253ade673e60cea0955ec9d0e89617443a6d9ce47c2d79eb3f72a3be3de", size = 15893504 }, + { url = "https://files.pythonhosted.org/packages/5f/66/8a1deac3f16fad5fab4aedeea8d4a0baaafef0e16f7c5ae2e162f6af6d34/onnxruntime-1.18.1-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9839491e77e5c5a175cab3621e184d5a88925ee297ff4c311b68897197f4cde9", size = 5995471 }, + { url = "https://files.pythonhosted.org/packages/10/f5/67bd1b947bc4055ea62efd4b974cef51a8a6819ac4e8c61ca014901dbfd0/onnxruntime-1.18.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ad3187c1faff3ac15f7f0e7373ef4788c582cafa655a80fdbb33eaec88976c66", size = 6793994 }, + { url = "https://files.pythonhosted.org/packages/50/ea/4fb07d2a82d6b2782c98adcaea7d3e6b057b8e85c219f8d21e5ec72bc423/onnxruntime-1.18.1-cp39-cp39-win32.whl", hash = "sha256:34657c78aa4e0b5145f9188b550ded3af626651b15017bf43d280d7e23dbf195", size = 5070149 }, + { url = "https://files.pythonhosted.org/packages/da/5b/60dd8b3acf1230eb7093122f4fa621784ec4a7deaaf246456a4e2f0f0a25/onnxruntime-1.18.1-cp39-cp39-win_amd64.whl", hash = "sha256:9c14fd97c3ddfa97da5feef595e2c73f14c2d0ec1d4ecbea99c8d96603c89589", size = 5584248 }, +] + +[[package]] +name = "onnxruntime-tools" +version = "1.7.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "coloredlogs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnx", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "psutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "py-cpuinfo", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "py3nvml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/fd/b5/c36283fef3b1d492a39d1b5f3f195965fbf002b168633daad302c51d8f4c/onnxruntime_tools-1.7.0.tar.gz", hash = "sha256:6dbdcee49424e066bcd10357c37d51bc422ae26494e3c2f0c1970d534f967f6d", size = 141435 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6f/b0/db0e73356df0aaa8737e6f13c0dac499b5d904d3fa267c8ebf24515e8001/onnxruntime_tools-1.7.0-py3-none-any.whl", hash = "sha256:1dff888b5c482ac5bc627f12e108445fefcb3d600c43f63633975316fe617ad8", size = 212695 }, +] + +[[package]] +name = "opencv-python" +version = "4.10.0.84" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/4a/e7/b70a2d9ab205110d715906fc8ec83fbb00404aeb3a37a0654fdb68eb0c8c/opencv-python-4.10.0.84.tar.gz", hash = "sha256:72d234e4582e9658ffea8e9cae5b63d488ad06994ef12d81dc303b17472f3526", size = 95103981 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/66/82/564168a349148298aca281e342551404ef5521f33fba17b388ead0a84dc5/opencv_python-4.10.0.84-cp37-abi3-macosx_11_0_arm64.whl", hash = "sha256:fc182f8f4cda51b45f01c64e4cbedfc2f00aff799debebc305d8d0210c43f251", size = 54835524 }, + { url = "https://files.pythonhosted.org/packages/64/4a/016cda9ad7cf18c58ba074628a4eaae8aa55f3fd06a266398cef8831a5b9/opencv_python-4.10.0.84-cp37-abi3-macosx_12_0_x86_64.whl", hash = "sha256:71e575744f1d23f79741450254660442785f45a0797212852ee5199ef12eed98", size = 56475426 }, + { url = "https://files.pythonhosted.org/packages/81/e4/7a987ebecfe5ceaf32db413b67ff18eb3092c598408862fff4d7cc3fd19b/opencv_python-4.10.0.84-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:09a332b50488e2dda866a6c5573ee192fe3583239fb26ff2f7f9ceb0bc119ea6", size = 41746971 }, + { url = "https://files.pythonhosted.org/packages/3f/a4/d2537f47fd7fcfba966bd806e3ec18e7ee1681056d4b0a9c8d983983e4d5/opencv_python-4.10.0.84-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ace140fc6d647fbe1c692bcb2abce768973491222c067c131d80957c595b71f", size = 62548253 }, + { url = "https://files.pythonhosted.org/packages/1e/39/bbf57e7b9dab623e8773f6ff36385456b7ae7fa9357a5e53db732c347eac/opencv_python-4.10.0.84-cp37-abi3-win32.whl", hash = "sha256:2db02bb7e50b703f0a2d50c50ced72e95c574e1e5a0bb35a8a86d0b35c98c236", size = 28737688 }, + { url = "https://files.pythonhosted.org/packages/ec/6c/fab8113424af5049f85717e8e527ca3773299a3c6b02506e66436e19874f/opencv_python-4.10.0.84-cp37-abi3-win_amd64.whl", hash = "sha256:32dbbd94c26f611dc5cc6979e6b7aa1f55a64d6b463cc1dcd3c95505a63e48fe", size = 38842521 }, +] + +[[package]] +name = "opt-einsum" +version = "3.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7d/bf/9257e53a0e7715bc1127e15063e831f076723c6cd60985333a1c18878fb8/opt_einsum-3.3.0.tar.gz", hash = "sha256:59f6475f77bbc37dcf7cd748519c0ec60722e91e63ca114e68821c0c54a46549", size = 73951 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bc/19/404708a7e54ad2798907210462fd950c3442ea51acc8790f3da48d2bee8b/opt_einsum-3.3.0-py3-none-any.whl", hash = "sha256:2455e59e3947d3c275477df7f5205b30635e266fe6dc300e3d9f9646bfcea147", size = 65486 }, +] + +[[package]] +name = "optax" +version = "0.1.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "chex", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jaxlib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/9a/74/66b5c8c59b21017d50a04db5b2eca113418d35c99e17f7a62c76a22c8e88/optax-0.1.4.tar.gz", hash = "sha256:fb7a0550d57a6636164a3de25986a8a19be8ff6431fcdf1225b4e05175810f22", size = 116113 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2e/7a/53ab156dd30acd9b4039603ebe623e81783de33b33ed14bcd52a29c2eeef/optax-0.1.4-py3-none-any.whl", hash = "sha256:12fcf33bd682f9a162a3deb097f864130c3224d76771af2ba09410de80399a9b", size = 154872 }, +] + +[[package]] +name = "optuna" +version = "3.6.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "alembic", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "colorlog", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sqlalchemy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/dd/10/5e37d49c98d5aee9f4eb5eb0e0e24a8c6846dccb45586626127a0c157a85/optuna-3.6.1.tar.gz", hash = "sha256:146e530b57b4b9afd7526b3e642fbe65491f7e292b405913355f8e438e361ecf", size = 292748 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/15/da/68883911855d8b4d521f9a370e4e6aab8232b91c1d8d5a8348c4680c6642/optuna-3.6.1-py3-none-any.whl", hash = "sha256:b32e0490bd6552790b70ec94de77dd2855057c9e229cd9f4da48fe8a31c7f1cc", size = 380102 }, +] + +[[package]] +name = "orbax-checkpoint" +version = "0.5.16" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "etils", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "etils", extra = ["epath", "epy"] }, + { name = "jax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jaxlib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "msgpack", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "nest-asyncio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorstore", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/05/f3/39988acde4fa04b0017b8dec1c2cc4429c4d54830f418c80574ff6f6ff9b/orbax_checkpoint-0.5.16.tar.gz", hash = "sha256:c64d2a3ba6dd7e41330c3efd2bb669743480e62ad242eac5517e67369c26a38e", size = 160749 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/50/00/95794fe517d705c06b1918c4d32372d7476f81a2bfc6ed44f850bbe71ee2/orbax_checkpoint-0.5.16-py3-none-any.whl", hash = "sha256:1b4329ff477c59e061ac15bc09eea34a248f2048b1c5b43eae9b530e068e5974", size = 217032 }, +] + +[[package]] +name = "packaging" +version = "24.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/51/65/50db4dda066951078f0a96cf12f4b9ada6e4b811516bf0262c0f4f7064d4/packaging-24.1.tar.gz", hash = "sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002", size = 148788 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/08/aa/cc0199a5f0ad350994d660967a8efb233fe0416e4639146c089643407ce6/packaging-24.1-py3-none-any.whl", hash = "sha256:5b8f2217dbdbd2f7f384c41c628544e6d52f2d0f53c6d0c3ea61aa5d1d7ff124", size = 53985 }, +] + +[[package]] +name = "pandas" +version = "2.2.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version <= '3.11' or python_version >= '3.12'" }, + { name = "python-dateutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pytz", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tzdata", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/88/d9/ecf715f34c73ccb1d8ceb82fc01cd1028a65a5f6dbc57bfa6ea155119058/pandas-2.2.2.tar.gz", hash = "sha256:9e79019aba43cb4fda9e4d983f8e88ca0373adbb697ae9c6c43093218de28b54", size = 4398391 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/2d/39600d073ea70b9cafdc51fab91d69c72b49dd92810f24cb5ac6631f387f/pandas-2.2.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:90c6fca2acf139569e74e8781709dccb6fe25940488755716d1d354d6bc58bce", size = 12551798 }, + { url = "https://files.pythonhosted.org/packages/fd/4b/0cd38e68ab690b9df8ef90cba625bf3f93b82d1c719703b8e1b333b2c72d/pandas-2.2.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c7adfc142dac335d8c1e0dcbd37eb8617eac386596eb9e1a1b77791cf2498238", size = 11287392 }, + { url = "https://files.pythonhosted.org/packages/01/c6/d3d2612aea9b9f28e79a30b864835dad8f542dcf474eee09afeee5d15d75/pandas-2.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4abfe0be0d7221be4f12552995e58723c7422c80a659da13ca382697de830c08", size = 15634823 }, + { url = "https://files.pythonhosted.org/packages/89/1b/12521efcbc6058e2673583bb096c2b5046a9df39bd73eca392c1efed24e5/pandas-2.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8635c16bf3d99040fdf3ca3db669a7250ddf49c55dc4aa8fe0ae0fa8d6dcc1f0", size = 13032214 }, + { url = "https://files.pythonhosted.org/packages/e4/d7/303dba73f1c3a9ef067d23e5afbb6175aa25e8121be79be354dcc740921a/pandas-2.2.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:40ae1dffb3967a52203105a077415a86044a2bea011b5f321c6aa64b379a3f51", size = 16278302 }, + { url = "https://files.pythonhosted.org/packages/ba/df/8ff7c5ed1cc4da8c6ab674dc8e4860a4310c3880df1283e01bac27a4333d/pandas-2.2.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8e5a0b00e1e56a842f922e7fae8ae4077aee4af0acb5ae3622bd4b4c30aedf99", size = 13892866 }, + { url = "https://files.pythonhosted.org/packages/69/a6/81d5dc9a612cf0c1810c2ebc4f2afddb900382276522b18d128213faeae3/pandas-2.2.2-cp310-cp310-win_amd64.whl", hash = "sha256:ddf818e4e6c7c6f4f7c8a12709696d193976b591cc7dc50588d3d1a6b5dc8772", size = 11621592 }, + { url = "https://files.pythonhosted.org/packages/1b/70/61704497903d43043e288017cb2b82155c0d41e15f5c17807920877b45c2/pandas-2.2.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:696039430f7a562b74fa45f540aca068ea85fa34c244d0deee539cb6d70aa288", size = 12574808 }, + { url = "https://files.pythonhosted.org/packages/16/c6/75231fd47afd6b3f89011e7077f1a3958441264aca7ae9ff596e3276a5d0/pandas-2.2.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8e90497254aacacbc4ea6ae5e7a8cd75629d6ad2b30025a4a8b09aa4faf55151", size = 11304876 }, + { url = "https://files.pythonhosted.org/packages/97/2d/7b54f80b93379ff94afb3bd9b0cd1d17b48183a0d6f98045bc01ce1e06a7/pandas-2.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:58b84b91b0b9f4bafac2a0ac55002280c094dfc6402402332c0913a59654ab2b", size = 15602548 }, + { url = "https://files.pythonhosted.org/packages/fc/a5/4d82be566f069d7a9a702dcdf6f9106df0e0b042e738043c0cc7ddd7e3f6/pandas-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d2123dc9ad6a814bcdea0f099885276b31b24f7edf40f6cdbc0912672e22eee", size = 13031332 }, + { url = "https://files.pythonhosted.org/packages/92/a2/b79c48f530673567805e607712b29814b47dcaf0d167e87145eb4b0118c6/pandas-2.2.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:2925720037f06e89af896c70bca73459d7e6a4be96f9de79e2d440bd499fe0db", size = 16286054 }, + { url = "https://files.pythonhosted.org/packages/40/c7/47e94907f1d8fdb4868d61bd6c93d57b3784a964d52691b77ebfdb062842/pandas-2.2.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0cace394b6ea70c01ca1595f839cf193df35d1575986e484ad35c4aeae7266c1", size = 13879507 }, + { url = "https://files.pythonhosted.org/packages/ab/63/966db1321a0ad55df1d1fe51505d2cdae191b84c907974873817b0a6e849/pandas-2.2.2-cp311-cp311-win_amd64.whl", hash = "sha256:873d13d177501a28b2756375d59816c365e42ed8417b41665f346289adc68d24", size = 11634249 }, + { url = "https://files.pythonhosted.org/packages/dd/49/de869130028fb8d90e25da3b7d8fb13e40f5afa4c4af1781583eb1ff3839/pandas-2.2.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:9dfde2a0ddef507a631dc9dc4af6a9489d5e2e740e226ad426a05cabfbd7c8ef", size = 12500886 }, + { url = "https://files.pythonhosted.org/packages/db/7c/9a60add21b96140e22465d9adf09832feade45235cd22f4cb1668a25e443/pandas-2.2.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:e9b79011ff7a0f4b1d6da6a61aa1aa604fb312d6647de5bad20013682d1429ce", size = 11340320 }, + { url = "https://files.pythonhosted.org/packages/b0/85/f95b5f322e1ae13b7ed7e97bd999160fa003424711ab4dc8344b8772c270/pandas-2.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1cb51fe389360f3b5a4d57dbd2848a5f033350336ca3b340d1c53a1fad33bcad", size = 15204346 }, + { url = "https://files.pythonhosted.org/packages/40/10/79e52ef01dfeb1c1ca47a109a01a248754ebe990e159a844ece12914de83/pandas-2.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eee3a87076c0756de40b05c5e9a6069c035ba43e8dd71c379e68cab2c20f16ad", size = 12733396 }, + { url = "https://files.pythonhosted.org/packages/35/9d/208febf8c4eb5c1d9ea3314d52d8bd415fd0ef0dd66bb24cc5bdbc8fa71a/pandas-2.2.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:3e374f59e440d4ab45ca2fffde54b81ac3834cf5ae2cdfa69c90bc03bde04d76", size = 15858913 }, + { url = "https://files.pythonhosted.org/packages/99/d1/2d9bd05def7a9e08a92ec929b5a4c8d5556ec76fae22b0fa486cbf33ea63/pandas-2.2.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:43498c0bdb43d55cb162cdc8c06fac328ccb5d2eabe3cadeb3529ae6f0517c32", size = 13417786 }, + { url = "https://files.pythonhosted.org/packages/22/a5/a0b255295406ed54269814bc93723cfd1a0da63fb9aaf99e1364f07923e5/pandas-2.2.2-cp312-cp312-win_amd64.whl", hash = "sha256:d187d355ecec3629624fccb01d104da7d7f391db0311145817525281e2804d23", size = 11498828 }, + { url = "https://files.pythonhosted.org/packages/1b/cc/eb6ce83667131667c6561e009823e72aa5c76698e75552724bdfc8d1ef0b/pandas-2.2.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:0ca6377b8fca51815f382bd0b697a0814c8bda55115678cbc94c30aacbb6eff2", size = 12566406 }, + { url = "https://files.pythonhosted.org/packages/96/08/9ad65176f854fd5eb806a27da6e8b6c12d5ddae7ef3bd80d8b3009099333/pandas-2.2.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9057e6aa78a584bc93a13f0a9bf7e753a5e9770a30b4d758b8d5f2a62a9433cd", size = 11304008 }, + { url = "https://files.pythonhosted.org/packages/aa/30/5987c82fea318ac7d6bcd083c5b5259d4000e99dd29ae7a9357c65a1b17a/pandas-2.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:001910ad31abc7bf06f49dcc903755d2f7f3a9186c0c040b827e522e9cef0863", size = 15662279 }, + { url = "https://files.pythonhosted.org/packages/bb/30/f6f1f1ac36250f50c421b1b6af08c35e5a8b5a84385ef928625336b93e6f/pandas-2.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:66b479b0bd07204e37583c191535505410daa8df638fd8e75ae1b383851fe921", size = 13069490 }, + { url = "https://files.pythonhosted.org/packages/b5/27/76c1509f505d1f4cb65839352d099c90a13019371e90347166811aa6a075/pandas-2.2.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:a77e9d1c386196879aa5eb712e77461aaee433e54c68cf253053a73b7e49c33a", size = 16299412 }, + { url = "https://files.pythonhosted.org/packages/5d/11/a5a2f52936fba3afc42de35b19cae941284d973649cb6949bc41cc2e5901/pandas-2.2.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:92fd6b027924a7e178ac202cfbe25e53368db90d56872d20ffae94b96c7acc57", size = 13920884 }, + { url = "https://files.pythonhosted.org/packages/bf/2c/a0cee9c392a4c9227b835af27f9260582b994f9a2b5ec23993b596e5deb7/pandas-2.2.2-cp39-cp39-win_amd64.whl", hash = "sha256:640cef9aa381b60e296db324337a554aeeb883ead99dc8f6c18e81a93942f5f4", size = 11637580 }, +] + +[[package]] +name = "parameterized" +version = "0.9.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ea/49/00c0c0cc24ff4266025a53e41336b79adaa5a4ebfad214f433d623f9865e/parameterized-0.9.0.tar.gz", hash = "sha256:7fc905272cefa4f364c1a3429cbbe9c0f98b793988efb5bf90aac80f08db09b1", size = 24351 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/00/2f/804f58f0b856ab3bf21617cccf5b39206e6c4c94c2cd227bde125ea6105f/parameterized-0.9.0-py2.py3-none-any.whl", hash = "sha256:4e0758e3d41bea3bbd05ec14fc2c24736723f243b28d702081aef438c9372b1b", size = 20475 }, +] + +[[package]] +name = "pathos" +version = "0.2.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "dill", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "multiprocess", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pox", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ppft", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/66/74/2630ffec903fe3cb712f2c8a538d55422298a31461ff5370e9c6b97a93de/pathos-0.2.8.zip", hash = "sha256:1f0f27a90f7ab66c423ba796529000fde9360d17b2d8e50097641ff405fc6f15", size = 219791 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/23/6b/7ffe02bdb5f5cf4b2290cc906b415dde7c886dbb11928dda40d39e6654dd/pathos-0.2.8-py2.py3-none-any.whl", hash = "sha256:789ae53487e5f9393fcc2b9703188a1b97f20206c429654134a7152f591bafe7", size = 81688 }, +] + +[[package]] +name = "pathspec" +version = "0.12.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ca/bc/f35b8446f4531a7cb215605d100cd88b7ac6f44ab3fc94870c120ab3adbf/pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712", size = 51043 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl", hash = "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08", size = 31191 }, +] + +[[package]] +name = "phonemizer" +version = "3.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "dlinfo", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "joblib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "segments", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c4/ff/3574c55a71b42ad6944a5bf0a7d59f0251ea2ba47e51a5c4005e32e9145c/phonemizer-3.3.0.tar.gz", hash = "sha256:5e0c38122effe0b331a24e674aff256874ece169d70a9cf1120337b56f8e3d0c", size = 88564 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/23/e8d67c2052e132181c4c9027c2d8ed9e37e8acb27acfc13ed2d0c41ed850/phonemizer-3.3.0-py3-none-any.whl", hash = "sha256:17afaa98691fe73b025dd8d8727b0e67cc376c5e7ee27590853e457fb3f43602", size = 103800 }, +] + +[[package]] +name = "pillow" +version = "10.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cd/74/ad3d526f3bf7b6d3f408b73fde271ec69dfac8b81341a318ce825f2b3812/pillow-10.4.0.tar.gz", hash = "sha256:166c1cd4d24309b30d61f79f4a9114b7b2313d7450912277855ff5dfd7cd4a06", size = 46555059 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0e/69/a31cccd538ca0b5272be2a38347f8839b97a14be104ea08b0db92f749c74/pillow-10.4.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:4d9667937cfa347525b319ae34375c37b9ee6b525440f3ef48542fcf66f2731e", size = 3509271 }, + { url = "https://files.pythonhosted.org/packages/9a/9e/4143b907be8ea0bce215f2ae4f7480027473f8b61fcedfda9d851082a5d2/pillow-10.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:543f3dc61c18dafb755773efc89aae60d06b6596a63914107f75459cf984164d", size = 3375658 }, + { url = "https://files.pythonhosted.org/packages/8a/25/1fc45761955f9359b1169aa75e241551e74ac01a09f487adaaf4c3472d11/pillow-10.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7928ecbf1ece13956b95d9cbcfc77137652b02763ba384d9ab508099a2eca856", size = 4332075 }, + { url = "https://files.pythonhosted.org/packages/5e/dd/425b95d0151e1d6c951f45051112394f130df3da67363b6bc75dc4c27aba/pillow-10.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4d49b85c4348ea0b31ea63bc75a9f3857869174e2bf17e7aba02945cd218e6f", size = 4444808 }, + { url = "https://files.pythonhosted.org/packages/b1/84/9a15cc5726cbbfe7f9f90bfb11f5d028586595907cd093815ca6644932e3/pillow-10.4.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:6c762a5b0997f5659a5ef2266abc1d8851ad7749ad9a6a5506eb23d314e4f46b", size = 4356290 }, + { url = "https://files.pythonhosted.org/packages/b5/5b/6651c288b08df3b8c1e2f8c1152201e0b25d240e22ddade0f1e242fc9fa0/pillow-10.4.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:a985e028fc183bf12a77a8bbf36318db4238a3ded7fa9df1b9a133f1cb79f8fc", size = 4525163 }, + { url = "https://files.pythonhosted.org/packages/07/8b/34854bf11a83c248505c8cb0fcf8d3d0b459a2246c8809b967963b6b12ae/pillow-10.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:812f7342b0eee081eaec84d91423d1b4650bb9828eb53d8511bcef8ce5aecf1e", size = 4463100 }, + { url = "https://files.pythonhosted.org/packages/78/63/0632aee4e82476d9cbe5200c0cdf9ba41ee04ed77887432845264d81116d/pillow-10.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ac1452d2fbe4978c2eec89fb5a23b8387aba707ac72810d9490118817d9c0b46", size = 4592880 }, + { url = "https://files.pythonhosted.org/packages/df/56/b8663d7520671b4398b9d97e1ed9f583d4afcbefbda3c6188325e8c297bd/pillow-10.4.0-cp310-cp310-win32.whl", hash = "sha256:bcd5e41a859bf2e84fdc42f4edb7d9aba0a13d29a2abadccafad99de3feff984", size = 2235218 }, + { url = "https://files.pythonhosted.org/packages/f4/72/0203e94a91ddb4a9d5238434ae6c1ca10e610e8487036132ea9bf806ca2a/pillow-10.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:ecd85a8d3e79cd7158dec1c9e5808e821feea088e2f69a974db5edf84dc53141", size = 2554487 }, + { url = "https://files.pythonhosted.org/packages/bd/52/7e7e93d7a6e4290543f17dc6f7d3af4bd0b3dd9926e2e8a35ac2282bc5f4/pillow-10.4.0-cp310-cp310-win_arm64.whl", hash = "sha256:ff337c552345e95702c5fde3158acb0625111017d0e5f24bf3acdb9cc16b90d1", size = 2243219 }, + { url = "https://files.pythonhosted.org/packages/a7/62/c9449f9c3043c37f73e7487ec4ef0c03eb9c9afc91a92b977a67b3c0bbc5/pillow-10.4.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:0a9ec697746f268507404647e531e92889890a087e03681a3606d9b920fbee3c", size = 3509265 }, + { url = "https://files.pythonhosted.org/packages/f4/5f/491dafc7bbf5a3cc1845dc0430872e8096eb9e2b6f8161509d124594ec2d/pillow-10.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:dfe91cb65544a1321e631e696759491ae04a2ea11d36715eca01ce07284738be", size = 3375655 }, + { url = "https://files.pythonhosted.org/packages/73/d5/c4011a76f4207a3c151134cd22a1415741e42fa5ddecec7c0182887deb3d/pillow-10.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5dc6761a6efc781e6a1544206f22c80c3af4c8cf461206d46a1e6006e4429ff3", size = 4340304 }, + { url = "https://files.pythonhosted.org/packages/ac/10/c67e20445a707f7a610699bba4fe050583b688d8cd2d202572b257f46600/pillow-10.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e84b6cc6a4a3d76c153a6b19270b3526a5a8ed6b09501d3af891daa2a9de7d6", size = 4452804 }, + { url = "https://files.pythonhosted.org/packages/a9/83/6523837906d1da2b269dee787e31df3b0acb12e3d08f024965a3e7f64665/pillow-10.4.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:bbc527b519bd3aa9d7f429d152fea69f9ad37c95f0b02aebddff592688998abe", size = 4365126 }, + { url = "https://files.pythonhosted.org/packages/ba/e5/8c68ff608a4203085158cff5cc2a3c534ec384536d9438c405ed6370d080/pillow-10.4.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:76a911dfe51a36041f2e756b00f96ed84677cdeb75d25c767f296c1c1eda1319", size = 4533541 }, + { url = "https://files.pythonhosted.org/packages/f4/7c/01b8dbdca5bc6785573f4cee96e2358b0918b7b2c7b60d8b6f3abf87a070/pillow-10.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:59291fb29317122398786c2d44427bbd1a6d7ff54017075b22be9d21aa59bd8d", size = 4471616 }, + { url = "https://files.pythonhosted.org/packages/c8/57/2899b82394a35a0fbfd352e290945440e3b3785655a03365c0ca8279f351/pillow-10.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:416d3a5d0e8cfe4f27f574362435bc9bae57f679a7158e0096ad2beb427b8696", size = 4600802 }, + { url = "https://files.pythonhosted.org/packages/4d/d7/a44f193d4c26e58ee5d2d9db3d4854b2cfb5b5e08d360a5e03fe987c0086/pillow-10.4.0-cp311-cp311-win32.whl", hash = "sha256:7086cc1d5eebb91ad24ded9f58bec6c688e9f0ed7eb3dbbf1e4800280a896496", size = 2235213 }, + { url = "https://files.pythonhosted.org/packages/c1/d0/5866318eec2b801cdb8c82abf190c8343d8a1cd8bf5a0c17444a6f268291/pillow-10.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cbed61494057c0f83b83eb3a310f0bf774b09513307c434d4366ed64f4128a91", size = 2554498 }, + { url = "https://files.pythonhosted.org/packages/d4/c8/310ac16ac2b97e902d9eb438688de0d961660a87703ad1561fd3dfbd2aa0/pillow-10.4.0-cp311-cp311-win_arm64.whl", hash = "sha256:f5f0c3e969c8f12dd2bb7e0b15d5c468b51e5017e01e2e867335c81903046a22", size = 2243219 }, + { url = "https://files.pythonhosted.org/packages/05/cb/0353013dc30c02a8be34eb91d25e4e4cf594b59e5a55ea1128fde1e5f8ea/pillow-10.4.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:673655af3eadf4df6b5457033f086e90299fdd7a47983a13827acf7459c15d94", size = 3509350 }, + { url = "https://files.pythonhosted.org/packages/e7/cf/5c558a0f247e0bf9cec92bff9b46ae6474dd736f6d906315e60e4075f737/pillow-10.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:866b6942a92f56300012f5fbac71f2d610312ee65e22f1aa2609e491284e5597", size = 3374980 }, + { url = "https://files.pythonhosted.org/packages/84/48/6e394b86369a4eb68b8a1382c78dc092245af517385c086c5094e3b34428/pillow-10.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:29dbdc4207642ea6aad70fbde1a9338753d33fb23ed6956e706936706f52dd80", size = 4343799 }, + { url = "https://files.pythonhosted.org/packages/3b/f3/a8c6c11fa84b59b9df0cd5694492da8c039a24cd159f0f6918690105c3be/pillow-10.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf2342ac639c4cf38799a44950bbc2dfcb685f052b9e262f446482afaf4bffca", size = 4459973 }, + { url = "https://files.pythonhosted.org/packages/7d/1b/c14b4197b80150fb64453585247e6fb2e1d93761fa0fa9cf63b102fde822/pillow-10.4.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:f5b92f4d70791b4a67157321c4e8225d60b119c5cc9aee8ecf153aace4aad4ef", size = 4370054 }, + { url = "https://files.pythonhosted.org/packages/55/77/40daddf677897a923d5d33329acd52a2144d54a9644f2a5422c028c6bf2d/pillow-10.4.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:86dcb5a1eb778d8b25659d5e4341269e8590ad6b4e8b44d9f4b07f8d136c414a", size = 4539484 }, + { url = "https://files.pythonhosted.org/packages/40/54/90de3e4256b1207300fb2b1d7168dd912a2fb4b2401e439ba23c2b2cabde/pillow-10.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:780c072c2e11c9b2c7ca37f9a2ee8ba66f44367ac3e5c7832afcfe5104fd6d1b", size = 4477375 }, + { url = "https://files.pythonhosted.org/packages/13/24/1bfba52f44193860918ff7c93d03d95e3f8748ca1de3ceaf11157a14cf16/pillow-10.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:37fb69d905be665f68f28a8bba3c6d3223c8efe1edf14cc4cfa06c241f8c81d9", size = 4608773 }, + { url = "https://files.pythonhosted.org/packages/55/04/5e6de6e6120451ec0c24516c41dbaf80cce1b6451f96561235ef2429da2e/pillow-10.4.0-cp312-cp312-win32.whl", hash = "sha256:7dfecdbad5c301d7b5bde160150b4db4c659cee2b69589705b6f8a0c509d9f42", size = 2235690 }, + { url = "https://files.pythonhosted.org/packages/74/0a/d4ce3c44bca8635bd29a2eab5aa181b654a734a29b263ca8efe013beea98/pillow-10.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:1d846aea995ad352d4bdcc847535bd56e0fd88d36829d2c90be880ef1ee4668a", size = 2554951 }, + { url = "https://files.pythonhosted.org/packages/b5/ca/184349ee40f2e92439be9b3502ae6cfc43ac4b50bc4fc6b3de7957563894/pillow-10.4.0-cp312-cp312-win_arm64.whl", hash = "sha256:e553cad5179a66ba15bb18b353a19020e73a7921296a7979c4a2b7f6a5cd57f9", size = 2243427 }, + { url = "https://files.pythonhosted.org/packages/c3/00/706cebe7c2c12a6318aabe5d354836f54adff7156fd9e1bd6c89f4ba0e98/pillow-10.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8bc1a764ed8c957a2e9cacf97c8b2b053b70307cf2996aafd70e91a082e70df3", size = 3525685 }, + { url = "https://files.pythonhosted.org/packages/cf/76/f658cbfa49405e5ecbfb9ba42d07074ad9792031267e782d409fd8fe7c69/pillow-10.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6209bb41dc692ddfee4942517c19ee81b86c864b626dbfca272ec0f7cff5d9fb", size = 3374883 }, + { url = "https://files.pythonhosted.org/packages/46/2b/99c28c4379a85e65378211971c0b430d9c7234b1ec4d59b2668f6299e011/pillow-10.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bee197b30783295d2eb680b311af15a20a8b24024a19c3a26431ff83eb8d1f70", size = 4339837 }, + { url = "https://files.pythonhosted.org/packages/f1/74/b1ec314f624c0c43711fdf0d8076f82d9d802afd58f1d62c2a86878e8615/pillow-10.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1ef61f5dd14c300786318482456481463b9d6b91ebe5ef12f405afbba77ed0be", size = 4455562 }, + { url = "https://files.pythonhosted.org/packages/4a/2a/4b04157cb7b9c74372fa867096a1607e6fedad93a44deeff553ccd307868/pillow-10.4.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:297e388da6e248c98bc4a02e018966af0c5f92dfacf5a5ca22fa01cb3179bca0", size = 4366761 }, + { url = "https://files.pythonhosted.org/packages/ac/7b/8f1d815c1a6a268fe90481232c98dd0e5fa8c75e341a75f060037bd5ceae/pillow-10.4.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:e4db64794ccdf6cb83a59d73405f63adbe2a1887012e308828596100a0b2f6cc", size = 4536767 }, + { url = "https://files.pythonhosted.org/packages/e5/77/05fa64d1f45d12c22c314e7b97398ffb28ef2813a485465017b7978b3ce7/pillow-10.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:bd2880a07482090a3bcb01f4265f1936a903d70bc740bfcb1fd4e8a2ffe5cf5a", size = 4477989 }, + { url = "https://files.pythonhosted.org/packages/12/63/b0397cfc2caae05c3fb2f4ed1b4fc4fc878f0243510a7a6034ca59726494/pillow-10.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4b35b21b819ac1dbd1233317adeecd63495f6babf21b7b2512d244ff6c6ce309", size = 4610255 }, + { url = "https://files.pythonhosted.org/packages/7b/f9/cfaa5082ca9bc4a6de66ffe1c12c2d90bf09c309a5f52b27759a596900e7/pillow-10.4.0-cp313-cp313-win32.whl", hash = "sha256:551d3fd6e9dc15e4c1eb6fc4ba2b39c0c7933fa113b220057a34f4bb3268a060", size = 2235603 }, + { url = "https://files.pythonhosted.org/packages/01/6a/30ff0eef6e0c0e71e55ded56a38d4859bf9d3634a94a88743897b5f96936/pillow-10.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:030abdbe43ee02e0de642aee345efa443740aa4d828bfe8e2eb11922ea6a21ea", size = 2554972 }, + { url = "https://files.pythonhosted.org/packages/48/2c/2e0a52890f269435eee38b21c8218e102c621fe8d8df8b9dd06fabf879ba/pillow-10.4.0-cp313-cp313-win_arm64.whl", hash = "sha256:5b001114dd152cfd6b23befeb28d7aee43553e2402c9f159807bf55f33af8a8d", size = 2243375 }, + { url = "https://files.pythonhosted.org/packages/31/85/955fa5400fa8039921f630372cfe5056eed6e1b8e0430ee4507d7de48832/pillow-10.4.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:0ae24a547e8b711ccaaf99c9ae3cd975470e1a30caa80a6aaee9a2f19c05701d", size = 3509283 }, + { url = "https://files.pythonhosted.org/packages/23/9c/343827267eb28d41cd82b4180d33b10d868af9077abcec0af9793aa77d2d/pillow-10.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:298478fe4f77a4408895605f3482b6cc6222c018b2ce565c2b6b9c354ac3229b", size = 3375691 }, + { url = "https://files.pythonhosted.org/packages/60/a3/7ebbeabcd341eab722896d1a5b59a3df98c4b4d26cf4b0385f8aa94296f7/pillow-10.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:134ace6dc392116566980ee7436477d844520a26a4b1bd4053f6f47d096997fd", size = 4328295 }, + { url = "https://files.pythonhosted.org/packages/32/3f/c02268d0c6fb6b3958bdda673c17b315c821d97df29ae6969f20fb49388a/pillow-10.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:930044bb7679ab003b14023138b50181899da3f25de50e9dbee23b61b4de2126", size = 4440810 }, + { url = "https://files.pythonhosted.org/packages/67/5d/1c93c8cc35f2fdd3d6cc7e4ad72d203902859a2867de6ad957d9b708eb8d/pillow-10.4.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:c76e5786951e72ed3686e122d14c5d7012f16c8303a674d18cdcd6d89557fc5b", size = 4352283 }, + { url = "https://files.pythonhosted.org/packages/bc/a8/8655557c9c7202b8abbd001f61ff36711cefaf750debcaa1c24d154ef602/pillow-10.4.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:b2724fdb354a868ddf9a880cb84d102da914e99119211ef7ecbdc613b8c96b3c", size = 4521800 }, + { url = "https://files.pythonhosted.org/packages/58/78/6f95797af64d137124f68af1bdaa13b5332da282b86031f6fa70cf368261/pillow-10.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:dbc6ae66518ab3c5847659e9988c3b60dc94ffb48ef9168656e0019a93dbf8a1", size = 4459177 }, + { url = "https://files.pythonhosted.org/packages/8a/6d/2b3ce34f1c4266d79a78c9a51d1289a33c3c02833fe294ef0dcbb9cba4ed/pillow-10.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:06b2f7898047ae93fad74467ec3d28fe84f7831370e3c258afa533f81ef7f3df", size = 4589079 }, + { url = "https://files.pythonhosted.org/packages/e3/e0/456258c74da1ff5bf8ef1eab06a95ca994d8b9ed44c01d45c3f8cbd1db7e/pillow-10.4.0-cp39-cp39-win32.whl", hash = "sha256:7970285ab628a3779aecc35823296a7869f889b8329c16ad5a71e4901a3dc4ef", size = 2235247 }, + { url = "https://files.pythonhosted.org/packages/37/f8/bef952bdb32aa53741f58bf21798642209e994edc3f6598f337f23d5400a/pillow-10.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:961a7293b2457b405967af9c77dcaa43cc1a8cd50d23c532e62d48ab6cdd56f5", size = 2554479 }, + { url = "https://files.pythonhosted.org/packages/bb/8e/805201619cad6651eef5fc1fdef913804baf00053461522fabbc5588ea12/pillow-10.4.0-cp39-cp39-win_arm64.whl", hash = "sha256:32cda9e3d601a52baccb2856b8ea1fc213c90b340c542dcef77140dfa3278a9e", size = 2243226 }, + { url = "https://files.pythonhosted.org/packages/38/30/095d4f55f3a053392f75e2eae45eba3228452783bab3d9a920b951ac495c/pillow-10.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:5b4815f2e65b30f5fbae9dfffa8636d992d49705723fe86a3661806e069352d4", size = 3493889 }, + { url = "https://files.pythonhosted.org/packages/f3/e8/4ff79788803a5fcd5dc35efdc9386af153569853767bff74540725b45863/pillow-10.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:8f0aef4ef59694b12cadee839e2ba6afeab89c0f39a3adc02ed51d109117b8da", size = 3346160 }, + { url = "https://files.pythonhosted.org/packages/d7/ac/4184edd511b14f760c73f5bb8a5d6fd85c591c8aff7c2229677a355c4179/pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f4727572e2918acaa9077c919cbbeb73bd2b3ebcfe033b72f858fc9fbef0026", size = 3435020 }, + { url = "https://files.pythonhosted.org/packages/da/21/1749cd09160149c0a246a81d646e05f35041619ce76f6493d6a96e8d1103/pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ff25afb18123cea58a591ea0244b92eb1e61a1fd497bf6d6384f09bc3262ec3e", size = 3490539 }, + { url = "https://files.pythonhosted.org/packages/b6/f5/f71fe1888b96083b3f6dfa0709101f61fc9e972c0c8d04e9d93ccef2a045/pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:dc3e2db6ba09ffd7d02ae9141cfa0ae23393ee7687248d46a7507b75d610f4f5", size = 3476125 }, + { url = "https://files.pythonhosted.org/packages/96/b9/c0362c54290a31866c3526848583a2f45a535aa9d725fd31e25d318c805f/pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:02a2be69f9c9b8c1e97cf2713e789d4e398c751ecfd9967c18d0ce304efbf885", size = 3579373 }, + { url = "https://files.pythonhosted.org/packages/52/3b/ce7a01026a7cf46e5452afa86f97a5e88ca97f562cafa76570178ab56d8d/pillow-10.4.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:0755ffd4a0c6f267cccbae2e9903d95477ca2f77c4fcf3a3a09570001856c8a5", size = 2554661 }, + { url = "https://files.pythonhosted.org/packages/e1/1f/5a9fcd6ced51633c22481417e11b1b47d723f64fb536dfd67c015eb7f0ab/pillow-10.4.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:a02364621fe369e06200d4a16558e056fe2805d3468350df3aef21e00d26214b", size = 3493850 }, + { url = "https://files.pythonhosted.org/packages/cb/e6/3ea4755ed5320cb62aa6be2f6de47b058c6550f752dd050e86f694c59798/pillow-10.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:1b5dea9831a90e9d0721ec417a80d4cbd7022093ac38a568db2dd78363b00908", size = 3346118 }, + { url = "https://files.pythonhosted.org/packages/0a/22/492f9f61e4648422b6ca39268ec8139277a5b34648d28f400faac14e0f48/pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9b885f89040bb8c4a1573566bbb2f44f5c505ef6e74cec7ab9068c900047f04b", size = 3434958 }, + { url = "https://files.pythonhosted.org/packages/f9/19/559a48ad4045704bb0547965b9a9345f5cd461347d977a56d178db28819e/pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:87dd88ded2e6d74d31e1e0a99a726a6765cda32d00ba72dc37f0651f306daaa8", size = 3490340 }, + { url = "https://files.pythonhosted.org/packages/d9/de/cebaca6fb79905b3a1aa0281d238769df3fb2ede34fd7c0caa286575915a/pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:2db98790afc70118bd0255c2eeb465e9767ecf1f3c25f9a1abb8ffc8cfd1fe0a", size = 3476048 }, + { url = "https://files.pythonhosted.org/packages/71/f0/86d5b2f04693b0116a01d75302b0a307800a90d6c351a8aa4f8ae76cd499/pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:f7baece4ce06bade126fb84b8af1c33439a76d8a6fd818970215e0560ca28c27", size = 3579366 }, + { url = "https://files.pythonhosted.org/packages/37/ae/2dbfc38cc4fd14aceea14bc440d5151b21f64c4c3ba3f6f4191610b7ee5d/pillow-10.4.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:cfdd747216947628af7b259d274771d84db2268ca062dd5faf373639d00113a3", size = 2554652 }, +] + +[[package]] +name = "plac" +version = "1.4.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9b/79/1edb4c836c69306d0ecb0865f46d62ea7e28ef16b3f95bb394e4f2a46330/plac-1.4.3.tar.gz", hash = "sha256:d4cb3387b2113a28aebd509433d0264a4e5d9bb7c1a86db4fbd0a8f11af74eb3", size = 38984 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8f/af/4c61d2ac0d589719f548f5a1ba919738e44bac7b0c723ce147de5556d233/plac-1.4.3-py2.py3-none-any.whl", hash = "sha256:8a84fde8f950c9de6588a2d53c9deeac3ba1ddb456d887a33228460cf6549750", size = 22458 }, +] + +[[package]] +name = "platformdirs" +version = "4.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f5/52/0763d1d976d5c262df53ddda8d8d4719eedf9594d046f117c25a27261a19/platformdirs-4.2.2.tar.gz", hash = "sha256:38b7b51f512eed9e84a22788b4bce1de17c0adb134d6becb09836e37d8654cd3", size = 20916 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/68/13/2aa1f0e1364feb2c9ef45302f387ac0bd81484e9c9a4c5688a322fbdfd08/platformdirs-4.2.2-py3-none-any.whl", hash = "sha256:2d7a1657e36a80ea911db832a8a6ece5ee53d8de21edd5cc5879af6530b1bfee", size = 18146 }, +] + +[[package]] +name = "plotly" +version = "5.23.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tenacity", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/db/9e/31b2f0b8f2357cd5f3e992c76c3e4e85a5cbbad8b8c5f23d0684e3f4c608/plotly-5.23.0.tar.gz", hash = "sha256:89e57d003a116303a34de6700862391367dd564222ab71f8531df70279fc0193", size = 8553751 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b8/f0/bcf716a8e070370d6598c92fcd328bd9ef8a9bda2c5562da5a835c66700b/plotly-5.23.0-py3-none-any.whl", hash = "sha256:76cbe78f75eddc10c56f5a4ee3e7ccaade7c0a57465546f02098c0caed6c2d1a", size = 17326571 }, +] + +[[package]] +name = "pluggy" +version = "1.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/96/2d/02d4312c973c6050a18b314a5ad0b3210edb65a906f868e31c111dede4a6/pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1", size = 67955 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/5f/e351af9a41f866ac3f1fac4ca0613908d9a41741cfcf2228f4ad853b697d/pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669", size = 20556 }, +] + +[[package]] +name = "pooch" +version = "1.8.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "platformdirs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c6/77/b3d3e00c696c16cf99af81ef7b1f5fe73bd2a307abca41bd7605429fe6e5/pooch-1.8.2.tar.gz", hash = "sha256:76561f0de68a01da4df6af38e9955c4c9d1a5c90da73f7e40276a5728ec83d10", size = 59353 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a8/87/77cc11c7a9ea9fd05503def69e3d18605852cd0d4b0d3b8f15bbeb3ef1d1/pooch-1.8.2-py3-none-any.whl", hash = "sha256:3529a57096f7198778a5ceefd5ac3ef0e4d06a6ddaf9fc2d609b806f25302c47", size = 64574 }, +] + +[[package]] +name = "portalocker" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pywin32", marker = "platform_system == 'Windows'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/df/48/62cf97ff7d2233e7db29dfb83f1584e26289e88af8af39de1a76629ac487/portalocker-2.0.0.tar.gz", hash = "sha256:14487eed81aa914127edf0284e29c7ca8842c05bb33d96dc7e4bdb47282d26e4", size = 15204 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/89/a6/3814b7107e0788040870e8825eebf214d72166adf656ba7d4bf14759a06a/portalocker-2.0.0-py2.py3-none-any.whl", hash = "sha256:5d7bc386d785dfc87e763a29d7d5864556c62653379e3ff484c71e49425d1898", size = 11249 }, +] + +[[package]] +name = "pox" +version = "0.3.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/87/8c/6e1e0e919b64d1a3fe11f461a34e5d0c570c00051cde44828514917f9651/pox-0.3.4.tar.gz", hash = "sha256:16e6eca84f1bec3828210b06b052adf04cf2ab20c22fd6fbef5f78320c9a6fed", size = 119609 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e1/d7/9e73c32f73da71e8224b4cb861b5db50ebdebcdff14d3e3fb47a63c578b2/pox-0.3.4-py3-none-any.whl", hash = "sha256:651b8ae8a7b341b7bfd267f67f63106daeb9805f1ac11f323d5280d2da93fdb6", size = 29473 }, +] + +[[package]] +name = "poyo" +version = "0.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7d/56/01b496f36bbd496aed9351dd1b06cf57fd2f5028480a87adbcf7a4ff1f65/poyo-0.5.0.tar.gz", hash = "sha256:e26956aa780c45f011ca9886f044590e2d8fd8b61db7b1c1cf4e0869f48ed4dd", size = 15276 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/42/50/0b0820601bde2eda403f47b9a4a1f270098ed0dd4c00c443d883164bdccc/poyo-0.5.0-py2.py3-none-any.whl", hash = "sha256:3e2ca8e33fdc3c411cd101ca395668395dd5dc7ac775b8e809e3def9f9fe041a", size = 10183 }, +] + +[[package]] +name = "ppft" +version = "1.7.6.8" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f8/c1/6aa25972c1910cf120a6c82bf2fc67edfdd1375c26f75048aae769caccc1/ppft-1.7.6.8.tar.gz", hash = "sha256:76a429a7d7b74c4d743f6dba8351e58d62b6432ed65df9fe204790160dab996d", size = 136481 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ff/fa/5160c7d2fb1d4f2b83cba7a40f0eb4b015b78f6973b7ab6b2e73c233cfdc/ppft-1.7.6.8-py3-none-any.whl", hash = "sha256:de2dd4b1b080923dd9627fbdea52649fd741c752fce4f3cf37e26f785df23d9b", size = 56755 }, +] + +[[package]] +name = "protobuf" +version = "4.25.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e8/ab/cb61a4b87b2e7e6c312dce33602bd5884797fd054e0e53205f1c27cf0f66/protobuf-4.25.4.tar.gz", hash = "sha256:0dc4a62cc4052a036ee2204d26fe4d835c62827c855c8a03f29fe6da146b380d", size = 380283 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c8/43/27b48d9040763b78177d3083e16c70dba6e3c3ee2af64b659f6332c2b06e/protobuf-4.25.4-cp310-abi3-win32.whl", hash = "sha256:db9fd45183e1a67722cafa5c1da3e85c6492a5383f127c86c4c4aa4845867dc4", size = 392409 }, + { url = "https://files.pythonhosted.org/packages/0c/d4/589d673ada9c4c62d5f155218d7ff7ac796efb9c6af95b0bd29d438ae16e/protobuf-4.25.4-cp310-abi3-win_amd64.whl", hash = "sha256:ba3d8504116a921af46499471c63a85260c1a5fc23333154a427a310e015d26d", size = 413398 }, + { url = "https://files.pythonhosted.org/packages/34/ca/bf85ffe3dd16f1f2aaa6c006da8118800209af3da160ae4d4f47500eabd9/protobuf-4.25.4-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:eecd41bfc0e4b1bd3fa7909ed93dd14dd5567b98c941d6c1ad08fdcab3d6884b", size = 394160 }, + { url = "https://files.pythonhosted.org/packages/68/1d/e8961af9a8e534d66672318d6b70ea8e3391a6b13e16a29b039e4a99c214/protobuf-4.25.4-cp37-abi3-manylinux2014_aarch64.whl", hash = "sha256:4c8a70fdcb995dcf6c8966cfa3a29101916f7225e9afe3ced4395359955d3835", size = 293700 }, + { url = "https://files.pythonhosted.org/packages/ca/6c/cc7ab2fb3a4a7f07f211d8a7bbb76bba633eb09b148296dbd4281e217f95/protobuf-4.25.4-cp37-abi3-manylinux2014_x86_64.whl", hash = "sha256:3319e073562e2515c6ddc643eb92ce20809f5d8f10fead3332f71c63be6a7040", size = 294612 }, + { url = "https://files.pythonhosted.org/packages/a4/b5/f7e2460dec8347d67e6108bef6ad3291c76e38c898a1087e2c836c02951e/protobuf-4.25.4-cp39-cp39-win32.whl", hash = "sha256:90bf6fd378494eb698805bbbe7afe6c5d12c8e17fca817a646cd6a1818c696ca", size = 392490 }, + { url = "https://files.pythonhosted.org/packages/c7/0b/15bd1a224e5e5744a0dcccf11bcd5dc1405877be38e477b1359d7c2c3737/protobuf-4.25.4-cp39-cp39-win_amd64.whl", hash = "sha256:ac79a48d6b99dfed2729ccccee547b34a1d3d63289c71cef056653a846a2240f", size = 413357 }, + { url = "https://files.pythonhosted.org/packages/b5/95/0ba7f66934a0a798006f06fc3d74816da2b7a2bcfd9b98c53d26f684c89e/protobuf-4.25.4-py3-none-any.whl", hash = "sha256:bfbebc1c8e4793cfd58589acfb8a1026be0003e852b9da7db5a4285bde996978", size = 156464 }, +] + +[[package]] +name = "psutil" +version = "6.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/18/c7/8c6872f7372eb6a6b2e4708b88419fb46b857f7a2e1892966b851cc79fc9/psutil-6.0.0.tar.gz", hash = "sha256:8faae4f310b6d969fa26ca0545338b21f73c6b15db7c4a8d934a5482faa818f2", size = 508067 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c5/66/78c9c3020f573c58101dc43a44f6855d01bbbd747e24da2f0c4491200ea3/psutil-6.0.0-cp27-none-win32.whl", hash = "sha256:02b69001f44cc73c1c5279d02b30a817e339ceb258ad75997325e0e6169d8b35", size = 249766 }, + { url = "https://files.pythonhosted.org/packages/e1/3f/2403aa9558bea4d3854b0e5e567bc3dd8e9fbc1fc4453c0aa9aafeb75467/psutil-6.0.0-cp27-none-win_amd64.whl", hash = "sha256:21f1fb635deccd510f69f485b87433460a603919b45e2a324ad65b0cc74f8fb1", size = 253024 }, + { url = "https://files.pythonhosted.org/packages/0b/37/f8da2fbd29690b3557cca414c1949f92162981920699cd62095a984983bf/psutil-6.0.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:c588a7e9b1173b6e866756dde596fd4cad94f9399daf99ad8c3258b3cb2b47a0", size = 250961 }, + { url = "https://files.pythonhosted.org/packages/35/56/72f86175e81c656a01c4401cd3b1c923f891b31fbcebe98985894176d7c9/psutil-6.0.0-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ed2440ada7ef7d0d608f20ad89a04ec47d2d3ab7190896cd62ca5fc4fe08bf0", size = 287478 }, + { url = "https://files.pythonhosted.org/packages/19/74/f59e7e0d392bc1070e9a70e2f9190d652487ac115bb16e2eff6b22ad1d24/psutil-6.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5fd9a97c8e94059b0ef54a7d4baf13b405011176c3b6ff257c247cae0d560ecd", size = 290455 }, + { url = "https://files.pythonhosted.org/packages/cd/5f/60038e277ff0a9cc8f0c9ea3d0c5eb6ee1d2470ea3f9389d776432888e47/psutil-6.0.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e2e8d0054fc88153ca0544f5c4d554d42e33df2e009c4ff42284ac9ebdef4132", size = 292046 }, + { url = "https://files.pythonhosted.org/packages/8b/20/2ff69ad9c35c3df1858ac4e094f20bd2374d33c8643cf41da8fd7cdcb78b/psutil-6.0.0-cp37-abi3-win32.whl", hash = "sha256:a495580d6bae27291324fe60cea0b5a7c23fa36a7cd35035a16d93bdcf076b9d", size = 253560 }, + { url = "https://files.pythonhosted.org/packages/73/44/561092313ae925f3acfaace6f9ddc4f6a9c748704317bad9c8c8f8a36a79/psutil-6.0.0-cp37-abi3-win_amd64.whl", hash = "sha256:33ea5e1c975250a720b3a6609c490db40dae5d83a4eb315170c4fe0d8b1f34b3", size = 257399 }, + { url = "https://files.pythonhosted.org/packages/7c/06/63872a64c312a24fb9b4af123ee7007a306617da63ff13bcc1432386ead7/psutil-6.0.0-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:ffe7fc9b6b36beadc8c322f84e1caff51e8703b88eee1da46d1e3a6ae11b4fd0", size = 251988 }, +] + +[[package]] +name = "py-cpuinfo" +version = "9.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/37/a8/d832f7293ebb21690860d2e01d8115e5ff6f2ae8bbdc953f0eb0fa4bd2c7/py-cpuinfo-9.0.0.tar.gz", hash = "sha256:3cdbbf3fac90dc6f118bfd64384f309edeadd902d7c8fb17f02ffa1fc3f49690", size = 104716 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e0/a9/023730ba63db1e494a271cb018dcd361bd2c917ba7004c3e49d5daf795a2/py_cpuinfo-9.0.0-py3-none-any.whl", hash = "sha256:859625bc251f64e21f077d099d4162689c762b5d6a4c3c97553d56241c9674d5", size = 22335 }, +] + +[[package]] +name = "py3nvml" +version = "0.2.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "xmltodict", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/10/7e/fa282e456b87570d663ce97946b4dcb16850d4495ce4bd625a1a10c8ed56/py3nvml-0.2.7.tar.gz", hash = "sha256:09ee1d04598a6e664e24465f804ce3bfe119a6fdb5362df1c168f8aa929fbd73", size = 58224 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/03/3a/ea6f2419bd20f97f65ee55a9910c722313fe99cacc0bf77afb4b74b446ff/py3nvml-0.2.7-py3-none-any.whl", hash = "sha256:30101170d1f51419c8d21fd8ca6cdc333a552b4f8a945c2fc7d107d77e4220dd", size = 55503 }, +] + +[[package]] +name = "pyarrow" +version = "17.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/27/4e/ea6d43f324169f8aec0e57569443a38bab4b398d09769ca64f7b4d467de3/pyarrow-17.0.0.tar.gz", hash = "sha256:4beca9521ed2c0921c1023e68d097d0299b62c362639ea315572a58f3f50fd28", size = 1112479 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/39/5d/78d4b040bc5ff2fc6c3d03e80fca396b742f6c125b8af06bcf7427f931bc/pyarrow-17.0.0-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:a5c8b238d47e48812ee577ee20c9a2779e6a5904f1708ae240f53ecbee7c9f07", size = 28994846 }, + { url = "https://files.pythonhosted.org/packages/3b/73/8ed168db7642e91180330e4ea9f3ff8bab404678f00d32d7df0871a4933b/pyarrow-17.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:db023dc4c6cae1015de9e198d41250688383c3f9af8f565370ab2b4cb5f62655", size = 27165908 }, + { url = "https://files.pythonhosted.org/packages/81/36/e78c24be99242063f6d0590ef68c857ea07bdea470242c361e9a15bd57a4/pyarrow-17.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da1e060b3876faa11cee287839f9cc7cdc00649f475714b8680a05fd9071d545", size = 39264209 }, + { url = "https://files.pythonhosted.org/packages/18/4c/3db637d7578f683b0a8fb8999b436bdbedd6e3517bd4f90c70853cf3ad20/pyarrow-17.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75c06d4624c0ad6674364bb46ef38c3132768139ddec1c56582dbac54f2663e2", size = 39862883 }, + { url = "https://files.pythonhosted.org/packages/81/3c/0580626896c842614a523e66b351181ed5bb14e5dfc263cd68cea2c46d90/pyarrow-17.0.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:fa3c246cc58cb5a4a5cb407a18f193354ea47dd0648194e6265bd24177982fe8", size = 38723009 }, + { url = "https://files.pythonhosted.org/packages/ee/fb/c1b47f0ada36d856a352da261a44d7344d8f22e2f7db3945f8c3b81be5dd/pyarrow-17.0.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:f7ae2de664e0b158d1607699a16a488de3d008ba99b3a7aa5de1cbc13574d047", size = 39855626 }, + { url = "https://files.pythonhosted.org/packages/19/09/b0a02908180a25d57312ab5919069c39fddf30602568980419f4b02393f6/pyarrow-17.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:5984f416552eea15fd9cee03da53542bf4cddaef5afecefb9aa8d1010c335087", size = 25147242 }, + { url = "https://files.pythonhosted.org/packages/f9/46/ce89f87c2936f5bb9d879473b9663ce7a4b1f4359acc2f0eb39865eaa1af/pyarrow-17.0.0-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:1c8856e2ef09eb87ecf937104aacfa0708f22dfeb039c363ec99735190ffb977", size = 29028748 }, + { url = "https://files.pythonhosted.org/packages/8d/8e/ce2e9b2146de422f6638333c01903140e9ada244a2a477918a368306c64c/pyarrow-17.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2e19f569567efcbbd42084e87f948778eb371d308e137a0f97afe19bb860ccb3", size = 27190965 }, + { url = "https://files.pythonhosted.org/packages/3b/c8/5675719570eb1acd809481c6d64e2136ffb340bc387f4ca62dce79516cea/pyarrow-17.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b244dc8e08a23b3e352899a006a26ae7b4d0da7bb636872fa8f5884e70acf15", size = 39269081 }, + { url = "https://files.pythonhosted.org/packages/5e/78/3931194f16ab681ebb87ad252e7b8d2c8b23dad49706cadc865dff4a1dd3/pyarrow-17.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b72e87fe3e1db343995562f7fff8aee354b55ee83d13afba65400c178ab2597", size = 39864921 }, + { url = "https://files.pythonhosted.org/packages/d8/81/69b6606093363f55a2a574c018901c40952d4e902e670656d18213c71ad7/pyarrow-17.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:dc5c31c37409dfbc5d014047817cb4ccd8c1ea25d19576acf1a001fe07f5b420", size = 38740798 }, + { url = "https://files.pythonhosted.org/packages/4c/21/9ca93b84b92ef927814cb7ba37f0774a484c849d58f0b692b16af8eebcfb/pyarrow-17.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:e3343cb1e88bc2ea605986d4b94948716edc7a8d14afd4e2c097232f729758b4", size = 39871877 }, + { url = "https://files.pythonhosted.org/packages/30/d1/63a7c248432c71c7d3ee803e706590a0b81ce1a8d2b2ae49677774b813bb/pyarrow-17.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:a27532c38f3de9eb3e90ecab63dfda948a8ca859a66e3a47f5f42d1e403c4d03", size = 25151089 }, + { url = "https://files.pythonhosted.org/packages/d4/62/ce6ac1275a432b4a27c55fe96c58147f111d8ba1ad800a112d31859fae2f/pyarrow-17.0.0-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:9b8a823cea605221e61f34859dcc03207e52e409ccf6354634143e23af7c8d22", size = 29019418 }, + { url = "https://files.pythonhosted.org/packages/8e/0a/dbd0c134e7a0c30bea439675cc120012337202e5fac7163ba839aa3691d2/pyarrow-17.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f1e70de6cb5790a50b01d2b686d54aaf73da01266850b05e3af2a1bc89e16053", size = 27152197 }, + { url = "https://files.pythonhosted.org/packages/cb/05/3f4a16498349db79090767620d6dc23c1ec0c658a668d61d76b87706c65d/pyarrow-17.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0071ce35788c6f9077ff9ecba4858108eebe2ea5a3f7cf2cf55ebc1dbc6ee24a", size = 39263026 }, + { url = "https://files.pythonhosted.org/packages/c2/0c/ea2107236740be8fa0e0d4a293a095c9f43546a2465bb7df34eee9126b09/pyarrow-17.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:757074882f844411fcca735e39aae74248a1531367a7c80799b4266390ae51cc", size = 39880798 }, + { url = "https://files.pythonhosted.org/packages/f6/b0/b9164a8bc495083c10c281cc65064553ec87b7537d6f742a89d5953a2a3e/pyarrow-17.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:9ba11c4f16976e89146781a83833df7f82077cdab7dc6232c897789343f7891a", size = 38715172 }, + { url = "https://files.pythonhosted.org/packages/f1/c4/9625418a1413005e486c006e56675334929fad864347c5ae7c1b2e7fe639/pyarrow-17.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:b0c6ac301093b42d34410b187bba560b17c0330f64907bfa4f7f7f2444b0cf9b", size = 39874508 }, + { url = "https://files.pythonhosted.org/packages/ae/49/baafe2a964f663413be3bd1cf5c45ed98c5e42e804e2328e18f4570027c1/pyarrow-17.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:392bc9feabc647338e6c89267635e111d71edad5fcffba204425a7c8d13610d7", size = 25099235 }, + { url = "https://files.pythonhosted.org/packages/43/e0/a898096d35be240aa61fb2d54db58b86d664b10e1e51256f9300f47565e8/pyarrow-17.0.0-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:13d7a460b412f31e4c0efa1148e1d29bdf18ad1411eb6757d38f8fbdcc8645fb", size = 29007881 }, + { url = "https://files.pythonhosted.org/packages/59/22/f7d14907ed0697b5dd488d393129f2738629fa5bcba863e00931b7975946/pyarrow-17.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9b564a51fbccfab5a04a80453e5ac6c9954a9c5ef2890d1bcf63741909c3f8df", size = 27178117 }, + { url = "https://files.pythonhosted.org/packages/bf/ee/661211feac0ed48467b1d5c57298c91403809ec3ab78b1d175e1d6ad03cf/pyarrow-17.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:32503827abbc5aadedfa235f5ece8c4f8f8b0a3cf01066bc8d29de7539532687", size = 39273896 }, + { url = "https://files.pythonhosted.org/packages/af/61/bcd9b58e38ead6ad42b9ed00da33a3f862bc1d445e3d3164799c25550ac2/pyarrow-17.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a155acc7f154b9ffcc85497509bcd0d43efb80d6f733b0dc3bb14e281f131c8b", size = 39875438 }, + { url = "https://files.pythonhosted.org/packages/75/63/29d1bfcc57af73cde3fc3baccab2f37548de512dbe0ab294b033cd203516/pyarrow-17.0.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:dec8d129254d0188a49f8a1fc99e0560dc1b85f60af729f47de4046015f9b0a5", size = 38735092 }, + { url = "https://files.pythonhosted.org/packages/39/f4/90258b4de753df7cc61cefb0312f8abcf226672e96cc64996e66afce817a/pyarrow-17.0.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:a48ddf5c3c6a6c505904545c25a4ae13646ae1f8ba703c4df4a1bfe4f4006bda", size = 39867610 }, + { url = "https://files.pythonhosted.org/packages/e7/f6/b75d4816c32f1618ed31a005ee635dd1d91d8164495d94f2ea092f594661/pyarrow-17.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:42bf93249a083aca230ba7e2786c5f673507fa97bbd9725a1e2754715151a204", size = 25148611 }, +] + +[[package]] +name = "pyarrow-hotfix" +version = "0.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/70/0a/71da7b0db0c7078d4cf34ecf0c70ded5ed29decc06612097474e0114f4cc/pyarrow_hotfix-0.6.tar.gz", hash = "sha256:79d3e030f7ff890d408a100ac16d6f00b14d44a502d7897cd9fc3e3a534e9945", size = 9754 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e4/f4/9ec2222f5f5f8ea04f66f184caafd991a39c8782e31f5b0266f101cb68ca/pyarrow_hotfix-0.6-py3-none-any.whl", hash = "sha256:dcc9ae2d220dff0083be6a9aa8e0cdee5182ad358d4931fce825c545e5c89178", size = 7888 }, +] + +[[package]] +name = "pyasn1" +version = "0.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4a/a3/d2157f333900747f20984553aca98008b6dc843eb62f3a36030140ccec0d/pyasn1-0.6.0.tar.gz", hash = "sha256:3a35ab2c4b5ef98e17dfdec8ab074046fbda76e281c5a706ccd82328cfc8f64c", size = 148088 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/23/7e/5f50d07d5e70a2addbccd90ac2950f81d1edd0783630651d9268d7f1db49/pyasn1-0.6.0-py2.py3-none-any.whl", hash = "sha256:cca4bb0f2df5504f02f6f8a775b6e416ff9b0b3b16f7ee80b5a3153d9b804473", size = 85313 }, +] + +[[package]] +name = "pyasn1-modules" +version = "0.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyasn1", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f7/00/e7bd1dec10667e3f2be602686537969a7ac92b0a7c5165be2e5875dc3971/pyasn1_modules-0.4.0.tar.gz", hash = "sha256:831dbcea1b177b28c9baddf4c6d1013c24c3accd14a1873fffaa6a2e905f17b6", size = 307859 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/13/68/8906226b15ef38e71dc926c321d2fe99de8048e9098b5dfd38343011c886/pyasn1_modules-0.4.0-py3-none-any.whl", hash = "sha256:be04f15b66c206eed667e0bb5ab27e2b1855ea54a842e5037738099e8ca4ae0b", size = 181220 }, +] + +[[package]] +name = "pycparser" +version = "2.22" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1d/b2/31537cf4b1ca988837256c910a668b553fceb8f069bedc4b1c826024b52c/pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6", size = 172736 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc", size = 117552 }, +] + +[[package]] +name = "pyctcdecode" +version = "0.5.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "hypothesis", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pygtrie", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/61/96/7dec2cb5414c388b94044f25d701ed9d08e30ba2509a4e2cf6451cdd25ed/pyctcdecode-0.5.0.tar.gz", hash = "sha256:f3bcb313e43ca16a54938b3e77b0b375328653bba932668243db745fde513a2c", size = 68451 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a5/8a/93e2118411ae5e861d4f4ce65578c62e85d0f1d9cb389bd63bd57130604e/pyctcdecode-0.5.0-py2.py3-none-any.whl", hash = "sha256:5b4282872ddc8e30fe7ac45112f4ab6134ac67fc03df0bbecf48667d032a0914", size = 39166 }, +] + +[[package]] +name = "pydantic" +version = "2.8.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "annotated-types", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pydantic-core", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/8c/99/d0a5dca411e0a017762258013ba9905cd6e7baa9a3fd1fe8b6529472902e/pydantic-2.8.2.tar.gz", hash = "sha256:6f62c13d067b0755ad1c21a34bdd06c0c12625a22b0fc09c6b149816604f7c2a", size = 739834 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1f/fa/b7f815b8c9ad021c07f88875b601222ef5e70619391ade4a49234d12d278/pydantic-2.8.2-py3-none-any.whl", hash = "sha256:73ee9fddd406dc318b885c7a2eab8a6472b68b8fb5ba8150949fc3db939f23c8", size = 423875 }, +] + +[[package]] +name = "pydantic-core" +version = "2.20.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/12/e3/0d5ad91211dba310f7ded335f4dad871172b9cc9ce204f5a56d76ccd6247/pydantic_core-2.20.1.tar.gz", hash = "sha256:26ca695eeee5f9f1aeeb211ffc12f10bcb6f71e2989988fda61dabd65db878d4", size = 388371 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6b/9d/f30f080f745682e762512f3eef1f6e392c7d74a102e6e96de8a013a5db84/pydantic_core-2.20.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:3acae97ffd19bf091c72df4d726d552c473f3576409b2a7ca36b2f535ffff4a3", size = 1837257 }, + { url = "https://files.pythonhosted.org/packages/f2/89/77e7aebdd4a235497ac1e07f0a99e9f40e47f6e0f6783fe30500df08fc42/pydantic_core-2.20.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:41f4c96227a67a013e7de5ff8f20fb496ce573893b7f4f2707d065907bffdbd6", size = 1776715 }, + { url = "https://files.pythonhosted.org/packages/18/50/5a4e9120b395108c2a0441a425356c0d26a655d7c617288bec1c28b854ac/pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5f239eb799a2081495ea659d8d4a43a8f42cd1fe9ff2e7e436295c38a10c286a", size = 1789023 }, + { url = "https://files.pythonhosted.org/packages/c7/e5/f19e13ba86b968d024b56aa53f40b24828652ac026e5addd0ae49eeada02/pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:53e431da3fc53360db73eedf6f7124d1076e1b4ee4276b36fb25514544ceb4a3", size = 1775598 }, + { url = "https://files.pythonhosted.org/packages/c9/c7/f3c29bed28bd022c783baba5bf9946c4f694cb837a687e62f453c81eb5c6/pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f1f62b2413c3a0e846c3b838b2ecd6c7a19ec6793b2a522745b0869e37ab5bc1", size = 1977691 }, + { url = "https://files.pythonhosted.org/packages/41/3e/f62c2a05c554fff34570f6788617e9670c83ed7bc07d62a55cccd1bc0be6/pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5d41e6daee2813ecceea8eda38062d69e280b39df793f5a942fa515b8ed67953", size = 2693214 }, + { url = "https://files.pythonhosted.org/packages/ae/49/8a6fe79d35e2f3bea566d8ea0e4e6f436d4f749d7838c8e8c4c5148ae706/pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3d482efec8b7dc6bfaedc0f166b2ce349df0011f5d2f1f25537ced4cfc34fd98", size = 2061047 }, + { url = "https://files.pythonhosted.org/packages/51/c6/585355c7c8561e11197dbf6333c57dd32f9f62165d48589b57ced2373d97/pydantic_core-2.20.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e93e1a4b4b33daed65d781a57a522ff153dcf748dee70b40c7258c5861e1768a", size = 1895106 }, + { url = "https://files.pythonhosted.org/packages/ce/23/829f6b87de0775919e82f8addef8b487ace1c77bb4cb754b217f7b1301b6/pydantic_core-2.20.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e7c4ea22b6739b162c9ecaaa41d718dfad48a244909fe7ef4b54c0b530effc5a", size = 1968506 }, + { url = "https://files.pythonhosted.org/packages/ca/2f/f8ca8f0c40b3ee0a4d8730a51851adb14c5eda986ec09f8d754b2fba784e/pydantic_core-2.20.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4f2790949cf385d985a31984907fecb3896999329103df4e4983a4a41e13e840", size = 2110217 }, + { url = "https://files.pythonhosted.org/packages/bb/a0/1876656c7b17eb69cc683452cce6bb890dd722222a71b3de57ddb512f561/pydantic_core-2.20.1-cp310-none-win32.whl", hash = "sha256:5e999ba8dd90e93d57410c5e67ebb67ffcaadcea0ad973240fdfd3a135506250", size = 1709669 }, + { url = "https://files.pythonhosted.org/packages/be/4a/576524eefa9b301c088c4818dc50ff1c51a88fe29efd87ab75748ae15fd7/pydantic_core-2.20.1-cp310-none-win_amd64.whl", hash = "sha256:512ecfbefef6dac7bc5eaaf46177b2de58cdf7acac8793fe033b24ece0b9566c", size = 1902386 }, + { url = "https://files.pythonhosted.org/packages/61/db/f6a724db226d990a329910727cfac43539ff6969edc217286dd05cda3ef6/pydantic_core-2.20.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:d2a8fa9d6d6f891f3deec72f5cc668e6f66b188ab14bb1ab52422fe8e644f312", size = 1834507 }, + { url = "https://files.pythonhosted.org/packages/9b/83/6f2bfe75209d557ae1c3550c1252684fc1827b8b12fbed84c3b4439e135d/pydantic_core-2.20.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:175873691124f3d0da55aeea1d90660a6ea7a3cfea137c38afa0a5ffabe37b88", size = 1773527 }, + { url = "https://files.pythonhosted.org/packages/93/ef/513ea76d7ca81f2354bb9c8d7839fc1157673e652613f7e1aff17d8ce05d/pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:37eee5b638f0e0dcd18d21f59b679686bbd18917b87db0193ae36f9c23c355fc", size = 1787879 }, + { url = "https://files.pythonhosted.org/packages/31/0a/ac294caecf235f0cc651de6232f1642bb793af448d1cfc541b0dc1fd72b8/pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:25e9185e2d06c16ee438ed39bf62935ec436474a6ac4f9358524220f1b236e43", size = 1774694 }, + { url = "https://files.pythonhosted.org/packages/46/a4/08f12b5512f095963550a7cb49ae010e3f8f3f22b45e508c2cb4d7744fce/pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:150906b40ff188a3260cbee25380e7494ee85048584998c1e66df0c7a11c17a6", size = 1976369 }, + { url = "https://files.pythonhosted.org/packages/15/59/b2495be4410462aedb399071c71884042a2c6443319cbf62d00b4a7ed7a5/pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ad4aeb3e9a97286573c03df758fc7627aecdd02f1da04516a86dc159bf70121", size = 2691250 }, + { url = "https://files.pythonhosted.org/packages/3c/ae/fc99ce1ba791c9e9d1dee04ce80eef1dae5b25b27e3fc8e19f4e3f1348bf/pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3f3ed29cd9f978c604708511a1f9c2fdcb6c38b9aae36a51905b8811ee5cbf1", size = 2061462 }, + { url = "https://files.pythonhosted.org/packages/44/bb/eb07cbe47cfd638603ce3cb8c220f1a054b821e666509e535f27ba07ca5f/pydantic_core-2.20.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0dae11d8f5ded51699c74d9548dcc5938e0804cc8298ec0aa0da95c21fff57b", size = 1893923 }, + { url = "https://files.pythonhosted.org/packages/ce/ef/5a52400553b8faa0e7f11fd7a2ba11e8d2feb50b540f9e7973c49b97eac0/pydantic_core-2.20.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:faa6b09ee09433b87992fb5a2859efd1c264ddc37280d2dd5db502126d0e7f27", size = 1966779 }, + { url = "https://files.pythonhosted.org/packages/4c/5b/fb37fe341344d9651f5c5f579639cd97d50a457dc53901aa8f7e9f28beb9/pydantic_core-2.20.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9dc1b507c12eb0481d071f3c1808f0529ad41dc415d0ca11f7ebfc666e66a18b", size = 2109044 }, + { url = "https://files.pythonhosted.org/packages/70/1a/6f7278802dbc66716661618807ab0dfa4fc32b09d1235923bbbe8b3a5757/pydantic_core-2.20.1-cp311-none-win32.whl", hash = "sha256:fa2fddcb7107e0d1808086ca306dcade7df60a13a6c347a7acf1ec139aa6789a", size = 1708265 }, + { url = "https://files.pythonhosted.org/packages/35/7f/58758c42c61b0bdd585158586fecea295523d49933cb33664ea888162daf/pydantic_core-2.20.1-cp311-none-win_amd64.whl", hash = "sha256:40a783fb7ee353c50bd3853e626f15677ea527ae556429453685ae32280c19c2", size = 1901750 }, + { url = "https://files.pythonhosted.org/packages/6f/47/ef0d60ae23c41aced42921728650460dc831a0adf604bfa66b76028cb4d0/pydantic_core-2.20.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:595ba5be69b35777474fa07f80fc260ea71255656191adb22a8c53aba4479231", size = 1839225 }, + { url = "https://files.pythonhosted.org/packages/6a/23/430f2878c9cd977a61bb39f71751d9310ec55cee36b3d5bf1752c6341fd0/pydantic_core-2.20.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a4f55095ad087474999ee28d3398bae183a66be4823f753cd7d67dd0153427c9", size = 1768604 }, + { url = "https://files.pythonhosted.org/packages/9e/2b/ec4e7225dee79e0dc80ccc3c35ab33cc2c4bbb8a1a7ecf060e5e453651ec/pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f9aa05d09ecf4c75157197f27cdc9cfaeb7c5f15021c6373932bf3e124af029f", size = 1789767 }, + { url = "https://files.pythonhosted.org/packages/64/b0/38b24a1fa6d2f96af3148362e10737ec073768cd44d3ec21dca3be40a519/pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e97fdf088d4b31ff4ba35db26d9cc472ac7ef4a2ff2badeabf8d727b3377fc52", size = 1772061 }, + { url = "https://files.pythonhosted.org/packages/5e/da/bb73274c42cb60decfa61e9eb0c9029da78b3b9af0a9de0309dbc8ff87b6/pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bc633a9fe1eb87e250b5c57d389cf28998e4292336926b0b6cdaee353f89a237", size = 1974573 }, + { url = "https://files.pythonhosted.org/packages/c8/65/41693110fb3552556180460daffdb8bbeefb87fc026fd9aa4b849374015c/pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d573faf8eb7e6b1cbbcb4f5b247c60ca8be39fe2c674495df0eb4318303137fe", size = 2625596 }, + { url = "https://files.pythonhosted.org/packages/09/b3/a5a54b47cccd1ab661ed5775235c5e06924753c2d4817737c5667bfa19a8/pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:26dc97754b57d2fd00ac2b24dfa341abffc380b823211994c4efac7f13b9e90e", size = 2099064 }, + { url = "https://files.pythonhosted.org/packages/52/fa/443a7a6ea54beaba45ff3a59f3d3e6e3004b7460bcfb0be77bcf98719d3b/pydantic_core-2.20.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:33499e85e739a4b60c9dac710c20a08dc73cb3240c9a0e22325e671b27b70d24", size = 1900345 }, + { url = "https://files.pythonhosted.org/packages/8e/e6/9aca9ffae60f9cdf0183069de3e271889b628d0fb175913fcb3db5618fb1/pydantic_core-2.20.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:bebb4d6715c814597f85297c332297c6ce81e29436125ca59d1159b07f423eb1", size = 1968252 }, + { url = "https://files.pythonhosted.org/packages/46/5e/6c716810ea20a6419188992973a73c2fb4eb99cd382368d0637ddb6d3c99/pydantic_core-2.20.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:516d9227919612425c8ef1c9b869bbbee249bc91912c8aaffb66116c0b447ebd", size = 2119191 }, + { url = "https://files.pythonhosted.org/packages/06/fc/6123b00a9240fbb9ae0babad7a005d51103d9a5d39c957a986f5cdd0c271/pydantic_core-2.20.1-cp312-none-win32.whl", hash = "sha256:469f29f9093c9d834432034d33f5fe45699e664f12a13bf38c04967ce233d688", size = 1717788 }, + { url = "https://files.pythonhosted.org/packages/d5/36/e61ad5a46607a469e2786f398cd671ebafcd9fb17f09a2359985c7228df5/pydantic_core-2.20.1-cp312-none-win_amd64.whl", hash = "sha256:035ede2e16da7281041f0e626459bcae33ed998cca6a0a007a5ebb73414ac72d", size = 1898188 }, + { url = "https://files.pythonhosted.org/packages/49/75/40b0e98b658fdba02a693b3bacb4c875a28bba87796c7b13975976597d8c/pydantic_core-2.20.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:0827505a5c87e8aa285dc31e9ec7f4a17c81a813d45f70b1d9164e03a813a686", size = 1838688 }, + { url = "https://files.pythonhosted.org/packages/75/02/d8ba2d4a266591a6a623c68b331b96523d4b62ab82a951794e3ed8907390/pydantic_core-2.20.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:19c0fa39fa154e7e0b7f82f88ef85faa2a4c23cc65aae2f5aea625e3c13c735a", size = 1768409 }, + { url = "https://files.pythonhosted.org/packages/91/ae/25ecd9bc4ce4993e99a1a3c9ab111c082630c914260e129572fafed4ecc2/pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa223cd1e36b642092c326d694d8bf59b71ddddc94cdb752bbbb1c5c91d833b", size = 1789317 }, + { url = "https://files.pythonhosted.org/packages/7a/80/72057580681cdbe55699c367963d9c661b569a1d39338b4f6239faf36cdc/pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c336a6d235522a62fef872c6295a42ecb0c4e1d0f1a3e500fe949415761b8a19", size = 1771949 }, + { url = "https://files.pythonhosted.org/packages/a2/be/d9bbabc55b05019013180f141fcaf3b14dbe15ca7da550e95b60c321009a/pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7eb6a0587eded33aeefea9f916899d42b1799b7b14b8f8ff2753c0ac1741edac", size = 1974392 }, + { url = "https://files.pythonhosted.org/packages/79/2d/7bcd938c6afb0f40293283f5f09988b61fb0a4f1d180abe7c23a2f665f8e/pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:70c8daf4faca8da5a6d655f9af86faf6ec2e1768f4b8b9d0226c02f3d6209703", size = 2625565 }, + { url = "https://files.pythonhosted.org/packages/ac/88/ca758e979457096008a4b16a064509028e3e092a1e85a5ed6c18ced8da88/pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9fa4c9bf273ca41f940bceb86922a7667cd5bf90e95dbb157cbb8441008482c", size = 2098784 }, + { url = "https://files.pythonhosted.org/packages/eb/de/2fad6d63c3c42e472e985acb12ec45b7f56e42e6f4cd6dfbc5e87ee8678c/pydantic_core-2.20.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:11b71d67b4725e7e2a9f6e9c0ac1239bbc0c48cce3dc59f98635efc57d6dac83", size = 1900198 }, + { url = "https://files.pythonhosted.org/packages/fe/50/077c7f35b6488dc369a6d22993af3a37901e198630f38ac43391ca730f5b/pydantic_core-2.20.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:270755f15174fb983890c49881e93f8f1b80f0b5e3a3cc1394a255706cabd203", size = 1968005 }, + { url = "https://files.pythonhosted.org/packages/5d/1f/f378631574ead46d636b9a04a80ff878b9365d4b361b1905ef1667d4182a/pydantic_core-2.20.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:c81131869240e3e568916ef4c307f8b99583efaa60a8112ef27a366eefba8ef0", size = 2118920 }, + { url = "https://files.pythonhosted.org/packages/7a/ea/e4943f17df7a3031d709481fe4363d4624ae875a6409aec34c28c9e6cf59/pydantic_core-2.20.1-cp313-none-win32.whl", hash = "sha256:b91ced227c41aa29c672814f50dbb05ec93536abf8f43cd14ec9521ea09afe4e", size = 1717397 }, + { url = "https://files.pythonhosted.org/packages/13/63/b95781763e8d84207025071c0cec16d921c0163c7a9033ae4b9a0e020dc7/pydantic_core-2.20.1-cp313-none-win_amd64.whl", hash = "sha256:65db0f2eefcaad1a3950f498aabb4875c8890438bc80b19362cf633b87a8ab20", size = 1898013 }, + { url = "https://files.pythonhosted.org/packages/17/c3/803028de61ce9a1fe1643f77ff845807c76298bf1995fa216c4ae853c6b9/pydantic_core-2.20.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:b03f7941783b4c4a26051846dea594628b38f6940a2fdc0df00b221aed39314c", size = 1838087 }, + { url = "https://files.pythonhosted.org/packages/77/f7/25f1fba7ea1ae052e20b234e4c66d54b129e5b3f4d1e6c0da6534dbf57c3/pydantic_core-2.20.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1eedfeb6089ed3fad42e81a67755846ad4dcc14d73698c120a82e4ccf0f1f9f6", size = 1722218 }, + { url = "https://files.pythonhosted.org/packages/57/53/fe2e1ae3795b7a69f81913584174f8ed36446b56df734565260830a3632b/pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:635fee4e041ab9c479e31edda27fcf966ea9614fff1317e280d99eb3e5ab6fe2", size = 1788970 }, + { url = "https://files.pythonhosted.org/packages/13/80/d9c698486f8fb64b0945e0844c95eef3bcff920941eda30d556deadadbdf/pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:77bf3ac639c1ff567ae3b47f8d4cc3dc20f9966a2a6dd2311dcc055d3d04fb8a", size = 1775836 }, + { url = "https://files.pythonhosted.org/packages/0f/0c/ab6df185529c0ce1a6d916f9d159de389cc7de44eaa9362efc76495fb821/pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7ed1b0132f24beeec5a78b67d9388656d03e6a7c837394f99257e2d55b461611", size = 1978099 }, + { url = "https://files.pythonhosted.org/packages/0e/9f/3094afeb286c60ec08088d938b661a561f3d23cd2e88a90a92ab0ecfce4f/pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c6514f963b023aeee506678a1cf821fe31159b925c4b76fe2afa94cc70b3222b", size = 2693403 }, + { url = "https://files.pythonhosted.org/packages/9b/f1/a006955715be98093d092aa025f604c7c00721e83fe04bf467c49f31a685/pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10d4204d8ca33146e761c79f83cc861df20e7ae9f6487ca290a97702daf56006", size = 2061754 }, + { url = "https://files.pythonhosted.org/packages/32/f6/cd2e7bd0a52e2a72841f60c32e62b269995c34bdb13e4d1e799be834338a/pydantic_core-2.20.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2d036c7187b9422ae5b262badb87a20a49eb6c5238b2004e96d4da1231badef1", size = 1895490 }, + { url = "https://files.pythonhosted.org/packages/ac/22/34ce27579901fcca525f8adce7747760407cf284c4f0fec6d4542265b451/pydantic_core-2.20.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9ebfef07dbe1d93efb94b4700f2d278494e9162565a54f124c404a5656d7ff09", size = 1968678 }, + { url = "https://files.pythonhosted.org/packages/2f/3a/80df9b0b5ea5e5b8939285c600dc9ce4a185317f5fb065a37e77a20cbdb3/pydantic_core-2.20.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:6b9d9bb600328a1ce523ab4f454859e9d439150abb0906c5a1983c146580ebab", size = 2110873 }, + { url = "https://files.pythonhosted.org/packages/ec/26/998c9b8dadcdeafbc833964ef5975cd0c7516b0157575b26300d078ae239/pydantic_core-2.20.1-cp39-none-win32.whl", hash = "sha256:784c1214cb6dd1e3b15dd8b91b9a53852aed16671cc3fbe4786f4f1db07089e2", size = 1709309 }, + { url = "https://files.pythonhosted.org/packages/ed/36/67aeb15996618882c5cfe85dbeffefe09e2806cd86bdd37bca40753e82a1/pydantic_core-2.20.1-cp39-none-win_amd64.whl", hash = "sha256:d2fe69c5434391727efa54b47a1e7986bb0186e72a41b203df8f5b0a19a4f669", size = 1905736 }, + { url = "https://files.pythonhosted.org/packages/73/73/0c7265903f66cce39ed7ca939684fba344210cefc91ccc999cfd5b113fd3/pydantic_core-2.20.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:a45f84b09ac9c3d35dfcf6a27fd0634d30d183205230a0ebe8373a0e8cfa0906", size = 1828190 }, + { url = "https://files.pythonhosted.org/packages/27/55/60b8b0e58b49ee3ed36a18562dd7c6bc06a551c390e387af5872a238f2ec/pydantic_core-2.20.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:d02a72df14dfdbaf228424573a07af10637bd490f0901cee872c4f434a735b94", size = 1715252 }, + { url = "https://files.pythonhosted.org/packages/28/3d/d66314bad6bb777a36559195a007b31e916bd9e2c198f7bb8f4ccdceb4fa/pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d2b27e6af28f07e2f195552b37d7d66b150adbaa39a6d327766ffd695799780f", size = 1782641 }, + { url = "https://files.pythonhosted.org/packages/9e/f5/f178f4354d0d6c1431a8f9ede71f3c4269ac4dc55d314fdb7555814276dc/pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:084659fac3c83fd674596612aeff6041a18402f1e1bc19ca39e417d554468482", size = 1928788 }, + { url = "https://files.pythonhosted.org/packages/9c/51/1f5e27bb194df79e30b593b608c66e881ed481241e2b9ed5bdf86d165480/pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:242b8feb3c493ab78be289c034a1f659e8826e2233786e36f2893a950a719bb6", size = 1886116 }, + { url = "https://files.pythonhosted.org/packages/ac/76/450d9258c58dc7c70b9e3aadf6bebe23ddd99e459c365e2adbde80e238da/pydantic_core-2.20.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:38cf1c40a921d05c5edc61a785c0ddb4bed67827069f535d794ce6bcded919fc", size = 1960125 }, + { url = "https://files.pythonhosted.org/packages/dd/9e/0309a7a4bea51771729515e413b3987be0789837de99087f7415e0db1f9b/pydantic_core-2.20.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:e0bbdd76ce9aa5d4209d65f2b27fc6e5ef1312ae6c5333c26db3f5ade53a1e99", size = 2100407 }, + { url = "https://files.pythonhosted.org/packages/af/93/06d44e08277b3b818b75bd5f25e879d7693e4b7dd3505fde89916fcc9ca2/pydantic_core-2.20.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:254ec27fdb5b1ee60684f91683be95e5133c994cc54e86a0b0963afa25c8f8a6", size = 1914966 }, + { url = "https://files.pythonhosted.org/packages/ff/d0/639b12bc7c81ebcbbd5f946327e8970089b23fa5b11d7abb56495cbdc0de/pydantic_core-2.20.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:407653af5617f0757261ae249d3fba09504d7a71ab36ac057c938572d1bc9331", size = 1829108 }, + { url = "https://files.pythonhosted.org/packages/f1/80/3b9d7fb8b4f8d36e24373334740c0b88d9ded08342543a72e9247b4fa410/pydantic_core-2.20.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:c693e916709c2465b02ca0ad7b387c4f8423d1db7b4649c551f27a529181c5ad", size = 1716448 }, + { url = "https://files.pythonhosted.org/packages/2f/c6/f80ea0fac8c241c066245fe918cdc9d105985a1a8726aced9478548c9e37/pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5b5ff4911aea936a47d9376fd3ab17e970cc543d1b68921886e7f64bd28308d1", size = 1783620 }, + { url = "https://files.pythonhosted.org/packages/d5/3e/9af260156f79347ed3e64149836d69bfe1e0c5efadec6116a879fc31c9ec/pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:177f55a886d74f1808763976ac4efd29b7ed15c69f4d838bbd74d9d09cf6fa86", size = 1929929 }, + { url = "https://files.pythonhosted.org/packages/d1/fe/8c3e928e10a97eb8e85b18a53ed3288d039cf0fd7b0fe8d3258f14e8500a/pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:964faa8a861d2664f0c7ab0c181af0bea66098b1919439815ca8803ef136fc4e", size = 1886708 }, + { url = "https://files.pythonhosted.org/packages/31/26/b670bd58f1de902c099ff623fe62b9820448a20d70437e7698a57b922d3a/pydantic_core-2.20.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:4dd484681c15e6b9a977c785a345d3e378d72678fd5f1f3c0509608da24f2ac0", size = 1960709 }, + { url = "https://files.pythonhosted.org/packages/de/ee/322cad098a0cffc81e985ac2a298d3f29a1da25efe7dc1fb5cd2615c5b04/pydantic_core-2.20.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:f6d6cff3538391e8486a431569b77921adfcdef14eb18fbf19b7c0a5294d4e6a", size = 2101218 }, + { url = "https://files.pythonhosted.org/packages/07/8b/30233f741e16b35499fa2fad2f4a69eb127eec6c850a1b14af26e7b08b73/pydantic_core-2.20.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:a6d511cc297ff0883bc3708b465ff82d7560193169a8b93260f74ecb0a5e08a7", size = 1915399 }, +] + +[[package]] +name = "pygments" +version = "2.18.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8e/62/8336eff65bcbc8e4cb5d05b55faf041285951b6e80f33e2bff2024788f31/pygments-2.18.0.tar.gz", hash = "sha256:786ff802f32e91311bff3889f6e9a86e81505fe99f2735bb6d60ae0c5004f199", size = 4891905 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f7/3f/01c8b82017c199075f8f788d0d906b9ffbbc5a47dc9918a945e13d5a2bda/pygments-2.18.0-py3-none-any.whl", hash = "sha256:b8e6aca0523f3ab76fee51799c488e38782ac06eafcf95e7ba832985c8e7b13a", size = 1205513 }, +] + +[[package]] +name = "pygtrie" +version = "2.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b9/13/55deec25bf09383216fa7f1dfcdbfca40a04aa00b6d15a5cbf25af8fce5f/pygtrie-2.5.0.tar.gz", hash = "sha256:203514ad826eb403dab1d2e2ddd034e0d1534bbe4dbe0213bb0593f66beba4e2", size = 39266 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ec/cd/bd196b2cf014afb1009de8b0f05ecd54011d881944e62763f3c1b1e8ef37/pygtrie-2.5.0-py3-none-any.whl", hash = "sha256:8795cda8105493d5ae159a5bef313ff13156c5d4d72feddefacaad59f8c8ce16", size = 25099 }, +] + +[[package]] +name = "pylatexenc" +version = "2.10" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/5d/ab/34ec41718af73c00119d0351b7a2531d2ebddb51833a36448fc7b862be60/pylatexenc-2.10.tar.gz", hash = "sha256:3dd8fd84eb46dc30bee1e23eaab8d8fb5a7f507347b23e5f38ad9675c84f40d3", size = 162597 } + +[[package]] +name = "pynvml" +version = "11.5.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e4/e9/9931792cb776716363fc7c3039b477d11278173d71ddc230eb9b5f4ce93f/pynvml-11.5.3.tar.gz", hash = "sha256:183d223ae487e5f00402d8da06c68c978ef8a9295793ee75559839c6ade7b229", size = 73685 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/54/5b/16e50abf152be7f18120f11dfff495014a9eaff7b764626e1656f04ad262/pynvml-11.5.3-py3-none-any.whl", hash = "sha256:a5fba3ab14febda50d19dbda012ef62ae0aed45b7ccc07af0bc5be79223e450c", size = 53135 }, +] + +[[package]] +name = "pyparsing" +version = "3.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/46/3a/31fd28064d016a2182584d579e033ec95b809d8e220e74c4af6f0f2e8842/pyparsing-3.1.2.tar.gz", hash = "sha256:a1bac0ce561155ecc3ed78ca94d3c9378656ad4c94c1270de543f621420f94ad", size = 889571 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9d/ea/6d76df31432a0e6fdf81681a895f009a4bb47b3c39036db3e1b528191d52/pyparsing-3.1.2-py3-none-any.whl", hash = "sha256:f9db75911801ed778fe61bb643079ff86601aca99fcae6345aa67292038fb742", size = 103245 }, +] + +[[package]] +name = "pypng" +version = "0.20220715.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/93/cd/112f092ec27cca83e0516de0a3368dbd9128c187fb6b52aaaa7cde39c96d/pypng-0.20220715.0.tar.gz", hash = "sha256:739c433ba96f078315de54c0db975aee537cbc3e1d0ae4ed9aab0ca1e427e2c1", size = 128992 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3e/b9/3766cc361d93edb2ce81e2e1f87dd98f314d7d513877a342d31b30741680/pypng-0.20220715.0-py3-none-any.whl", hash = "sha256:4a43e969b8f5aaafb2a415536c1a8ec7e341cd6a3f957fd5b5f32a4cfeed902c", size = 58057 }, +] + +[[package]] +name = "pyreadline3" +version = "3.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d7/86/3d61a61f36a0067874a00cb4dceb9028d34b6060e47828f7fc86fb9f7ee9/pyreadline3-3.4.1.tar.gz", hash = "sha256:6f3d1f7b8a31ba32b73917cefc1f28cc660562f39aea8646d30bd6eff21f7bae", size = 86465 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/56/fc/a3c13ded7b3057680c8ae95a9b6cc83e63657c38e0005c400a5d018a33a7/pyreadline3-3.4.1-py3-none-any.whl", hash = "sha256:b0efb6516fd4fb07b45949053826a62fa4cb353db5be2bbb4a7aa1fdd1e345fb", size = 95203 }, +] + +[[package]] +name = "pytest" +version = "7.4.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "exceptiongroup", marker = "python_version < '3.11'" }, + { name = "iniconfig", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pluggy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tomli", marker = "python_version < '3.11'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/80/1f/9d8e98e4133ffb16c90f3b405c43e38d3abb715bb5d7a63a5a684f7e46a3/pytest-7.4.4.tar.gz", hash = "sha256:2cf0005922c6ace4a3e2ec8b4080eb0d9753fdc93107415332f50ce9e7994280", size = 1357116 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/51/ff/f6e8b8f39e08547faece4bd80f89d5a8de68a38b2d179cc1c4490ffa3286/pytest-7.4.4-py3-none-any.whl", hash = "sha256:b090cdf5ed60bf4c45261be03239c2c1c22df034fbffe691abe93cd80cea01d8", size = 325287 }, +] + +[[package]] +name = "pytest-timeout" +version = "2.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pytest", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/93/0d/04719abc7a4bdb3a7a1f968f24b0f5253d698c9cc94975330e9d3145befb/pytest-timeout-2.3.1.tar.gz", hash = "sha256:12397729125c6ecbdaca01035b9e5239d4db97352320af155b3f5de1ba5165d9", size = 17697 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/03/27/14af9ef8321f5edc7527e47def2a21d8118c6f329a9342cc61387a0c0599/pytest_timeout-2.3.1-py3-none-any.whl", hash = "sha256:68188cb703edfc6a18fad98dc25a3c61e9f24d644b0b70f33af545219fc7813e", size = 14148 }, +] + +[[package]] +name = "pytest-xdist" +version = "3.6.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "execnet", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pytest", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/41/c4/3c310a19bc1f1e9ef50075582652673ef2bfc8cd62afef9585683821902f/pytest_xdist-3.6.1.tar.gz", hash = "sha256:ead156a4db231eec769737f57668ef58a2084a34b2e55c4a8fa20d861107300d", size = 84060 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6d/82/1d96bf03ee4c0fdc3c0cbe61470070e659ca78dc0086fb88b66c185e2449/pytest_xdist-3.6.1-py3-none-any.whl", hash = "sha256:9ed4adfb68a016610848639bb7e02c9352d5d9f03d04809919e2dafc3be4cca7", size = 46108 }, +] + +[[package]] +name = "python-dateutil" +version = "2.9.0.post0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892 }, +] + +[[package]] +name = "python-slugify" +version = "8.0.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "text-unidecode", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/87/c7/5e1547c44e31da50a460df93af11a535ace568ef89d7a811069ead340c4a/python-slugify-8.0.4.tar.gz", hash = "sha256:59202371d1d05b54a9e7720c5e038f928f45daaffe41dd10822f3907b937c856", size = 10921 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a4/62/02da182e544a51a5c3ccf4b03ab79df279f9c60c5e82d5e8bec7ca26ac11/python_slugify-8.0.4-py2.py3-none-any.whl", hash = "sha256:276540b79961052b66b7d116620b36518847f52d5fd9e3a70164fc8c50faa6b8", size = 10051 }, +] + +[[package]] +name = "pytz" +version = "2024.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/90/26/9f1f00a5d021fff16dee3de13d43e5e978f3d58928e129c3a62cf7eb9738/pytz-2024.1.tar.gz", hash = "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812", size = 316214 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9c/3d/a121f284241f08268b21359bd425f7d4825cffc5ac5cd0e1b3d82ffd2b10/pytz-2024.1-py2.py3-none-any.whl", hash = "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319", size = 505474 }, +] + +[[package]] +name = "pywin32" +version = "306" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/08/dc/28c668097edfaf4eac4617ef7adf081b9cf50d254672fcf399a70f5efc41/pywin32-306-cp310-cp310-win32.whl", hash = "sha256:06d3420a5155ba65f0b72f2699b5bacf3109f36acbe8923765c22938a69dfc8d", size = 8506422 }, + { url = "https://files.pythonhosted.org/packages/d3/d6/891894edec688e72c2e308b3243fad98b4066e1839fd2fe78f04129a9d31/pywin32-306-cp310-cp310-win_amd64.whl", hash = "sha256:84f4471dbca1887ea3803d8848a1616429ac94a4a8d05f4bc9c5dcfd42ca99c8", size = 9226392 }, + { url = "https://files.pythonhosted.org/packages/8b/1e/fc18ad83ca553e01b97aa8393ff10e33c1fb57801db05488b83282ee9913/pywin32-306-cp311-cp311-win32.whl", hash = "sha256:e65028133d15b64d2ed8f06dd9fbc268352478d4f9289e69c190ecd6818b6407", size = 8507689 }, + { url = "https://files.pythonhosted.org/packages/7e/9e/ad6b1ae2a5ad1066dc509350e0fbf74d8d50251a51e420a2a8feaa0cecbd/pywin32-306-cp311-cp311-win_amd64.whl", hash = "sha256:a7639f51c184c0272e93f244eb24dafca9b1855707d94c192d4a0b4c01e1100e", size = 9227547 }, + { url = "https://files.pythonhosted.org/packages/91/20/f744bff1da8f43388498503634378dbbefbe493e65675f2cc52f7185c2c2/pywin32-306-cp311-cp311-win_arm64.whl", hash = "sha256:70dba0c913d19f942a2db25217d9a1b726c278f483a919f1abfed79c9cf64d3a", size = 10388324 }, + { url = "https://files.pythonhosted.org/packages/14/91/17e016d5923e178346aabda3dfec6629d1a26efe587d19667542105cf0a6/pywin32-306-cp312-cp312-win32.whl", hash = "sha256:383229d515657f4e3ed1343da8be101000562bf514591ff383ae940cad65458b", size = 8507705 }, + { url = "https://files.pythonhosted.org/packages/83/1c/25b79fc3ec99b19b0a0730cc47356f7e2959863bf9f3cd314332bddb4f68/pywin32-306-cp312-cp312-win_amd64.whl", hash = "sha256:37257794c1ad39ee9be652da0462dc2e394c8159dfd913a8a4e8eb6fd346da0e", size = 9227429 }, + { url = "https://files.pythonhosted.org/packages/1c/43/e3444dc9a12f8365d9603c2145d16bf0a2f8180f343cf87be47f5579e547/pywin32-306-cp312-cp312-win_arm64.whl", hash = "sha256:5821ec52f6d321aa59e2db7e0a35b997de60c201943557d108af9d4ae1ec7040", size = 10388145 }, + { url = "https://files.pythonhosted.org/packages/7e/7f/419c4fcadcaa374a0ae41cbdf6c3a81452892dd6c523aea629d17e49146e/pywin32-306-cp39-cp39-win32.whl", hash = "sha256:e25fd5b485b55ac9c057f67d94bc203f3f6595078d1fb3b458c9c28b7153a802", size = 8573451 }, + { url = "https://files.pythonhosted.org/packages/1c/f7/24d8ed4fd9c43b90354df7764f81f0dd5e623f9a50f1538f90fe085d6dff/pywin32-306-cp39-cp39-win_amd64.whl", hash = "sha256:39b61c15272833b5c329a2989999dcae836b1eed650252ab1b7bfbe1d59f30f4", size = 9312883 }, +] + +[[package]] +name = "pyyaml" +version = "6.0.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/54/ed/79a089b6be93607fa5cdaedf301d7dfb23af5f25c398d5ead2525b063e17/pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e", size = 130631 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9b/95/a3fac87cb7158e231b5a6012e438c647e1a87f09f8e0d123acec8ab8bf71/PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086", size = 184199 }, + { url = "https://files.pythonhosted.org/packages/c7/7a/68bd47624dab8fd4afbfd3c48e3b79efe09098ae941de5b58abcbadff5cb/PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf", size = 171758 }, + { url = "https://files.pythonhosted.org/packages/49/ee/14c54df452143b9ee9f0f29074d7ca5516a36edb0b4cc40c3f280131656f/PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237", size = 718463 }, + { url = "https://files.pythonhosted.org/packages/4d/61/de363a97476e766574650d742205be468921a7b532aa2499fcd886b62530/PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b", size = 719280 }, + { url = "https://files.pythonhosted.org/packages/6b/4e/1523cb902fd98355e2e9ea5e5eb237cbc5f3ad5f3075fa65087aa0ecb669/PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed", size = 751239 }, + { url = "https://files.pythonhosted.org/packages/b7/33/5504b3a9a4464893c32f118a9cc045190a91637b119a9c881da1cf6b7a72/PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180", size = 695802 }, + { url = "https://files.pythonhosted.org/packages/5c/20/8347dcabd41ef3a3cdc4f7b7a2aff3d06598c8779faa189cdbf878b626a4/PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68", size = 720527 }, + { url = "https://files.pythonhosted.org/packages/be/aa/5afe99233fb360d0ff37377145a949ae258aaab831bde4792b32650a4378/PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99", size = 144052 }, + { url = "https://files.pythonhosted.org/packages/b5/84/0fa4b06f6d6c958d207620fc60005e241ecedceee58931bb20138e1e5776/PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e", size = 161774 }, + { url = "https://files.pythonhosted.org/packages/f8/aa/7af4e81f7acba21a4c6be026da38fd2b872ca46226673c89a758ebdc4fd2/PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774", size = 184612 }, + { url = "https://files.pythonhosted.org/packages/8b/62/b9faa998fd185f65c1371643678e4d58254add437edb764a08c5a98fb986/PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee", size = 172040 }, + { url = "https://files.pythonhosted.org/packages/ad/0c/c804f5f922a9a6563bab712d8dcc70251e8af811fce4524d57c2c0fd49a4/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c", size = 736829 }, + { url = "https://files.pythonhosted.org/packages/51/16/6af8d6a6b210c8e54f1406a6b9481febf9c64a3109c541567e35a49aa2e7/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317", size = 764167 }, + { url = "https://files.pythonhosted.org/packages/75/e4/2c27590dfc9992f73aabbeb9241ae20220bd9452df27483b6e56d3975cc5/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85", size = 762952 }, + { url = "https://files.pythonhosted.org/packages/9b/97/ecc1abf4a823f5ac61941a9c00fe501b02ac3ab0e373c3857f7d4b83e2b6/PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4", size = 735301 }, + { url = "https://files.pythonhosted.org/packages/45/73/0f49dacd6e82c9430e46f4a027baa4ca205e8b0a9dce1397f44edc23559d/PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e", size = 756638 }, + { url = "https://files.pythonhosted.org/packages/22/5f/956f0f9fc65223a58fbc14459bf34b4cc48dec52e00535c79b8db361aabd/PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5", size = 143850 }, + { url = "https://files.pythonhosted.org/packages/ed/23/8da0bbe2ab9dcdd11f4f4557ccaf95c10b9811b13ecced089d43ce59c3c8/PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44", size = 161980 }, + { url = "https://files.pythonhosted.org/packages/86/0c/c581167fc46d6d6d7ddcfb8c843a4de25bdd27e4466938109ca68492292c/PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab", size = 183873 }, + { url = "https://files.pythonhosted.org/packages/a8/0c/38374f5bb272c051e2a69281d71cba6fdb983413e6758b84482905e29a5d/PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725", size = 173302 }, + { url = "https://files.pythonhosted.org/packages/c3/93/9916574aa8c00aa06bbac729972eb1071d002b8e158bd0e83a3b9a20a1f7/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5", size = 739154 }, + { url = "https://files.pythonhosted.org/packages/95/0f/b8938f1cbd09739c6da569d172531567dbcc9789e0029aa070856f123984/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425", size = 766223 }, + { url = "https://files.pythonhosted.org/packages/b9/2b/614b4752f2e127db5cc206abc23a8c19678e92b23c3db30fc86ab731d3bd/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476", size = 767542 }, + { url = "https://files.pythonhosted.org/packages/d4/00/dd137d5bcc7efea1836d6264f049359861cf548469d18da90cd8216cf05f/PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48", size = 731164 }, + { url = "https://files.pythonhosted.org/packages/c9/1f/4f998c900485e5c0ef43838363ba4a9723ac0ad73a9dc42068b12aaba4e4/PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b", size = 756611 }, + { url = "https://files.pythonhosted.org/packages/df/d1/f5a275fdb252768b7a11ec63585bc38d0e87c9e05668a139fea92b80634c/PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4", size = 140591 }, + { url = "https://files.pythonhosted.org/packages/0c/e8/4f648c598b17c3d06e8753d7d13d57542b30d56e6c2dedf9c331ae56312e/PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8", size = 156338 }, + { url = "https://files.pythonhosted.org/packages/ef/e3/3af305b830494fa85d95f6d95ef7fa73f2ee1cc8ef5b495c7c3269fb835f/PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba", size = 181309 }, + { url = "https://files.pythonhosted.org/packages/45/9f/3b1c20a0b7a3200524eb0076cc027a970d320bd3a6592873c85c92a08731/PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1", size = 171679 }, + { url = "https://files.pythonhosted.org/packages/7c/9a/337322f27005c33bcb656c655fa78325b730324c78620e8328ae28b64d0c/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133", size = 733428 }, + { url = "https://files.pythonhosted.org/packages/a3/69/864fbe19e6c18ea3cc196cbe5d392175b4cf3d5d0ac1403ec3f2d237ebb5/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484", size = 763361 }, + { url = "https://files.pythonhosted.org/packages/04/24/b7721e4845c2f162d26f50521b825fb061bc0a5afcf9a386840f23ea19fa/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5", size = 759523 }, + { url = "https://files.pythonhosted.org/packages/2b/b2/e3234f59ba06559c6ff63c4e10baea10e5e7df868092bf9ab40e5b9c56b6/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc", size = 726660 }, + { url = "https://files.pythonhosted.org/packages/fe/0f/25911a9f080464c59fab9027482f822b86bf0608957a5fcc6eaac85aa515/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652", size = 751597 }, + { url = "https://files.pythonhosted.org/packages/14/0d/e2c3b43bbce3cf6bd97c840b46088a3031085179e596d4929729d8d68270/PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183", size = 140527 }, + { url = "https://files.pythonhosted.org/packages/fa/de/02b54f42487e3d3c6efb3f89428677074ca7bf43aae402517bc7cca949f3/PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563", size = 156446 }, + { url = "https://files.pythonhosted.org/packages/65/d8/b7a1db13636d7fb7d4ff431593c510c8b8fca920ade06ca8ef20015493c5/PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d", size = 184777 }, + { url = "https://files.pythonhosted.org/packages/0a/02/6ec546cd45143fdf9840b2c6be8d875116a64076218b61d68e12548e5839/PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f", size = 172318 }, + { url = "https://files.pythonhosted.org/packages/0e/9a/8cc68be846c972bda34f6c2a93abb644fb2476f4dcc924d52175786932c9/PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290", size = 720891 }, + { url = "https://files.pythonhosted.org/packages/e9/6c/6e1b7f40181bc4805e2e07f4abc10a88ce4648e7e95ff1abe4ae4014a9b2/PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12", size = 722614 }, + { url = "https://files.pythonhosted.org/packages/3d/32/e7bd8535d22ea2874cef6a81021ba019474ace0d13a4819c2a4bce79bd6a/PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19", size = 737360 }, + { url = "https://files.pythonhosted.org/packages/d7/12/7322c1e30b9be969670b672573d45479edef72c9a0deac3bb2868f5d7469/PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e", size = 699006 }, + { url = "https://files.pythonhosted.org/packages/82/72/04fcad41ca56491995076630c3ec1e834be241664c0c09a64c9a2589b507/PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725", size = 723577 }, + { url = "https://files.pythonhosted.org/packages/ed/5e/46168b1f2757f1fcd442bc3029cd8767d88a98c9c05770d8b420948743bb/PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631", size = 144593 }, + { url = "https://files.pythonhosted.org/packages/19/87/5124b1c1f2412bb95c59ec481eaf936cd32f0fe2a7b16b97b81c4c017a6a/PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8", size = 162312 }, +] + +[[package]] +name = "ray" +version = "2.34.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "aiosignal", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "click", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "filelock", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "frozenlist", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jsonschema", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "msgpack", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/b9/e2/c9de6de344126f77e159e31dc36e2de131b81dc94b9e63172a963e8cd36a/ray-2.34.0-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:fb994a9f45aacb6edac32d97327f145a99c0db0b576c6c2217902b44e8fd8565", size = 65602162 }, + { url = "https://files.pythonhosted.org/packages/88/8b/eb8f2b8976ed1193c40dae62ed77eb1841258f4b547ca6f2fcc0038eb58b/ray-2.34.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6acb3d712e3f001ed8e3c0e1403f65e550adc8b558098f188d43b427e1f024c8", size = 63036107 }, + { url = "https://files.pythonhosted.org/packages/8e/bf/7b7f664184561415ced1890df70bc0a976654342c3698f3cae2268f2fcb3/ray-2.34.0-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:a2e909445fdddc7e9f318894aa3d9b5a9e79d3b4320e9c84b3703d1df908d359", size = 64003172 }, + { url = "https://files.pythonhosted.org/packages/83/d8/55fbc4ecde193abaf2c4a3ede8dd9a83de33afb5a88f484e2bc18e09f7a0/ray-2.34.0-cp310-cp310-manylinux2014_x86_64.whl", hash = "sha256:76715a92dc10d7f090bdfb490f6e6d497cc8d212da78174d0de516ba7021cee4", size = 64895815 }, + { url = "https://files.pythonhosted.org/packages/c6/04/9b278d4b688bc0b9126555976ebf8c0c29173b812b8fa7c42be72ff9f943/ray-2.34.0-cp310-cp310-win_amd64.whl", hash = "sha256:3ca22ebb25f483bff60f2b64d1b33c4f156754d73c1c183808e0380c515f0ff9", size = 24705813 }, + { url = "https://files.pythonhosted.org/packages/92/b8/a05d9e5d09ea55517ade0f909f053eaa69d17b967cb8952fec0cc6530821/ray-2.34.0-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:bb869c717057fa23010ced7be0bdfda3b260583dfd9fe969e7de3ccd3bee1e03", size = 65585163 }, + { url = "https://files.pythonhosted.org/packages/8c/94/6e06f0adf89bcb13d0e5ed03e7f662ed00a8003ebacd8a70515bffdbe7e2/ray-2.34.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:590d0676bedd72111e7df78bb71eef93826a86de0d4675739471080ffd463d02", size = 63016756 }, + { url = "https://files.pythonhosted.org/packages/62/b4/796ea6b730985ae64183cbe64b760a65b14382f9121e58dd410619845b93/ray-2.34.0-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:2315ca4eeb2c87264a7be38acf128803dffb2af2476e6322acd3f889129e4575", size = 64132726 }, + { url = "https://files.pythonhosted.org/packages/fa/53/9864f0c9c7c78466722ed8035ebb465ab3c915e06878d2906e7d4245a4e9/ray-2.34.0-cp311-cp311-manylinux2014_x86_64.whl", hash = "sha256:b608d6865600cbd3516882a19bb3b713b6f161b150ce1ee31d92084d09408b9a", size = 65018530 }, + { url = "https://files.pythonhosted.org/packages/42/15/4a9c4dd1384721dcb38e69e12b6fe227bc114fc5e9e7d04261de955e4c94/ray-2.34.0-cp311-cp311-win_amd64.whl", hash = "sha256:5125d325f6c3605de16182e60ccb4cd6a102a812665c119a71f19d07f20080d8", size = 24690447 }, + { url = "https://files.pythonhosted.org/packages/8f/db/a3ceac4623e32bd3e8857174205a065eb902b82ac5c7c0fe4cc23e3c1aec/ray-2.34.0-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:d1f8b03f7be489104c32731a3898eae41ffe1fd29c1303bbd77805e1961a1324", size = 65564396 }, + { url = "https://files.pythonhosted.org/packages/c7/e4/7270ede252fdaba20c1baa90fe928b285b625d42493a4825026304000ada/ray-2.34.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a332323d986d3faa9c539c3c979aa936bc252a0da9b20bdb48a6f634a1ff5200", size = 63001916 }, + { url = "https://files.pythonhosted.org/packages/22/66/d771588eafabdf9aa73a447d95c2499a74d605169a35b33b9c82516b8782/ray-2.34.0-cp312-cp312-manylinux2014_aarch64.whl", hash = "sha256:230eef15981cec90e868eff32ad5756e4fee53c2855c890a2d1243617df73c8e", size = 64152368 }, + { url = "https://files.pythonhosted.org/packages/71/80/3ee63d8cc83dba44df417058127648e3b44d338d9b16450c3b9556b00e28/ray-2.34.0-cp312-cp312-manylinux2014_x86_64.whl", hash = "sha256:aeaac5ce06572b15947c995b6d65a6c8706a1b2336eebed5b98e9073fe94abe0", size = 65063661 }, + { url = "https://files.pythonhosted.org/packages/e2/41/edb03a80f1e8b9e32ae45466d71773fc3508453c356738e6628cebe3d036/ray-2.34.0-cp312-cp312-win_amd64.whl", hash = "sha256:9c48fcf7cf7b3d0886f846d45c1f73de91d70486d52d10e0f0ec017660613fec", size = 24680574 }, + { url = "https://files.pythonhosted.org/packages/64/bb/4ad03421c71cbff107f2d1a29c0e8d8b754a6c53a28dc6078f6f26c8bacb/ray-2.34.0-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:93dfab2256e8bab153a10d4af8e82d124afe9a950ac5435c5d33a4637ed0cbb8", size = 65617415 }, + { url = "https://files.pythonhosted.org/packages/a2/ce/a0dbe6d7bbabcdc7224779b7db81e4337ed139c18d47ad8de179c0a10b87/ray-2.34.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:37c4840e3953bff40900a189fcf2a866581fd5c11e72b8c532a593a200450bb4", size = 63049114 }, + { url = "https://files.pythonhosted.org/packages/ab/d6/d389e685a1d25dc1f0cd745bf153a74e738475638d32fcc96681f01d8cc6/ray-2.34.0-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:42df897f2bf368fa1d74c6672f36a9fae4ebcf7f1495716f9cca445415c51f55", size = 64022135 }, + { url = "https://files.pythonhosted.org/packages/61/5d/57939bd7a84d9fdb4741cfc818413c6f4c9052c7638073f8c7096bdd8795/ray-2.34.0-cp39-cp39-manylinux2014_x86_64.whl", hash = "sha256:7c11a58daf074093d5b5a31de62f3dc0e55a7649edcc16a902eed6dc16fc6a4f", size = 64920350 }, + { url = "https://files.pythonhosted.org/packages/09/c1/7bb88e8266e7bc2e5aa91f56dc7bc72729fa5fa30e6e13be54f5a9417250/ray-2.34.0-cp39-cp39-win_amd64.whl", hash = "sha256:2cbf7b38b97f80f95ca1c841d783a577f1618c15c6fbf32574dd0efa4e4b12bd", size = 24715971 }, +] + +[package.optional-dependencies] +tune = [ + { name = "fsspec", version = "2024.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fsspec", version = "2024.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "pandas", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyarrow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorboardx", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] + +[[package]] +name = "rdflib" +version = "7.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "isodate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyparsing", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0d/a3/63740490a392921a611cfc05b5b17bffd4259b3c9589c7904a4033b3d291/rdflib-7.0.0.tar.gz", hash = "sha256:9995eb8569428059b8c1affd26b25eac510d64f5043d9ce8c84e0d0036e995ae", size = 4765796 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d4/b0/7b7d8b5b0d01f1a0b12cc2e5038a868ef3a15825731b8a0d776cf47566c0/rdflib-7.0.0-py3-none-any.whl", hash = "sha256:0438920912a642c866a513de6fe8a0001bd86ef975057d6962c79ce4771687cd", size = 531912 }, +] + +[[package]] +name = "referencing" +version = "0.35.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rpds-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/99/5b/73ca1f8e72fff6fa52119dbd185f73a907b1989428917b24cff660129b6d/referencing-0.35.1.tar.gz", hash = "sha256:25b42124a6c8b632a425174f24087783efb348a6f1e0008e63cd4466fedf703c", size = 62991 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/59/2056f61236782a2c86b33906c025d4f4a0b17be0161b63b70fd9e8775d36/referencing-0.35.1-py3-none-any.whl", hash = "sha256:eda6d3234d62814d1c64e305c1331c9a3a6132da475ab6382eaa997b21ee75de", size = 26684 }, +] + +[[package]] +name = "regex" +version = "2024.7.24" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3f/51/64256d0dc72816a4fe3779449627c69ec8fee5a5625fd60ba048f53b3478/regex-2024.7.24.tar.gz", hash = "sha256:9cfd009eed1a46b27c14039ad5bbc5e71b6367c5b2e6d5f5da0ea91600817506", size = 393485 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/16/97/283bd32777e6c30a9bede976cd72ba4b9aa144dc0f0f462bd37fa1a86e01/regex-2024.7.24-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:228b0d3f567fafa0633aee87f08b9276c7062da9616931382993c03808bb68ce", size = 470812 }, + { url = "https://files.pythonhosted.org/packages/e4/80/80bc4d7329d04ba519ebcaf26ae21d9e30d33934c458691177c623ceff70/regex-2024.7.24-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:3426de3b91d1bc73249042742f45c2148803c111d1175b283270177fdf669024", size = 282129 }, + { url = "https://files.pythonhosted.org/packages/e5/8a/cddcb7942d05ad9a427ad97ab29f1a62c0607ab72bdb2f3a26fc5b07ac0f/regex-2024.7.24-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f273674b445bcb6e4409bf8d1be67bc4b58e8b46fd0d560055d515b8830063cd", size = 278909 }, + { url = "https://files.pythonhosted.org/packages/a6/d4/93b4011cb83f9a66e0fa398b4d3c6d564d94b686dace676c66502b13dae9/regex-2024.7.24-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:23acc72f0f4e1a9e6e9843d6328177ae3074b4182167e34119ec7233dfeccf53", size = 777687 }, + { url = "https://files.pythonhosted.org/packages/d0/11/d0a12e1cecc1d35bbcbeb99e2ddcb8c1b152b1b58e2ff55f50c3d762b09e/regex-2024.7.24-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:65fd3d2e228cae024c411c5ccdffae4c315271eee4a8b839291f84f796b34eca", size = 818982 }, + { url = "https://files.pythonhosted.org/packages/ae/41/01a073765d75427e24710af035d8f0a773b5cedf23f61b63e7ef2ce960d6/regex-2024.7.24-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c414cbda77dbf13c3bc88b073a1a9f375c7b0cb5e115e15d4b73ec3a2fbc6f59", size = 804015 }, + { url = "https://files.pythonhosted.org/packages/3e/66/04b63f31580026c8b819aed7f171149177d10cfab27477ea8800a2268d50/regex-2024.7.24-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf7a89eef64b5455835f5ed30254ec19bf41f7541cd94f266ab7cbd463f00c41", size = 776517 }, + { url = "https://files.pythonhosted.org/packages/be/49/0c08a7a232e4e26e17afeedf13f331224d9377dde4876ed6e21e4a584a5d/regex-2024.7.24-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:19c65b00d42804e3fbea9708f0937d157e53429a39b7c61253ff15670ff62cb5", size = 766860 }, + { url = "https://files.pythonhosted.org/packages/24/44/35769388845cdd7be97e1232a59446b738054b61bc9c92a3b0bacfaf7bb1/regex-2024.7.24-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:7a5486ca56c8869070a966321d5ab416ff0f83f30e0e2da1ab48815c8d165d46", size = 692181 }, + { url = "https://files.pythonhosted.org/packages/50/be/4e09d5bc8de176153f209c95ca4e64b9def1748d693694a95dd4401ee7be/regex-2024.7.24-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f51f9556785e5a203713f5efd9c085b4a45aecd2a42573e2b5041881b588d1f", size = 762956 }, + { url = "https://files.pythonhosted.org/packages/90/63/b37152f25fe348aa31806bafa91df607d096e8f477fed9a5cf3de339dd5f/regex-2024.7.24-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:a4997716674d36a82eab3e86f8fa77080a5d8d96a389a61ea1d0e3a94a582cf7", size = 771978 }, + { url = "https://files.pythonhosted.org/packages/ab/ac/38186431f7c1874e3f790669be933accf1090ee53aba0ab1a811ef38f07e/regex-2024.7.24-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:c0abb5e4e8ce71a61d9446040c1e86d4e6d23f9097275c5bd49ed978755ff0fe", size = 840800 }, + { url = "https://files.pythonhosted.org/packages/e8/23/91b04dbf51a2c0ddf5b1e055e9e05ed091ebcf46f2b0e6e3d2fff121f903/regex-2024.7.24-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:18300a1d78cf1290fa583cd8b7cde26ecb73e9f5916690cf9d42de569c89b1ce", size = 838991 }, + { url = "https://files.pythonhosted.org/packages/36/fd/822110cc14b99bdd7d8c61487bc774f454120cd3d7492935bf13f3399716/regex-2024.7.24-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:416c0e4f56308f34cdb18c3f59849479dde5b19febdcd6e6fa4d04b6c31c9faa", size = 767539 }, + { url = "https://files.pythonhosted.org/packages/82/54/e24a8adfca74f9a421cd47657c51413919e7755e729608de6f4c5556e002/regex-2024.7.24-cp310-cp310-win32.whl", hash = "sha256:fb168b5924bef397b5ba13aabd8cf5df7d3d93f10218d7b925e360d436863f66", size = 257712 }, + { url = "https://files.pythonhosted.org/packages/fb/cc/6485c2fc72d0de9b55392246b80921639f1be62bed1e33e982940306b5ba/regex-2024.7.24-cp310-cp310-win_amd64.whl", hash = "sha256:6b9fc7e9cc983e75e2518496ba1afc524227c163e43d706688a6bb9eca41617e", size = 269661 }, + { url = "https://files.pythonhosted.org/packages/cb/ec/261f8434a47685d61e59a4ef3d9ce7902af521219f3ebd2194c7adb171a6/regex-2024.7.24-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:382281306e3adaaa7b8b9ebbb3ffb43358a7bbf585fa93821300a418bb975281", size = 470810 }, + { url = "https://files.pythonhosted.org/packages/f0/47/f33b1cac88841f95fff862476a9e875d9a10dae6912a675c6f13c128e5d9/regex-2024.7.24-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4fdd1384619f406ad9037fe6b6eaa3de2749e2e12084abc80169e8e075377d3b", size = 282126 }, + { url = "https://files.pythonhosted.org/packages/fc/1b/256ca4e2d5041c0aa2f1dc222f04412b796346ab9ce2aa5147405a9457b4/regex-2024.7.24-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3d974d24edb231446f708c455fd08f94c41c1ff4f04bcf06e5f36df5ef50b95a", size = 278920 }, + { url = "https://files.pythonhosted.org/packages/91/03/4603ec057c0bafd2f6f50b0bdda4b12a0ff81022decf1de007b485c356a6/regex-2024.7.24-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a2ec4419a3fe6cf8a4795752596dfe0adb4aea40d3683a132bae9c30b81e8d73", size = 785420 }, + { url = "https://files.pythonhosted.org/packages/75/f8/13b111fab93e6273e26de2926345e5ecf6ddad1e44c4d419d7b0924f9c52/regex-2024.7.24-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eb563dd3aea54c797adf513eeec819c4213d7dbfc311874eb4fd28d10f2ff0f2", size = 828164 }, + { url = "https://files.pythonhosted.org/packages/4a/80/bc3b9d31bd47ff578758af929af0ac1d6169b247e26fa6e87764007f3d93/regex-2024.7.24-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:45104baae8b9f67569f0f1dca5e1f1ed77a54ae1cd8b0b07aba89272710db61e", size = 812621 }, + { url = "https://files.pythonhosted.org/packages/8b/77/92d4a14530900d46dddc57b728eea65d723cc9fcfd07b96c2c141dabba84/regex-2024.7.24-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:994448ee01864501912abf2bad9203bffc34158e80fe8bfb5b031f4f8e16da51", size = 786609 }, + { url = "https://files.pythonhosted.org/packages/35/58/06695fd8afad4c8ed0a53ec5e222156398b9fe5afd58887ab94ea68e4d16/regex-2024.7.24-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3fac296f99283ac232d8125be932c5cd7644084a30748fda013028c815ba3364", size = 775290 }, + { url = "https://files.pythonhosted.org/packages/1b/0f/50b97ee1fc6965744b9e943b5c0f3740792ab54792df73d984510964ef29/regex-2024.7.24-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:7e37e809b9303ec3a179085415cb5f418ecf65ec98cdfe34f6a078b46ef823ee", size = 772849 }, + { url = "https://files.pythonhosted.org/packages/8f/64/565ff6cf241586ab7ae76bb4138c4d29bc1d1780973b457c2db30b21809a/regex-2024.7.24-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:01b689e887f612610c869421241e075c02f2e3d1ae93a037cb14f88ab6a8934c", size = 778428 }, + { url = "https://files.pythonhosted.org/packages/e5/fe/4ceabf4382e44e1e096ac46fd5e3bca490738b24157116a48270fd542e88/regex-2024.7.24-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f6442f0f0ff81775eaa5b05af8a0ffa1dda36e9cf6ec1e0d3d245e8564b684ce", size = 849436 }, + { url = "https://files.pythonhosted.org/packages/68/23/1868e40d6b594843fd1a3498ffe75d58674edfc90d95e18dd87865b93bf2/regex-2024.7.24-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:871e3ab2838fbcb4e0865a6e01233975df3a15e6fce93b6f99d75cacbd9862d1", size = 849484 }, + { url = "https://files.pythonhosted.org/packages/f3/52/bff76de2f6e2bc05edce3abeb7e98e6309aa022fc06071100a0216fbeb50/regex-2024.7.24-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:c918b7a1e26b4ab40409820ddccc5d49871a82329640f5005f73572d5eaa9b5e", size = 776712 }, + { url = "https://files.pythonhosted.org/packages/f2/72/70ade7b0b5fe5c6df38fdfa2a5a8273e3ea6a10b772aa671b7e889e78bae/regex-2024.7.24-cp311-cp311-win32.whl", hash = "sha256:2dfbb8baf8ba2c2b9aa2807f44ed272f0913eeeba002478c4577b8d29cde215c", size = 257716 }, + { url = "https://files.pythonhosted.org/packages/04/4d/80e04f4e27ab0cbc9096e2d10696da6d9c26a39b60db52670fd57614fea5/regex-2024.7.24-cp311-cp311-win_amd64.whl", hash = "sha256:538d30cd96ed7d1416d3956f94d54e426a8daf7c14527f6e0d6d425fcb4cca52", size = 269662 }, + { url = "https://files.pythonhosted.org/packages/0f/26/f505782f386ac0399a9237571833f187414882ab6902e2e71a1ecb506835/regex-2024.7.24-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:fe4ebef608553aff8deb845c7f4f1d0740ff76fa672c011cc0bacb2a00fbde86", size = 471748 }, + { url = "https://files.pythonhosted.org/packages/bb/1d/ea9a21beeb433dbfca31ab82867d69cb67ff8674af9fab6ebd55fa9d3387/regex-2024.7.24-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:74007a5b25b7a678459f06559504f1eec2f0f17bca218c9d56f6a0a12bfffdad", size = 282841 }, + { url = "https://files.pythonhosted.org/packages/9b/f2/c6182095baf0a10169c34e87133a8e73b2e816a80035669b1278e927685e/regex-2024.7.24-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7df9ea48641da022c2a3c9c641650cd09f0cd15e8908bf931ad538f5ca7919c9", size = 279114 }, + { url = "https://files.pythonhosted.org/packages/72/58/b5161bf890b6ca575a25685f19a4a3e3b6f4a072238814f8658123177d84/regex-2024.7.24-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6a1141a1dcc32904c47f6846b040275c6e5de0bf73f17d7a409035d55b76f289", size = 789749 }, + { url = "https://files.pythonhosted.org/packages/09/fb/5381b19b62f3a3494266be462f6a015a869cf4bfd8e14d6e7db67e2c8069/regex-2024.7.24-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80c811cfcb5c331237d9bad3bea2c391114588cf4131707e84d9493064d267f9", size = 831666 }, + { url = "https://files.pythonhosted.org/packages/3d/6d/2a21c85f970f9be79357d12cf4b97f4fc6bf3bf6b843c39dabbc4e5f1181/regex-2024.7.24-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7214477bf9bd195894cf24005b1e7b496f46833337b5dedb7b2a6e33f66d962c", size = 817544 }, + { url = "https://files.pythonhosted.org/packages/f9/ae/5f23e64f6cf170614237c654f3501a912dfb8549143d4b91d1cd13dba319/regex-2024.7.24-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d55588cba7553f0b6ec33130bc3e114b355570b45785cebdc9daed8c637dd440", size = 790854 }, + { url = "https://files.pythonhosted.org/packages/29/0a/d04baad1bbc49cdfb4aef90c4fc875a60aaf96d35a1616f1dfe8149716bc/regex-2024.7.24-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:558a57cfc32adcf19d3f791f62b5ff564922942e389e3cfdb538a23d65a6b610", size = 779242 }, + { url = "https://files.pythonhosted.org/packages/3a/27/b242a962f650c3213da4596d70e24c7c1c46e3aa0f79f2a81164291085f8/regex-2024.7.24-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a512eed9dfd4117110b1881ba9a59b31433caed0c4101b361f768e7bcbaf93c5", size = 776932 }, + { url = "https://files.pythonhosted.org/packages/9c/ae/de659bdfff80ad2c0b577a43dd89dbc43870a4fc4bbf604e452196758e83/regex-2024.7.24-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:86b17ba823ea76256b1885652e3a141a99a5c4422f4a869189db328321b73799", size = 784521 }, + { url = "https://files.pythonhosted.org/packages/d4/ac/eb6a796da0bdefbf09644a7868309423b18d344cf49963a9d36c13502d46/regex-2024.7.24-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:5eefee9bfe23f6df09ffb6dfb23809f4d74a78acef004aa904dc7c88b9944b05", size = 854548 }, + { url = "https://files.pythonhosted.org/packages/56/77/fde8d825dec69e70256e0925af6c81eea9acf0a634d3d80f619d8dcd6888/regex-2024.7.24-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:731fcd76bbdbf225e2eb85b7c38da9633ad3073822f5ab32379381e8c3c12e94", size = 853345 }, + { url = "https://files.pythonhosted.org/packages/ff/04/2b79ad0bb9bc05ab4386caa2c19aa047a66afcbdfc2640618ffc729841e4/regex-2024.7.24-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:eaef80eac3b4cfbdd6de53c6e108b4c534c21ae055d1dbea2de6b3b8ff3def38", size = 781414 }, + { url = "https://files.pythonhosted.org/packages/bf/71/d0af58199283ada7d25b20e416f5b155f50aad99b0e791c0966ff5a1cd00/regex-2024.7.24-cp312-cp312-win32.whl", hash = "sha256:185e029368d6f89f36e526764cf12bf8d6f0e3a2a7737da625a76f594bdfcbfc", size = 258125 }, + { url = "https://files.pythonhosted.org/packages/95/b3/10e875c45c60b010b66fc109b899c6fc4f05d485fe1d54abff98ce791124/regex-2024.7.24-cp312-cp312-win_amd64.whl", hash = "sha256:2f1baff13cc2521bea83ab2528e7a80cbe0ebb2c6f0bfad15be7da3aed443908", size = 269162 }, + { url = "https://files.pythonhosted.org/packages/dc/c6/78f26fe25efb7bec46028eff4db9fae07852defc7d2fe48fcbdba47ff3d1/regex-2024.7.24-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:0ffe3f9d430cd37d8fa5632ff6fb36d5b24818c5c986893063b4e5bdb84cdf24", size = 470815 }, + { url = "https://files.pythonhosted.org/packages/3d/c9/580ff2b99482ca90785e28720269f352a015f30430bb583ff7bcc519bb9a/regex-2024.7.24-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:25419b70ba00a16abc90ee5fce061228206173231f004437730b67ac77323f0d", size = 282117 }, + { url = "https://files.pythonhosted.org/packages/14/58/283c749340e4d7aad87a1fb93c6bf11f377a0da8aaff6f7f863b28050752/regex-2024.7.24-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:33e2614a7ce627f0cdf2ad104797d1f68342d967de3695678c0cb84f530709f8", size = 278915 }, + { url = "https://files.pythonhosted.org/packages/3a/72/2667206ef348d8e4cdd349d6f0e064002e8d393b66093181d1a865b94a11/regex-2024.7.24-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d33a0021893ede5969876052796165bab6006559ab845fd7b515a30abdd990dc", size = 777146 }, + { url = "https://files.pythonhosted.org/packages/93/14/a9123402a27d1a11d034cb51236a9f6e5ba01a38e8599ede95d46e4362fa/regex-2024.7.24-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:04ce29e2c5fedf296b1a1b0acc1724ba93a36fb14031f3abfb7abda2806c1535", size = 818435 }, + { url = "https://files.pythonhosted.org/packages/04/72/fbab33403723b661cbfed09c635bf6ecfc07268df1a56555d19f6f0da6af/regex-2024.7.24-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b16582783f44fbca6fcf46f61347340c787d7530d88b4d590a397a47583f31dd", size = 803404 }, + { url = "https://files.pythonhosted.org/packages/36/67/851cf82e2c47d46846cca15ba84f845e876257a54cb82f229d335cd5c67e/regex-2024.7.24-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:836d3cc225b3e8a943d0b02633fb2f28a66e281290302a79df0e1eaa984ff7c1", size = 775901 }, + { url = "https://files.pythonhosted.org/packages/7f/02/19abc35bbc20f05d4a4147319923dc880c4005a01917d41b3340bf0f84ae/regex-2024.7.24-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:438d9f0f4bc64e8dea78274caa5af971ceff0f8771e1a2333620969936ba10be", size = 766357 }, + { url = "https://files.pythonhosted.org/packages/18/fb/1e35f8cfe3cd1a086449db7bbf91b6e0051b91ebb71e67915b1b01d3a3cf/regex-2024.7.24-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:973335b1624859cb0e52f96062a28aa18f3a5fc77a96e4a3d6d76e29811a0e6e", size = 691636 }, + { url = "https://files.pythonhosted.org/packages/46/29/3561d53e0cb7a1d98385206a133988616637f98a4517ada9b714d6dff5c9/regex-2024.7.24-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:c5e69fd3eb0b409432b537fe3c6f44ac089c458ab6b78dcec14478422879ec5f", size = 762342 }, + { url = "https://files.pythonhosted.org/packages/28/8b/f7fb2feb45e2c16e6e49c55979519c7ac76f3432267bf64d4aabd5d3b47b/regex-2024.7.24-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:fbf8c2f00904eaf63ff37718eb13acf8e178cb940520e47b2f05027f5bb34ce3", size = 771548 }, + { url = "https://files.pythonhosted.org/packages/03/d1/629e72e8f04639e6fadfe67b8823cc94fdcd19192b0175bd086950fefca8/regex-2024.7.24-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:ae2757ace61bc4061b69af19e4689fa4416e1a04840f33b441034202b5cd02d4", size = 840214 }, + { url = "https://files.pythonhosted.org/packages/44/af/e523b6e074f90c0471d25898916d05a1b7a774b259be192f8bc6683c5966/regex-2024.7.24-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:44fc61b99035fd9b3b9453f1713234e5a7c92a04f3577252b45feefe1b327759", size = 838533 }, + { url = "https://files.pythonhosted.org/packages/3c/2a/af44a6747d1c331234f57d48cf2dcab221770cd755a7c16b5c358b485952/regex-2024.7.24-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:84c312cdf839e8b579f504afcd7b65f35d60b6285d892b19adea16355e8343c9", size = 767083 }, + { url = "https://files.pythonhosted.org/packages/90/86/865208eb0f0790d3e4c726d291acc5cbbfed4c5133a44dc99d7d746ff0bf/regex-2024.7.24-cp39-cp39-win32.whl", hash = "sha256:ca5b2028c2f7af4e13fb9fc29b28d0ce767c38c7facdf64f6c2cd040413055f1", size = 257737 }, + { url = "https://files.pythonhosted.org/packages/7f/61/b60849cd13f26a25b7aa61a0118c86c76b933a032d38b4657f4baeaeab5b/regex-2024.7.24-cp39-cp39-win_amd64.whl", hash = "sha256:7c479f5ae937ec9985ecaf42e2e10631551d909f203e31308c12d703922742f9", size = 269711 }, +] + +[[package]] +name = "requests" +version = "2.32.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "charset-normalizer", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "idna", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "urllib3", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/63/70/2bf7780ad2d390a8d301ad0b550f1581eadbd9a20f896afe06353c2a2913/requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760", size = 131218 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/9b/335f9764261e915ed497fcdeb11df5dfd6f7bf257d4a6a2a686d80da4d54/requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6", size = 64928 }, +] + +[[package]] +name = "requests-oauthlib" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "oauthlib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/42/f2/05f29bc3913aea15eb670be136045bf5c5bbf4b99ecb839da9b422bb2c85/requests-oauthlib-2.0.0.tar.gz", hash = "sha256:b3dffaebd884d8cd778494369603a9e7b58d29111bf6b41bdc2dcd87203af4e9", size = 55650 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3b/5d/63d4ae3b9daea098d5d6f5da83984853c1bbacd5dc826764b249fe119d24/requests_oauthlib-2.0.0-py2.py3-none-any.whl", hash = "sha256:7dd8a5c40426b779b0868c404bdef9768deccf22749cde15852df527e6269b36", size = 24179 }, +] + +[[package]] +name = "retrying" +version = "1.3.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ce/70/15ce8551d65b324e18c5aa6ef6998880f21ead51ebe5ed743c0950d7d9dd/retrying-1.3.4.tar.gz", hash = "sha256:345da8c5765bd982b1d1915deb9102fd3d1f7ad16bd84a9700b85f64d24e8f3e", size = 10929 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8f/04/9e36f28be4c0532c0e9207ff9dc01fb13a2b0eb036476a213b0000837d0e/retrying-1.3.4-py3-none-any.whl", hash = "sha256:8cc4d43cb8e1125e0ff3344e9de678fefd85db3b750b81b2240dc0183af37b35", size = 11602 }, +] + +[[package]] +name = "rfc3986" +version = "1.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/79/30/5b1b6c28c105629cc12b33bdcbb0b11b5bb1880c6cfbd955f9e792921aa8/rfc3986-1.5.0.tar.gz", hash = "sha256:270aaf10d87d0d4e095063c65bf3ddbc6ee3d0b226328ce21e036f946e421835", size = 49378 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c4/e5/63ca2c4edf4e00657584608bee1001302bbf8c5f569340b78304f2f446cb/rfc3986-1.5.0-py2.py3-none-any.whl", hash = "sha256:a86d6e1f5b1dc238b218b012df0aa79409667bb209e58da56d0b94704e712a97", size = 31976 }, +] + +[[package]] +name = "rhoknp" +version = "1.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c9/a9/08dc57ef4cc49a6efc403ffd43fe1b24a0c67600e1076236979d0f12a39c/rhoknp-1.3.0.tar.gz", hash = "sha256:ccbac0bba6662b00a573f2d0361e64978901202c44c56b50b3ce2afa5dbb23b6", size = 64150 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/42/416cb51910d0d7365daae32e62ca878db6e867760bf453a62118cb1d7d23/rhoknp-1.3.0-py3-none-any.whl", hash = "sha256:41ee79bbd25e8e1142d555a2e714356fd810b9bf9bb610c75b3bcb704c37ac00", size = 86838 }, +] + +[[package]] +name = "rich" +version = "13.7.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markdown-it-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pygments", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b3/01/c954e134dc440ab5f96952fe52b4fdc64225530320a910473c1fe270d9aa/rich-13.7.1.tar.gz", hash = "sha256:9be308cb1fe2f1f57d67ce99e95af38a1e2bc71ad9813b0e247cf7ffbcc3a432", size = 221248 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/87/67/a37f6214d0e9fe57f6ae54b2956d550ca8365857f42a1ce0392bb21d9410/rich-13.7.1-py3-none-any.whl", hash = "sha256:4edbae314f59eb482f54e9e30bf00d33350aaa94f4bfcd4e9e3110e64d0d7222", size = 240681 }, +] + +[[package]] +name = "rjieba" +version = "0.1.11" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/51/53/6bc9653460d3182383fdd972ee50c167acadc3aca440c9a4fb9ef9a201ad/rjieba-0.1.11.tar.gz", hash = "sha256:a9cdbefc404dc2536b0e8c0f7b084a70f9e7e412abab5a93b0e09420db0499bc", size = 7491 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/44/86/62d971b3bd07655ba2a0520825ffe0e0564e5a400a00f856a75498501148/rjieba-0.1.11-cp36-abi3-macosx_10_7_x86_64.whl", hash = "sha256:2c9e0b81e1d237b36e9c3657deeaed7d024a7ea50f935d056972e5603da5a071", size = 2863423 }, + { url = "https://files.pythonhosted.org/packages/41/15/0059998a355b7282b94584b6d916575606051a22f0770d78745edd5f8563/rjieba-0.1.11-cp36-abi3-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:b54a32a7147e5a79f57d285fdf42a227ba70357c7ea187c0b9c226358ea3fcdf", size = 5719263 }, + { url = "https://files.pythonhosted.org/packages/22/40/466e5106a72fc674207411433dafd09ccecbf8ad11b0a8fab5e3114be006/rjieba-0.1.11-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f5c2e93c43c2c9306b89b2afd04c59a9827faf678a77e458cbde505dad969783", size = 3895193 }, + { url = "https://files.pythonhosted.org/packages/7f/b7/e9c8323da708f51473af4ade8e5094c9b567b9fa7898dd25771e7813bc1f/rjieba-0.1.11-cp36-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:012c27e956f15521dc12d1951202872eef353caed346de65265925efac945aa6", size = 3678398 }, + { url = "https://files.pythonhosted.org/packages/8a/47/02b0f2e04a6a4718a7748fef767245a04f1309a1c0265896923e000f9c22/rjieba-0.1.11-cp36-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:a5496b464b6d362293d73832680df6050726609fa70987bee164b4477cf9e43f", size = 4120062 }, + { url = "https://files.pythonhosted.org/packages/6f/62/c2791f6d47c3856f60bd13fbbf162df90fe9f2c83c8a3ed095ea68fb4ab0/rjieba-0.1.11-cp36-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f84373342a797ab60bac32c560a98670e8e897e8e3ff7dd96fd27a858640e5cf", size = 4012543 }, + { url = "https://files.pythonhosted.org/packages/28/be/8999a88af21366952adafc34e60a0307e5a454ae144a70befe6c4270988b/rjieba-0.1.11-cp36-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cb38b8dd03a8280bc4df6307e00ef8ed57e115f0b4c75453aad3816a44f331f4", size = 4172578 }, + { url = "https://files.pythonhosted.org/packages/1c/27/3367d20eee9ab7e0d73f629eeecff138ecc7a4ee935a9e5728c5c88760f6/rjieba-0.1.11-cp36-abi3-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5fe3dd87452ff180d7986578c8e352fe1c1b577416cafdc11d3dfc1e35f1d1fc", size = 3720160 }, + { url = "https://files.pythonhosted.org/packages/c6/1c/4b3c20282986e408f87d41eef2db0f8a86168341b97a4c2399a4ec8a0d59/rjieba-0.1.11-cp36-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:2b8bd280d4f3730aba089b9f6dea91855742078804ecd48028f41c9099062c20", size = 3838996 }, + { url = "https://files.pythonhosted.org/packages/07/56/28931b1ae4c89e789d55d139c2cd607e53a963c6d94214da906d406f6702/rjieba-0.1.11-cp36-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:63faef666183bffdbbbd4beb756e079578990a08ee7a0c2bc1f97566f5a5b1d8", size = 4058009 }, + { url = "https://files.pythonhosted.org/packages/47/12/3da42febf293d915b9952a07d6047ba0f91d4d236736a81ea97ef3d6f8ca/rjieba-0.1.11-cp36-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:67e7635aea74038f7e7cd452a8eb4e3ad05c8e0ac12c03c32d3bdb8283b63dc1", size = 4010131 }, + { url = "https://files.pythonhosted.org/packages/b9/f2/8ff6385f547690486d110d2fbdf00e72978ba570d0e7c6429302d6146f7c/rjieba-0.1.11-cp36-abi3-musllinux_1_2_i686.whl", hash = "sha256:657c1863332b5bb9a4009975a99fc0c94f504b10ace84b36eb7dbfa1a3834491", size = 3864270 }, + { url = "https://files.pythonhosted.org/packages/5a/62/3433231d92af712c96ef6e9e64639b008d1ab2892fbfa4953f3b2a85213c/rjieba-0.1.11-cp36-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:d0ce26b8cb5b3101e9fa59e07c9ef5dec3c7d0dba11668d8101cd77970951650", size = 4015376 }, + { url = "https://files.pythonhosted.org/packages/8c/9e/18277bfcdbaae6794ca9b7076a47b1534c469cd378b5605e6e91b5dce60a/rjieba-0.1.11-cp36-abi3-win32.whl", hash = "sha256:b2e98ca673370f0b9bc61a4e78df7181876bdb8087c4257cbcb80deaa1d8a119", size = 2664075 }, + { url = "https://files.pythonhosted.org/packages/97/4d/74d6c68dd61bb3cf035646b728eedd370332795dbc6111c25616e95f77e3/rjieba-0.1.11-cp36-abi3-win_amd64.whl", hash = "sha256:61b4187c21b724dd1eba732482bdcdbf61623d64c936942d8e80d1a69315d3c7", size = 2728182 }, +] + +[[package]] +name = "rouge-score" +version = "0.1.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "nltk", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e2/c5/9136736c37022a6ad27fea38f3111eb8f02fe75d067f9a985cc358653102/rouge_score-0.1.2.tar.gz", hash = "sha256:c7d4da2683e68c9abf0135ef915d63a46643666f848e558a1b9f7ead17ff0f04", size = 17400 } + +[[package]] +name = "rpds-py" +version = "0.20.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/55/64/b693f262791b818880d17268f3f8181ef799b0d187f6f731b1772e05a29a/rpds_py-0.20.0.tar.gz", hash = "sha256:d72a210824facfdaf8768cf2d7ca25a042c30320b3020de2fa04640920d4e121", size = 25814 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/71/2d/a7e60483b72b91909e18f29a5c5ae847bac4e2ae95b77bb77e1f41819a58/rpds_py-0.20.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:3ad0fda1635f8439cde85c700f964b23ed5fc2d28016b32b9ee5fe30da5c84e2", size = 318432 }, + { url = "https://files.pythonhosted.org/packages/b5/b4/f15b0c55a6d880ce74170e7e28c3ed6c5acdbbd118df50b91d1dabf86008/rpds_py-0.20.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9bb4a0d90fdb03437c109a17eade42dfbf6190408f29b2744114d11586611d6f", size = 311333 }, + { url = "https://files.pythonhosted.org/packages/36/10/3f4e490fe6eb069c07c22357d0b4804cd94cb9f8d01345ef9b1d93482b9d/rpds_py-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c6377e647bbfd0a0b159fe557f2c6c602c159fc752fa316572f012fc0bf67150", size = 366697 }, + { url = "https://files.pythonhosted.org/packages/f5/c8/cd6ab31b4424c7fab3b17e153b6ea7d1bb0d7cabea5c1ef683cc8adb8bc2/rpds_py-0.20.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eb851b7df9dda52dc1415ebee12362047ce771fc36914586b2e9fcbd7d293b3e", size = 368386 }, + { url = "https://files.pythonhosted.org/packages/60/5e/642a44fda6dda90b5237af7a0ef1d088159c30a504852b94b0396eb62125/rpds_py-0.20.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1e0f80b739e5a8f54837be5d5c924483996b603d5502bfff79bf33da06164ee2", size = 395374 }, + { url = "https://files.pythonhosted.org/packages/7c/b5/ff18c093c9e72630f6d6242e5ccb0728ef8265ba0a154b5972f89d23790a/rpds_py-0.20.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5a8c94dad2e45324fc74dce25e1645d4d14df9a4e54a30fa0ae8bad9a63928e3", size = 433189 }, + { url = "https://files.pythonhosted.org/packages/4a/6d/1166a157b227f2333f8e8ae320b6b7ea2a6a38fbe7a3563ad76dffc8608d/rpds_py-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8e604fe73ba048c06085beaf51147eaec7df856824bfe7b98657cf436623daf", size = 354849 }, + { url = "https://files.pythonhosted.org/packages/70/a4/70ea49863ea09ae4c2971f2eef58e80b757e3c0f2f618c5815bb751f7847/rpds_py-0.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:df3de6b7726b52966edf29663e57306b23ef775faf0ac01a3e9f4012a24a4140", size = 373233 }, + { url = "https://files.pythonhosted.org/packages/3b/d3/822a28152a1e7e2ba0dc5d06cf8736f4cd64b191bb6ec47fb51d1c3c5ccf/rpds_py-0.20.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:cf258ede5bc22a45c8e726b29835b9303c285ab46fc7c3a4cc770736b5304c9f", size = 541852 }, + { url = "https://files.pythonhosted.org/packages/c6/a5/6ef91e4425dc8b3445ff77d292fc4c5e37046462434a0423c4e0a596a8bd/rpds_py-0.20.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:55fea87029cded5df854ca7e192ec7bdb7ecd1d9a3f63d5c4eb09148acf4a7ce", size = 547630 }, + { url = "https://files.pythonhosted.org/packages/72/f8/d5625ee05c4e5c478954a16d9359069c66fe8ac8cd5ddf28f80d3b321837/rpds_py-0.20.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ae94bd0b2f02c28e199e9bc51485d0c5601f58780636185660f86bf80c89af94", size = 525766 }, + { url = "https://files.pythonhosted.org/packages/94/3c/1ff1ed6ae323b3e16fdfcdae0f0a67f373a6c3d991229dc32b499edeffb7/rpds_py-0.20.0-cp310-none-win32.whl", hash = "sha256:28527c685f237c05445efec62426d285e47a58fb05ba0090a4340b73ecda6dee", size = 199174 }, + { url = "https://files.pythonhosted.org/packages/ec/ba/5762c0aee2403dfea14ed74b0f8a2415cfdbb21cf745d600d9a8ac952c5b/rpds_py-0.20.0-cp310-none-win_amd64.whl", hash = "sha256:238a2d5b1cad28cdc6ed15faf93a998336eb041c4e440dd7f902528b8891b399", size = 213543 }, + { url = "https://files.pythonhosted.org/packages/ab/2a/191374c52d7be0b056cc2a04d718d2244c152f915d4a8d2db2aacc526189/rpds_py-0.20.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:ac2f4f7a98934c2ed6505aead07b979e6f999389f16b714448fb39bbaa86a489", size = 318369 }, + { url = "https://files.pythonhosted.org/packages/0e/6a/2c9fdcc6d235ac0d61ec4fd9981184689c3e682abd05e3caa49bccb9c298/rpds_py-0.20.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:220002c1b846db9afd83371d08d239fdc865e8f8c5795bbaec20916a76db3318", size = 311303 }, + { url = "https://files.pythonhosted.org/packages/d2/b2/725487d29633f64ef8f9cbf4729111a0b61702c8f8e94db1653930f52cce/rpds_py-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8d7919548df3f25374a1f5d01fbcd38dacab338ef5f33e044744b5c36729c8db", size = 366424 }, + { url = "https://files.pythonhosted.org/packages/7a/8c/668195ab9226d01b7cf7cd9e59c1c0be1df05d602df7ec0cf46f857dcf59/rpds_py-0.20.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:758406267907b3781beee0f0edfe4a179fbd97c0be2e9b1154d7f0a1279cf8e5", size = 368359 }, + { url = "https://files.pythonhosted.org/packages/52/28/356f6a39c1adeb02cf3e5dd526f5e8e54e17899bef045397abcfbf50dffa/rpds_py-0.20.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3d61339e9f84a3f0767b1995adfb171a0d00a1185192718a17af6e124728e0f5", size = 394886 }, + { url = "https://files.pythonhosted.org/packages/a2/65/640fb1a89080a8fb6f4bebd3dafb65a2edba82e2e44c33e6eb0f3e7956f1/rpds_py-0.20.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1259c7b3705ac0a0bd38197565a5d603218591d3f6cee6e614e380b6ba61c6f6", size = 432416 }, + { url = "https://files.pythonhosted.org/packages/a7/e8/85835077b782555d6b3416874b702ea6ebd7db1f145283c9252968670dd5/rpds_py-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5c1dc0f53856b9cc9a0ccca0a7cc61d3d20a7088201c0937f3f4048c1718a209", size = 354819 }, + { url = "https://files.pythonhosted.org/packages/4f/87/1ac631e923d65cbf36fbcfc6eaa702a169496de1311e54be142f178e53ee/rpds_py-0.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7e60cb630f674a31f0368ed32b2a6b4331b8350d67de53c0359992444b116dd3", size = 373282 }, + { url = "https://files.pythonhosted.org/packages/e4/ce/cb316f7970189e217b998191c7cf0da2ede3d5437932c86a7210dc1e9994/rpds_py-0.20.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:dbe982f38565bb50cb7fb061ebf762c2f254ca3d8c20d4006878766e84266272", size = 541540 }, + { url = "https://files.pythonhosted.org/packages/90/d7/4112d7655ec8aff168ecc91d4ceb51c557336edde7e6ccf6463691a2f253/rpds_py-0.20.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:514b3293b64187172bc77c8fb0cdae26981618021053b30d8371c3a902d4d5ad", size = 547640 }, + { url = "https://files.pythonhosted.org/packages/ab/44/4f61d64dfed98cc71623f3a7fcb612df636a208b4b2c6611eaa985e130a9/rpds_py-0.20.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d0a26ffe9d4dd35e4dfdd1e71f46401cff0181c75ac174711ccff0459135fa58", size = 525555 }, + { url = "https://files.pythonhosted.org/packages/35/f2/a862d81eacb21f340d584cd1c749c289979f9a60e9229f78bffc0418a199/rpds_py-0.20.0-cp311-none-win32.whl", hash = "sha256:89c19a494bf3ad08c1da49445cc5d13d8fefc265f48ee7e7556839acdacf69d0", size = 199338 }, + { url = "https://files.pythonhosted.org/packages/cc/ec/77d0674f9af4872919f3738018558dd9d37ad3f7ad792d062eadd4af7cba/rpds_py-0.20.0-cp311-none-win_amd64.whl", hash = "sha256:c638144ce971df84650d3ed0096e2ae7af8e62ecbbb7b201c8935c370df00a2c", size = 213585 }, + { url = "https://files.pythonhosted.org/packages/89/b7/f9682c5cc37fcc035f4a0fc33c1fe92ec9cbfdee0cdfd071cf948f53e0df/rpds_py-0.20.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:a84ab91cbe7aab97f7446652d0ed37d35b68a465aeef8fc41932a9d7eee2c1a6", size = 321468 }, + { url = "https://files.pythonhosted.org/packages/b8/ad/fc82be4eaceb8d444cb6fc1956ce972b3a0795104279de05e0e4131d0a47/rpds_py-0.20.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:56e27147a5a4c2c21633ff8475d185734c0e4befd1c989b5b95a5d0db699b21b", size = 313062 }, + { url = "https://files.pythonhosted.org/packages/0e/1c/6039e80b13a08569a304dc13476dc986352dca4598e909384db043b4e2bb/rpds_py-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2580b0c34583b85efec8c5c5ec9edf2dfe817330cc882ee972ae650e7b5ef739", size = 370168 }, + { url = "https://files.pythonhosted.org/packages/dc/c9/5b9aa35acfb58946b4b785bc8e700ac313669e02fb100f3efa6176a83e81/rpds_py-0.20.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b80d4a7900cf6b66bb9cee5c352b2d708e29e5a37fe9bf784fa97fc11504bf6c", size = 371376 }, + { url = "https://files.pythonhosted.org/packages/7b/dd/0e0dbeb70d8a5357d2814764d467ded98d81d90d3570de4fb05ec7224f6b/rpds_py-0.20.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:50eccbf054e62a7b2209b28dc7a22d6254860209d6753e6b78cfaeb0075d7bee", size = 397200 }, + { url = "https://files.pythonhosted.org/packages/e4/da/a47d931eb688ccfd77a7389e45935c79c41e8098d984d87335004baccb1d/rpds_py-0.20.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:49a8063ea4296b3a7e81a5dfb8f7b2d73f0b1c20c2af401fb0cdf22e14711a96", size = 426824 }, + { url = "https://files.pythonhosted.org/packages/0f/f7/a59a673594e6c2ff2dbc44b00fd4ecdec2fc399bb6a7bd82d612699a0121/rpds_py-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea438162a9fcbee3ecf36c23e6c68237479f89f962f82dae83dc15feeceb37e4", size = 357967 }, + { url = "https://files.pythonhosted.org/packages/5f/61/3ba1905396b2cb7088f9503a460b87da33452da54d478cb9241f6ad16d00/rpds_py-0.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:18d7585c463087bddcfa74c2ba267339f14f2515158ac4db30b1f9cbdb62c8ef", size = 378905 }, + { url = "https://files.pythonhosted.org/packages/08/31/6d0df9356b4edb0a3a077f1ef714e25ad21f9f5382fc490c2383691885ea/rpds_py-0.20.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d4c7d1a051eeb39f5c9547e82ea27cbcc28338482242e3e0b7768033cb083821", size = 546348 }, + { url = "https://files.pythonhosted.org/packages/ae/15/d33c021de5cb793101df9961c3c746dfc476953dbbf5db337d8010dffd4e/rpds_py-0.20.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e4df1e3b3bec320790f699890d41c59d250f6beda159ea3c44c3f5bac1976940", size = 553152 }, + { url = "https://files.pythonhosted.org/packages/70/2d/5536d28c507a4679179ab15aa0049440e4d3dd6752050fa0843ed11e9354/rpds_py-0.20.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2cf126d33a91ee6eedc7f3197b53e87a2acdac63602c0f03a02dd69e4b138174", size = 528807 }, + { url = "https://files.pythonhosted.org/packages/e3/62/7ebe6ec0d3dd6130921f8cffb7e34afb7f71b3819aa0446a24c5e81245ec/rpds_py-0.20.0-cp312-none-win32.whl", hash = "sha256:8bc7690f7caee50b04a79bf017a8d020c1f48c2a1077ffe172abec59870f1139", size = 200993 }, + { url = "https://files.pythonhosted.org/packages/ec/2f/b938864d66b86a6e4acadefdc56de75ef56f7cafdfd568a6464605457bd5/rpds_py-0.20.0-cp312-none-win_amd64.whl", hash = "sha256:0e13e6952ef264c40587d510ad676a988df19adea20444c2b295e536457bc585", size = 214458 }, + { url = "https://files.pythonhosted.org/packages/99/32/43b919a0a423c270a838ac2726b1c7168b946f2563fd99a51aaa9692d00f/rpds_py-0.20.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:aa9a0521aeca7d4941499a73ad7d4f8ffa3d1affc50b9ea11d992cd7eff18a29", size = 321465 }, + { url = "https://files.pythonhosted.org/packages/58/a9/c4d899cb28e9e47b0ff12462e8f827381f243176036f17bef9c1604667f2/rpds_py-0.20.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4a1f1d51eccb7e6c32ae89243cb352389228ea62f89cd80823ea7dd1b98e0b91", size = 312900 }, + { url = "https://files.pythonhosted.org/packages/8f/90/9e51670575b5dfaa8c823369ef7d943087bfb73d4f124a99ad6ef19a2b26/rpds_py-0.20.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8a86a9b96070674fc88b6f9f71a97d2c1d3e5165574615d1f9168ecba4cecb24", size = 370973 }, + { url = "https://files.pythonhosted.org/packages/fc/c1/523f2a03f853fc0d4c1acbef161747e9ab7df0a8abf6236106e333540921/rpds_py-0.20.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6c8ef2ebf76df43f5750b46851ed1cdf8f109d7787ca40035fe19fbdc1acc5a7", size = 370890 }, + { url = "https://files.pythonhosted.org/packages/51/ca/2458a771f16b0931de4d384decbe43016710bc948036c8f4562d6e063437/rpds_py-0.20.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b74b25f024b421d5859d156750ea9a65651793d51b76a2e9238c05c9d5f203a9", size = 397174 }, + { url = "https://files.pythonhosted.org/packages/00/7d/6e06807f6305ea2408b364efb0eef83a6e21b5e7b5267ad6b473b9a7e416/rpds_py-0.20.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:57eb94a8c16ab08fef6404301c38318e2c5a32216bf5de453e2714c964c125c8", size = 426449 }, + { url = "https://files.pythonhosted.org/packages/8c/d1/6c9e65260a819a1714510a7d69ac1d68aa23ee9ce8a2d9da12187263c8fc/rpds_py-0.20.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e1940dae14e715e2e02dfd5b0f64a52e8374a517a1e531ad9412319dc3ac7879", size = 357698 }, + { url = "https://files.pythonhosted.org/packages/5d/fb/ecea8b5286d2f03eec922be7173a03ed17278944f7c124348f535116db15/rpds_py-0.20.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d20277fd62e1b992a50c43f13fbe13277a31f8c9f70d59759c88f644d66c619f", size = 378530 }, + { url = "https://files.pythonhosted.org/packages/e3/e3/ac72f858957f52a109c588589b73bd2fad4a0fc82387fb55fb34aeb0f9cd/rpds_py-0.20.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:06db23d43f26478303e954c34c75182356ca9aa7797d22c5345b16871ab9c45c", size = 545753 }, + { url = "https://files.pythonhosted.org/packages/b2/a4/a27683b519d5fc98e4390a3b130117d80fd475c67aeda8aac83c0e8e326a/rpds_py-0.20.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:b2a5db5397d82fa847e4c624b0c98fe59d2d9b7cf0ce6de09e4d2e80f8f5b3f2", size = 552443 }, + { url = "https://files.pythonhosted.org/packages/a1/ed/c074d248409b4432b1ccb2056974175fa0af2d1bc1f9c21121f80a358fa3/rpds_py-0.20.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5a35df9f5548fd79cb2f52d27182108c3e6641a4feb0f39067911bf2adaa3e57", size = 528380 }, + { url = "https://files.pythonhosted.org/packages/d5/bd/04caf938895d2d78201e89c0c8a94dfd9990c34a19ff52fb01d0912343e3/rpds_py-0.20.0-cp313-none-win32.whl", hash = "sha256:fd2d84f40633bc475ef2d5490b9c19543fbf18596dcb1b291e3a12ea5d722f7a", size = 200540 }, + { url = "https://files.pythonhosted.org/packages/95/cc/109eb8b9863680411ae703664abacaa035820c7755acc9686d5dd02cdd2e/rpds_py-0.20.0-cp313-none-win_amd64.whl", hash = "sha256:9bc2d153989e3216b0559251b0c260cfd168ec78b1fac33dd485750a228db5a2", size = 214111 }, + { url = "https://files.pythonhosted.org/packages/a1/55/228f6d9a8c6940c8d5e49db5e0434ffcbad669c33509ac39cb0af061b0fa/rpds_py-0.20.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:3fde368e9140312b6e8b6c09fb9f8c8c2f00999d1823403ae90cc00480221b22", size = 319496 }, + { url = "https://files.pythonhosted.org/packages/68/61/074236253586feb550954f8b4359d38eefb45bafcbbb7d2e74062a82f386/rpds_py-0.20.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9824fb430c9cf9af743cf7aaf6707bf14323fb51ee74425c380f4c846ea70789", size = 311837 }, + { url = "https://files.pythonhosted.org/packages/03/67/ed6c2fe076bf78296934d4356145fedf3c7c2f8d490e099bcf6f31794dc0/rpds_py-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:11ef6ce74616342888b69878d45e9f779b95d4bd48b382a229fe624a409b72c5", size = 367819 }, + { url = "https://files.pythonhosted.org/packages/30/25/4a9e7b89b6760ac032f375cb236e4f8e518ad1fad685c40b6a9752056d6f/rpds_py-0.20.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c52d3f2f82b763a24ef52f5d24358553e8403ce05f893b5347098014f2d9eff2", size = 368322 }, + { url = "https://files.pythonhosted.org/packages/67/17/0255bb0e564517b53343ea672ebec9fb7ad40e9083ca09a4080fbc986bb9/rpds_py-0.20.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9d35cef91e59ebbeaa45214861874bc6f19eb35de96db73e467a8358d701a96c", size = 395552 }, + { url = "https://files.pythonhosted.org/packages/af/6e/77c65ccb0d7cdc39ec2be19b918a4d4fe9e2d2a1c5cab36745b36f2c1e59/rpds_py-0.20.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d72278a30111e5b5525c1dd96120d9e958464316f55adb030433ea905866f4de", size = 433735 }, + { url = "https://files.pythonhosted.org/packages/04/d8/e73d56b1908a6c0e3e5982365eb293170cd458cc25a19363f69c76e00fd2/rpds_py-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4c29cbbba378759ac5786730d1c3cb4ec6f8ababf5c42a9ce303dc4b3d08cda", size = 355542 }, + { url = "https://files.pythonhosted.org/packages/47/df/e72c79053b0c882b818bfd8f0ed1f1ace550bc9cdba27165cb73dddb9394/rpds_py-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6632f2d04f15d1bd6fe0eedd3b86d9061b836ddca4c03d5cf5c7e9e6b7c14580", size = 373644 }, + { url = "https://files.pythonhosted.org/packages/7f/00/3e16cb08c0cc6a233f0f61e4d009e3098cbe280ec975d14f28935bd15316/rpds_py-0.20.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d0b67d87bb45ed1cd020e8fbf2307d449b68abc45402fe1a4ac9e46c3c8b192b", size = 543139 }, + { url = "https://files.pythonhosted.org/packages/41/71/799c6b6f6031ed535f22fcf6802601cc7f981842bd28007bb7bb4bd10b2f/rpds_py-0.20.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:ec31a99ca63bf3cd7f1a5ac9fe95c5e2d060d3c768a09bc1d16e235840861420", size = 548007 }, + { url = "https://files.pythonhosted.org/packages/53/58/ad03eb6718e814fa045198c72d45d2ae60180eb48338f22c9fa34bd89964/rpds_py-0.20.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:22e6c9976e38f4d8c4a63bd8a8edac5307dffd3ee7e6026d97f3cc3a2dc02a0b", size = 526102 }, + { url = "https://files.pythonhosted.org/packages/78/99/a52e5b460f2311fc8ee75ff769e8d67e76208947180eacb4f153af2d9967/rpds_py-0.20.0-cp39-none-win32.whl", hash = "sha256:569b3ea770c2717b730b61998b6c54996adee3cef69fc28d444f3e7920313cf7", size = 199391 }, + { url = "https://files.pythonhosted.org/packages/0c/7d/fd42a27fe392a69faf4a5e635870fc425edcb998485ee73afbc734ecef16/rpds_py-0.20.0-cp39-none-win_amd64.whl", hash = "sha256:e6900ecdd50ce0facf703f7a00df12374b74bbc8ad9fe0f6559947fb20f82364", size = 213205 }, + { url = "https://files.pythonhosted.org/packages/06/39/bf1f664c347c946ef56cecaa896e3693d91acc741afa78ebb3fdb7aba08b/rpds_py-0.20.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:617c7357272c67696fd052811e352ac54ed1d9b49ab370261a80d3b6ce385045", size = 319444 }, + { url = "https://files.pythonhosted.org/packages/c1/71/876135d3cb90d62468540b84e8e83ff4dc92052ab309bfdea7ea0b9221ad/rpds_py-0.20.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:9426133526f69fcaba6e42146b4e12d6bc6c839b8b555097020e2b78ce908dcc", size = 311699 }, + { url = "https://files.pythonhosted.org/packages/f7/da/8ccaeba6a3dda7467aebaf893de9eafd56275e2c90773c83bf15fb0b8374/rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:deb62214c42a261cb3eb04d474f7155279c1a8a8c30ac89b7dcb1721d92c3c02", size = 367825 }, + { url = "https://files.pythonhosted.org/packages/04/b6/02a54c47c178d180395b3c9a8bfb3b93906e08f9acf7b4a1067d27c3fae0/rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fcaeb7b57f1a1e071ebd748984359fef83ecb026325b9d4ca847c95bc7311c92", size = 369046 }, + { url = "https://files.pythonhosted.org/packages/a7/64/df4966743aa4def8727dc13d06527c8b13eb7412c1429def2d4701bee520/rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d454b8749b4bd70dd0a79f428731ee263fa6995f83ccb8bada706e8d1d3ff89d", size = 395896 }, + { url = "https://files.pythonhosted.org/packages/6f/d9/7ff03ff3642c600f27ff94512bb158a8d815fea5ed4162c75a7e850d6003/rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d807dc2051abe041b6649681dce568f8e10668e3c1c6543ebae58f2d7e617855", size = 432427 }, + { url = "https://files.pythonhosted.org/packages/b8/c6/e1b886f7277b3454e55e85332e165091c19114eecb5377b88d892fd36ccf/rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3c20f0ddeb6e29126d45f89206b8291352b8c5b44384e78a6499d68b52ae511", size = 355403 }, + { url = "https://files.pythonhosted.org/packages/e2/62/e26bd5b944e547c7bfd0b6ca7e306bfa430f8bd298ab72a1217976a7ca8d/rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b7f19250ceef892adf27f0399b9e5afad019288e9be756d6919cb58892129f51", size = 374491 }, + { url = "https://files.pythonhosted.org/packages/c3/92/93c5a530898d3a5d1ce087455071ba714b77806ed9ffee4070d0c7a53b7e/rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:4f1ed4749a08379555cebf4650453f14452eaa9c43d0a95c49db50c18b7da075", size = 543622 }, + { url = "https://files.pythonhosted.org/packages/01/9e/d68fba289625b5d3c9d1925825d7da716fbf812bda2133ac409021d5db13/rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:dcedf0b42bcb4cfff4101d7771a10532415a6106062f005ab97d1d0ab5681c60", size = 548558 }, + { url = "https://files.pythonhosted.org/packages/bf/d6/4b2fad4898154365f0f2bd72ffd190349274a4c1d6a6f94f02a83bb2b8f1/rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:39ed0d010457a78f54090fafb5d108501b5aa5604cc22408fc1c0c77eac14344", size = 525753 }, + { url = "https://files.pythonhosted.org/packages/d2/ea/6f121d1802f3adae1981aea4209ea66f9d3c7f2f6d6b85ef4f13a61d17ef/rpds_py-0.20.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:bb273176be34a746bdac0b0d7e4e2c467323d13640b736c4c477881a3220a989", size = 213529 }, + { url = "https://files.pythonhosted.org/packages/0a/6f/7ab47005469f0d73dad89d29b733e3555d454a45146c30f5628242e56d33/rpds_py-0.20.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f918a1a130a6dfe1d7fe0f105064141342e7dd1611f2e6a21cd2f5c8cb1cfb3e", size = 320800 }, + { url = "https://files.pythonhosted.org/packages/cc/a1/bef9e0ef30f89c7516559ca7acc40e8ae70397535a0b1a4535a4a01d9ed0/rpds_py-0.20.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:f60012a73aa396be721558caa3a6fd49b3dd0033d1675c6d59c4502e870fcf0c", size = 312001 }, + { url = "https://files.pythonhosted.org/packages/31/44/9093c5dca95ee463c3669651e710af182eb6f9cd83626b15a2ebde2247b1/rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d2b1ad682a3dfda2a4e8ad8572f3100f95fad98cb99faf37ff0ddfe9cbf9d03", size = 369279 }, + { url = "https://files.pythonhosted.org/packages/6f/ac/0c36e067681fa3fe4c60a9422b011ec0ccc80c1e124f5210951f7982e887/rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:614fdafe9f5f19c63ea02817fa4861c606a59a604a77c8cdef5aa01d28b97921", size = 369716 }, + { url = "https://files.pythonhosted.org/packages/6b/78/8896e08625d46ea5bfdd526ee688b91eeafecbc3cf7223612c82ed77905b/rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fa518bcd7600c584bf42e6617ee8132869e877db2f76bcdc281ec6a4113a53ab", size = 396708 }, + { url = "https://files.pythonhosted.org/packages/24/5f/d865ae460e47e46fd2b489f2aceed34439bd8f18a1ff414c299142e0e22a/rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f0475242f447cc6cb8a9dd486d68b2ef7fbee84427124c232bff5f63b1fe11e5", size = 433356 }, + { url = "https://files.pythonhosted.org/packages/bd/8b/04031937ffa565021f934a9acf44bb6b1b60ea19fa9e58950b32357e85a1/rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f90a4cd061914a60bd51c68bcb4357086991bd0bb93d8aa66a6da7701370708f", size = 356157 }, + { url = "https://files.pythonhosted.org/packages/3a/64/1f0471b1e688704a716e07340b85f4145109359951feb08676a1f3b8cec4/rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:def7400461c3a3f26e49078302e1c1b38f6752342c77e3cf72ce91ca69fb1bc1", size = 374826 }, + { url = "https://files.pythonhosted.org/packages/73/4e/082c0c5eba463e29dff1c6b49557f6ad0d6faae4b46832fa9c1e5b69b7ba/rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:65794e4048ee837494aea3c21a28ad5fc080994dfba5b036cf84de37f7ad5074", size = 544549 }, + { url = "https://files.pythonhosted.org/packages/cd/ee/f4af0a62d1ba912c4a3a7f5ec04350946ddd59017f3f3d1c227b20ddf558/rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:faefcc78f53a88f3076b7f8be0a8f8d35133a3ecf7f3770895c25f8813460f08", size = 549245 }, + { url = "https://files.pythonhosted.org/packages/59/42/34601dc773be86a85a9ca47f68301a69fdb019aaae0c1426813f265f5ac0/rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:5b4f105deeffa28bbcdff6c49b34e74903139afa690e35d2d9e3c2c2fba18cec", size = 526722 }, + { url = "https://files.pythonhosted.org/packages/ff/4f/280745d5180c9d78df6b53b6e8b65336f8b6adeb958a8fd19c749fded637/rpds_py-0.20.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:fdfc3a892927458d98f3d55428ae46b921d1f7543b89382fdb483f5640daaec8", size = 214379 }, +] + +[[package]] +name = "rsa" +version = "4.9" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyasn1", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/aa/65/7d973b89c4d2351d7fb232c2e452547ddfa243e93131e7cfa766da627b52/rsa-4.9.tar.gz", hash = "sha256:e38464a49c6c85d7f1351b0126661487a7e0a14a50f1675ec50eb34d4f20ef21", size = 29711 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/49/97/fa78e3d2f65c02c8e1268b9aba606569fe97f6c8f7c2d74394553347c145/rsa-4.9-py3-none-any.whl", hash = "sha256:90260d9058e514786967344d0ef75fa8727eed8a7d2e43ce9f4bcf1b536174f7", size = 34315 }, +] + +[[package]] +name = "ruff" +version = "0.1.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e7/f9/0453128f11c9ec0ec48ea125237634be3a1b8c4835282ab648373d8e6ff2/ruff-0.1.5.tar.gz", hash = "sha256:5cbec0ef2ae1748fb194f420fb03fb2c25c3258c86129af7172ff8f198f125ab", size = 1700097 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/59/e1/8267e29a09b59df28b4472ae4807d8db60b8e9672c5acf343e1eedc97330/ruff-0.1.5-py3-none-macosx_10_7_x86_64.whl", hash = "sha256:32d47fc69261c21a4c48916f16ca272bf2f273eb635d91c65d5cd548bf1f3d96", size = 6028745 }, + { url = "https://files.pythonhosted.org/packages/a1/2e/acf77283eb23154ed2220c70d84018a179267c58b63fa944938d0f599892/ruff-0.1.5-py3-none-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:171276c1df6c07fa0597fb946139ced1c2978f4f0b8254f201281729981f3c17", size = 11640319 }, + { url = "https://files.pythonhosted.org/packages/dc/2e/c7f7e235fd12543ddd9f8218d59ee4b017a504d43b6a5584eebe96410ff3/ruff-0.1.5-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:17ef33cd0bb7316ca65649fc748acc1406dfa4da96a3d0cde6d52f2e866c7b39", size = 5898810 }, + { url = "https://files.pythonhosted.org/packages/81/b6/bd72889302e8503bfa87d190afbb6f6c7ac1345d680071e990328929c359/ruff-0.1.5-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b2c205827b3f8c13b4a432e9585750b93fd907986fe1aec62b2a02cf4401eee6", size = 5601321 }, + { url = "https://files.pythonhosted.org/packages/79/9d/d057e791cebac3e9af27fa4b3c78daf09c7ff35a344943c0d1dd25155cc4/ruff-0.1.5-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bb408e3a2ad8f6881d0f2e7ad70cddb3ed9f200eb3517a91a245bbe27101d379", size = 6041325 }, + { url = "https://files.pythonhosted.org/packages/28/fd/53511e2a3cd5627706e34572e9af0f61e645126d90995f1e2071364aefb2/ruff-0.1.5-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:f20dc5e5905ddb407060ca27267c7174f532375c08076d1a953cf7bb016f5a24", size = 6709618 }, + { url = "https://files.pythonhosted.org/packages/54/db/834a231e191517b0d7911147fbcb92a2206c9f74d43dd23870d81849c5fc/ruff-0.1.5-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aafb9d2b671ed934998e881e2c0f5845a4295e84e719359c71c39a5363cccc91", size = 6565491 }, + { url = "https://files.pythonhosted.org/packages/66/21/4b5bbf5cb3b9d5d1213f345eb932db0c94471d5000d602b80e2ee967c853/ruff-0.1.5-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a4894dddb476597a0ba4473d72a23151b8b3b0b5f958f2cf4d3f1c572cdb7af7", size = 7598072 }, + { url = "https://files.pythonhosted.org/packages/ae/cf/95e9a2930c1a220fb2c5769d746901eea4576cc46f1200f0178a42a863ba/ruff-0.1.5-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a00a7ec893f665ed60008c70fe9eeb58d210e6b4d83ec6654a9904871f982a2a", size = 6266450 }, + { url = "https://files.pythonhosted.org/packages/59/e8/4839e31304c9a030fb04ae0c304c488b0bd942d3589f8314e86901138fed/ruff-0.1.5-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:a8c11206b47f283cbda399a654fd0178d7a389e631f19f51da15cbe631480c5b", size = 5846163 }, + { url = "https://files.pythonhosted.org/packages/d1/2b/3a25a022bff4114206fa52c071275ee2b97aa7be7aad9559f60f6b96db39/ruff-0.1.5-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:fa29e67b3284b9a79b1a85ee66e293a94ac6b7bb068b307a8a373c3d343aa8ec", size = 5603623 }, + { url = "https://files.pythonhosted.org/packages/a1/73/40b0188a03de86b24909e665274c8bc667c609c4f0a775fcc324fd5a23b5/ruff-0.1.5-py3-none-musllinux_1_2_i686.whl", hash = "sha256:9b97fd6da44d6cceb188147b68db69a5741fbc736465b5cea3928fdac0bc1aeb", size = 5924325 }, + { url = "https://files.pythonhosted.org/packages/75/d1/018dc8535a3c2083e888b9ad32169dccca5ebd486d4fc30e29e1c488334e/ruff-0.1.5-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:721f4b9d3b4161df8dc9f09aa8562e39d14e55a4dbaa451a8e55bdc9590e20f4", size = 6327392 }, + { url = "https://files.pythonhosted.org/packages/fb/f1/f50c6ee75d53df3f763eb067213d2411a9d8fcc98740a84bc88c7c00aea9/ruff-0.1.5-py3-none-win32.whl", hash = "sha256:f80c73bba6bc69e4fdc73b3991db0b546ce641bdcd5b07210b8ad6f64c79f1ab", size = 5799683 }, + { url = "https://files.pythonhosted.org/packages/88/54/549cff12b6e98e873fcb5b4cf85418c5f8ca53d473f2084dd5616695e925/ruff-0.1.5-py3-none-win_amd64.whl", hash = "sha256:c21fe20ee7d76206d290a76271c1af7a5096bc4c73ab9383ed2ad35f852a0087", size = 6181396 }, + { url = "https://files.pythonhosted.org/packages/2e/07/648e71f330cac7954268df52ad72196a6dc18a60b263af73577641c7ac25/ruff-0.1.5-py3-none-win_arm64.whl", hash = "sha256:82bfcb9927e88c1ed50f49ac6c9728dab3ea451212693fe40d08d314663e412f", size = 5928650 }, +] + +[[package]] +name = "s3transfer" +version = "0.10.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "botocore", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cb/67/94c6730ee4c34505b14d94040e2f31edf144c230b6b49e971b4f25ff8fab/s3transfer-0.10.2.tar.gz", hash = "sha256:0711534e9356d3cc692fdde846b4a1e4b0cb6519971860796e6bc4c7aea00ef6", size = 144095 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3c/4a/b221409913760d26cf4498b7b1741d510c82d3ad38381984a3ddc135ec66/s3transfer-0.10.2-py3-none-any.whl", hash = "sha256:eca1c20de70a39daee580aef4986996620f365c4e0fda6a86100231d62f1bf69", size = 82716 }, +] + +[[package]] +name = "sacrebleu" +version = "1.5.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "portalocker", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/fb/b1/145f754099689f9efe1525753c63eb81c97c9329add30385360af9256b72/sacrebleu-1.5.1.tar.gz", hash = "sha256:e8184f0d2ec45dd7ef0883fbce3976b2b7cf581e04d0854ac5f7eb394318b84b", size = 54725 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/57/0c7ca4e31a126189dab99c19951910bd081dea5bbd25f24b77107750eae7/sacrebleu-1.5.1-py3-none-any.whl", hash = "sha256:fbe54fcc7f4e370c9ded0c7cb9bbdadabc020bcde9217daea043b4906b962fdc", size = 54519 }, +] + +[[package]] +name = "sacremoses" +version = "0.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "joblib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "regex", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1d/51/fbdc4af4f6e85d26169e28be3763fe50ddfd0d4bf8b871422b0788dcc4d2/sacremoses-0.1.1.tar.gz", hash = "sha256:b6fd5d3a766b02154ed80b962ddca91e1fd25629c0978c7efba21ebccf663934", size = 883188 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0b/f0/89ee2bc9da434bd78464f288fdb346bc2932f2ee80a90b2a4bbbac262c74/sacremoses-0.1.1-py3-none-any.whl", hash = "sha256:31e04c98b169bfd902144824d191825cd69220cdb4ae4bcf1ec58a7db5587b1a", size = 897476 }, +] + +[[package]] +name = "safetensors" +version = "0.4.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/41/5b/0e63bf736e171463481c5ea3406650dc25aa044083062d321820e7a1ef9f/safetensors-0.4.4.tar.gz", hash = "sha256:5fe3e9b705250d0172ed4e100a811543108653fb2b66b9e702a088ad03772a07", size = 69522 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cb/fa/bd12d51c70986156031c25eae2d092ad8ef8b5cadb4e684a78b620b28320/safetensors-0.4.4-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:2adb497ada13097f30e386e88c959c0fda855a5f6f98845710f5bb2c57e14f12", size = 392399 }, + { url = "https://files.pythonhosted.org/packages/b7/1e/f146555161e21918e00726b2bff1e2517faa8b2953e53a5a45c5f5bef64e/safetensors-0.4.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:7db7fdc2d71fd1444d85ca3f3d682ba2df7d61a637dfc6d80793f439eae264ab", size = 381919 }, + { url = "https://files.pythonhosted.org/packages/fb/f7/0c97595790f03ff86505c375cddf3a26b6d645ff2cbc819936287a66a744/safetensors-0.4.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8d4f0eed76b430f009fbefca1a0028ddb112891b03cb556d7440d5cd68eb89a9", size = 441235 }, + { url = "https://files.pythonhosted.org/packages/77/8b/0d1e055536f1c0ac137d446806d50d9d952bed85688d733a81913cf09367/safetensors-0.4.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:57d216fab0b5c432aabf7170883d7c11671622bde8bd1436c46d633163a703f6", size = 440000 }, + { url = "https://files.pythonhosted.org/packages/bd/85/3a73b4ff7a46dd7606f924ededc31468fd385221670d840005b8dbdb7a37/safetensors-0.4.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7d9b76322e49c056bcc819f8bdca37a2daa5a6d42c07f30927b501088db03309", size = 477919 }, + { url = "https://files.pythonhosted.org/packages/dd/41/b832227d04a8b65b32e2be13dbe8212db0135514380148c9b81c1b08c023/safetensors-0.4.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:32f0d1f6243e90ee43bc6ee3e8c30ac5b09ca63f5dd35dbc985a1fc5208c451a", size = 496838 }, + { url = "https://files.pythonhosted.org/packages/18/f3/27bf4d7112b194eea2d8401706953080692d37ace1b74b36fcc7234961cd/safetensors-0.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:44d464bdc384874601a177375028012a5f177f1505279f9456fea84bbc575c7f", size = 435539 }, + { url = "https://files.pythonhosted.org/packages/b1/98/d75bbdaca03d571e5e5e1ef600f3015cd5f9884126eb53a3377b4111fea1/safetensors-0.4.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:63144e36209ad8e4e65384dbf2d52dd5b1866986079c00a72335402a38aacdc5", size = 457051 }, + { url = "https://files.pythonhosted.org/packages/03/e1/b7849306e47234ef548c2b32e65f2ffee0640bfad8c65e4dd37b6fee981c/safetensors-0.4.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:051d5ecd490af7245258000304b812825974d5e56f14a3ff7e1b8b2ba6dc2ed4", size = 619613 }, + { url = "https://files.pythonhosted.org/packages/e9/d9/cbf1316161d0a1b4b0aceeb16ddb396f49363133618cc062e4abd66b2ea9/safetensors-0.4.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:51bc8429d9376224cd3cf7e8ce4f208b4c930cd10e515b6ac6a72cbc3370f0d9", size = 605422 }, + { url = "https://files.pythonhosted.org/packages/48/47/16ece1369794b9d3bc057a42fed0601779d21f57d0b0b1b671a78410d74d/safetensors-0.4.4-cp310-none-win32.whl", hash = "sha256:fb7b54830cee8cf9923d969e2df87ce20e625b1af2fd194222ab902d3adcc29c", size = 272398 }, + { url = "https://files.pythonhosted.org/packages/b4/a9/f28d4a8a082ef513755a1a2393a924999892142ed235aed57ab558cd1bc9/safetensors-0.4.4-cp310-none-win_amd64.whl", hash = "sha256:4b3e8aa8226d6560de8c2b9d5ff8555ea482599c670610758afdc97f3e021e9c", size = 285884 }, + { url = "https://files.pythonhosted.org/packages/0f/1b/27cea7a581019d0d674284048ff76e3a6e048bc3ae3c31cb0bfc93641180/safetensors-0.4.4-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:bbaa31f2cb49013818bde319232ccd72da62ee40f7d2aa532083eda5664e85ff", size = 392373 }, + { url = "https://files.pythonhosted.org/packages/36/46/93c39c96188a88ca15d12759bb51f52ce7365f6fd19ef09580bc096e8860/safetensors-0.4.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9fdcb80f4e9fbb33b58e9bf95e7dbbedff505d1bcd1c05f7c7ce883632710006", size = 381488 }, + { url = "https://files.pythonhosted.org/packages/37/a2/93cab60b8e2c8ea6343a04cdd2c09c860c9640eaaffbf8b771a0e8f98e7d/safetensors-0.4.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:55c14c20be247b8a1aeaf3ab4476265e3ca83096bb8e09bb1a7aa806088def4f", size = 441025 }, + { url = "https://files.pythonhosted.org/packages/19/37/2a5220dce5eff841328bfc3071f4a7063f3eb12341893b2688669fc67115/safetensors-0.4.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:949aaa1118660f992dbf0968487b3e3cfdad67f948658ab08c6b5762e90cc8b6", size = 439791 }, + { url = "https://files.pythonhosted.org/packages/f8/93/1d894ff44df26baf4c2471a5874388361390d3cb1cc4811cff40fc01373e/safetensors-0.4.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c11a4ab7debc456326a2bac67f35ee0ac792bcf812c7562a4a28559a5c795e27", size = 477752 }, + { url = "https://files.pythonhosted.org/packages/a5/17/b697f517c7ffb8d62d1ef17c6224c00edbb96b931e565d887476a51ac803/safetensors-0.4.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c0cea44bba5c5601b297bc8307e4075535b95163402e4906b2e9b82788a2a6df", size = 496019 }, + { url = "https://files.pythonhosted.org/packages/af/b9/c33f69f4dad9c65209efb76c2be6968af5219e31ccfd344a0025d972252f/safetensors-0.4.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9d752c97f6bbe327352f76e5b86442d776abc789249fc5e72eacb49e6916482", size = 435416 }, + { url = "https://files.pythonhosted.org/packages/71/59/f6480a68df2f4fb5aefae45a800d9bc043c0549210075275fef190a896ce/safetensors-0.4.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:03f2bb92e61b055ef6cc22883ad1ae898010a95730fa988c60a23800eb742c2c", size = 456771 }, + { url = "https://files.pythonhosted.org/packages/09/01/2a7507cdf7318fb68596e6537ef81e83cfc171c483b4a786b9c947368e19/safetensors-0.4.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:87bf3f91a9328a941acc44eceffd4e1f5f89b030985b2966637e582157173b98", size = 619456 }, + { url = "https://files.pythonhosted.org/packages/80/b3/4bb5b1fb025cb8c81fe8a76371334860a9c276fade616f83fd53feef2740/safetensors-0.4.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:20d218ec2b6899d29d6895419a58b6e44cc5ff8f0cc29fac8d236a8978ab702e", size = 605125 }, + { url = "https://files.pythonhosted.org/packages/09/93/0d6d54b84eff8361dc257fa306ae0ef1899025a2d9657efe8384ac8b7267/safetensors-0.4.4-cp311-none-win32.whl", hash = "sha256:8079486118919f600c603536e2490ca37b3dbd3280e3ad6eaacfe6264605ac8a", size = 272273 }, + { url = "https://files.pythonhosted.org/packages/21/4f/5ee44681c7ea827f9d3c104ca429865b41c05a4163eff7f0599152c2e682/safetensors-0.4.4-cp311-none-win_amd64.whl", hash = "sha256:2f8c2eb0615e2e64ee27d478c7c13f51e5329d7972d9e15528d3e4cfc4a08f0d", size = 285982 }, + { url = "https://files.pythonhosted.org/packages/e2/41/a491dbe3fc1c195ce648939a87d3b4b3800eaade2f05278a6dc02b575c51/safetensors-0.4.4-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:baec5675944b4a47749c93c01c73d826ef7d42d36ba8d0dba36336fa80c76426", size = 391372 }, + { url = "https://files.pythonhosted.org/packages/3a/a1/d99aa8d10fa8d82276ee2aaa87afd0a6b96e69c128eaa9f93524b52c5276/safetensors-0.4.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f15117b96866401825f3e94543145028a2947d19974429246ce59403f49e77c6", size = 381800 }, + { url = "https://files.pythonhosted.org/packages/c8/1c/4fa05b79afdd4688a357a42433565b5b09137af6b4f6cd0c9e371466e2f1/safetensors-0.4.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6a13a9caea485df164c51be4eb0c87f97f790b7c3213d635eba2314d959fe929", size = 440817 }, + { url = "https://files.pythonhosted.org/packages/65/c0/152b059debd3cee4f44b7df972e915a38f776379ea99ce4a3cbea3f78dbd/safetensors-0.4.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6b54bc4ca5f9b9bba8cd4fb91c24b2446a86b5ae7f8975cf3b7a277353c3127c", size = 439483 }, + { url = "https://files.pythonhosted.org/packages/9c/93/20c05daeecf6fa93b9403c3660df1d983d7ddd5cdb3e3710ff41b72754dd/safetensors-0.4.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:08332c22e03b651c8eb7bf5fc2de90044f3672f43403b3d9ac7e7e0f4f76495e", size = 476631 }, + { url = "https://files.pythonhosted.org/packages/84/2f/bfe3e54b7dbcaef3f10b8f3c71146790ab18b0bd79ad9ca2bc2c950b68df/safetensors-0.4.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bb62841e839ee992c37bb75e75891c7f4904e772db3691c59daaca5b4ab960e1", size = 493575 }, + { url = "https://files.pythonhosted.org/packages/1b/0b/2a1b405131f26b95acdb3ed6c8e3a8c84de72d364fd26202d43e68ec4bad/safetensors-0.4.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8e5b927acc5f2f59547270b0309a46d983edc44be64e1ca27a7fcb0474d6cd67", size = 434891 }, + { url = "https://files.pythonhosted.org/packages/31/ce/cad390a08128ebcb74be79a1e03c496a4773059b2541c6a97a52fd1705fb/safetensors-0.4.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2a69c71b1ae98a8021a09a0b43363b0143b0ce74e7c0e83cacba691b62655fb8", size = 457631 }, + { url = "https://files.pythonhosted.org/packages/9f/83/d9d6e6a45d624c27155f4336af8e7b2bcde346137f6460dcd5e1bcdc2e3f/safetensors-0.4.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:23654ad162c02a5636f0cd520a0310902c4421aab1d91a0b667722a4937cc445", size = 619367 }, + { url = "https://files.pythonhosted.org/packages/9f/20/b37e1ae87cb83a1c2fe5cf0710bab12d6f186474cbbdda4fda2d7d57d225/safetensors-0.4.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:0677c109d949cf53756859160b955b2e75b0eefe952189c184d7be30ecf7e858", size = 605302 }, + { url = "https://files.pythonhosted.org/packages/99/5a/9237f1d0adba5eec3711d7c1911b3111631a86779d692fe8ad2cd709d6a4/safetensors-0.4.4-cp312-none-win32.whl", hash = "sha256:a51d0ddd4deb8871c6de15a772ef40b3dbd26a3c0451bb9e66bc76fc5a784e5b", size = 273434 }, + { url = "https://files.pythonhosted.org/packages/b9/dd/b11f3a33fe7b6c94fde08b3de094b93d3438d67922ef90bcb5002e306e0b/safetensors-0.4.4-cp312-none-win_amd64.whl", hash = "sha256:2d065059e75a798bc1933c293b68d04d79b586bb7f8c921e0ca1e82759d0dbb1", size = 286347 }, + { url = "https://files.pythonhosted.org/packages/b3/d6/7a4db869a295b57066e1399eb467c38df86439d3766c850ca8eb75b5e3a3/safetensors-0.4.4-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:9d625692578dd40a112df30c02a1adf068027566abd8e6a74893bb13d441c150", size = 391373 }, + { url = "https://files.pythonhosted.org/packages/1e/97/de856ad42ef65822ff982e7af7fc889cd717240672b45c647af7ea05c631/safetensors-0.4.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:7cabcf39c81e5b988d0adefdaea2eb9b4fd9bd62d5ed6559988c62f36bfa9a89", size = 382523 }, + { url = "https://files.pythonhosted.org/packages/07/d2/d9316af4c15b4ca0362cb4498abe47be6e04f7119f3ccf697e38ee04d33b/safetensors-0.4.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8359bef65f49d51476e9811d59c015f0ddae618ee0e44144f5595278c9f8268c", size = 441039 }, + { url = "https://files.pythonhosted.org/packages/e8/ac/478e910c891feadb693316b31447f14929b7047a612df9b628589b89be3c/safetensors-0.4.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1a32c662e7df9226fd850f054a3ead0e4213a96a70b5ce37b2d26ba27004e013", size = 439516 }, + { url = "https://files.pythonhosted.org/packages/81/43/f9929e854c4fcca98459f03de003d9619dd5f7d10d74e03df7af9907b119/safetensors-0.4.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c329a4dcc395364a1c0d2d1574d725fe81a840783dda64c31c5a60fc7d41472c", size = 477242 }, + { url = "https://files.pythonhosted.org/packages/0a/4d/b754f59fe395ea5bd8531c090c557e161fffed1753eeb3d87c0f8eaa62c4/safetensors-0.4.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:239ee093b1db877c9f8fe2d71331a97f3b9c7c0d3ab9f09c4851004a11f44b65", size = 494615 }, + { url = "https://files.pythonhosted.org/packages/54/7d/b26801dab2ecb499eb1ebdb46be65600b49bb062fe12b298150695a6e23c/safetensors-0.4.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bd574145d930cf9405a64f9923600879a5ce51d9f315443a5f706374841327b6", size = 434933 }, + { url = "https://files.pythonhosted.org/packages/e2/40/0f6627ad98e21e620a6835f02729f6b701804d3c452f8773648cbd0b9c2c/safetensors-0.4.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f6784eed29f9e036acb0b7769d9e78a0dc2c72c2d8ba7903005350d817e287a4", size = 457646 }, + { url = "https://files.pythonhosted.org/packages/30/1e/7f7819d1be7c36fbedcb7099a461b79e0ed19631b3ca5595e0f81501bb2c/safetensors-0.4.4-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:65a4a6072436bf0a4825b1c295d248cc17e5f4651e60ee62427a5bcaa8622a7a", size = 619204 }, + { url = "https://files.pythonhosted.org/packages/b1/58/e91e8c9888303919ce56f038fcad4147431fd95630890799bf8c928d1d34/safetensors-0.4.4-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:df81e3407630de060ae8313da49509c3caa33b1a9415562284eaf3d0c7705f9f", size = 605400 }, + { url = "https://files.pythonhosted.org/packages/f1/a5/ef6bdca5a44bef3930a7d821f792ba09f259c9077202c4cb779f50bb9609/safetensors-0.4.4-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:5cf6c6f6193797372adf50c91d0171743d16299491c75acad8650107dffa9269", size = 393304 }, + { url = "https://files.pythonhosted.org/packages/58/ac/339b1c04c47b00ce8854e072f91c620a4fedf736309fbfa44762ba76dc12/safetensors-0.4.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:419010156b914a3e5da4e4adf992bee050924d0fe423c4b329e523e2c14c3547", size = 383245 }, + { url = "https://files.pythonhosted.org/packages/ea/d7/ba4f035f8aef21374b43507a1853add3f73ba6c85e36fd5825a0f17b8ff7/safetensors-0.4.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88f6fd5a5c1302ce79993cc5feeadcc795a70f953c762544d01fb02b2db4ea33", size = 442349 }, + { url = "https://files.pythonhosted.org/packages/80/c9/a263b7595f0ca9f019472f1bc1d8723e829bdb81af84e2de5dda4e14c64d/safetensors-0.4.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d468cffb82d90789696d5b4d8b6ab8843052cba58a15296691a7a3df55143cd2", size = 440677 }, + { url = "https://files.pythonhosted.org/packages/31/17/90863da8ebb65194f769c6e7b19c98839f43ab752d1922a83b05efb2e325/safetensors-0.4.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9353c2af2dd467333d4850a16edb66855e795561cd170685178f706c80d2c71e", size = 478779 }, + { url = "https://files.pythonhosted.org/packages/12/c8/8efe5c84b032b46d9986520c7d3fd9e5057f0dea7b0d3900033eb5d29af1/safetensors-0.4.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:83c155b4a33368d9b9c2543e78f2452090fb030c52401ca608ef16fa58c98353", size = 498363 }, + { url = "https://files.pythonhosted.org/packages/9a/2e/810c5db5dc49657c8a8dbaff3c10bfe15411390e7e91a914a65c74305f94/safetensors-0.4.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9850754c434e636ce3dc586f534bb23bcbd78940c304775bee9005bf610e98f1", size = 436322 }, + { url = "https://files.pythonhosted.org/packages/42/4e/9360ccd309dd3e82c00e97fc44b9e4909bedf317e3cd28dde3371a400908/safetensors-0.4.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:275f500b4d26f67b6ec05629a4600645231bd75e4ed42087a7c1801bff04f4b3", size = 458167 }, + { url = "https://files.pythonhosted.org/packages/54/d1/e8b551c703f620d2d76fe1152768bcc1982b1e1e443265e4d42d4df7d941/safetensors-0.4.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:5c2308de665b7130cd0e40a2329278226e4cf083f7400c51ca7e19ccfb3886f3", size = 620106 }, + { url = "https://files.pythonhosted.org/packages/01/46/edc9d2b5ea7eb0bc278e3c1e5a24168731be757ff9366bab1138884e880d/safetensors-0.4.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:e06a9ebc8656e030ccfe44634f2a541b4b1801cd52e390a53ad8bacbd65f8518", size = 606211 }, + { url = "https://files.pythonhosted.org/packages/b6/f8/2687e0ad6e425330e2ea9abf301574006d511acaea8791947fba54ba0c59/safetensors-0.4.4-cp39-none-win32.whl", hash = "sha256:ef73df487b7c14b477016947c92708c2d929e1dee2bacdd6fff5a82ed4539537", size = 273099 }, + { url = "https://files.pythonhosted.org/packages/f1/7b/52ce228922f3fc2b42b8d1724ff6afe74791020f11a5f93d82b4a6e1e626/safetensors-0.4.4-cp39-none-win_amd64.whl", hash = "sha256:83d054818a8d1198d8bd8bc3ea2aac112a2c19def2bf73758321976788706398", size = 286075 }, + { url = "https://files.pythonhosted.org/packages/dd/fd/7a760367b62752e8c6d57c3759eaa57e5b47f55524bba3d803e03f922f95/safetensors-0.4.4-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:1d1f34c71371f0e034004a0b583284b45d233dd0b5f64a9125e16b8a01d15067", size = 393406 }, + { url = "https://files.pythonhosted.org/packages/dd/21/628d56eeae4bd0dcb5b11a9ec4001a50d2f85b726b10a864f72f34ba486f/safetensors-0.4.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:1a8043a33d58bc9b30dfac90f75712134ca34733ec3d8267b1bd682afe7194f5", size = 383386 }, + { url = "https://files.pythonhosted.org/packages/19/27/699124b4c6c27b7860140bac7ee6c50bde104e55951f8f5163f9ad20faa9/safetensors-0.4.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8db8f0c59c84792c12661f8efa85de160f80efe16b87a9d5de91b93f9e0bce3c", size = 442158 }, + { url = "https://files.pythonhosted.org/packages/23/01/85a621bdded944d6800f654c823a00df513263f1921a96d67d7fceb2ffb9/safetensors-0.4.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cfc1fc38e37630dd12d519bdec9dcd4b345aec9930bb9ce0ed04461f49e58b52", size = 436170 }, + { url = "https://files.pythonhosted.org/packages/4f/a3/b15adfffc6c8faaae6416f5c70ee4c64e4986b630b4ada18a314228a15e2/safetensors-0.4.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e5c9d86d9b13b18aafa88303e2cd21e677f5da2a14c828d2c460fe513af2e9a5", size = 458196 }, + { url = "https://files.pythonhosted.org/packages/8c/c1/ca829972be495326b5a986fe15e2ef16ecc4c35959942555091938f457af/safetensors-0.4.4-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:43251d7f29a59120a26f5a0d9583b9e112999e500afabcfdcb91606d3c5c89e3", size = 620510 }, + { url = "https://files.pythonhosted.org/packages/e7/50/89e5eac4120b55422450d5221c86d526ace14e222ea3f6c0c005f8f011ec/safetensors-0.4.4-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:2c42e9b277513b81cf507e6121c7b432b3235f980cac04f39f435b7902857f91", size = 606993 }, + { url = "https://files.pythonhosted.org/packages/d4/d4/151f64fc310f3c98ae2006b3a13085877010ac7a683406f1f3edb5c73152/safetensors-0.4.4-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:bb1ed4fcb0b3c2f3ea2c5767434622fe5d660e5752f21ac2e8d737b1e5e480bb", size = 393088 }, + { url = "https://files.pythonhosted.org/packages/91/ea/8aea163fc4e159b906bb61b761d143bfa49b33760e8b9084b1a1aab6982e/safetensors-0.4.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:73fc9a0a4343188bdb421783e600bfaf81d0793cd4cce6bafb3c2ed567a74cd5", size = 384522 }, + { url = "https://files.pythonhosted.org/packages/58/bc/906197e033a41743ced905836db00be16962cac93096e8c00fec1189d17b/safetensors-0.4.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2c37e6b714200824c73ca6eaf007382de76f39466a46e97558b8dc4cf643cfbf", size = 442172 }, + { url = "https://files.pythonhosted.org/packages/a7/31/f37f28dc8113b3fdd168c38764357131545c288302330674fcbbb86df2b2/safetensors-0.4.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f75698c5c5c542417ac4956acfc420f7d4a2396adca63a015fd66641ea751759", size = 436121 }, + { url = "https://files.pythonhosted.org/packages/ac/65/cefeaf9a5c83130ac0125f07630cdc265334eb27b9b16e35f77ab494bce4/safetensors-0.4.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ca1a209157f242eb183e209040097118472e169f2e069bfbd40c303e24866543", size = 458503 }, + { url = "https://files.pythonhosted.org/packages/3f/1d/05c864060e3d76e354f380f90b23fe1bd2fcfde0240856933550bc859bf3/safetensors-0.4.4-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:177f2b60a058f92a3cec7a1786c9106c29eca8987ecdfb79ee88126e5f47fa31", size = 621334 }, + { url = "https://files.pythonhosted.org/packages/b2/f7/a7d1ae30e0d5e890e6b2aa89ba627e723f9f73b619313e0194df17e5c49f/safetensors-0.4.4-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:ee9622e84fe6e4cd4f020e5fda70d6206feff3157731df7151d457fdae18e541", size = 607406 }, +] + +[[package]] +name = "sagemaker" +version = "2.226.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "boto3", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "cloudpickle", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "docker", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "google-pasta", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "importlib-metadata", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jsonschema", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pandas", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pathos", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "platformdirs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "psutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "schema", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "smdebug-rulesconfig", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tblib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "urllib3", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ef/2b/24d51493505aa3c460470e5b4c12ae441325a4f998e64bb498803f1ca676/sagemaker-2.226.1.tar.gz", hash = "sha256:c4b6aede5bf800abc5de384ad4ccf1e0357bc047fd360b3254059c8cb38f5bb5", size = 1148161 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/32/7c/1716beb800e9dd2cd63974b031eba23c26d0fc67ce64f9fcaa01584996f2/sagemaker-2.226.1-py3-none-any.whl", hash = "sha256:57773fa4ce01c7ee0ec9928579073eabcea065baac23d2021db57d2afcf38ebf", size = 1529707 }, +] + +[[package]] +name = "schema" +version = "0.7.7" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d4/01/0ea2e66bad2f13271e93b729c653747614784d3ebde219679e41ccdceecd/schema-0.7.7.tar.gz", hash = "sha256:7da553abd2958a19dc2547c388cde53398b39196175a9be59ea1caf5ab0a1807", size = 44245 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ad/1b/81855a88c6db2b114d5b2e9f96339190d5ee4d1b981d217fa32127bb00e0/schema-0.7.7-py2.py3-none-any.whl", hash = "sha256:5d976a5b50f36e74e2157b47097b60002bd4d42e65425fcc9c9befadb4255dde", size = 18632 }, +] + +[[package]] +name = "scikit-learn" +version = "1.5.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "joblib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "scipy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "threadpoolctl", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/92/72/2961b9874a9ddf2b0f95f329d4e67f67c3301c1d88ba5e239ff25661bb85/scikit_learn-1.5.1.tar.gz", hash = "sha256:0ea5d40c0e3951df445721927448755d3fe1d80833b0b7308ebff5d2a45e6414", size = 6958368 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f8/59/d8ea8c05e61d2afa988dfcfe47526595b531e94d23babf58d2e00a35f646/scikit_learn-1.5.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:781586c414f8cc58e71da4f3d7af311e0505a683e112f2f62919e3019abd3745", size = 12102257 }, + { url = "https://files.pythonhosted.org/packages/1f/c6/ba8e5691acca616adc8f0d6f8f5e79d55b927530aa404ee712b077acf0cf/scikit_learn-1.5.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:f5b213bc29cc30a89a3130393b0e39c847a15d769d6e59539cd86b75d276b1a7", size = 10975310 }, + { url = "https://files.pythonhosted.org/packages/5c/c6/e362563cc7dfe37e4699cbf2b2d22c2854be227c254976de1c4854fc6e84/scikit_learn-1.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1ff4ba34c2abff5ec59c803ed1d97d61b036f659a17f55be102679e88f926fac", size = 12496508 }, + { url = "https://files.pythonhosted.org/packages/f2/60/6c589c91e474721efdcec82ea9cc5c743359e52637e46c364ee5236666ef/scikit_learn-1.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:161808750c267b77b4a9603cf9c93579c7a74ba8486b1336034c2f1579546d21", size = 13352348 }, + { url = "https://files.pythonhosted.org/packages/f1/13/de29b945fb28fc0c24159d3a83f1250c5232c1c9abac12434c7c3447e9cc/scikit_learn-1.5.1-cp310-cp310-win_amd64.whl", hash = "sha256:10e49170691514a94bb2e03787aa921b82dbc507a4ea1f20fd95557862c98dc1", size = 10966250 }, + { url = "https://files.pythonhosted.org/packages/03/86/ab9f95e338c5ef5b4e79463ee91e55aae553213835e59bf038bc0cc21bf8/scikit_learn-1.5.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:154297ee43c0b83af12464adeab378dee2d0a700ccd03979e2b821e7dd7cc1c2", size = 12087598 }, + { url = "https://files.pythonhosted.org/packages/7d/d7/fb80c63062b60b1fa5dcb2d4dd3a4e83bd8c68cdc83cf6ff8c016228f184/scikit_learn-1.5.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:b5e865e9bd59396220de49cb4a57b17016256637c61b4c5cc81aaf16bc123bbe", size = 10979067 }, + { url = "https://files.pythonhosted.org/packages/c1/f8/fd3fa610cac686952d8c78b8b44cf5263c6c03885bd8e5d5819c684b44e8/scikit_learn-1.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:909144d50f367a513cee6090873ae582dba019cb3fca063b38054fa42704c3a4", size = 12485469 }, + { url = "https://files.pythonhosted.org/packages/32/63/ed228892adad313aab0d0f9261241e7bf1efe36730a2788ad424bcad00ca/scikit_learn-1.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:689b6f74b2c880276e365fe84fe4f1befd6a774f016339c65655eaff12e10cbf", size = 13335048 }, + { url = "https://files.pythonhosted.org/packages/5d/55/0403bf2031250ac982c8053397889fbc5a3a2b3798b913dae4f51c3af6a4/scikit_learn-1.5.1-cp311-cp311-win_amd64.whl", hash = "sha256:9a07f90846313a7639af6a019d849ff72baadfa4c74c778821ae0fad07b7275b", size = 10988436 }, + { url = "https://files.pythonhosted.org/packages/b1/8d/cf392a56e24627093a467642c8b9263052372131359b570df29aaf4811ab/scikit_learn-1.5.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5944ce1faada31c55fb2ba20a5346b88e36811aab504ccafb9f0339e9f780395", size = 12102404 }, + { url = "https://files.pythonhosted.org/packages/d5/2c/734fc9269bdb6768905ac41b82d75264b26925b1e462f4ebf45fe4f17646/scikit_learn-1.5.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:0828673c5b520e879f2af6a9e99eee0eefea69a2188be1ca68a6121b809055c1", size = 11037398 }, + { url = "https://files.pythonhosted.org/packages/d3/a9/15774b178bcd1cde1c470adbdb554e1504dce7c302e02ff736c90d65e014/scikit_learn-1.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:508907e5f81390e16d754e8815f7497e52139162fd69c4fdbd2dfa5d6cc88915", size = 12089887 }, + { url = "https://files.pythonhosted.org/packages/8a/5d/047cde25131eef3a38d03317fa7d25d6f60ce6e8ccfd24ac88b3e309fc00/scikit_learn-1.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:97625f217c5c0c5d0505fa2af28ae424bd37949bb2f16ace3ff5f2f81fb4498b", size = 13079093 }, + { url = "https://files.pythonhosted.org/packages/cb/be/dec2a8d31d133034a8ec51ae68ac564ec9bde1c78a64551f1438c3690b9e/scikit_learn-1.5.1-cp312-cp312-win_amd64.whl", hash = "sha256:da3f404e9e284d2b0a157e1b56b6566a34eb2798205cba35a211df3296ab7a74", size = 10945350 }, + { url = "https://files.pythonhosted.org/packages/cb/9f/d2837e96be692f99b92a3cb192e8f46501f7ddab6c93a07a9b206f7b3297/scikit_learn-1.5.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:88e0672c7ac21eb149d409c74cc29f1d611d5158175846e7a9c2427bd12b3956", size = 12138083 }, + { url = "https://files.pythonhosted.org/packages/18/3e/b46f298305c243395b88f0f201c32946bdd448e9583315255d87706c3170/scikit_learn-1.5.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:7b073a27797a283187a4ef4ee149959defc350b46cbf63a84d8514fe16b69855", size = 11005997 }, + { url = "https://files.pythonhosted.org/packages/00/84/8d2174ef802da1b9eedc8691883ed08a16318e2189fd5377e5bc2d404c0b/scikit_learn-1.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b59e3e62d2be870e5c74af4e793293753565c7383ae82943b83383fdcf5cc5c1", size = 12532003 }, + { url = "https://files.pythonhosted.org/packages/12/f8/d6bc56d20c60b2b66e005dfed16fdf8c46dbe559d40896d06c448a65f134/scikit_learn-1.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1bd8d3a19d4bd6dc5a7d4f358c8c3a60934dc058f363c34c0ac1e9e12a31421d", size = 13393818 }, + { url = "https://files.pythonhosted.org/packages/a8/ed/941b210029c1051233b082a19c36b930f56dda34a8a5227dbbd1bc08f7eb/scikit_learn-1.5.1-cp39-cp39-win_amd64.whl", hash = "sha256:5f57428de0c900a98389c4a433d4a3cf89de979b3aa24d1c1d251802aa15e44d", size = 10993525 }, +] + +[[package]] +name = "scipy" +version = "1.13.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ae/00/48c2f661e2816ccf2ecd77982f6605b2950afe60f60a52b4cbbc2504aa8f/scipy-1.13.1.tar.gz", hash = "sha256:095a87a0312b08dfd6a6155cbbd310a8c51800fc931b8c0b84003014b874ed3c", size = 57210720 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/33/59/41b2529908c002ade869623b87eecff3e11e3ce62e996d0bdcb536984187/scipy-1.13.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:20335853b85e9a49ff7572ab453794298bcf0354d8068c5f6775a0eabf350aca", size = 39328076 }, + { url = "https://files.pythonhosted.org/packages/d5/33/f1307601f492f764062ce7dd471a14750f3360e33cd0f8c614dae208492c/scipy-1.13.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:d605e9c23906d1994f55ace80e0125c587f96c020037ea6aa98d01b4bd2e222f", size = 30306232 }, + { url = "https://files.pythonhosted.org/packages/c0/66/9cd4f501dd5ea03e4a4572ecd874936d0da296bd04d1c45ae1a4a75d9c3a/scipy-1.13.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cfa31f1def5c819b19ecc3a8b52d28ffdcc7ed52bb20c9a7589669dd3c250989", size = 33743202 }, + { url = "https://files.pythonhosted.org/packages/a3/ba/7255e5dc82a65adbe83771c72f384d99c43063648456796436c9a5585ec3/scipy-1.13.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f26264b282b9da0952a024ae34710c2aff7d27480ee91a2e82b7b7073c24722f", size = 38577335 }, + { url = "https://files.pythonhosted.org/packages/49/a5/bb9ded8326e9f0cdfdc412eeda1054b914dfea952bda2097d174f8832cc0/scipy-1.13.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:eccfa1906eacc02de42d70ef4aecea45415f5be17e72b61bafcfd329bdc52e94", size = 38820728 }, + { url = "https://files.pythonhosted.org/packages/12/30/df7a8fcc08f9b4a83f5f27cfaaa7d43f9a2d2ad0b6562cced433e5b04e31/scipy-1.13.1-cp310-cp310-win_amd64.whl", hash = "sha256:2831f0dc9c5ea9edd6e51e6e769b655f08ec6db6e2e10f86ef39bd32eb11da54", size = 46210588 }, + { url = "https://files.pythonhosted.org/packages/b4/15/4a4bb1b15bbd2cd2786c4f46e76b871b28799b67891f23f455323a0cdcfb/scipy-1.13.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:27e52b09c0d3a1d5b63e1105f24177e544a222b43611aaf5bc44d4a0979e32f9", size = 39333805 }, + { url = "https://files.pythonhosted.org/packages/ba/92/42476de1af309c27710004f5cdebc27bec62c204db42e05b23a302cb0c9a/scipy-1.13.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:54f430b00f0133e2224c3ba42b805bfd0086fe488835effa33fa291561932326", size = 30317687 }, + { url = "https://files.pythonhosted.org/packages/80/ba/8be64fe225360a4beb6840f3cbee494c107c0887f33350d0a47d55400b01/scipy-1.13.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e89369d27f9e7b0884ae559a3a956e77c02114cc60a6058b4e5011572eea9299", size = 33694638 }, + { url = "https://files.pythonhosted.org/packages/36/07/035d22ff9795129c5a847c64cb43c1fa9188826b59344fee28a3ab02e283/scipy-1.13.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a78b4b3345f1b6f68a763c6e25c0c9a23a9fd0f39f5f3d200efe8feda560a5fa", size = 38569931 }, + { url = "https://files.pythonhosted.org/packages/d9/10/f9b43de37e5ed91facc0cfff31d45ed0104f359e4f9a68416cbf4e790241/scipy-1.13.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:45484bee6d65633752c490404513b9ef02475b4284c4cfab0ef946def50b3f59", size = 38838145 }, + { url = "https://files.pythonhosted.org/packages/4a/48/4513a1a5623a23e95f94abd675ed91cfb19989c58e9f6f7d03990f6caf3d/scipy-1.13.1-cp311-cp311-win_amd64.whl", hash = "sha256:5713f62f781eebd8d597eb3f88b8bf9274e79eeabf63afb4a737abc6c84ad37b", size = 46196227 }, + { url = "https://files.pythonhosted.org/packages/f2/7b/fb6b46fbee30fc7051913068758414f2721003a89dd9a707ad49174e3843/scipy-1.13.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5d72782f39716b2b3509cd7c33cdc08c96f2f4d2b06d51e52fb45a19ca0c86a1", size = 39357301 }, + { url = "https://files.pythonhosted.org/packages/dc/5a/2043a3bde1443d94014aaa41e0b50c39d046dda8360abd3b2a1d3f79907d/scipy-1.13.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:017367484ce5498445aade74b1d5ab377acdc65e27095155e448c88497755a5d", size = 30363348 }, + { url = "https://files.pythonhosted.org/packages/e7/cb/26e4a47364bbfdb3b7fb3363be6d8a1c543bcd70a7753ab397350f5f189a/scipy-1.13.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:949ae67db5fa78a86e8fa644b9a6b07252f449dcf74247108c50e1d20d2b4627", size = 33406062 }, + { url = "https://files.pythonhosted.org/packages/88/ab/6ecdc526d509d33814835447bbbeedbebdec7cca46ef495a61b00a35b4bf/scipy-1.13.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de3ade0e53bc1f21358aa74ff4830235d716211d7d077e340c7349bc3542e884", size = 38218311 }, + { url = "https://files.pythonhosted.org/packages/0b/00/9f54554f0f8318100a71515122d8f4f503b1a2c4b4cfab3b4b68c0eb08fa/scipy-1.13.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2ac65fb503dad64218c228e2dc2d0a0193f7904747db43014645ae139c8fad16", size = 38442493 }, + { url = "https://files.pythonhosted.org/packages/3e/df/963384e90733e08eac978cd103c34df181d1fec424de383cdc443f418dd4/scipy-1.13.1-cp312-cp312-win_amd64.whl", hash = "sha256:cdd7dacfb95fea358916410ec61bbc20440f7860333aee6d882bb8046264e949", size = 45910955 }, + { url = "https://files.pythonhosted.org/packages/7f/29/c2ea58c9731b9ecb30b6738113a95d147e83922986b34c685b8f6eefde21/scipy-1.13.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:436bbb42a94a8aeef855d755ce5a465479c721e9d684de76bf61a62e7c2b81d5", size = 39352927 }, + { url = "https://files.pythonhosted.org/packages/5c/c0/e71b94b20ccf9effb38d7147c0064c08c622309fd487b1b677771a97d18c/scipy-1.13.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:8335549ebbca860c52bf3d02f80784e91a004b71b059e3eea9678ba994796a24", size = 30324538 }, + { url = "https://files.pythonhosted.org/packages/6d/0f/aaa55b06d474817cea311e7b10aab2ea1fd5d43bc6a2861ccc9caec9f418/scipy-1.13.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d533654b7d221a6a97304ab63c41c96473ff04459e404b83275b60aa8f4b7004", size = 33732190 }, + { url = "https://files.pythonhosted.org/packages/35/f5/d0ad1a96f80962ba65e2ce1de6a1e59edecd1f0a7b55990ed208848012e0/scipy-1.13.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:637e98dcf185ba7f8e663e122ebf908c4702420477ae52a04f9908707456ba4d", size = 38612244 }, + { url = "https://files.pythonhosted.org/packages/8d/02/1165905f14962174e6569076bcc3315809ae1291ed14de6448cc151eedfd/scipy-1.13.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a014c2b3697bde71724244f63de2476925596c24285c7a637364761f8710891c", size = 38845637 }, + { url = "https://files.pythonhosted.org/packages/3e/77/dab54fe647a08ee4253963bcd8f9cf17509c8ca64d6335141422fe2e2114/scipy-1.13.1-cp39-cp39-win_amd64.whl", hash = "sha256:392e4ec766654852c25ebad4f64e4e584cf19820b980bc04960bca0b0cd6eaa2", size = 46227440 }, +] + +[[package]] +name = "segments" +version = "2.2.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "clldutils", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "csvw", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "regex", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0b/a6/b678440988daa66ac151bc3ca24f2ad8dcfdb591604f5c2b83e2515b1f58/segments-2.2.1.tar.gz", hash = "sha256:515ae188f21d24e420d48ad45689edc747d961d6b52fde22e47500a8d85f2741", size = 14677 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/93/d4/74dba5011533e66becf35aae5cf1d726e760f445db052592bad70e75305c/segments-2.2.1-py2.py3-none-any.whl", hash = "sha256:069860ae5a499ad7bd86e23ee52250a16e61ba3474c17e515b16d494ac1423c1", size = 15039 }, +] + +[[package]] +name = "sentencepiece" +version = "0.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c9/d2/b9c7ca067c26d8ff085d252c89b5f69609ca93fb85a00ede95f4857865d4/sentencepiece-0.2.0.tar.gz", hash = "sha256:a52c19171daaf2e697dc6cbe67684e0fa341b1248966f6aebb541de654d15843", size = 2632106 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f6/71/98648c3b64b23edb5403f74bcc906ad21766872a6e1ada26ea3f1eb941ab/sentencepiece-0.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:188779e1298a1c8b8253c7d3ad729cb0a9891e5cef5e5d07ce4592c54869e227", size = 2408979 }, + { url = "https://files.pythonhosted.org/packages/77/9f/7efbaa6d4c0c718a9affbecc536b03ca62f99f421bdffb531c16030e2d2b/sentencepiece-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bed9cf85b296fa2b76fc2547b9cbb691a523864cebaee86304c43a7b4cb1b452", size = 1238845 }, + { url = "https://files.pythonhosted.org/packages/1c/e4/c2541027a43ec6962ba9b601805d17ba3f86b38bdeae0e8ac65a2981e248/sentencepiece-0.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d7b67e724bead13f18db6e1d10b6bbdc454af574d70efbb36f27d90387be1ca3", size = 1181472 }, + { url = "https://files.pythonhosted.org/packages/fd/46/316c1ba6c52b97de76aff7b9da678f7afbb52136afb2987c474d95630e65/sentencepiece-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2fde4b08cfe237be4484c6c7c2e2c75fb862cfeab6bd5449ce4caeafd97b767a", size = 1259151 }, + { url = "https://files.pythonhosted.org/packages/aa/5a/3c48738a0835d76dd06c62b6ac48d39c923cde78dd0f587353bdcbb99851/sentencepiece-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4c378492056202d1c48a4979650981635fd97875a00eabb1f00c6a236b013b5e", size = 1355931 }, + { url = "https://files.pythonhosted.org/packages/a6/27/33019685023221ca8ed98e8ceb7ae5e166032686fa3662c68f1f1edf334e/sentencepiece-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1380ce6540a368de2ef6d7e6ba14ba8f3258df650d39ba7d833b79ee68a52040", size = 1301537 }, + { url = "https://files.pythonhosted.org/packages/ca/e4/55f97cef14293171fef5f96e96999919ab5b4d1ce95b53547ad653d7e3bf/sentencepiece-0.2.0-cp310-cp310-win32.whl", hash = "sha256:a1151d6a6dd4b43e552394aed0edfe9292820272f0194bd56c7c1660a0c06c3d", size = 936747 }, + { url = "https://files.pythonhosted.org/packages/85/f4/4ef1a6e0e9dbd8a60780a91df8b7452ada14cfaa0e17b3b8dfa42cecae18/sentencepiece-0.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:d490142b0521ef22bc1085f061d922a2a6666175bb6b42e588ff95c0db6819b2", size = 991525 }, + { url = "https://files.pythonhosted.org/packages/32/43/8f8885168a47a02eba1455bd3f4f169f50ad5b8cebd2402d0f5e20854d04/sentencepiece-0.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:17982700c4f6dbb55fa3594f3d7e5dd1c8659a274af3738e33c987d2a27c9d5c", size = 2409036 }, + { url = "https://files.pythonhosted.org/packages/0f/35/e63ba28062af0a3d688a9f128e407a1a2608544b2f480cb49bf7f4b1cbb9/sentencepiece-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:7c867012c0e8bcd5bdad0f791609101cb5c66acb303ab3270218d6debc68a65e", size = 1238921 }, + { url = "https://files.pythonhosted.org/packages/de/42/ae30952c4a0bd773e90c9bf2579f5533037c886dfc8ec68133d5694f4dd2/sentencepiece-0.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7fd6071249c74f779c5b27183295b9202f8dedb68034e716784364443879eaa6", size = 1181477 }, + { url = "https://files.pythonhosted.org/packages/e3/ac/2f2ab1d60bb2d795d054eebe5e3f24b164bc21b5a9b75fba7968b3b91b5a/sentencepiece-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:27f90c55a65013cbb8f4d7aab0599bf925cde4adc67ae43a0d323677b5a1c6cb", size = 1259182 }, + { url = "https://files.pythonhosted.org/packages/45/fb/14633c6ecf262c468759ffcdb55c3a7ee38fe4eda6a70d75ee7c7d63c58b/sentencepiece-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b293734059ef656dcd65be62ff771507bea8fed0a711b6733976e1ed3add4553", size = 1355537 }, + { url = "https://files.pythonhosted.org/packages/fb/12/2f5c8d4764b00033cf1c935b702d3bb878d10be9f0b87f0253495832d85f/sentencepiece-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e58b47f933aca74c6a60a79dcb21d5b9e47416256c795c2d58d55cec27f9551d", size = 1301464 }, + { url = "https://files.pythonhosted.org/packages/4e/b1/67afc0bde24f6dcb3acdea0dd8dcdf4b8b0db240f6bacd39378bd32d09f8/sentencepiece-0.2.0-cp311-cp311-win32.whl", hash = "sha256:c581258cf346b327c62c4f1cebd32691826306f6a41d8c4bec43b010dee08e75", size = 936749 }, + { url = "https://files.pythonhosted.org/packages/a2/f6/587c62fd21fc988555b85351f50bbde43a51524caafd63bc69240ded14fd/sentencepiece-0.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:0993dbc665f4113017892f1b87c3904a44d0640eda510abcacdfb07f74286d36", size = 991520 }, + { url = "https://files.pythonhosted.org/packages/27/5a/141b227ed54293360a9ffbb7bf8252b4e5efc0400cdeac5809340e5d2b21/sentencepiece-0.2.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:ea5f536e32ea8ec96086ee00d7a4a131ce583a1b18d130711707c10e69601cb2", size = 2409370 }, + { url = "https://files.pythonhosted.org/packages/2e/08/a4c135ad6fc2ce26798d14ab72790d66e813efc9589fd30a5316a88ca8d5/sentencepiece-0.2.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d0cb51f53b6aae3c36bafe41e86167c71af8370a039f542c43b0cce5ef24a68c", size = 1239288 }, + { url = "https://files.pythonhosted.org/packages/49/0a/2fe387f825ac5aad5a0bfe221904882106cac58e1b693ba7818785a882b6/sentencepiece-0.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:3212121805afc58d8b00ab4e7dd1f8f76c203ddb9dc94aa4079618a31cf5da0f", size = 1181597 }, + { url = "https://files.pythonhosted.org/packages/cc/38/e4698ee2293fe4835dc033c49796a39b3eebd8752098f6bd0aa53a14af1f/sentencepiece-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2a3149e3066c2a75e0d68a43eb632d7ae728c7925b517f4c05c40f6f7280ce08", size = 1259220 }, + { url = "https://files.pythonhosted.org/packages/12/24/fd7ef967c9dad2f6e6e5386d0cadaf65cda8b7be6e3861a9ab3121035139/sentencepiece-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:632f3594d3e7ac8b367bca204cb3fd05a01d5b21455acd097ea4c0e30e2f63d7", size = 1355962 }, + { url = "https://files.pythonhosted.org/packages/4f/d2/18246f43ca730bb81918f87b7e886531eda32d835811ad9f4657c54eee35/sentencepiece-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f295105c6bdbb05bd5e1b0cafbd78ff95036f5d3641e7949455a3f4e5e7c3109", size = 1301706 }, + { url = "https://files.pythonhosted.org/packages/8a/47/ca237b562f420044ab56ddb4c278672f7e8c866e183730a20e413b38a989/sentencepiece-0.2.0-cp312-cp312-win32.whl", hash = "sha256:fb89f811e5efd18bab141afc3fea3de141c3f69f3fe9e898f710ae7fe3aab251", size = 936941 }, + { url = "https://files.pythonhosted.org/packages/c6/97/d159c32642306ee2b70732077632895438867b3b6df282354bd550cf2a67/sentencepiece-0.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:7a673a72aab81fef5ebe755c6e0cc60087d1f3a4700835d40537183c1703a45f", size = 991994 }, + { url = "https://files.pythonhosted.org/packages/e9/18/eb620d94d63f62ca69cecccf4459529864ac3fbb35ec123190bd58dadb46/sentencepiece-0.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:1e0f9c4d0a6b0af59b613175f019916e28ade076e21242fd5be24340d8a2f64a", size = 2409003 }, + { url = "https://files.pythonhosted.org/packages/6e/a6/df28bc0b6a2a86416232c0a5f0d69a9cb7244bb95cb5dcdfcbf01cced8a6/sentencepiece-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:298f21cc1366eb60311aedba3169d30f885c363ddbf44214b0a587d2908141ad", size = 1238898 }, + { url = "https://files.pythonhosted.org/packages/79/91/b54a528e0789cd7986341ed3909bec56365c3b672daef8b10aa4098238f0/sentencepiece-0.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3f1ec95aa1e5dab11f37ac7eff190493fd87770f7a8b81ebc9dd768d1a3c8704", size = 1181534 }, + { url = "https://files.pythonhosted.org/packages/a3/69/e96ef68261fa5b82379fdedb325ceaf1d353c6e839ec346d8244e0da5f2f/sentencepiece-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7b06b70af54daa4b4904cbb90b4eb6d35c9f3252fdc86c9c32d5afd4d30118d8", size = 1259161 }, + { url = "https://files.pythonhosted.org/packages/45/de/461d15856c29ba1ce778cf76e0462572661f647abc8a5373690c52e98a00/sentencepiece-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:22e37bac44dd6603388cb598c64ff7a76e41ca774646f21c23aadfbf5a2228ab", size = 1355945 }, + { url = "https://files.pythonhosted.org/packages/5f/01/c95e42eb86282b2c79305d3e0b0ca5a743f85a61262bb7130999c70b9374/sentencepiece-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0461324897735512a32d222e3d886e24ad6a499761952b6bda2a9ee6e4313ea5", size = 1301596 }, + { url = "https://files.pythonhosted.org/packages/be/47/e16f368fe6327e873e8029aa539115025e9f61a4e8ca8f0f8eaf8e6a4c1c/sentencepiece-0.2.0-cp39-cp39-win32.whl", hash = "sha256:38aed822fb76435fa1f12185f10465a94ab9e51d5e8a9159e9a540ce926f0ffd", size = 936757 }, + { url = "https://files.pythonhosted.org/packages/4b/36/497e6407700efd6b97f81bc160913a70d33b9b09227429f68fc86f387bbe/sentencepiece-0.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:d8cf876516548b5a1d6ac4745d8b554f5c07891d55da557925e5c13ff0b4e6ad", size = 991541 }, +] + +[[package]] +name = "setuptools" +version = "72.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/5e/11/487b18cc768e2ae25a919f230417983c8d5afa1b6ee0abd8b6db0b89fa1d/setuptools-72.1.0.tar.gz", hash = "sha256:8d243eff56d095e5817f796ede6ae32941278f542e0f941867cc05ae52b162ec", size = 2419487 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e1/58/e0ef3b9974a04ce9cde2a7a33881ddcb2d68450803745804545cdd8d258f/setuptools-72.1.0-py3-none-any.whl", hash = "sha256:5a03e1860cf56bb6ef48ce186b0e557fdba433237481a9a625176c2831be15d1", size = 2337965 }, +] + +[[package]] +name = "sigopt" +version = "8.8.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "backoff", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "click", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "gitpython", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pypng", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "urllib3", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/15/ca/b010da25af0fe261876a0bca8a0b0169b9c3d0feff40970233c5aa5de3dd/sigopt-8.8.3.tar.gz", hash = "sha256:89807641cb5f9142bd9d3132b8e295d19ecdba4245b4fc7abfe849c0464a44ca", size = 142229 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9e/2a/8a98da1cb91fe894fcbbe8b73371e5abf3fd1e0ae64a479b2439b6ab72fe/sigopt-8.8.3-py2.py3-none-any.whl", hash = "sha256:81437023b07f648c311b15e60bb2118b4fc9e15d5f3dd72ca519a9974a5ace0e", size = 198787 }, +] + +[[package]] +name = "six" +version = "1.16.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/71/39/171f1c67cd00715f190ba0b100d606d440a28c93c7714febeca8b79af85e/six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926", size = 34041 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d9/5a/e7c31adbe875f2abbb91bd84cf2dc52d792b5a01506781dbcf25c91daf11/six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254", size = 11053 }, +] + +[[package]] +name = "smdebug-rulesconfig" +version = "1.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cc/7d/8ad6a2098e03c1f811d1277a2cedb81265828f144f6d323b83a2392e8bb9/smdebug_rulesconfig-1.0.1.tar.gz", hash = "sha256:7a19e6eb2e6bcfefbc07e4a86ef7a88f32495001a038bf28c7d8e77ab793fcd6", size = 12060 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/26/a1/45a13a05198bbe9527bab2c5e5daa8bd02678aa825eec14783e767bfa7d1/smdebug_rulesconfig-1.0.1-py2.py3-none-any.whl", hash = "sha256:104da3e6931ecf879dfc687ca4bbb3bee5ea2bc27f4478e9dbb3ee3655f1ae61", size = 20282 }, +] + +[[package]] +name = "smmap" +version = "5.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/88/04/b5bf6d21dc4041000ccba7eb17dd3055feb237e7ffc2c20d3fae3af62baa/smmap-5.0.1.tar.gz", hash = "sha256:dceeb6c0028fdb6734471eb07c0cd2aae706ccaecab45965ee83f11c8d3b1f62", size = 22291 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/a5/10f97f73544edcdef54409f1d839f6049a0d79df68adbc1ceb24d1aaca42/smmap-5.0.1-py3-none-any.whl", hash = "sha256:e6d8668fa5f93e706934a62d7b4db19c8d9eb8cf2adbb75ef1b675aa332b69da", size = 24282 }, +] + +[[package]] +name = "sniffio" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a2/87/a6771e1546d97e7e041b6ae58d80074f81b7d5121207425c964ddf5cfdbd/sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc", size = 20372 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2", size = 10235 }, +] + +[[package]] +name = "sortedcontainers" +version = "2.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e8/c4/ba2f8066cceb6f23394729afe52f3bf7adec04bf9ed2c820b39e19299111/sortedcontainers-2.4.0.tar.gz", hash = "sha256:25caa5a06cc30b6b83d11423433f65d1f9d76c4c6a0c90e3379eaa43b9bfdb88", size = 30594 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/32/46/9cb0e58b2deb7f82b84065f37f3bffeb12413f947f9388e4cac22c4621ce/sortedcontainers-2.4.0-py2.py3-none-any.whl", hash = "sha256:a163dcaede0f1c021485e957a39245190e74249897e2ae4b2aa38595db237ee0", size = 29575 }, +] + +[[package]] +name = "soundfile" +version = "0.12.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6f/96/5ff33900998bad58d5381fd1acfcdac11cbea4f08fc72ac1dc25ffb13f6a/soundfile-0.12.1.tar.gz", hash = "sha256:e8e1017b2cf1dda767aef19d2fd9ee5ebe07e050d430f77a0a7c66ba08b8cdae", size = 43184 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/bc/cd845c2dbb4d257c744cd58a5bcdd9f6d235ca317e7e22e49564ec88dcd9/soundfile-0.12.1-py2.py3-none-any.whl", hash = "sha256:828a79c2e75abab5359f780c81dccd4953c45a2c4cd4f05ba3e233ddf984b882", size = 24030 }, + { url = "https://files.pythonhosted.org/packages/c8/73/059c84343be6509b480013bf1eeb11b96c5f9eb48deff8f83638011f6b2c/soundfile-0.12.1-py2.py3-none-macosx_10_9_x86_64.whl", hash = "sha256:d922be1563ce17a69582a352a86f28ed8c9f6a8bc951df63476ffc310c064bfa", size = 1213305 }, + { url = "https://files.pythonhosted.org/packages/71/87/31d2b9ed58975cec081858c01afaa3c43718eb0f62b5698a876d94739ad0/soundfile-0.12.1-py2.py3-none-macosx_11_0_arm64.whl", hash = "sha256:bceaab5c4febb11ea0554566784bcf4bc2e3977b53946dda2b12804b4fe524a8", size = 1075977 }, + { url = "https://files.pythonhosted.org/packages/ad/bd/0602167a213d9184fc688b1086dc6d374b7ae8c33eccf169f9b50ce6568c/soundfile-0.12.1-py2.py3-none-manylinux_2_17_x86_64.whl", hash = "sha256:2dc3685bed7187c072a46ab4ffddd38cef7de9ae5eb05c03df2ad569cf4dacbc", size = 1257765 }, + { url = "https://files.pythonhosted.org/packages/c1/07/7591f4efd29e65071c3a61b53725036ea8f73366a4920a481ebddaf8d0ca/soundfile-0.12.1-py2.py3-none-manylinux_2_31_x86_64.whl", hash = "sha256:074247b771a181859d2bc1f98b5ebf6d5153d2c397b86ee9e29ba602a8dfe2a6", size = 1174746 }, + { url = "https://files.pythonhosted.org/packages/03/0f/49941ed8a2d94e5b36ea94346fb1d2b22e847fede902e05be4c96f26be7d/soundfile-0.12.1-py2.py3-none-win32.whl", hash = "sha256:59dfd88c79b48f441bbf6994142a19ab1de3b9bb7c12863402c2bc621e49091a", size = 888234 }, + { url = "https://files.pythonhosted.org/packages/50/ff/26a4ee48d0b66625a4e4028a055b9f25bc9d7c7b2d17d21a45137621a50d/soundfile-0.12.1-py2.py3-none-win_amd64.whl", hash = "sha256:0d86924c00b62552b650ddd28af426e3ff2d4dc2e9047dae5b3d8452e0a49a77", size = 1009109 }, +] + +[[package]] +name = "soupsieve" +version = "2.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ce/21/952a240de1c196c7e3fbcd4e559681f0419b1280c617db21157a0390717b/soupsieve-2.5.tar.gz", hash = "sha256:5663d5a7b3bfaeee0bc4372e7fc48f9cff4940b3eec54a6451cc5299f1097690", size = 100943 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4c/f3/038b302fdfbe3be7da016777069f26ceefe11a681055ea1f7817546508e3/soupsieve-2.5-py3-none-any.whl", hash = "sha256:eaa337ff55a1579b6549dc679565eac1e3d000563bcb1c8ab0d0fefbc0c2cdc7", size = 36131 }, +] + +[[package]] +name = "soxr" +version = "0.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/51/42/e05dc1801462807886617c0db5a7f34287f9a46f5fbbfc64269a203f4f4f/soxr-0.4.0.tar.gz", hash = "sha256:02385e3de07e28ddbc19ab41216075d889575895e778ce2ada950d5f46cf6a52", size = 300434 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0a/29/9c39bf8e4ac6a66090941466e4b3341d0ed2e36bc07df1fb17c72beba550/soxr-0.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c0be9dbc6cb0de2e2147ad33ffe4dee0391ed38125248253f53d3f1a05b65425", size = 414891 }, + { url = "https://files.pythonhosted.org/packages/17/a3/9d63dcf5ea1371600dc9729133451e50094ddf049a69d3e7a15d89905514/soxr-0.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:46c1dce06d156f9a6563c41f97d5d6978ccc993c3682c6f8190438c0f7417d36", size = 387711 }, + { url = "https://files.pythonhosted.org/packages/0f/91/3ebe8121f7fec41f6701c04b26df578eaa1994c6f358860d8dd25cff0953/soxr-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:784d2dd6d43d2663d384ed7e1f6a1156f98395bbd889b0a9def6c61a9e17cda1", size = 1234093 }, + { url = "https://files.pythonhosted.org/packages/a4/c7/ac1219521b5af872af30d828af19d09b50cd75e4ec83be5ffb147175b299/soxr-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6ee59424f4f1c81f6a9f3d03b4bde27992272dc8c36f9b08af7f31ce720fa6ba", size = 1255672 }, + { url = "https://files.pythonhosted.org/packages/ef/b7/b9652d1c7be4c4779274e577c6ed2d941a064bc76082169aed1b1ed01cf6/soxr-0.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:2975734033e8da5a241f2498b65513a160882dd1283cf5eb7eac5b3b262ae668", size = 184468 }, + { url = "https://files.pythonhosted.org/packages/5f/d5/9130ccf0b55722def96f4a915d4d332aa4a6671b2ec53b8331bf07a67f24/soxr-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:38374140503b17b3234d0deb83dfe0319727df1dbab41e1a576b61405fc82767", size = 415220 }, + { url = "https://files.pythonhosted.org/packages/62/0a/067beb1e4487d584ba209dcb0135bbbb4b3f6fe1a58109fc56a12369b550/soxr-0.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a370f661576916e8b208990eb70e5db4e07ab025b47492a633370846bc0a9678", size = 387911 }, + { url = "https://files.pythonhosted.org/packages/9a/38/776fc4e87cce91cea284c8adb26ead2fd8c9fcb514251d090b72b4f3a50e/soxr-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4301600889696051bdb1469f8b10cace0d7e2d16a351c6b5fc947b3b41e10a58", size = 1281704 }, + { url = "https://files.pythonhosted.org/packages/08/bf/bc12314969467e6a4b649c26b1a6fecc63b67f9a127e4c9b32b3433945ef/soxr-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:12a0e460f1199aaed544a30c67f5df7a452b0647b63e0df706a17577e963e38b", size = 1298846 }, + { url = "https://files.pythonhosted.org/packages/8a/29/3bbdf1417e5da6da3ed5e35e4b3290cfc605fbe06b8513452a9447516532/soxr-0.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:2f6f55c520fb90040f604b1203f2100b70c789d973bb0fd79b221187e3841311", size = 184662 }, + { url = "https://files.pythonhosted.org/packages/1c/47/c732574ba53a864570a445b29fcbcfa4729ac42ae2b5cf8553535245a717/soxr-0.4.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:226d405c40094f5fd5dd4b80c66fc61cc108018da0216833e843d82ccffdadcb", size = 416395 }, + { url = "https://files.pythonhosted.org/packages/14/55/71d6da7aea10f607d5bb47ece8fe639ee340d2b9ee68902f0361f8a4e34d/soxr-0.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c53d4bc99908e715665b3d45f0cc06e652e4f53bf4acf9e758c1cce02977e411", size = 388475 }, + { url = "https://files.pythonhosted.org/packages/e8/e5/7ee341ac9232c9e0b91969067ccc05459a50d6c554f938fe19165f5215cd/soxr-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a9cc0620d7b1effab9d408427711d52c3db6e295b5504dfcf549f4636904ed0d", size = 1265555 }, + { url = "https://files.pythonhosted.org/packages/6b/d2/9e0e54e2ff347b87de4e0639b7e7fe3f780a4c95689d6c9b67f0e5e88831/soxr-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f99aaef14a7d268966c06cf6a06729eb98b2276493710d24a6f20fdcfc3ad26e", size = 1292012 }, + { url = "https://files.pythonhosted.org/packages/75/29/5e20f1e5f459fccc7aecff813c2757e9bda987d4f1c9c80099f067ba13c7/soxr-0.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:63a59d36b8f8f3b1501e4fca2c034aacceb9b4d6888295afd269afbce5eb2f3f", size = 183419 }, + { url = "https://files.pythonhosted.org/packages/02/c6/7ceee454214079447fefbbb3066a1882e86791d39e795d25f03100c9b70e/soxr-0.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:38e65bb8beba55d8049ecf16e73c05ed3dd5e156d6086f594c40edb3181a7900", size = 415490 }, + { url = "https://files.pythonhosted.org/packages/6e/f4/88783a6b0a9085d307d9fb50b160e5e53bb95af5694c587dfa036f598afa/soxr-0.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5fd5e43fe568451152e20e16a71a61cda6340da934c344733a26674e041ab445", size = 388527 }, + { url = "https://files.pythonhosted.org/packages/c3/c6/f3d54e8c579aa5f192d62c87cd86b88e0b1d6fcab7b541663a3816f1eb06/soxr-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b3e477ff61b3579ec2ad66fa7a9b362072d5d9a5d1e61db3d366d26afbb8c8", size = 1236992 }, + { url = "https://files.pythonhosted.org/packages/8e/0d/f5a814631c2af35174243b39c7b3d07524bfe275aa0729fa1d87f6965323/soxr-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba0989025d70c472d62bf0e68778c9bbd0c9bee111c708cf64c26406937ca6be", size = 1255237 }, + { url = "https://files.pythonhosted.org/packages/e7/59/82eb86a806392c40e86e4030ceadd948306fb7269e95e26c18bbbcffb101/soxr-0.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:5e71482f092051544b196387e3779d726f26df30cba307424eac7a96285c5b64", size = 184995 }, +] + +[[package]] +name = "sqlalchemy" +version = "2.0.32" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "greenlet", marker = "python_version < '3.13' and (platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64')" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/af/6f/967e987683908af816aa3072c1a6997ac9933cf38d66b0474fb03f253323/SQLAlchemy-2.0.32.tar.gz", hash = "sha256:c1b88cc8b02b6a5f0efb0345a03672d4c897dc7d92585176f88c67346f565ea8", size = 9546691 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b8/f4/487eaff0bc01352662be8d9b975d0850dc3e8bd282918e073cff5a73421d/SQLAlchemy-2.0.32-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0c9045ecc2e4db59bfc97b20516dfdf8e41d910ac6fb667ebd3a79ea54084619", size = 2087564 }, + { url = "https://files.pythonhosted.org/packages/91/8a/509557a8e43cf55bad70843f2de48c5247c34d47a812c04e41be33351861/SQLAlchemy-2.0.32-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1467940318e4a860afd546ef61fefb98a14d935cd6817ed07a228c7f7c62f389", size = 2078758 }, + { url = "https://files.pythonhosted.org/packages/e0/cb/b1ecd40bcbbba6ca8f35047b53a940eceda36acc9afa0db4cb0d8addd81a/SQLAlchemy-2.0.32-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5954463675cb15db8d4b521f3566a017c8789222b8316b1e6934c811018ee08b", size = 3061235 }, + { url = "https://files.pythonhosted.org/packages/3b/94/db0bc142f448627638a2962afae54c520697119c0d6e23ebd36a7c472c8f/SQLAlchemy-2.0.32-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:167e7497035c303ae50651b351c28dc22a40bb98fbdb8468cdc971821b1ae533", size = 3069497 }, + { url = "https://files.pythonhosted.org/packages/e6/cf/bf90dc56ce347697d8c549875c555f783b96406bc723de6e462490bfe880/SQLAlchemy-2.0.32-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b27dfb676ac02529fb6e343b3a482303f16e6bc3a4d868b73935b8792edb52d0", size = 3025552 }, + { url = "https://files.pythonhosted.org/packages/22/fb/393cb374013c819096f486c12596c9e8b8944b53d85e96fbca9fe7b1f14a/SQLAlchemy-2.0.32-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:bf2360a5e0f7bd75fa80431bf8ebcfb920c9f885e7956c7efde89031695cafb8", size = 3051018 }, + { url = "https://files.pythonhosted.org/packages/6d/3b/80c35cbacbbcf56bbb2befbb9e06b7e9c5f6b4a5b0cc07579d85504e5284/SQLAlchemy-2.0.32-cp310-cp310-win32.whl", hash = "sha256:306fe44e754a91cd9d600a6b070c1f2fadbb4a1a257b8781ccf33c7067fd3e4d", size = 2059441 }, + { url = "https://files.pythonhosted.org/packages/e8/86/989f4b4c47da0d9b152465f6623b6a6415179b4e6bb967f08199bdad98eb/SQLAlchemy-2.0.32-cp310-cp310-win_amd64.whl", hash = "sha256:99db65e6f3ab42e06c318f15c98f59a436f1c78179e6a6f40f529c8cc7100b22", size = 2083917 }, + { url = "https://files.pythonhosted.org/packages/fc/a9/e3bd92004095ed6796ea4ac5fdd9606b1e53117ef5b90ae79ac3fc6e225e/SQLAlchemy-2.0.32-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:21b053be28a8a414f2ddd401f1be8361e41032d2ef5884b2f31d31cb723e559f", size = 2088752 }, + { url = "https://files.pythonhosted.org/packages/a9/34/b97f4458eefbdead7ee5ce69cbf3591574c5ba44162dbe52c4386818623f/SQLAlchemy-2.0.32-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b178e875a7a25b5938b53b006598ee7645172fccafe1c291a706e93f48499ff5", size = 2079150 }, + { url = "https://files.pythonhosted.org/packages/6b/b5/95ff12f5d4eb7813dd5a59ccc8e3c68d4683fedf59801b40704593c3b757/SQLAlchemy-2.0.32-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:723a40ee2cc7ea653645bd4cf024326dea2076673fc9d3d33f20f6c81db83e1d", size = 3197551 }, + { url = "https://files.pythonhosted.org/packages/ca/af/379f8695ab751acf61868b0098c8d66e2b2ad8b11d9939d5144c82d05bc5/SQLAlchemy-2.0.32-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:295ff8689544f7ee7e819529633d058bd458c1fd7f7e3eebd0f9268ebc56c2a0", size = 3197551 }, + { url = "https://files.pythonhosted.org/packages/ff/0c/5feaea51f23b5f008f16f9dbf7eec18ee5b9b8eb2875d6e367f52daf633e/SQLAlchemy-2.0.32-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:49496b68cd190a147118af585173ee624114dfb2e0297558c460ad7495f9dfe2", size = 3134583 }, + { url = "https://files.pythonhosted.org/packages/cc/83/4eca3604f9049a2b92a9ffb818ea1cc8186f722e539a6feee58f931bad34/SQLAlchemy-2.0.32-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:acd9b73c5c15f0ec5ce18128b1fe9157ddd0044abc373e6ecd5ba376a7e5d961", size = 3154911 }, + { url = "https://files.pythonhosted.org/packages/3d/56/485ad322f148a8b70060e03b5f130e714f95d839b5e50315e5c5efd1fc05/SQLAlchemy-2.0.32-cp311-cp311-win32.whl", hash = "sha256:9365a3da32dabd3e69e06b972b1ffb0c89668994c7e8e75ce21d3e5e69ddef28", size = 2059047 }, + { url = "https://files.pythonhosted.org/packages/bb/8c/4548ae42b4ab7f3fe9f1aeb4b1f28ea795485ca44840cb0f3f57aa8ecfcc/SQLAlchemy-2.0.32-cp311-cp311-win_amd64.whl", hash = "sha256:8bd63d051f4f313b102a2af1cbc8b80f061bf78f3d5bd0843ff70b5859e27924", size = 2084480 }, + { url = "https://files.pythonhosted.org/packages/06/95/88beb07aa61c611829c9ce950f349adcf00065c1bb313090c20d80a520ca/SQLAlchemy-2.0.32-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:6bab3db192a0c35e3c9d1560eb8332463e29e5507dbd822e29a0a3c48c0a8d92", size = 2087267 }, + { url = "https://files.pythonhosted.org/packages/11/93/0b28f9d261af927eef3df472e5bbf144fb33e062de770b2c312bb516702b/SQLAlchemy-2.0.32-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:19d98f4f58b13900d8dec4ed09dd09ef292208ee44cc9c2fe01c1f0a2fe440e9", size = 2077732 }, + { url = "https://files.pythonhosted.org/packages/84/50/1ce1dec4b1cce8f1163c2c58bb1588ac5076c3dbc4bb1d3eab70e798fdd4/SQLAlchemy-2.0.32-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3cd33c61513cb1b7371fd40cf221256456d26a56284e7d19d1f0b9f1eb7dd7e8", size = 3227230 }, + { url = "https://files.pythonhosted.org/packages/9d/b8/aa822988d390cf06afa3c69d86a3a38bba79b51385207cd7cd99d0be17bb/SQLAlchemy-2.0.32-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7d6ba0497c1d066dd004e0f02a92426ca2df20fac08728d03f67f6960271feec", size = 3238118 }, + { url = "https://files.pythonhosted.org/packages/c3/d7/7a65172ed2713acf0262a65392dfcf05ca2b7a67c988ebad425eba9b3843/SQLAlchemy-2.0.32-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2b6be53e4fde0065524f1a0a7929b10e9280987b320716c1509478b712a7688c", size = 3173610 }, + { url = "https://files.pythonhosted.org/packages/a9/0f/8da0613e3f0b095ef423802943ed4b98242370736034ed5043a43c46c3d4/SQLAlchemy-2.0.32-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:916a798f62f410c0b80b63683c8061f5ebe237b0f4ad778739304253353bc1cb", size = 3200224 }, + { url = "https://files.pythonhosted.org/packages/50/ef/973e0bbf2be5c12e34dca92139ca100f51ba078e36c3c06fd1dc8480c209/SQLAlchemy-2.0.32-cp312-cp312-win32.whl", hash = "sha256:31983018b74908ebc6c996a16ad3690301a23befb643093fcfe85efd292e384d", size = 2057626 }, + { url = "https://files.pythonhosted.org/packages/db/5f/440c324aae82a2ce892ac0fe1d114b9dc9f04e934e8f0762574876a168b5/SQLAlchemy-2.0.32-cp312-cp312-win_amd64.whl", hash = "sha256:4363ed245a6231f2e2957cccdda3c776265a75851f4753c60f3004b90e69bfeb", size = 2083167 }, + { url = "https://files.pythonhosted.org/packages/51/da/0f8ead52bbcde6634c839f71d78914b7b18360a10cedf67fa9a421199dda/SQLAlchemy-2.0.32-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:52fec964fba2ef46476312a03ec8c425956b05c20220a1a03703537824b5e8e1", size = 2090444 }, + { url = "https://files.pythonhosted.org/packages/90/ea/ce1dd9cbe8bebc0573eca70b998ec34209b1a0ed9a476e158039f99519d1/SQLAlchemy-2.0.32-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:328429aecaba2aee3d71e11f2477c14eec5990fb6d0e884107935f7fb6001632", size = 2081677 }, + { url = "https://files.pythonhosted.org/packages/2a/ed/2cb2441199b518cc7dc1196600ec79d16a7cdeb3ad452569c7b077a547c8/SQLAlchemy-2.0.32-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:85a01b5599e790e76ac3fe3aa2f26e1feba56270023d6afd5550ed63c68552b3", size = 3075690 }, + { url = "https://files.pythonhosted.org/packages/9e/47/9dc7ffea9b544f3f37a4f977cf0a740ff86da49eeb3ba5a3a10b9abe891c/SQLAlchemy-2.0.32-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aaf04784797dcdf4c0aa952c8d234fa01974c4729db55c45732520ce12dd95b4", size = 3083489 }, + { url = "https://files.pythonhosted.org/packages/13/c5/619be86e3ac5de6b8ed3ad16dc121ef2acd776ed064af2305f2badd2df1f/SQLAlchemy-2.0.32-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:4488120becf9b71b3ac718f4138269a6be99a42fe023ec457896ba4f80749525", size = 3042702 }, + { url = "https://files.pythonhosted.org/packages/61/78/6a058bea63c6d9517ce0ab2a519f868e9a4012830cc4b2e486ec44262aee/SQLAlchemy-2.0.32-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:14e09e083a5796d513918a66f3d6aedbc131e39e80875afe81d98a03312889e6", size = 3069169 }, + { url = "https://files.pythonhosted.org/packages/f2/93/775f5e06ac8f3e45f0bc7ed441355d11d25d5071898b50cf6e95c53b0537/SQLAlchemy-2.0.32-cp39-cp39-win32.whl", hash = "sha256:0d322cc9c9b2154ba7e82f7bf25ecc7c36fbe2d82e2933b3642fc095a52cfc78", size = 2061986 }, + { url = "https://files.pythonhosted.org/packages/7d/95/01a59f28a5fdabbd1b4c033f21951f1f9d4153ac3f553211715134b89f55/SQLAlchemy-2.0.32-cp39-cp39-win_amd64.whl", hash = "sha256:7dd8583df2f98dea28b5cd53a1beac963f4f9d087888d75f22fcc93a07cf8d84", size = 2086514 }, + { url = "https://files.pythonhosted.org/packages/99/1b/045185a9f6481d926a451aafaa0d07c98f19ac7abe730dff9630c9ead4fa/SQLAlchemy-2.0.32-py3-none-any.whl", hash = "sha256:e567a8793a692451f706b363ccf3c45e056b67d90ead58c3bc9471af5d212202", size = 1878765 }, +] + +[[package]] +name = "starlette" +version = "0.37.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version < '3.10'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/61/b5/6bceb93ff20bd7ca36e6f7c540581abb18f53130fabb30ba526e26fd819b/starlette-0.37.2.tar.gz", hash = "sha256:9af890290133b79fc3db55474ade20f6220a364a0402e0b556e7cd5e1e093823", size = 2843736 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fd/18/31fa32ed6c68ba66220204ef0be798c349d0a20c1901f9d4a794e08c76d8/starlette-0.37.2-py3-none-any.whl", hash = "sha256:6fe59f29268538e5d0d182f2791a479a0c64638e6935d1c6989e63fb2699c6ee", size = 71908 }, +] + +[[package]] +name = "sudachidict-core" +version = "20240716" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "sudachipy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ae/35/954cb4488c42cabbe3a352482d2ce64de42b8171c54b1ad31861cbbb97e2/SudachiDict-core-20240716.tar.gz", hash = "sha256:90380263fd3e597240b38001cdcb4d7ae3781fcbf4c92f31cc4d1a4b5c41eea9", size = 9009 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/4e/7496687bb41b10b05c9f19e871e730254adf20ce1b16d695fa7cb305830f/SudachiDict_core-20240716-py3-none-any.whl", hash = "sha256:29b69eb016c5da7fcbf7cc1dee1c4bdfc323af2e9638106ba62e490f97d86cc9", size = 72043340 }, +] + +[[package]] +name = "sudachipy" +version = "0.6.8" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/49/91/fb79084df253ffce217fe10dcad6729e5263f41813b9ab7e4375e01528bd/SudachiPy-0.6.8.tar.gz", hash = "sha256:3d1c9086ff09afacc34d02fdb2112aab7cff1d78f0d4b81f78b9ba01c36d4888", size = 161941 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d2/af/b0e955be17526fccab7c6260cfe2d7d7ccb43369271e6872b0d41cd61375/SudachiPy-0.6.8-cp310-cp310-macosx_10_12_universal2.whl", hash = "sha256:85f91a6ac347d2fbf478ae96e0e08efe7b8e47fb7cdfb770e90611be5669cabb", size = 2939942 }, + { url = "https://files.pythonhosted.org/packages/bd/5e/59892dc4d962d688bd327d3e0b055c26da6c2ba5d6df8b5dac71790fb31b/SudachiPy-0.6.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:361ef3e3333ef4165b517668878dd80fbed6d3c443659b9dc3236132ea8f7fbb", size = 2572608 }, + { url = "https://files.pythonhosted.org/packages/d8/ac/3fd8daef7cd3299c0c4cc2f051592b91932b0d2a4f34ccae053214ca09ee/SudachiPy-0.6.8-cp310-cp310-win_amd64.whl", hash = "sha256:081c52918bdae35f564637db146389f0a48b3b5263f215859b4d1ae311a7a474", size = 1253887 }, + { url = "https://files.pythonhosted.org/packages/cd/20/158d7050b9abe068ab3c290fad55a445a78e8be22d752bf2fea1f82dd47c/SudachiPy-0.6.8-cp311-cp311-macosx_10_12_universal2.whl", hash = "sha256:0a6cb506e402933023ea07035fc3e81d65880392afcdb2f09676027882b09e73", size = 2966165 }, + { url = "https://files.pythonhosted.org/packages/b9/14/2f21de25cf6aad359c35ab1899098c2cbc804f0d473beeff423b46e2e74d/SudachiPy-0.6.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d19db58be100b05362d00d0ad5cd29aff6da31807967b302f35bd43dd59e141f", size = 2572928 }, + { url = "https://files.pythonhosted.org/packages/5b/5e/d4e980c12ee98b965c23981ba278b0a90e03de0f3edb19a9c383efde250c/SudachiPy-0.6.8-cp311-cp311-win_amd64.whl", hash = "sha256:27833ae472220dc46f934edd9a8839b0134279c0113f7da01d67e424bfe2d0ab", size = 1253969 }, + { url = "https://files.pythonhosted.org/packages/e8/fd/9288521653a59a8f261bc5f29a5cadea134e45a690b9f2c9ad20d5464665/SudachiPy-0.6.8-cp312-cp312-macosx_10_12_universal2.whl", hash = "sha256:7f75d4627fa141bc02951c5ce17ec7055faf2e9424d10c697e923c27b7936369", size = 2963966 }, + { url = "https://files.pythonhosted.org/packages/79/54/1da84327f26de09d865f23c7bfd30a66fb1fe078f8185ee69bfa5600e032/SudachiPy-0.6.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:33afa2efa4d98ae3cbea0ab8cc09c71b0405d188074d0c4cef2b2080a51caafe", size = 2568552 }, + { url = "https://files.pythonhosted.org/packages/57/dd/175671837c8a82c56acdaab3df4ae453f89bddc6a5537859144608469481/SudachiPy-0.6.8-cp312-cp312-win_amd64.whl", hash = "sha256:2a2f22605093ed7994eb7edced2a21c8ac71b9ecc9877e94539414b1a60d172a", size = 1250564 }, + { url = "https://files.pythonhosted.org/packages/19/ad/8ca3241f17bf665c249496991341d624ca746cfd5ec631514abc4f7569e7/SudachiPy-0.6.8-cp39-cp39-macosx_10_12_universal2.whl", hash = "sha256:d52ddc5001b0125375419409adee012f8957b15ad1a4017e18f30c54ba69f9b7", size = 2940609 }, + { url = "https://files.pythonhosted.org/packages/b0/50/6a8be2ee011d0401b382ce83bc64f2769d57aab76103ed3bfbf324bf97e5/SudachiPy-0.6.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c2a7c98f75567bd8488a1597c83f8f6abb4c15c577d0b5f92fa0c31c8304dae4", size = 2572704 }, + { url = "https://files.pythonhosted.org/packages/67/41/6748863dff329ddb1787bee767e91e1d633bdc76bd3caa155f746b39f594/SudachiPy-0.6.8-cp39-cp39-win_amd64.whl", hash = "sha256:1ae6e533f98e510e751d7355ec512aff3a7dac73539abb61c731cdcc316a183f", size = 1253208 }, +] + +[[package]] +name = "sympy" +version = "1.13.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mpmath", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ca/99/5a5b6f19ff9f083671ddf7b9632028436167cd3d33e11015754e41b249a4/sympy-1.13.1.tar.gz", hash = "sha256:9cebf7e04ff162015ce31c9c6c9144daa34a93bd082f54fd8f12deca4f47515f", size = 7533040 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b2/fe/81695a1aa331a842b582453b605175f419fe8540355886031328089d840a/sympy-1.13.1-py3-none-any.whl", hash = "sha256:db36cdc64bf61b9b24578b6f7bab1ecdd2452cf008f34faa33776680c26d66f8", size = 6189177 }, +] + +[[package]] +name = "tabulate" +version = "0.9.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ec/fe/802052aecb21e3797b8f7902564ab6ea0d60ff8ca23952079064155d1ae1/tabulate-0.9.0.tar.gz", hash = "sha256:0095b12bf5966de529c0feb1fa08671671b3368eec77d7ef7ab114be2c068b3c", size = 81090 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/40/44/4a5f08c96eb108af5cb50b41f76142f0afa346dfa99d5296fe7202a11854/tabulate-0.9.0-py3-none-any.whl", hash = "sha256:024ca478df22e9340661486f85298cff5f6dcdba14f3813e8830015b9ed1948f", size = 35252 }, +] + +[[package]] +name = "tblib" +version = "3.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1a/df/4f2cd7eaa6d41a7994d46527349569d46e34d9cdd07590b5c5b0dcf53de3/tblib-3.0.0.tar.gz", hash = "sha256:93622790a0a29e04f0346458face1e144dc4d32f493714c6c3dff82a4adb77e6", size = 30616 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9b/87/ce70db7cae60e67851eb94e1a2127d4abb573d3866d2efd302ceb0d4d2a5/tblib-3.0.0-py3-none-any.whl", hash = "sha256:80a6c77e59b55e83911e1e607c649836a69c103963c5f28a46cbeef44acf8129", size = 12478 }, +] + +[[package]] +name = "tenacity" +version = "9.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cd/94/91fccdb4b8110642462e653d5dcb27e7b674742ad68efd146367da7bdb10/tenacity-9.0.0.tar.gz", hash = "sha256:807f37ca97d62aa361264d497b0e31e92b8027044942bfa756160d908320d73b", size = 47421 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/cb/b86984bed139586d01532a587464b5805f12e397594f19f931c4c2fbfa61/tenacity-9.0.0-py3-none-any.whl", hash = "sha256:93de0c98785b27fcf659856aa9f54bfbd399e29969b0621bc7f762bd441b4539", size = 28169 }, +] + +[[package]] +name = "tensorboard" +version = "2.15.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "google-auth", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "google-auth-oauthlib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "grpcio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "markdown", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "setuptools", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorboard-data-server", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "werkzeug", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/37/12/f6e9b9dcc310263cbd3948274e286538bd6800fd0c268850788f14a0c6d0/tensorboard-2.15.2-py3-none-any.whl", hash = "sha256:a6f6443728064d962caea6d34653e220e34ef8df764cb06a8212c17e1a8f0622", size = 5539713 }, +] + +[[package]] +name = "tensorboard-data-server" +version = "0.7.2" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7a/13/e503968fefabd4c6b2650af21e110aa8466fe21432cd7c43a84577a89438/tensorboard_data_server-0.7.2-py3-none-any.whl", hash = "sha256:7e0610d205889588983836ec05dc098e80f97b7e7bbff7e994ebb78f578d0ddb", size = 2356 }, + { url = "https://files.pythonhosted.org/packages/b7/85/dabeaf902892922777492e1d253bb7e1264cadce3cea932f7ff599e53fea/tensorboard_data_server-0.7.2-py3-none-macosx_10_9_x86_64.whl", hash = "sha256:9fe5d24221b29625dbc7328b0436ca7fc1c23de4acf4d272f1180856e32f9f60", size = 4823598 }, + { url = "https://files.pythonhosted.org/packages/73/c6/825dab04195756cf8ff2e12698f22513b3db2f64925bdd41671bfb33aaa5/tensorboard_data_server-0.7.2-py3-none-manylinux_2_31_x86_64.whl", hash = "sha256:ef687163c24185ae9754ed5650eb5bc4d84ff257aabdc33f0cc6f74d8ba54530", size = 6590363 }, +] + +[[package]] +name = "tensorboardx" +version = "2.6.2.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/02/9b/c2b5aba53f5e27ffcf249fc38485836119638f97d20b978664b15f97c8a6/tensorboardX-2.6.2.2.tar.gz", hash = "sha256:c6476d7cd0d529b0b72f4acadb1269f9ed8b22f441e87a84f2a3b940bb87b666", size = 4778030 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/44/71/f3e7c9b2ab67e28c572ab4e9d5fa3499e0d252650f96d8a3a03e26677f53/tensorboardX-2.6.2.2-py2.py3-none-any.whl", hash = "sha256:160025acbf759ede23fd3526ae9d9bfbfd8b68eb16c38a010ebe326dc6395db8", size = 101700 }, +] + +[[package]] +name = "tensorflow" +version = "2.15.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "astunparse", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "flatbuffers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "gast", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "google-pasta", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "grpcio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "h5py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "keras", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "libclang", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ml-dtypes", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "opt-einsum", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "setuptools", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorboard", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-estimator", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-io-gcs-filesystem", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "termcolor", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "wrapt", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/9c/d3/904d5bf64305218ce19f81ff3b2cb872cf434a558443b4a9a5357924637a/tensorflow-2.15.1-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:91b51a507007d63a70b65be307d701088d15042a6399c0e2312b53072226e909", size = 236439313 }, + { url = "https://files.pythonhosted.org/packages/54/38/2be65dc6f47e6aa0fb0494877676774f8faa685c08a5cecf0c0040afccbc/tensorflow-2.15.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:10132acc072d59696c71ce7221d2d8e0e3ff1e6bc8688dbac6d7aed8e675b710", size = 205693732 }, + { url = "https://files.pythonhosted.org/packages/51/1b/1f6eb37c97d9998010751511308058800fc3736092aac64c3fee23cf0b35/tensorflow-2.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:30c5ef9c758ec9ff7ce2aff76b71c980bc5119b879071c2cc623b1591a497a1a", size = 2121 }, + { url = "https://files.pythonhosted.org/packages/4f/42/433c0c64c5d3b8bee696cde2006d15f03f0504c2f746d49f38e32e52e239/tensorflow-2.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea290e435464cf0794f657b48786e5fa413362abe55ed771c172c25980d070ce", size = 475215357 }, + { url = "https://files.pythonhosted.org/packages/1c/b7/604ed5e5507e3dd34b14295d5e4a762d47cc2e8cf29a23b4c20575461445/tensorflow-2.15.1-cp310-cp310-win_amd64.whl", hash = "sha256:8e5431d45ceb416c2b1b6de87378054fbac7d2ed35d45b102d89a786613fffdc", size = 2098 }, + { url = "https://files.pythonhosted.org/packages/25/72/2ede9c4b9b96650a8a7b909abf4733adf110c5907425ee252f8095385b11/tensorflow-2.15.1-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:6761efe511e6ee0f893f60738fefbcc51d6dc386eeaaafea59d21899ef369ffd", size = 236482723 }, + { url = "https://files.pythonhosted.org/packages/f1/31/3191cd83da2f213a3c4af5e40597a98996e9c84b56666f9595dad8a6e780/tensorflow-2.15.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:aa926114d1e13ffe5b2ea59c3f195216f26646d7fe36e9e5207b291e4b7902ff", size = 205736374 }, + { url = "https://files.pythonhosted.org/packages/81/40/31b27ab3f46de305475ef5160acc8a2addb8fa9ea2179777c4e9bcc5baaf/tensorflow-2.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e73d43dbc68d8c711e70edecc4ac70472799a25ec4ec18a84d479ee18033d3c5", size = 2121 }, + { url = "https://files.pythonhosted.org/packages/c1/2d/636471492d93b6c1bf5375b81be7105a313a8c91a07c37e43625b00ca5c3/tensorflow-2.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bb0edd69103c154245c5f209f0507355cc68ba7e4de350084bc31edc562478e4", size = 475258663 }, + { url = "https://files.pythonhosted.org/packages/cb/c5/f5b31ee348459d6f6c54d762488aa0a8e42ff11a7395f4d158915ad43000/tensorflow-2.15.1-cp311-cp311-win_amd64.whl", hash = "sha256:a49f8755c74a89553294a99ab25aa87ab1cddbfa40fe58387e09f64f0578cedc", size = 2096 }, + { url = "https://files.pythonhosted.org/packages/62/e7/b8db69612f401f52b510163d5a04b783c3f3440e8f86e299480095e5e76f/tensorflow-2.15.1-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:f8e85821317c9c0fbf1256e9f721cfb1400ba1e09becb844b3ddd91f744805fc", size = 236437643 }, + { url = "https://files.pythonhosted.org/packages/91/ee/1c4db1bb82d1158fdbfe024bc2331b06272cb8f4abaf7d4e2127b21fc428/tensorflow-2.15.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:b75815b6a601edad52b4181e9805c8fcd04813a6ab1d5cd8127188dfd2788e20", size = 205692241 }, + { url = "https://files.pythonhosted.org/packages/16/85/6b758898a4342b50add537e2dd50f36fe3b16451bd3a41c2dec0a1ac7548/tensorflow-2.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:432788ac5d1234b9e9b7c7f73603a5655271a28c293329c52c7c0b9434a1184e", size = 2120 }, + { url = "https://files.pythonhosted.org/packages/38/03/d509cd280c07ba34f1690b5f094cd715bec3c69a08c15a8a61cf82833cf6/tensorflow-2.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89b5aa1022dec47e567512eaf4e1271b8e6c1ff1984e30d0d9127bd1093ed4c5", size = 475214135 }, + { url = "https://files.pythonhosted.org/packages/a5/ef/a9fe22fabd5e11bda4e322daec40d8798a504fd2ee5725a56ba786503452/tensorflow-2.15.1-cp39-cp39-win_amd64.whl", hash = "sha256:aaf3cfa290597ebbdf19d1a78729e3f555e459506cd58f8d7399359ac5e02a05", size = 2095 }, +] + +[[package]] +name = "tensorflow-cpu" +version = "2.15.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "astunparse", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "flatbuffers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "gast", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "google-pasta", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "grpcio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "h5py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "keras", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "libclang", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ml-dtypes", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "opt-einsum", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "setuptools", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorboard", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-estimator", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-io-gcs-filesystem", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "termcolor", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "wrapt", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/1f/cc/dfb0195934918847611d0d1e0a2ad3f1f8a77876a9139b8976ebdd72854c/tensorflow_cpu-2.15.1-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:f211b011e812f827f5452b1d5f19865645c65df6e2a07d71118480c40887133e", size = 236439366 }, + { url = "https://files.pythonhosted.org/packages/d0/f4/058dc567de1ac67120a85119f19fe6288f45f6b08db8c03dfb38fa664874/tensorflow_cpu-2.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba9503db2c5357ea21938555323581fbdabf3d051b6bc1b5f73c5b0ae034d077", size = 207165286 }, + { url = "https://files.pythonhosted.org/packages/7b/75/d12ecfc1d04bcbd39d3617b53beb3f2f1ed6237bd877fe998eed88c6d820/tensorflow_cpu-2.15.1-cp310-cp310-win_amd64.whl", hash = "sha256:dcf2d31c59abddfe6f1a86ca3e4dee99428c59831b1939a984622e0b19b52fcf", size = 2134 }, + { url = "https://files.pythonhosted.org/packages/d8/6c/dc0642ce2656637d8f31ba9c618a41bf14e38428ba77e4e0a9359be39436/tensorflow_cpu-2.15.1-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:ee3bb114c6031d471d891c761e7eda2c80bea19bb318abcd3d5bab92ccfaf9aa", size = 236482774 }, + { url = "https://files.pythonhosted.org/packages/5b/00/af89cb211fc96ffdebb52a687dad7f83b0b1d82bc057f65309fa03a89911/tensorflow_cpu-2.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:54660c074d7241a503e81edfd9f5ef5af88f64051b72e2945f26318c790f2d26", size = 207208420 }, + { url = "https://files.pythonhosted.org/packages/51/8a/ff2fc9bad8edc68ef4cd63963c10b320de03d3496def83d2a9b1635c6831/tensorflow_cpu-2.15.1-cp311-cp311-win_amd64.whl", hash = "sha256:dc75baf4c08a6e8ab7ceec97f002bb993508a5b58f13fac5283ee976a71a3c67", size = 2133 }, + { url = "https://files.pythonhosted.org/packages/65/61/507dd4e8c092a82ea088865cf733808d71ac19b1f58810da10c957353190/tensorflow_cpu-2.15.1-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:481f3f38fac552f0915052292614c57875e44ff7e235edc11fa847e313c09c83", size = 236437695 }, + { url = "https://files.pythonhosted.org/packages/d2/4a/9ce811354ddbd63704d68fd554ecbb4b03b74e9df274bad7ffd0f2349381/tensorflow_cpu-2.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:102b27b17e5f6023886b0cb07835af56cd135b845c1b92e597018ba77e54e480", size = 207164138 }, + { url = "https://files.pythonhosted.org/packages/bd/cb/1358e60835aad684311cfab10e36375c09a8a627ed22f357ddc9f0556ca3/tensorflow_cpu-2.15.1-cp39-cp39-win_amd64.whl", hash = "sha256:951d78693b61239464bee5ae9c20b6c845d82ae0a2092ee5abebb96b5e2db02e", size = 2133 }, +] + +[[package]] +name = "tensorflow-cpu-aws" +version = "2.15.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "astunparse", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "flatbuffers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "gast", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "google-pasta", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "grpcio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "h5py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "keras", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "libclang", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ml-dtypes", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "opt-einsum", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "setuptools", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorboard", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-estimator", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-io-gcs-filesystem", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "termcolor", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "wrapt", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/9c/74e7c37e2de31fb5ada8f3a166ceedacdb99fc9bcd88f606ec97bfc2b22e/tensorflow_cpu_aws-2.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c781d95cb8c58d47cb012b7b4e77b2f3e8d4d47b45926bc54976506fa0c037cc", size = 211831219 }, + { url = "https://files.pythonhosted.org/packages/06/d5/05cd02db299821fd68ef5f8857506c21aeeddd024daf519d8643f0260952/tensorflow_cpu_aws-2.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d4c3a3a9363bf42999adedbbd514e3a133be2d62f61fee9cfa46aaefb087c09e", size = 211874120 }, + { url = "https://files.pythonhosted.org/packages/e0/b2/44b4492303ea458f1c97d1c5ebd412dd799827f6fafd7938dd45be8f70a6/tensorflow_cpu_aws-2.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e9a25f2b9da4740074fdd89bd2a4cf280a9d40b1d26a973ef079e6673c1bf7de", size = 211831639 }, +] + +[[package]] +name = "tensorflow-estimator" +version = "2.15.0" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/c8/2f823c8958d5342eafc6dd3e922f0cc4fcf8c2e0460284cc462dae3b60a0/tensorflow_estimator-2.15.0-py2.py3-none-any.whl", hash = "sha256:aedf21eec7fb2dc91150fc91a1ce12bc44dbb72278a08b58e79ff87c9e28f153", size = 441974 }, +] + +[[package]] +name = "tensorflow-hub" +version = "0.16.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tf-keras", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/e5/50/00dba77925bf2a0a1e45d7bcf8a69a1d2534fb4bb277d9010bd148d2235e/tensorflow_hub-0.16.1-py2.py3-none-any.whl", hash = "sha256:e10c184b3d08daeafada11ffea2dd46781725b6bef01fad1f74d6634ad05311f", size = 30771 }, +] + +[[package]] +name = "tensorflow-intel" +version = "2.15.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "astunparse", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "flatbuffers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "gast", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "google-pasta", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "grpcio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "h5py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "keras", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "libclang", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ml-dtypes", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "opt-einsum", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "setuptools", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorboard", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-estimator", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-io-gcs-filesystem", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "termcolor", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "wrapt", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/02/13/681487f4f5241d8213fbf3f8940988054d97e213fcc3390921682dfc691f/tensorflow_intel-2.15.1-cp310-cp310-win_amd64.whl", hash = "sha256:9f305142b3c5e239c82c463429b1f88726dd27d9f23523871f825493a9ffc5f4", size = 300872148 }, + { url = "https://files.pythonhosted.org/packages/90/32/d0ec8fe173e8e1c38cd13d23d640c46232d211fbd6f3485d17a1950f3c38/tensorflow_intel-2.15.1-cp311-cp311-win_amd64.whl", hash = "sha256:4f05059493f8203285ac5cea3b1955887a7903c1ca6f7a29e4b6ef912b1f934b", size = 300918101 }, + { url = "https://files.pythonhosted.org/packages/a9/61/c746e82becb7f14aac327220d5dd1a086b94b605cfab24b3e5991fa26cdf/tensorflow_intel-2.15.1-cp39-cp39-win_amd64.whl", hash = "sha256:921f18f7eb9cf59769e9668b3935fe178c990e2973d8013870dae5e3b58de079", size = 300800813 }, +] + +[[package]] +name = "tensorflow-io-gcs-filesystem" +version = "0.37.1" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e9/a3/12d7e7326a707919b321e2d6e4c88eb61596457940fd2b8ff3e9b7fac8a7/tensorflow_io_gcs_filesystem-0.37.1-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:249c12b830165841411ba71e08215d0e94277a49c551e6dd5d72aab54fe5491b", size = 2470224 }, + { url = "https://files.pythonhosted.org/packages/1c/55/3849a188cc15e58fefde20e9524d124a629a67a06b4dc0f6c881cb3c6e39/tensorflow_io_gcs_filesystem-0.37.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:257aab23470a0796978efc9c2bcf8b0bc80f22e6298612a4c0a50d3f4e88060c", size = 3479613 }, + { url = "https://files.pythonhosted.org/packages/e2/19/9095c69e22c879cb3896321e676c69273a549a3148c4f62aa4bc5ebdb20f/tensorflow_io_gcs_filesystem-0.37.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8febbfcc67c61e542a5ac1a98c7c20a91a5e1afc2e14b1ef0cb7c28bc3b6aa70", size = 4842078 }, + { url = "https://files.pythonhosted.org/packages/f3/48/47b7d25572961a48b1de3729b7a11e835b888e41e0203cca82df95d23b91/tensorflow_io_gcs_filesystem-0.37.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9679b36e3a80921876f31685ab6f7270f3411a4cc51bc2847e80d0e4b5291e27", size = 5085736 }, + { url = "https://files.pythonhosted.org/packages/40/9b/b2fb82d0da673b17a334f785fc19c23483165019ddc33b275ef25ca31173/tensorflow_io_gcs_filesystem-0.37.1-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:32c50ab4e29a23c1f91cd0f9ab8c381a0ab10f45ef5c5252e94965916041737c", size = 2470224 }, + { url = "https://files.pythonhosted.org/packages/5b/cc/16634e76f3647fbec18187258da3ba11184a6232dcf9073dc44579076d36/tensorflow_io_gcs_filesystem-0.37.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:b02f9c5f94fd62773954a04f69b68c4d576d076fd0db4ca25d5479f0fbfcdbad", size = 3479613 }, + { url = "https://files.pythonhosted.org/packages/de/bf/ba597d3884c77d05a78050f3c178933d69e3f80200a261df6eaa920656cd/tensorflow_io_gcs_filesystem-0.37.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6e1f2796b57e799a8ca1b75bf47c2aaa437c968408cc1a402a9862929e104cda", size = 4842079 }, + { url = "https://files.pythonhosted.org/packages/66/7f/e36ae148c2f03d61ca1bff24bc13a0fef6d6825c966abef73fc6f880a23b/tensorflow_io_gcs_filesystem-0.37.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee7c8ee5fe2fd8cb6392669ef16e71841133041fee8a330eff519ad9b36e4556", size = 5085736 }, + { url = "https://files.pythonhosted.org/packages/70/83/4422804257fe2942ae0af4ea5bcc9df59cb6cb1bd092202ef240751d16aa/tensorflow_io_gcs_filesystem-0.37.1-cp312-cp312-macosx_10_14_x86_64.whl", hash = "sha256:ffebb6666a7bfc28005f4fbbb111a455b5e7d6cd3b12752b7050863ecb27d5cc", size = 2470224 }, + { url = "https://files.pythonhosted.org/packages/43/9b/be27588352d7bd971696874db92d370f578715c17c0ccb27e4b13e16751e/tensorflow_io_gcs_filesystem-0.37.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:fe8dcc6d222258a080ac3dfcaaaa347325ce36a7a046277f6b3e19abc1efb3c5", size = 3479614 }, + { url = "https://files.pythonhosted.org/packages/d3/46/962f47af08bd39fc9feb280d3192825431a91a078c856d17a78ae4884eb1/tensorflow_io_gcs_filesystem-0.37.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fbb33f1745f218464a59cecd9a18e32ca927b0f4d77abd8f8671b645cc1a182f", size = 4842077 }, + { url = "https://files.pythonhosted.org/packages/f0/9b/790d290c232bce9b691391cf16e95a96e469669c56abfb1d9d0f35fa437c/tensorflow_io_gcs_filesystem-0.37.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:286389a203a5aee1a4fa2e53718c661091aa5fea797ff4fa6715ab8436b02e6c", size = 5085733 }, + { url = "https://files.pythonhosted.org/packages/12/4f/798df777498fab9dc683a658688e962f0af56454eb040c90f836fd9fa67c/tensorflow_io_gcs_filesystem-0.37.1-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:ee5da49019670ed364f3e5fb86b46420841a6c3cb52a300553c63841671b3e6d", size = 2470221 }, + { url = "https://files.pythonhosted.org/packages/7a/f9/ce6a0efde262a79361f0d67392fdf0d0406781a1ee4fc48d0d8b0553b311/tensorflow_io_gcs_filesystem-0.37.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:8943036bbf84e7a2be3705cb56f9c9df7c48c9e614bb941f0936c58e3ca89d6f", size = 3479613 }, + { url = "https://files.pythonhosted.org/packages/66/5f/334a011caa1eb97689274d1141df8e6b7a25e389f0390bdcd90235de9783/tensorflow_io_gcs_filesystem-0.37.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:426de1173cb81fbd62becec2012fc00322a295326d90eb6c737fab636f182aed", size = 4842075 }, + { url = "https://files.pythonhosted.org/packages/3d/cb/7dcee55fc5a7d7d8a862e12519322851cd5fe5b086f946fd71e4ae1ef281/tensorflow_io_gcs_filesystem-0.37.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0df00891669390078a003cedbdd3b8e645c718b111917535fa1d7725e95cdb95", size = 5087496 }, +] + +[[package]] +name = "tensorflow-macos" +version = "2.15.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "tensorflow-cpu-aws", marker = "platform_system == 'Linux' and (platform_machine == 'aarch64' or platform_machine == 'arm64')" }, + { name = "tensorflow-intel", marker = "platform_system == 'Windows'" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/c8/b90dc41b1eefc2894801a120cf268b1f25440981fcf966fb055febce8348/tensorflow_macos-2.15.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:b8f01d7615fe4ff3b15a12f84471bd5344fed187543c4a091da3ddca51b6dc26", size = 2158 }, + { url = "https://files.pythonhosted.org/packages/bc/11/b73387ad260614ec43c313a630d14fe5522455084abc207fce864aaa3d73/tensorflow_macos-2.15.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:58fca6399665f19e599c591c421672d9bc8b705409d43ececd0931d1d3bc6a7e", size = 2159 }, + { url = "https://files.pythonhosted.org/packages/3a/54/95b9459cd48d92a0522c8dd59955210e51747a46461bcedb64a9a77ba822/tensorflow_macos-2.15.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:cca3c9ba5b96face05716792cb1bcc70d84c5e0c34bfb7735b39c65d0334b699", size = 2158 }, +] + +[[package]] +name = "tensorflow-text" +version = "2.15.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "tensorflow", marker = "platform_machine != 'arm64' or platform_system != 'Darwin'" }, + { name = "tensorflow-hub", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-macos", marker = "platform_machine == 'arm64' and platform_system == 'Darwin'" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/63/0f/d260a5cc7d86d25eb67bb919f957106b76af4a039f064526290d9cf5d93e/tensorflow_text-2.15.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:db09ada839eb92aa23afc6c4e37257e6665d64ae048cfdce6374b5aa33f8f006", size = 6441513 }, + { url = "https://files.pythonhosted.org/packages/70/12/91be80b24a403593f9dacddabd6f7ea110373a1831f575ad2d34fe7d4f7e/tensorflow_text-2.15.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0f522ab8511f3a0cf782cd3e22bc3d863d7cbf0b4ccc02a7de92abf0deea0df4", size = 5201157 }, + { url = "https://files.pythonhosted.org/packages/8a/fe/a2f19d3d3ab834c3fa1007c970b0b86573beb929c86ca6c85cd13e86e4b2/tensorflow_text-2.15.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:751f4a260e2b1a03db1ec9871473922219d82dccabc305cc79f1dec5d8283014", size = 6441515 }, + { url = "https://files.pythonhosted.org/packages/20/a0/bdbf2a11141f1c93e572364d13c42537cfe811b747a0bbb58fdd904f3960/tensorflow_text-2.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:31e5499282e787022cb078ac182c2bbe1a30438451dafb8bce7a81258017bfbb", size = 5201204 }, + { url = "https://files.pythonhosted.org/packages/88/db/e2a10d9582704d57923c9948e42ab05aae90fb3f5a8305394ed6961f1668/tensorflow_text-2.15.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2f87b23c7dd87c9581557a3f425ded96bfc4f969c52996ac491b99c4c2bb04b0", size = 6442438 }, + { url = "https://files.pythonhosted.org/packages/fa/59/82c59ca4d26ce24b0e65a1869bbbfc8615df11c31ecf439be095206aa006/tensorflow_text-2.15.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:66dc8c11d97278f19997171b8e3f7f8d0a12a67760028646a7b3a163fab1c3d3", size = 5202117 }, +] + +[[package]] +name = "tensorstore" +version = "0.1.64" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ml-dtypes", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ce/b7/04d19901451da377f03a6e1ae3d9edf0b43af93309f558abf28b2e5aaceb/tensorstore-0.1.64.tar.gz", hash = "sha256:7fa89e90876fb5377efc54f3f37326a6fb83ec9e1326565819a75a4e80949886", size = 6510000 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2f/a8/63876bab9ca44d0b57bca6893927df90b08ff0123697216fe7b297036015/tensorstore-0.1.64-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:c369088c74c0dda30398290724513a0289f25ccc01865ed5aec62e57f1930709", size = 15366638 }, + { url = "https://files.pythonhosted.org/packages/90/3d/28b0ee2d792842d2e27be9fea5c541a77d1f8f4d4c1a3a981306acb69818/tensorstore-0.1.64-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:40cae39aca2992fdac0ed5fbcef71f72cd38a759b1a61c37d95ad395606697b4", size = 13563010 }, + { url = "https://files.pythonhosted.org/packages/b8/26/40a8cc7ffcc4abeacd196560f8d54ca2e24d2bb8ca540360bf4c7b1b5e70/tensorstore-0.1.64-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8cf64ee03c7cd62a0dde2f4d1f3f8784d50aea3a2e85a65686be0fe33ea18ed5", size = 13650288 }, + { url = "https://files.pythonhosted.org/packages/f1/3b/9e539c9d22f4eda48a9e5788d76e761f0627f249c3018d396bcdf17c7a54/tensorstore-0.1.64-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1a78aedbddccc09ea283b145496da03dbc7eb8693ae4e01074ed791d72b7eac2", size = 14926295 }, + { url = "https://files.pythonhosted.org/packages/66/f4/fb0bab70e472ce78f290222b5b1631c589a8fe9043148c0882150b28b527/tensorstore-0.1.64-cp310-cp310-win_amd64.whl", hash = "sha256:72517af8c5f9c49d0343acb7c6b0cc250f8077ca989285d471d3a64dbbfcc36b", size = 11523913 }, + { url = "https://files.pythonhosted.org/packages/4d/9c/e1ef8f867de64f36c2ec3a1cb803693736a4dcb91d5afd0741c8e11e71df/tensorstore-0.1.64-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:2b0a1e3294d2e690a9c269ea50d62f2f60f7935ca507243d8b56b2871b0e201f", size = 15367232 }, + { url = "https://files.pythonhosted.org/packages/46/a7/e6adff4ec3f622bd28a79bfa339aea3dc9d66508e87bc739f730b970098e/tensorstore-0.1.64-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3da6fa00ddf312e1b502d2ee9de39b858a78a02b396114201c67c01bc03fc382", size = 13567261 }, + { url = "https://files.pythonhosted.org/packages/19/c4/e74f4c288b429221fd2f128eb57bed62ebf4bf69739970e404d8a5b63712/tensorstore-0.1.64-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c32976f5a0e881a097b52a488fb16d33a1d94a86393115098da87894fc9c5abf", size = 13652088 }, + { url = "https://files.pythonhosted.org/packages/c8/5a/2df005251df903de0fda4d8da7e7a5081a6854d40b62b8eeaf88a86a1c7a/tensorstore-0.1.64-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:55af5ec5bd78056e4df18f4af107bac7ea84d2bdc34ff6ab6642b3a036f99390", size = 14926070 }, + { url = "https://files.pythonhosted.org/packages/e5/68/07d792f014fc3ad886a2498ebbfdaf5d6807c09c65fad5534969620846b4/tensorstore-0.1.64-cp311-cp311-win_amd64.whl", hash = "sha256:24a4cebaf9d0e75d494342948f68edc971d6bb90e23192ddf8d98397fb1ff3cb", size = 11523737 }, + { url = "https://files.pythonhosted.org/packages/00/32/e9b22f4c05ae910940fbc6c304b6570b8cf8d35b1d2e8600d8118c42a80d/tensorstore-0.1.64-cp312-cp312-macosx_10_14_x86_64.whl", hash = "sha256:80c510024cc31c4dee7f478ea67a0b4b4cacf5a6bffe8c4e446188fdbe2d7b4c", size = 15404886 }, + { url = "https://files.pythonhosted.org/packages/df/9d/01e43143ac82cdc7b87e55818f0052a63b3414bd9f731a2c991dd68ca4ba/tensorstore-0.1.64-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c90d38b552c79f0d688cc3d502a9023e3dee9821881d6727d8aa06482ccdc0c1", size = 13594439 }, + { url = "https://files.pythonhosted.org/packages/44/7e/1522b9092e396d64d84ea799ef1f9c1d7e7da3514277fa8b908e1d8d26d1/tensorstore-0.1.64-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9968f9a9b9cd7c669bfae5244307e105c006038e8dd156eebbf2146f771ba369", size = 13646074 }, + { url = "https://files.pythonhosted.org/packages/0a/eb/09210bb4a8afc991eb9cb794269ff276a62f15936aef2b64335b61412f7a/tensorstore-0.1.64-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:806774968ee4cc8809114281730e9fad5970a94a7ef9104bc54fa35a32068b2f", size = 14923761 }, + { url = "https://files.pythonhosted.org/packages/c7/70/27281fb67817d69dddc5eec9827513f8e341e3a52cb85f066a84e9274a47/tensorstore-0.1.64-cp312-cp312-win_amd64.whl", hash = "sha256:cc315029f49c0f294f0721462c221e0ef4c15360a526cc34392ac81565fd63b8", size = 11523992 }, + { url = "https://files.pythonhosted.org/packages/d6/1c/bb414f7e7a7c2fbdcb21376da3928a3f025748db08c5c88feade387185bf/tensorstore-0.1.64-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:f47597209ce11228cfe6b94999f582788aac5571e85c3e8dcaa43b1f07660589", size = 15367235 }, + { url = "https://files.pythonhosted.org/packages/20/4c/1241fdac0ff5b1e3b5aad99d861639e551685108ddb36a472e6b92ea303f/tensorstore-0.1.64-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:abbe9c65978a5423751409df9c98efb69b2093953aa37d3a1605fc60663eb1d4", size = 13562757 }, + { url = "https://files.pythonhosted.org/packages/71/98/8a9635ee39ba9ee4a1d794fbeaf481f24f07d3abc4c6ac999a775a2c7e19/tensorstore-0.1.64-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e35c6e90429e517d3debdb974cb5d42e57d8c002629343a34483efbe0d4e490", size = 13658999 }, + { url = "https://files.pythonhosted.org/packages/9b/6b/373827eec77a063d39e60eace78665f0d18cef50e67bbadea78babd10c14/tensorstore-0.1.64-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72f76231ce12bfd266358a096e9c6000a2d86c1f4f24c3891c29b2edfffc5df4", size = 14920041 }, + { url = "https://files.pythonhosted.org/packages/c0/6d/9de85fe7f7ce8d78f5228d3f2ad7826f2b1ffb0e1030f4b7364629d8cc0d/tensorstore-0.1.64-cp39-cp39-win_amd64.whl", hash = "sha256:b46296a1c1f43f472e589d2fb43b9d6549d711486be78b6e3aafaff4179d8f56", size = 11477863 }, +] + +[[package]] +name = "termcolor" +version = "2.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/10/56/d7d66a84f96d804155f6ff2873d065368b25a07222a6fd51c4f24ef6d764/termcolor-2.4.0.tar.gz", hash = "sha256:aab9e56047c8ac41ed798fa36d892a37aca6b3e9159f3e0c24bc64a9b3ac7b7a", size = 12664 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d9/5f/8c716e47b3a50cbd7c146f45881e11d9414def768b7cd9c5e6650ec2a80a/termcolor-2.4.0-py3-none-any.whl", hash = "sha256:9297c0df9c99445c2412e832e882a7884038a25617c60cea2ad69488d4040d63", size = 7719 }, +] + +[[package]] +name = "text-unidecode" +version = "1.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ab/e2/e9a00f0ccb71718418230718b3d900e71a5d16e701a3dae079a21e9cd8f8/text-unidecode-1.3.tar.gz", hash = "sha256:bad6603bb14d279193107714b288be206cac565dfa49aa5b105294dd5c4aab93", size = 76885 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a6/a5/c0b6468d3824fe3fde30dbb5e1f687b291608f9473681bbf7dabbf5a87d7/text_unidecode-1.3-py2.py3-none-any.whl", hash = "sha256:1311f10e8b895935241623731c2ba64f4c455287888b18189350b67134a822e8", size = 78154 }, +] + +[[package]] +name = "tf-keras" +version = "2.15.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "tensorflow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/03/a3/72e49c210fe545159c98842f110f024195f8efefc2e310f8eac77e3d599e/tf_keras-2.15.1.tar.gz", hash = "sha256:40ab605cecc7759c657cb2bccd9efaacd6fc2369a6c1eba8053890afeac46886", size = 1251021 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6f/23/6fd9aab5b7ef9e5614b94edce48d92db9d38d2bd2d00ef2c7a6f82a00588/tf_keras-2.15.1-py3-none-any.whl", hash = "sha256:8beaef46b8b4f1158de1410e7c0cf82f008b9e8c4ab3443f54ac1aaef9c2ad74", size = 1715031 }, +] + +[[package]] +name = "tf2onnx" +version = "1.8.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "flatbuffers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnx", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/db/32/33ce509a79c207a39cf04bfa3ec3353da15d1e6553a6ad912f117cc29130/tf2onnx-1.8.4-py3-none-any.whl", hash = "sha256:1ebabb96c914da76e23222b6107a8b248a024bf259d77f027e6690099512d457", size = 345298 }, +] + +[[package]] +name = "threadpoolctl" +version = "3.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bd/55/b5148dcbf72f5cde221f8bfe3b6a540da7aa1842f6b491ad979a6c8b84af/threadpoolctl-3.5.0.tar.gz", hash = "sha256:082433502dd922bf738de0d8bcc4fdcbf0979ff44c42bd40f5af8a282f6fa107", size = 41936 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4b/2c/ffbf7a134b9ab11a67b0cf0726453cedd9c5043a4fe7a35d1cefa9a1bcfb/threadpoolctl-3.5.0-py3-none-any.whl", hash = "sha256:56c1e26c150397e58c4926da8eeee87533b1e32bef131bd4bf6a2f45f3185467", size = 18414 }, +] + +[[package]] +name = "timeout-decorator" +version = "0.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/80/f8/0802dd14c58b5d3d72bb9caa4315535f58787a1dc50b81bbbcaaa15451be/timeout-decorator-0.5.0.tar.gz", hash = "sha256:6a2f2f58db1c5b24a2cc79de6345760377ad8bdc13813f5265f6c3e63d16b3d7", size = 4754 } + +[[package]] +name = "timm" +version = "1.0.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "huggingface-hub", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "safetensors", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torchvision", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7d/e0/f9628aab36d199c6ff1bff2d4015e6b2333e8010d6c6eaed8fbfd102fa7f/timm-1.0.8.tar.gz", hash = "sha256:f54a579f1cc39c43d99a4b03603e39c4cee87d4f0a08aba9c22e19064b30bf95", size = 2187799 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1a/02/f11f8f9178242a694cd99f3a234731d833df77bf01cbb21c0085f021e3d7/timm-1.0.8-py3-none-any.whl", hash = "sha256:2e4cf9e2224616fdb08e5f7a2972bd20e05f750236ea1f8dd53f3f326ceaee83", size = 2309959 }, +] + +[[package]] +name = "tokenizers" +version = "0.15.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "huggingface-hub", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c0/44/625db94e91c6196b6574359fa70bfe28e8eabf57a1b894f8f0ec69727fd1/tokenizers-0.15.2.tar.gz", hash = "sha256:e6e9c6e019dd5484be5beafc775ae6c925f4c69a3487040ed09b45e13df2cb91", size = 320256 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a8/6e/489419d98730b3d02381f10a8b97c5bf55b45742d1b347cdd0ffe267b827/tokenizers-0.15.2-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:52f6130c9cbf70544287575a985bf44ae1bda2da7e8c24e97716080593638012", size = 2578411 }, + { url = "https://files.pythonhosted.org/packages/01/04/45d88b8bddc09bf56ae1631721393255b75798af515c65c26389713a2072/tokenizers-0.15.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:054c1cc9c6d68f7ffa4e810b3d5131e0ba511b6e4be34157aa08ee54c2f8d9ee", size = 2412452 }, + { url = "https://files.pythonhosted.org/packages/cc/bf/819bf4445ed68ffaf73b0f6245bcbd21a5cd58e86dabbef315a6d0b707b3/tokenizers-0.15.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:a9b9b070fdad06e347563b88c278995735292ded1132f8657084989a4c84a6d5", size = 3643451 }, + { url = "https://files.pythonhosted.org/packages/31/b3/70d3fe0ad25e065322cd902624cad4ff2647484fe823360f58af6927b48c/tokenizers-0.15.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ea621a7eef4b70e1f7a4e84dd989ae3f0eeb50fc8690254eacc08acb623e82f1", size = 3534105 }, + { url = "https://files.pythonhosted.org/packages/5f/1b/58e77f2b57651e8c1b4f1b7144a1250509f2e7a1f55073d12620968ae4bb/tokenizers-0.15.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:cf7fd9a5141634fa3aa8d6b7be362e6ae1b4cda60da81388fa533e0b552c98fd", size = 3398034 }, + { url = "https://files.pythonhosted.org/packages/dc/d5/45dd421f45b3c1a446ffd9486cef29ed568b5978f66a1803fa46a44aa9be/tokenizers-0.15.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44f2a832cd0825295f7179eaf173381dc45230f9227ec4b44378322d900447c9", size = 3926740 }, + { url = "https://files.pythonhosted.org/packages/fa/6b/6b757cf6f7c30009a6759d3f7b833d974b3cd50d24d5824c695e077cb1bf/tokenizers-0.15.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8b9ec69247a23747669ec4b0ca10f8e3dfb3545d550258129bd62291aabe8605", size = 4032027 }, + { url = "https://files.pythonhosted.org/packages/1c/5d/cf5e122ce4f1a29f165b2a69dc33d1ff30bce303343d58a54775ddba5d51/tokenizers-0.15.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40b6a4c78da863ff26dbd5ad9a8ecc33d8a8d97b535172601cf00aee9d7ce9ce", size = 3577319 }, + { url = "https://files.pythonhosted.org/packages/aa/0b/dd9e5124fe73a01f36f5c7554ac97b9612af5e0bd401d6a606a3f52a060a/tokenizers-0.15.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:5ab2a4d21dcf76af60e05af8063138849eb1d6553a0d059f6534357bce8ba364", size = 9682328 }, + { url = "https://files.pythonhosted.org/packages/6a/0c/3435e3d54f825d4fa363a7ab2680b243314377eb2ed28e87ade70b861e7b/tokenizers-0.15.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a47acfac7e511f6bbfcf2d3fb8c26979c780a91e06fb5b9a43831b2c0153d024", size = 9995619 }, + { url = "https://files.pythonhosted.org/packages/ab/bf/a804747020f1b221131b74b5f29c24b47a5d2cee4b1311ce394ca9ce242a/tokenizers-0.15.2-cp310-none-win32.whl", hash = "sha256:064ff87bb6acdbd693666de9a4b692add41308a2c0ec0770d6385737117215f2", size = 2013446 }, + { url = "https://files.pythonhosted.org/packages/c9/87/0bf37626c5f1ea2462e0398be88c287f3d40c696c255ba478bf525bdc852/tokenizers-0.15.2-cp310-none-win_amd64.whl", hash = "sha256:3b919afe4df7eb6ac7cafd2bd14fb507d3f408db7a68c43117f579c984a73843", size = 2192649 }, + { url = "https://files.pythonhosted.org/packages/73/11/933d68d395f5486d935e1c15da80bc96bf3f48595652069d19e0e9894386/tokenizers-0.15.2-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:89cd1cb93e4b12ff39bb2d626ad77e35209de9309a71e4d3d4672667b4b256e7", size = 2578922 }, + { url = "https://files.pythonhosted.org/packages/5f/4f/a4c12cc058a899c1caaa1e689c3df9a698e20e891d4005aa6ec2174a9339/tokenizers-0.15.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:cfed5c64e5be23d7ee0f0e98081a25c2a46b0b77ce99a4f0605b1ec43dd481fa", size = 2412317 }, + { url = "https://files.pythonhosted.org/packages/e9/13/b86ea87b7e3b4a2ca154220dc4eb19a56a3864ec03e9630d15d1bac10da1/tokenizers-0.15.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:a907d76dcfda37023ba203ab4ceeb21bc5683436ebefbd895a0841fd52f6f6f2", size = 3643051 }, + { url = "https://files.pythonhosted.org/packages/0f/23/e4985657ea42ad432d6dc2100b2687e70a6bae730f1f8c52f81d9e6ccf3a/tokenizers-0.15.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20ea60479de6fc7b8ae756b4b097572372d7e4032e2521c1bbf3d90c90a99ff0", size = 3534327 }, + { url = "https://files.pythonhosted.org/packages/34/d5/e1ad46939d6de48d41bbd8b302f87ecde79847855210e75517a832b29490/tokenizers-0.15.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:48e2b9335be2bc0171df9281385c2ed06a15f5cf121c44094338306ab7b33f2c", size = 3398296 }, + { url = "https://files.pythonhosted.org/packages/e7/d1/4d319a035f819af3290ec5a09482ad659d9d2a0aea33890fb5720ce81841/tokenizers-0.15.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:112a1dd436d2cc06e6ffdc0b06d55ac019a35a63afd26475205cb4b1bf0bfbff", size = 3927353 }, + { url = "https://files.pythonhosted.org/packages/e5/39/facfca8e598126a0001d4295e6b1ee670d241aa6f4fcdd97016065b43c5d/tokenizers-0.15.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4620cca5c2817177ee8706f860364cc3a8845bc1e291aaf661fb899e5d1c45b0", size = 4030091 }, + { url = "https://files.pythonhosted.org/packages/15/0b/c09b2c0dc688c82adadaa0d5080983de3ce920f4a5cbadb7eaa5302ad251/tokenizers-0.15.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ccd73a82751c523b3fc31ff8194702e4af4db21dc20e55b30ecc2079c5d43cb7", size = 3577167 }, + { url = "https://files.pythonhosted.org/packages/07/3b/d8e60712e509a6f5d01bf0eb4470452b72277be4883656206d4ccd7e02de/tokenizers-0.15.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:107089f135b4ae7817affe6264f8c7a5c5b4fd9a90f9439ed495f54fcea56fb4", size = 9683503 }, + { url = "https://files.pythonhosted.org/packages/c0/61/1c26c8e54af9bab32743e0484601a60738f33797f91040da2a4104f07e70/tokenizers-0.15.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0ff110ecc57b7aa4a594396525a3451ad70988e517237fe91c540997c4e50e29", size = 9996038 }, + { url = "https://files.pythonhosted.org/packages/d1/54/451e96d8514b1afbef955f7420e1180e015c3f4eb085ad38189c0e83ee87/tokenizers-0.15.2-cp311-none-win32.whl", hash = "sha256:6d76f00f5c32da36c61f41c58346a4fa7f0a61be02f4301fd30ad59834977cc3", size = 2013591 }, + { url = "https://files.pythonhosted.org/packages/c1/02/40725eebedea8175918bd59ab80b2174d6ef3b3ef9ac8ec996e84c38d3ca/tokenizers-0.15.2-cp311-none-win_amd64.whl", hash = "sha256:cc90102ed17271cf0a1262babe5939e0134b3890345d11a19c3145184b706055", size = 2192797 }, + { url = "https://files.pythonhosted.org/packages/ae/ca/ea4b5aa70d4d26f2d05620c265b07b5a249157767c1673f5753b8bfc7db1/tokenizers-0.15.2-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:f86593c18d2e6248e72fb91c77d413a815153b8ea4e31f7cd443bdf28e467670", size = 2574444 }, + { url = "https://files.pythonhosted.org/packages/f9/99/5a55a9b6e2db274c0969ad57d989d02efae90f9e558983a561c9b2b7ea1a/tokenizers-0.15.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0774bccc6608eca23eb9d620196687c8b2360624619623cf4ba9dc9bd53e8b51", size = 2411608 }, + { url = "https://files.pythonhosted.org/packages/82/cc/29bb3a25c06b90ce82bb20ef074011481de5c44413a1e1eb10cfd93080fb/tokenizers-0.15.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:d0222c5b7c9b26c0b4822a82f6a7011de0a9d3060e1da176f66274b70f846b98", size = 3652367 }, + { url = "https://files.pythonhosted.org/packages/c0/ae/f6a974be9b2e1615f3de3cc9e4fc2897a86357400801c58143c67cbbad2e/tokenizers-0.15.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3835738be1de66624fff2f4f6f6684775da4e9c00bde053be7564cbf3545cc66", size = 3529509 }, + { url = "https://files.pythonhosted.org/packages/d6/42/340b91f675b494c4ecc0a256c5dd88b4003dbfde05afff90b970738fdfb4/tokenizers-0.15.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0143e7d9dcd811855c1ce1ab9bf5d96d29bf5e528fd6c7824d0465741e8c10fd", size = 3396516 }, + { url = "https://files.pythonhosted.org/packages/6f/b2/8a965abc17fff309eb06e98ce429a19a5e04f731a669a6113b9e182f8a79/tokenizers-0.15.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db35825f6d54215f6b6009a7ff3eedee0848c99a6271c870d2826fbbedf31a38", size = 3918811 }, + { url = "https://files.pythonhosted.org/packages/6c/16/dad7b4aa6e34a395aef7ae7b010d8b5ebefdf3df81510de53d7f17d2f0fc/tokenizers-0.15.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3f5e64b0389a2be47091d8cc53c87859783b837ea1a06edd9d8e04004df55a5c", size = 4025494 }, + { url = "https://files.pythonhosted.org/packages/f6/de/3707df0c1d7bf55e6a4dba724700353bfee8e292fdd8ccfe93416549124d/tokenizers-0.15.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e0480c452217edd35eca56fafe2029fb4d368b7c0475f8dfa3c5c9c400a7456", size = 3575314 }, + { url = "https://files.pythonhosted.org/packages/2e/dd/7b8da304d152bb46f13bc2ba5bd545480ab6ce39d94a53eef07f7624d235/tokenizers-0.15.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:a33ab881c8fe70474980577e033d0bc9a27b7ab8272896e500708b212995d834", size = 9682779 }, + { url = "https://files.pythonhosted.org/packages/07/aa/66e8a81e07a791ca6ee9d74ee6de1ffbcd3985149f13aeb530bd409baba0/tokenizers-0.15.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:a308a607ca9de2c64c1b9ba79ec9a403969715a1b8ba5f998a676826f1a7039d", size = 9995614 }, + { url = "https://files.pythonhosted.org/packages/bf/e1/aed3bc98785c54bd26bf6dd3d2f54cc00de33e8b1f922a23131372eedec8/tokenizers-0.15.2-cp312-none-win32.whl", hash = "sha256:b8fcfa81bcb9447df582c5bc96a031e6df4da2a774b8080d4f02c0c16b42be0b", size = 2011030 }, + { url = "https://files.pythonhosted.org/packages/c9/ea/5800f4941a713b2feed955b6a256aacc1ca68a6699916d2668622c075d38/tokenizers-0.15.2-cp312-none-win_amd64.whl", hash = "sha256:38d7ab43c6825abfc0b661d95f39c7f8af2449364f01d331f3b51c94dcff7221", size = 2180523 }, + { url = "https://files.pythonhosted.org/packages/6d/04/406f35822d785ccdcd740f95ba58515c739b6d57c05dd278ee64c70d1565/tokenizers-0.15.2-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:38bfb0204ff3246ca4d5e726e8cc8403bfc931090151e6eede54d0e0cf162ef0", size = 2574496 }, + { url = "https://files.pythonhosted.org/packages/6c/b4/6cc305767c9b1b97b8f5bc61fc472abf42b24ad39388e8f0c57250a7c145/tokenizers-0.15.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:9c861d35e8286a53e06e9e28d030b5a05bcbf5ac9d7229e561e53c352a85b1fc", size = 2411609 }, + { url = "https://files.pythonhosted.org/packages/6b/6c/ae2437a3e233298a962053c62b943ffabb38627fd6787ff8da62352333fa/tokenizers-0.15.2-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:936bf3842db5b2048eaa53dade907b1160f318e7c90c74bfab86f1e47720bdd6", size = 3652369 }, + { url = "https://files.pythonhosted.org/packages/00/8b/21600349146d9fa4d341c507faf8d11b7292b7f29f8def440b81e65ad1ee/tokenizers-0.15.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:620beacc3373277700d0e27718aa8b25f7b383eb8001fba94ee00aeea1459d89", size = 3529510 }, + { url = "https://files.pythonhosted.org/packages/53/cd/6ffc60fbc5eae02629d736d578a7c5ca5c20b2b84e9866d61a0c6395684a/tokenizers-0.15.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2735ecbbf37e52db4ea970e539fd2d450d213517b77745114f92867f3fc246eb", size = 3396516 }, + { url = "https://files.pythonhosted.org/packages/d5/4c/15b66eb6a47dc9345192aa77988655830c1ebd1306d2b894ecd28fbfbbca/tokenizers-0.15.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:473c83c5e2359bb81b0b6fde870b41b2764fcdd36d997485e07e72cc3a62264a", size = 3918812 }, + { url = "https://files.pythonhosted.org/packages/ed/3b/f9df83311475e456473958cce65a3709f07a1d1dd8ed046d4779ec4336c8/tokenizers-0.15.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:968fa1fb3c27398b28a4eca1cbd1e19355c4d3a6007f7398d48826bbe3a0f728", size = 4025495 }, + { url = "https://files.pythonhosted.org/packages/36/ee/2055fbeb590719393d29cea3016491fd3a6da10598541bff256cc3750349/tokenizers-0.15.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:865c60ae6eaebdde7da66191ee9b7db52e542ed8ee9d2c653b6d190a9351b980", size = 3575316 }, + { url = "https://files.pythonhosted.org/packages/93/53/ae4e5e49bdc61849b668263a1a4c398b4e33aea1bb9b0a59c9677bb5266b/tokenizers-0.15.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:7c0d8b52664ab2d4a8d6686eb5effc68b78608a9008f086a122a7b2996befbab", size = 9682779 }, + { url = "https://files.pythonhosted.org/packages/04/c6/8818b867611734889cd8faca1153ec5dbdd59c98e85e5f6980e7be338839/tokenizers-0.15.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:f33dfbdec3784093a9aebb3680d1f91336c56d86cc70ddf88708251da1fe9064", size = 9995614 }, + { url = "https://files.pythonhosted.org/packages/92/5c/7ee7e297ad9dbdcb20caae1fb506efada72dd4c7dd3aa000285901ca1c87/tokenizers-0.15.2-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:82f8652a74cc107052328b87ea8b34291c0f55b96d8fb261b3880216a9f9e48e", size = 2578164 }, + { url = "https://files.pythonhosted.org/packages/aa/fa/f75d1c113256968833768391916ef385792409b307ae5581b7476c581963/tokenizers-0.15.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:02458bee6f5f3139f1ebbb6d042b283af712c0981f5bc50edf771d6b762d5e4f", size = 2414196 }, + { url = "https://files.pythonhosted.org/packages/0b/0b/3740e5ff34da240ecef9026b0f8625edc896421fefb99bf6a8d3242f0181/tokenizers-0.15.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:c9a09cd26cca2e1c349f91aa665309ddb48d71636370749414fbf67bc83c5343", size = 3643569 }, + { url = "https://files.pythonhosted.org/packages/60/b5/b80ea7034527a268b9f8aa84c6ae9ec99edb7188aa8ffc18a42fb8546596/tokenizers-0.15.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:158be8ea8554e5ed69acc1ce3fbb23a06060bd4bbb09029431ad6b9a466a7121", size = 3534125 }, + { url = "https://files.pythonhosted.org/packages/eb/7a/f0ab9e5d0ca5619d37c65e3a474d3e41cd336c939fa79c0261ebaacc387f/tokenizers-0.15.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1ddba9a2b0c8c81633eca0bb2e1aa5b3a15362b1277f1ae64176d0f6eba78ab1", size = 3397334 }, + { url = "https://files.pythonhosted.org/packages/b1/50/49643c82a9801e09bb0d0ef9ce9cd17c0f91651cba96399af822a882a9ea/tokenizers-0.15.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3ef5dd1d39797044642dbe53eb2bc56435308432e9c7907728da74c69ee2adca", size = 3927121 }, + { url = "https://files.pythonhosted.org/packages/a2/98/65bcde2920c022feac75ee282b3041f4d12e51c2cf955ce42a928410e591/tokenizers-0.15.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:454c203164e07a860dbeb3b1f4a733be52b0edbb4dd2e5bd75023ffa8b49403a", size = 4031187 }, + { url = "https://files.pythonhosted.org/packages/a5/bc/ec39dae3b0ea00724c0fea287091d62b0ccaa45c7a947004714e882d193d/tokenizers-0.15.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0cf6b7f1d4dc59af960e6ffdc4faffe6460bbfa8dce27a58bf75755ffdb2526d", size = 3577424 }, + { url = "https://files.pythonhosted.org/packages/d2/1a/2d2470b36d57de78f2c2ceb3cc93d1a770f02d3a1a21cf2312b81519a6ad/tokenizers-0.15.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:2ef09bbc16519f6c25d0c7fc0c6a33a6f62923e263c9d7cca4e58b8c61572afb", size = 9682903 }, + { url = "https://files.pythonhosted.org/packages/ce/7a/7f260655fb27b0d47ec83239535066f5c76583c7ab4e55a71c5437f7721f/tokenizers-0.15.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c9a2ebdd2ad4ec7a68e7615086e633857c85e2f18025bd05d2a4399e6c5f7169", size = 9997873 }, + { url = "https://files.pythonhosted.org/packages/51/60/6a1d7ea4d4095753db78c250f721b9495953eb5ec88ccfc3b58604ca6544/tokenizers-0.15.2-cp39-none-win32.whl", hash = "sha256:918fbb0eab96fe08e72a8c2b5461e9cce95585d82a58688e7f01c2bd546c79d0", size = 2013308 }, + { url = "https://files.pythonhosted.org/packages/ea/a5/006f9b3133e71d5b41d6455dede48731c22d3ddf5371167fb3c28847581e/tokenizers-0.15.2-cp39-none-win_amd64.whl", hash = "sha256:524e60da0135e106b254bd71f0659be9f89d83f006ea9093ce4d1fab498c6d0d", size = 2193190 }, + { url = "https://files.pythonhosted.org/packages/a5/2c/9c2f7a0601cccc8cf169006873ed7775ad76804e98b7236d1f345faf69f8/tokenizers-0.15.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:6a9b648a58281c4672212fab04e60648fde574877d0139cd4b4f93fe28ca8944", size = 2576142 }, + { url = "https://files.pythonhosted.org/packages/2e/4f/93ccada67079065f892a2c4e7159caf0ce65084fdf60253815ca964403af/tokenizers-0.15.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:7c7d18b733be6bbca8a55084027f7be428c947ddf871c500ee603e375013ffba", size = 2412714 }, + { url = "https://files.pythonhosted.org/packages/fd/8f/1dbeaf8b2a2c00e5172d8ed000fba94edb1d424fd50dcbdcc755fbf3c0aa/tokenizers-0.15.2-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:13ca3611de8d9ddfbc4dc39ef54ab1d2d4aaa114ac8727dfdc6a6ec4be017378", size = 3646249 }, + { url = "https://files.pythonhosted.org/packages/89/ed/b055d12637754471e4344f4e85c6268ef76801b0113ce1f789c5d84eaae9/tokenizers-0.15.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:237d1bf3361cf2e6463e6c140628e6406766e8b27274f5fcc62c747ae3c6f094", size = 3534330 }, + { url = "https://files.pythonhosted.org/packages/ad/e1/d0b441575a3ac0262c2c73773f79dd50c94e13c9dfda0d953f1c79d47ef5/tokenizers-0.15.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:67a0fe1e49e60c664915e9fb6b0cb19bac082ab1f309188230e4b2920230edb3", size = 3579864 }, + { url = "https://files.pythonhosted.org/packages/a8/cd/6fe89c549d3aad886295cb9875105a75fa0d82ce80e4721cb43e6eb0830e/tokenizers-0.15.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:4e022fe65e99230b8fd89ebdfea138c24421f91c1a4f4781a8f5016fd5cdfb4d", size = 9684097 }, + { url = "https://files.pythonhosted.org/packages/9f/4d/29e5052a11d1a9f8eb156e48c123731e6219e4f3d72cd6d7787fdf4eff7a/tokenizers-0.15.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:d857be2df69763362ac699f8b251a8cd3fac9d21893de129bc788f8baaef2693", size = 9997782 }, + { url = "https://files.pythonhosted.org/packages/be/53/a104d802030e74cb88e3673a23c629518c5d3a585f485ac0d06d2c61fcef/tokenizers-0.15.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:e2ea752f2b0fe96eb6e2f3adbbf4d72aaa1272079b0dfa1145507bd6a5d537e6", size = 2576171 }, + { url = "https://files.pythonhosted.org/packages/e7/d7/bc1144ba365c1929661db8c5c729addd1e9ef029106d2bbac83970585755/tokenizers-0.15.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:4b19a808d8799fda23504a5cd31d2f58e6f52f140380082b352f877017d6342b", size = 2412554 }, + { url = "https://files.pythonhosted.org/packages/e3/0c/65356b710dce071234ddab78fd0f530ef318aa700e13b4b687eb738f21bf/tokenizers-0.15.2-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:64c86e5e068ac8b19204419ed8ca90f9d25db20578f5881e337d203b314f4104", size = 3646861 }, + { url = "https://files.pythonhosted.org/packages/23/4b/6b4bdf41b9777cd07f185c6ca015ca62d8fbccfac0e23095da3ad1315af7/tokenizers-0.15.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:de19c4dc503c612847edf833c82e9f73cd79926a384af9d801dcf93f110cea4e", size = 3534237 }, + { url = "https://files.pythonhosted.org/packages/94/d2/656ff3cf666c547aaf72c7f160465603c744adbdbfeabf274b63843a1fdd/tokenizers-0.15.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea09acd2fe3324174063d61ad620dec3bcf042b495515f27f638270a7d466e8b", size = 3579835 }, + { url = "https://files.pythonhosted.org/packages/94/b4/b46f929c65fb1bb7371300ce7ad027eb537c3871e850a7b9a92cabf3c03f/tokenizers-0.15.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:cf27fd43472e07b57cf420eee1e814549203d56de00b5af8659cb99885472f1f", size = 9683503 }, + { url = "https://files.pythonhosted.org/packages/c9/93/a2916bca30301fed0f388c2ff4aedb3a6539e4323a645b2b01321e680615/tokenizers-0.15.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:7ca22bd897537a0080521445d91a58886c8c04084a6a19e6c78c586e0cfa92a5", size = 9997752 }, +] + +[[package]] +name = "tomli" +version = "2.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c0/3f/d7af728f075fb08564c5949a9c95e44352e23dee646869fa104a3b2060a3/tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f", size = 15164 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/97/75/10a9ebee3fd790d20926a90a2547f0bf78f371b2f13aa822c759680ca7b9/tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc", size = 12757 }, +] + +[[package]] +name = "toolz" +version = "0.12.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3e/bf/5e12db234df984f6df3c7f12f1428aa680ba4e101f63f4b8b3f9e8d2e617/toolz-0.12.1.tar.gz", hash = "sha256:ecca342664893f177a13dac0e6b41cbd8ac25a358e5f215316d43e2100224f4d", size = 66550 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/8a/d82202c9f89eab30f9fc05380daae87d617e2ad11571ab23d7c13a29bb54/toolz-0.12.1-py3-none-any.whl", hash = "sha256:d22731364c07d72eea0a0ad45bafb2c2937ab6fd38a3507bf55eae8744aa7d85", size = 56121 }, +] + +[[package]] +name = "torch" +version = "2.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "filelock", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fsspec", version = "2024.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fsspec", version = "2024.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "jinja2", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "networkx", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "nvidia-cublas-cu12", marker = "platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "nvidia-cuda-cupti-cu12", marker = "platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "nvidia-cuda-nvrtc-cu12", marker = "platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "nvidia-cuda-runtime-cu12", marker = "platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "nvidia-cudnn-cu12", marker = "platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "nvidia-cufft-cu12", marker = "platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "nvidia-curand-cu12", marker = "platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "nvidia-cusolver-cu12", marker = "platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "nvidia-cusparse-cu12", marker = "platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "nvidia-nccl-cu12", marker = "platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "nvidia-nvtx-cu12", marker = "platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "sympy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "triton", marker = "python_version < '3.13' and platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/9a/bd/4161ae28fb1c388a8ee30ca3aa72cf11ac3016ce62bc9e82c71ce193c410/torch-2.4.0-cp310-cp310-manylinux1_x86_64.whl", hash = "sha256:4ed94583e244af51d6a8d28701ca5a9e02d1219e782f5a01dd401f90af17d8ac", size = 797225217 }, + { url = "https://files.pythonhosted.org/packages/81/77/84a2cb46649f538ea9d317b7272476d295df9a0cfc92907145a854c8c67f/torch-2.4.0-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:c4ca297b7bd58b506bfd6e78ffd14eb97c0e7797dcd7965df62f50bb575d8954", size = 89827576 }, + { url = "https://files.pythonhosted.org/packages/19/8e/24221589eb2dc066b14e29800d2e801c446f697c2d2240a9a61c6c0c5101/torch-2.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:2497cbc7b3c951d69b276ca51fe01c2865db67040ac67f5fc20b03e41d16ea4a", size = 197856855 }, + { url = "https://files.pythonhosted.org/packages/ff/70/feb6338f48615b5a5fe8ff218c15ae9897fa7c1c996dddf9867e8306a8cf/torch-2.4.0-cp310-none-macosx_11_0_arm64.whl", hash = "sha256:685418ab93730efbee71528821ff54005596970dd497bf03c89204fb7e3f71de", size = 62138916 }, + { url = "https://files.pythonhosted.org/packages/80/83/9b7681e41e59adb6c2b042f7e8eb716515665a6eed3dda4215c6b3385b90/torch-2.4.0-cp311-cp311-manylinux1_x86_64.whl", hash = "sha256:e743adadd8c8152bb8373543964551a7cb7cc20ba898dc8f9c0cdbe47c283de0", size = 797262052 }, + { url = "https://files.pythonhosted.org/packages/84/fa/2b510a02809ddd70aed821bc2328c4effd206503df38a1328c9f1f957813/torch-2.4.0-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:7334325c0292cbd5c2eac085f449bf57d3690932eac37027e193ba775703c9e6", size = 89850473 }, + { url = "https://files.pythonhosted.org/packages/18/cf/f69dff972a748e08e1bf602ef94ea5c6d4dd2f41cea22c8ad67a607d8b41/torch-2.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:97730014da4c57ffacb3c09298c6ce05400606e890bd7a05008d13dd086e46b1", size = 197860580 }, + { url = "https://files.pythonhosted.org/packages/b7/d0/5e8f96d83889e77b478b90e7d8d24a5fc14c5c9350c6b93d071f45f39096/torch-2.4.0-cp311-none-macosx_11_0_arm64.whl", hash = "sha256:f169b4ea6dc93b3a33319611fcc47dc1406e4dd539844dcbd2dec4c1b96e166d", size = 62144370 }, + { url = "https://files.pythonhosted.org/packages/bf/55/b6c74df4695f94a9c3505021bc2bd662e271d028d055b3b2529f3442a3bd/torch-2.4.0-cp312-cp312-manylinux1_x86_64.whl", hash = "sha256:997084a0f9784d2a89095a6dc67c7925e21bf25dea0b3d069b41195016ccfcbb", size = 797168571 }, + { url = "https://files.pythonhosted.org/packages/9a/5d/327fb72044c22d68a826643abf2e220db3d7f6005a41a6b167af1ffbc708/torch-2.4.0-cp312-cp312-manylinux2014_aarch64.whl", hash = "sha256:bc3988e8b36d1e8b998d143255d9408d8c75da4ab6dd0dcfd23b623dfb0f0f57", size = 89746726 }, + { url = "https://files.pythonhosted.org/packages/dc/95/a14dd84ce65e5ce176176393a80b2f74864ee134a31f590140456a4c0959/torch-2.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:3374128bbf7e62cdaed6c237bfd39809fbcfaa576bee91e904706840c3f2195c", size = 197807123 }, + { url = "https://files.pythonhosted.org/packages/c7/87/489ebb234e75760e06fa4789fa6d4e13c125beefa1483ce35c9e43dcd395/torch-2.4.0-cp312-none-macosx_11_0_arm64.whl", hash = "sha256:91aaf00bfe1ffa44dc5b52809d9a95129fca10212eca3ac26420eb11727c6288", size = 62123112 }, + { url = "https://files.pythonhosted.org/packages/36/80/3ac18a2db50d832745c1c5db7e47c4d0e02f1a11e92185155a6b218cbbe3/torch-2.4.0-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:618808d3f610d5f180e47a697d4ec90b810953bb1e020f424b2ac7fb0884b545", size = 797245386 }, + { url = "https://files.pythonhosted.org/packages/05/38/e4ad00f4e60c9010b981e1a94d58df4a96b9b10ba6ef585be6019f54b543/torch-2.4.0-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:ed765d232d23566052ba83632ec73a4fccde00b4c94ad45d63b471b09d63b7a7", size = 89816730 }, + { url = "https://files.pythonhosted.org/packages/9f/ef/13faff7ef5770cea29ef2c06e2b87d6f34697973aef5eea4234948b46c4d/torch-2.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:a2feb98ac470109472fb10dfef38622a7ee08482a16c357863ebc7bc7db7c8f7", size = 198011542 }, + { url = "https://files.pythonhosted.org/packages/3a/4a/7441a1ab49762309146ea31fab1e55362f13f7749c1aabff41d8edc887f9/torch-2.4.0-cp39-none-macosx_11_0_arm64.whl", hash = "sha256:8940fc8b97a4c61fdb5d46a368f21f4a3a562a17879e932eb51a5ec62310cb31", size = 62138298 }, +] + +[[package]] +name = "torchaudio" +version = "2.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "torch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/e0/5b/cc0ab8d15291d4b14a2ce740c7b46483c356f060eb98dc9a68171230cadc/torchaudio-2.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:733e9d859b88dabefeaf008e3ab2b8c7885b29466068b4b79a42766be4619e46", size = 1789823 }, + { url = "https://files.pythonhosted.org/packages/2d/4a/416af600d0d47343b65dd182fb7b918a640e80385b609d94fb89a3fc527c/torchaudio-2.4.0-cp310-cp310-manylinux1_x86_64.whl", hash = "sha256:c48bab82a9ee0c67b9323c2ebbe0890a34c5815d1ff1ace77b1c9df4e6fdbbff", size = 3361296 }, + { url = "https://files.pythonhosted.org/packages/48/79/074ec23358af34fe467ac781e817c310649f19c4deb8d08770a3e6397945/torchaudio-2.4.0-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:17cb73d4336771d455cd8dda8b4891307a5346b890a4e6b1d4b73d565258fee1", size = 1659411 }, + { url = "https://files.pythonhosted.org/packages/9c/5f/fe6e84fece5e54d215a4575061bf88ad1af21c4875f0d3297b8926a2cba4/torchaudio-2.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:af19edc1c3c0ac626f594fc67f087db401016d9216af8d62b6c6ff731efbae43", size = 2416699 }, + { url = "https://files.pythonhosted.org/packages/1b/11/9c38a2da79d79611fd6950837f5389bac55c6fdfbc1b4ceab6d2afd8b0d4/torchaudio-2.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:acbcf9129ffcfce808254e2cbff103363c505ce06ed4c4231b3f436a10679d4d", size = 1797221 }, + { url = "https://files.pythonhosted.org/packages/b7/a7/6b1c6185c9aed923f64fd6c3d1cce09b21031ab36aa661f39e255535511c/torchaudio-2.4.0-cp311-cp311-manylinux1_x86_64.whl", hash = "sha256:393ee8c24110ccc8030482c10cd9d5d0b5e528f6a9dd3d60557e1151aa951b13", size = 3366732 }, + { url = "https://files.pythonhosted.org/packages/fc/d4/c038ac466f98bc615183d6d1e7f31d0306834887748f99d2ca52877cc534/torchaudio-2.4.0-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:be969c09466db35e0d79b8b09dff66caedbb9569b42c903a2d5e0db2af760e3c", size = 1666062 }, + { url = "https://files.pythonhosted.org/packages/96/9b/720bb13674234a2cc90525502a255233227e7e2a046ab96628e6b0969b07/torchaudio-2.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:2993a3288b2b451bf90c7c4d65991b5769e2614d923e295f08a10066ce79d3c0", size = 2418453 }, + { url = "https://files.pythonhosted.org/packages/cf/1e/2139b508cb4716f98b972d8fd76084277d57faa5face86b007c495da52ac/torchaudio-2.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ae13a95ef6fabcadb0eff36d85f5048d70474a2e9704fa9c86e9903cbcec0d4a", size = 1792484 }, + { url = "https://files.pythonhosted.org/packages/c8/e7/ff8dfb30f44288c01baf39603827955c7c95ddfbee732fb65acf32f571e1/torchaudio-2.4.0-cp312-cp312-manylinux1_x86_64.whl", hash = "sha256:4782a49171d94431bb815a55aa72733f5fe38034bdf6adeced28c226e2cc791b", size = 3361223 }, + { url = "https://files.pythonhosted.org/packages/6e/a7/06ee10dfeb5e8ac2fdef29a754ed100039f5d899dd21ccec4cfad614afec/torchaudio-2.4.0-cp312-cp312-manylinux2014_aarch64.whl", hash = "sha256:534d1907bb252ecd2ba9e1d61cff7220fd66090e63df7b3c109cea77a19d4cb8", size = 1659853 }, + { url = "https://files.pythonhosted.org/packages/33/56/6d6db4673ede22d814cf0f5cb6920b997d605fdff21a28b7ffa3b555c330/torchaudio-2.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:473c149c1c5288f4ce7b609c5ecb7b2528e7958ea701147a20413d65e5a8a59c", size = 2412106 }, + { url = "https://files.pythonhosted.org/packages/79/21/bb5392ce546e5d371c4a6d812d464f76066cda79757732c98fd366d104a5/torchaudio-2.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1fd670c808e322c101957a07651e29935f86ec389243c0c43a24edd7a1854841", size = 1790599 }, + { url = "https://files.pythonhosted.org/packages/bc/b0/e8754a5e6977edc030e6ae3350ea60c85e618da025fcc28092831787934d/torchaudio-2.4.0-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:1eecb83c123577779a45381de3a38e4add132a80104cff4afd816913f51ca17b", size = 3362831 }, + { url = "https://files.pythonhosted.org/packages/99/13/8428d9007aa88cd150fb80eed8c929eb8ae45e7adb673fe44c1360ebc718/torchaudio-2.4.0-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:c840894de12a6dd3ea57cbb0d0086123aaa48001ba3ad99ef714fe009eae8eb9", size = 1660759 }, + { url = "https://files.pythonhosted.org/packages/3d/d2/96520547deba32e7bf2ac61e39d7eb8254f5e471f6e4ed6b985891baa5bb/torchaudio-2.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:608fd609cdd8323ef4a50c1e984a0be7282a6c630fad22e040e957f8e376950e", size = 2409959 }, +] + +[[package]] +name = "torchvision" +version = "0.19.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pillow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/e8/a3/4c868202fa23f69f9a58bb29ecbae5f9912c5d79fa5e78db5d3de7e6434f/torchvision-0.19.0-1-cp310-cp310-win_amd64.whl", hash = "sha256:6ed066aae5c50465d7c4761357aefe5dbd2eb7075a33ab8c14b352fc2353ad4c", size = 1288390 }, + { url = "https://files.pythonhosted.org/packages/6a/38/e8257ad99ea2ec30bbb4e6d9d81f3fe796e39046bb060d80569cbf6d83e5/torchvision-0.19.0-1-cp311-cp311-win_amd64.whl", hash = "sha256:6b1bce2e4c003d890a18f14ff289528707d918e38539ff890ef02aa31dae1b56", size = 1288348 }, + { url = "https://files.pythonhosted.org/packages/a5/96/4496817e943141a8a76bbed5c45a0fe30d356b69030e4b482c915717e3b9/torchvision-0.19.0-1-cp312-cp312-win_amd64.whl", hash = "sha256:13aee7a46e049c8c1e7d35a0394b0587a7e62ff3d1a822cd2bbbacb675ac4a09", size = 1288349 }, + { url = "https://files.pythonhosted.org/packages/8c/65/8da2b47c789acee2b48b33cd7c1b06b6eb45106854d42ed43269a84df908/torchvision-0.19.0-1-cp39-cp39-win_amd64.whl", hash = "sha256:b5f70f5a8bd9c8b00a076bf466b39b5cd679ef62587c47cc048adb04d9c5f155", size = 1288391 }, + { url = "https://files.pythonhosted.org/packages/66/11/9f5ce2d6cfb55bdb18bfae6f7604f9bdc41586bed2d90ca50412a689ecba/torchvision-0.19.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ec874ef85dcb24c69e600f6e276af892c80cde3ffdaeb7275efda463242bc2a8", size = 1660223 }, + { url = "https://files.pythonhosted.org/packages/42/c2/24b4416c53445098221557e18de0de59539cbe56b580b13a4f079746f3eb/torchvision-0.19.0-cp310-cp310-manylinux1_x86_64.whl", hash = "sha256:106842b1e475b14d9a04ee0d6f5477d43100e3bb78e9d31e37422384d0d84179", size = 7026471 }, + { url = "https://files.pythonhosted.org/packages/20/5f/9bc7c6bbaf2b348474a360bffe135666892aa234946957e85cd198d815c4/torchvision-0.19.0-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:d467d434005fd05a227a2ba7af4c591bb67e6d4a97bbd06eda8da83f43e9fd07", size = 14072228 }, + { url = "https://files.pythonhosted.org/packages/6a/7d/45dddbed62d282a8041ec5744d87ea6847be12ffd1ffe8ea5f3cf3afd257/torchvision-0.19.0-cp310-cp310-win_amd64.whl", hash = "sha256:f77ac31f7337d0f6f4b58e65582c6c93b9d9eeec7dfd7478896b5cdc19a2d60d", size = 1288380 }, + { url = "https://files.pythonhosted.org/packages/b4/93/611197d5a023a33a48df656287b3e26c6e7db0fa92a9bb2259c0cdb76581/torchvision-0.19.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:dbf3aa71a3899244fc884303ed3c4604a160824fefac77e82317a5463efc1d9b", size = 1660227 }, + { url = "https://files.pythonhosted.org/packages/42/1d/efde76f826682ebe6ec97c2874f3c7e4833eb84497c521ce6cfac406ef34/torchvision-0.19.0-cp311-cp311-manylinux1_x86_64.whl", hash = "sha256:ec4162dc71d9db7f0b51d0f92491929c1419605ff436e1305e50de13504a1c30", size = 7026457 }, + { url = "https://files.pythonhosted.org/packages/6e/69/a6bfb1af58d6c608d77f1d53fe5102c5fb6f27e9de8a4d3f3e1ba9a7250a/torchvision-0.19.0-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:4e6aa4fa3f0bc3599fa071c149e651a3e6bdd67c9161794478f9f91471c406a2", size = 14072231 }, + { url = "https://files.pythonhosted.org/packages/e4/06/458d0d1495a1926729c575d7ebca956e959cfe59fa307e93d585d26aa41d/torchvision-0.19.0-cp311-cp311-win_amd64.whl", hash = "sha256:ac5525d5cc09e425b5cf5752ecf66eefbbbd8c8cd945198ce35eb01a694e6069", size = 1288337 }, + { url = "https://files.pythonhosted.org/packages/88/6f/53f55c7e390e1fd27d24fdfa36bcb6f717855f311fbea90a15a1fbdef9d4/torchvision-0.19.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c09ef8ed184fa877f6251b620226e74f682b8f1d6b341456428d4955b8d9c670", size = 1660229 }, + { url = "https://files.pythonhosted.org/packages/0d/a6/7ecba32776b22db475f3061ab2b997b3a9bda6d969ef8e4bc61aac9b78b0/torchvision-0.19.0-cp312-cp312-manylinux1_x86_64.whl", hash = "sha256:02f1dd5cfc897957535b41b0258ec452d30de044e20c2de2c75869f7708e7656", size = 7026793 }, + { url = "https://files.pythonhosted.org/packages/2f/d6/e8bf6e422cd5f8491072bdc03a6fb8c758bd517f0f4e82b537edd7d7bbdc/torchvision-0.19.0-cp312-cp312-manylinux2014_aarch64.whl", hash = "sha256:be0f27a28b8e9f2ae98a31af34a4bdd2a5bf154d92bd73a5797c8d2156fb3ab6", size = 14072008 }, + { url = "https://files.pythonhosted.org/packages/2f/3c/88471e60b3eb275f52acb2b1d43273c54323003642a75b7b4eeb3a7c4c2a/torchvision-0.19.0-cp312-cp312-win_amd64.whl", hash = "sha256:a6ba7756f75c80212e51d3576f85ea204589e0c16efdb9b835dd677bc8929a67", size = 1288336 }, + { url = "https://files.pythonhosted.org/packages/5a/37/848b25931a8dfcda0b8e51e92696fa8eb99cb743172cc875c822efaf9b42/torchvision-0.19.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:dd1279571d4b68d5a53d9b7a35aedf91c4cb1e0b08099f6a1effa7b25b8c95e7", size = 1660236 }, + { url = "https://files.pythonhosted.org/packages/4d/1b/2c34793ce68075e92ad515739bf2a2608055274b7f5838de32baad7f6f51/torchvision-0.19.0-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:4d54b5e19b7ebebca7d0b08497b4c6335264cad04c94c05fa35988d9e9eed0c4", size = 7027644 }, + { url = "https://files.pythonhosted.org/packages/4f/b8/a7c7e5321483c56d3bff82a759dd3b4439d1234fa5852fb2ef113d33874e/torchvision-0.19.0-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:5f9a598dcf82bdfc8e4436ce74763b3877dabec3b33f94613b94ede13e3e4dee", size = 1702643 }, + { url = "https://files.pythonhosted.org/packages/8b/cd/57498a8469cfaf256c13a7043e6059b28fa20d0d31734aec788d2af3642d/torchvision-0.19.0-cp39-cp39-win_amd64.whl", hash = "sha256:ec1281c10402234d470bfd4d53663d81f4364f293b2f8fe24d4a7a1adc78c90c", size = 1288378 }, +] + +[[package]] +name = "tqdm" +version = "4.66.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "platform_system == 'Windows'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/58/83/6ba9844a41128c62e810fddddd72473201f3eacde02046066142a2d96cc5/tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad", size = 169504 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/48/5d/acf5905c36149bbaec41ccf7f2b68814647347b72075ac0b1fe3022fdc73/tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd", size = 78351 }, +] + +[[package]] +name = "traitlets" +version = "5.14.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/eb/79/72064e6a701c2183016abbbfedaba506d81e30e232a68c9f0d6f6fcd1574/traitlets-5.14.3.tar.gz", hash = "sha256:9ed0579d3502c94b4b3732ac120375cda96f923114522847de4b3bb98b96b6b7", size = 161621 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl", hash = "sha256:b74e89e397b1ed28cc831db7aea759ba6640cb3de13090ca145426688ff1ac4f", size = 85359 }, +] + +[[package]] +name = "transformers" +version = "4.39.0.dev0" +source = { editable = "." } +dependencies = [ + { name = "filelock", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "huggingface-hub", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "regex", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "safetensors", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tokenizers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] + +[package.optional-dependencies] +accelerate = [ + { name = "accelerate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +agents = [ + { name = "accelerate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "datasets", version = "2.14.4", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "datasets", version = "2.20.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "diffusers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "opencv-python", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pillow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sentencepiece", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +all = [ + { name = "accelerate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "av", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "codecarbon", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "decord", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "flax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jaxlib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "kenlm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "keras-nlp", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "librosa", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnxconverter-common", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "optax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "optuna", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "phonemizer", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pillow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyctcdecode", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ray", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ray", extra = ["tune"] }, + { name = "sentencepiece", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sigopt", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-text", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tf2onnx", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "timm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tokenizers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torchaudio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torchvision", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +audio = [ + { name = "kenlm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "librosa", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "phonemizer", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyctcdecode", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +codecarbon = [ + { name = "codecarbon", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +deepspeed = [ + { name = "accelerate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "deepspeed", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +deepspeed-testing = [ + { name = "accelerate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "beautifulsoup4", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "cookiecutter", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "datasets", version = "2.14.4", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "datasets", version = "2.20.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "deepspeed", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "dill", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "evaluate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "faiss-cpu", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "gitpython", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "hf-doc-builder", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "nltk", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "optuna", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "parameterized", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "psutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pydantic", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pytest", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pytest-timeout", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pytest-xdist", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rjieba", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rouge-score", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ruff", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sacrebleu", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sacremoses", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sentencepiece", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorboard", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "timeout-decorator", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +dev-dependencies = [ + { name = "accelerate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "av", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "beautifulsoup4", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "codecarbon", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "cookiecutter", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "datasets", version = "2.14.4", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "datasets", version = "2.20.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "decord", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "dill", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "evaluate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "faiss-cpu", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "flax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fugashi", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "gitpython", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "hf-doc-builder", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ipadic", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "isort", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jaxlib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "kenlm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "keras-nlp", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "librosa", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "nltk", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnxconverter-common", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnxruntime", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnxruntime-tools", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "optax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "optuna", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "parameterized", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "phonemizer", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pillow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "psutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyctcdecode", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pydantic", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pytest", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pytest-timeout", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pytest-xdist", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ray", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ray", extra = ["tune"] }, + { name = "rhoknp", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rjieba", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rouge-score", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ruff", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sacrebleu", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sacremoses", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "scikit-learn", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sentencepiece", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sigopt", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sudachidict-core", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sudachipy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorboard", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-text", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tf2onnx", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "timeout-decorator", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "timm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tokenizers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torchaudio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torchvision", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "unidic", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "unidic-lite", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "urllib3", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +docs = [ + { name = "accelerate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "av", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "codecarbon", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "decord", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "flax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "hf-doc-builder", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jaxlib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "kenlm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "keras-nlp", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "librosa", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnxconverter-common", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "optax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "optuna", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "phonemizer", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pillow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyctcdecode", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ray", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ray", extra = ["tune"] }, + { name = "sentencepiece", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sigopt", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-text", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tf2onnx", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "timm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tokenizers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torchaudio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torchvision", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +docs-specific = [ + { name = "hf-doc-builder", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +flax = [ + { name = "flax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jaxlib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "optax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +flax-speech = [ + { name = "kenlm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "librosa", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "phonemizer", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyctcdecode", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +ftfy = [ + { name = "ftfy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +integrations = [ + { name = "optuna", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ray", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ray", extra = ["tune"] }, + { name = "sigopt", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +ja = [ + { name = "fugashi", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ipadic", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rhoknp", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sudachidict-core", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sudachipy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "unidic", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "unidic-lite", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +modelcreation = [ + { name = "cookiecutter", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +onnx = [ + { name = "onnxconverter-common", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnxruntime", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnxruntime-tools", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tf2onnx", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +onnxruntime = [ + { name = "onnxruntime", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnxruntime-tools", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +optuna = [ + { name = "optuna", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +quality = [ + { name = "datasets", version = "2.14.4", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "datasets", version = "2.20.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "gitpython", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "hf-doc-builder", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "isort", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ruff", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "urllib3", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +ray = [ + { name = "ray", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ray", extra = ["tune"] }, +] +retrieval = [ + { name = "datasets", version = "2.14.4", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "datasets", version = "2.20.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "faiss-cpu", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sagemaker = [ + { name = "sagemaker", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sentencepiece = [ + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sentencepiece", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +serving = [ + { name = "fastapi", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pydantic", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "starlette", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "uvicorn", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sigopt = [ + { name = "sigopt", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sklearn = [ + { name = "scikit-learn", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +speech = [ + { name = "kenlm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "librosa", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "phonemizer", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyctcdecode", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torchaudio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +tf = [ + { name = "keras-nlp", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnxconverter-common", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-text", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tf2onnx", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +tf-cpu = [ + { name = "keras-nlp", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnxconverter-common", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-cpu", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-text", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tf2onnx", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +tf-speech = [ + { name = "kenlm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "librosa", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "phonemizer", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyctcdecode", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +timm = [ + { name = "timm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +tokenizers = [ + { name = "tokenizers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +torch = [ + { name = "accelerate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +torch-speech = [ + { name = "kenlm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "librosa", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "phonemizer", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyctcdecode", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torchaudio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +torch-vision = [ + { name = "pillow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torchvision", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +torchhub = [ + { name = "filelock", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "huggingface-hub", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "importlib-metadata", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "regex", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sentencepiece", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tokenizers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +video = [ + { name = "av", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "decord", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +vision = [ + { name = "pillow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] + +[[package]] +name = "triton" +version = "3.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "filelock", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/45/27/14cc3101409b9b4b9241d2ba7deaa93535a217a211c86c4cc7151fb12181/triton-3.0.0-1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:e1efef76935b2febc365bfadf74bcb65a6f959a9872e5bddf44cc9e0adce1e1a", size = 209376304 }, + { url = "https://files.pythonhosted.org/packages/33/3e/a2f59384587eff6aeb7d37b6780de7fedd2214935e27520430ca9f5b7975/triton-3.0.0-1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:5ce8520437c602fb633f1324cc3871c47bee3b67acf9756c1a66309b60e3216c", size = 209438883 }, + { url = "https://files.pythonhosted.org/packages/fe/7b/7757205dee3628f75e7991021d15cd1bd0c9b044ca9affe99b50879fc0e1/triton-3.0.0-1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:34e509deb77f1c067d8640725ef00c5cbfcb2052a1a3cb6a6d343841f92624eb", size = 209464695 }, + { url = "https://files.pythonhosted.org/packages/6c/bf/55cccf57c14787ad81ee827526ddd48fd0aff0291fcc7b8c2e2bdf28da0a/triton-3.0.0-1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:6e5727202f7078c56f91ff13ad0c1abab14a0e7f2c87e91b12b6f64f3e8ae609", size = 209377082 }, + { url = "https://files.pythonhosted.org/packages/15/67/84e5a4b7b45bdeb11da26a67dfa2b988c512abbcbcad8cbc30aa579051b2/triton-3.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:39b052da883351fdf6be3d93cedae6db3b8e3988d3b09ed221bccecfa9612230", size = 209380247 }, + { url = "https://files.pythonhosted.org/packages/ea/6b/1d72cc8a7379822dadf050474add7d8b73b02c35057446b6f17d27cb9ea2/triton-3.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cd34f19a8582af96e6291d4afce25dac08cb2a5d218c599163761e8e0827208e", size = 209442823 }, + { url = "https://files.pythonhosted.org/packages/ae/b2/048c9ecfdba0e6b0ae3c02eed2d9dd3e9e990a6d46da98555cf0c2232168/triton-3.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0d5e10de8c011adeb7c878c6ce0dd6073b14367749e34467f1cff2bde1b78253", size = 209468633 }, + { url = "https://files.pythonhosted.org/packages/11/f6/51a08e6eca368d75768afe2d73e9e5e4255e7c8e705c744baa108bf844fc/triton-3.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:41004fb1ae9a53fcb3e970745feb87f0e3c94c6ce1ba86e95fa3b8537894bef7", size = 209381017 }, +] + +[[package]] +name = "types-python-dateutil" +version = "2.9.0.20240316" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/61/c5/c3a4d72ffa8efc2e78f7897b1c69ec760553246b67d3ce8c4431fac5d4e3/types-python-dateutil-2.9.0.20240316.tar.gz", hash = "sha256:5d2f2e240b86905e40944dd787db6da9263f0deabef1076ddaed797351ec0202", size = 9067 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c7/1b/af4f4c4f3f7339a4b7eb3c0ab13416db98f8ac09de3399129ee5fdfa282b/types_python_dateutil-2.9.0.20240316-py3-none-any.whl", hash = "sha256:6b8cb66d960771ce5ff974e9dd45e38facb81718cc1e208b10b1baccbfdbee3b", size = 9663 }, +] + +[[package]] +name = "typing-extensions" +version = "4.12.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/df/db/f35a00659bc03fec321ba8bce9420de607a1d37f8342eee1863174c69557/typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8", size = 85321 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/26/9f/ad63fc0248c5379346306f8668cda6e2e2e9c95e01216d2b8ffd9ff037d0/typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d", size = 37438 }, +] + +[[package]] +name = "tzdata" +version = "2024.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/74/5b/e025d02cb3b66b7b76093404392d4b44343c69101cc85f4d180dd5784717/tzdata-2024.1.tar.gz", hash = "sha256:2674120f8d891909751c38abcdfd386ac0a5a1127954fbc332af6b5ceae07efd", size = 190559 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/65/58/f9c9e6be752e9fcb8b6a0ee9fb87e6e7a1f6bcab2cdc73f02bb7ba91ada0/tzdata-2024.1-py2.py3-none-any.whl", hash = "sha256:9068bc196136463f5245e51efda838afa15aaeca9903f49050dfa2679db4d252", size = 345370 }, +] + +[[package]] +name = "tzlocal" +version = "5.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "tzdata", marker = "platform_system == 'Windows'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/04/d3/c19d65ae67636fe63953b20c2e4a8ced4497ea232c43ff8d01db16de8dc0/tzlocal-5.2.tar.gz", hash = "sha256:8d399205578f1a9342816409cc1e46a93ebd5755e39ea2d85334bea911bf0e6e", size = 30201 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/97/3f/c4c51c55ff8487f2e6d0e618dba917e3c3ee2caae6cf0fbb59c9b1876f2e/tzlocal-5.2-py3-none-any.whl", hash = "sha256:49816ef2fe65ea8ac19d19aa7a1ae0551c834303d5014c6d5a62e4cbda8047b8", size = 17859 }, +] + +[[package]] +name = "unidic" +version = "1.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "plac", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "wasabi", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5a/09/271dfbf8d5b56adddc70e30fa94249f5d3ab35f615bf278d65258045564a/unidic-1.1.0.tar.gz", hash = "sha256:0ab91c05de342c84d2a6314901fd3afb9061ecd7534dd4a0431dccbb87d921b7", size = 7688 } + +[[package]] +name = "unidic-lite" +version = "1.0.8" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/55/2b/8cf7514cb57d028abcef625afa847d60ff1ffbf0049c36b78faa7c35046f/unidic-lite-1.0.8.tar.gz", hash = "sha256:db9d4572d9fdd4d00a97949d4b0741ec480ee05a7e7e2e32f547500dae27b245", size = 47356746 } + +[[package]] +name = "uritemplate" +version = "4.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d2/5a/4742fdba39cd02a56226815abfa72fe0aa81c33bed16ed045647d6000eba/uritemplate-4.1.1.tar.gz", hash = "sha256:4346edfc5c3b79f694bccd6d6099a322bbeb628dbf2cd86eea55a456ce5124f0", size = 273898 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/81/c0/7461b49cd25aeece13766f02ee576d1db528f1c37ce69aee300e075b485b/uritemplate-4.1.1-py2.py3-none-any.whl", hash = "sha256:830c08b8d99bdd312ea4ead05994a38e8936266f84b9a7878232db50b044e02e", size = 10356 }, +] + +[[package]] +name = "urllib3" +version = "1.26.19" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c8/93/65e479b023bbc46dab3e092bda6b0005424ea3217d711964ccdede3f9b1b/urllib3-1.26.19.tar.gz", hash = "sha256:3e3d753a8618b86d7de333b4223005f68720bcd6a7d2bcb9fbd2229ec7c1e429", size = 306068 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ae/6a/99eaaeae8becaa17a29aeb334a18e5d582d873b6f084c11f02581b8d7f7f/urllib3-1.26.19-py2.py3-none-any.whl", hash = "sha256:37a0344459b199fce0e80b0d3569837ec6b6937435c5244e7fd73fa6006830f3", size = 143933 }, +] + +[[package]] +name = "uvicorn" +version = "0.30.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "h11", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version < '3.11'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c3/ad/02b1b412e43605aa6aac8d0392c383ff3f6ae8267b7864e48e3b5f3f601e/uvicorn-0.30.5.tar.gz", hash = "sha256:ac6fdbd4425c5fd17a9fe39daf4d4d075da6fdc80f653e5894cdc2fd98752bee", size = 42835 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/67/d8/1bcb5e6508d14c6c9912cd964b286f04392298ffb3e4218f4a1292d64e76/uvicorn-0.30.5-py3-none-any.whl", hash = "sha256:b2d86de274726e9878188fa07576c9ceeff90a839e2b6e25c917fe05f5a6c835", size = 62805 }, +] + +[[package]] +name = "wasabi" +version = "0.10.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/69/41/0c31737ee1a29c8b829690ebb4ab988b1f489aa2c3efa115a732a9dd7997/wasabi-0.10.1.tar.gz", hash = "sha256:c8e372781be19272942382b14d99314d175518d7822057cb7a97010c4259d249", size = 28380 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/34/74/bd566f876c2de097e75d525c2696fb9829009987a0d93a4fb3576778a0a8/wasabi-0.10.1-py3-none-any.whl", hash = "sha256:fe862cc24034fbc9f04717cd312ab884f71f51a8ecabebc3449b751c2a649d83", size = 26075 }, +] + +[[package]] +name = "wcwidth" +version = "0.2.13" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6c/63/53559446a878410fc5a5974feb13d31d78d752eb18aeba59c7fef1af7598/wcwidth-0.2.13.tar.gz", hash = "sha256:72ea0c06399eb286d978fdedb6923a9eb47e1c486ce63e9b4e64fc18303972b5", size = 101301 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fd/84/fd2ba7aafacbad3c4201d395674fc6348826569da3c0937e75505ead3528/wcwidth-0.2.13-py2.py3-none-any.whl", hash = "sha256:3da69048e4540d84af32131829ff948f1e022c1c6bdb8d6102117aac784f6859", size = 34166 }, +] + +[[package]] +name = "werkzeug" +version = "3.0.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/02/51/2e0fc149e7a810d300422ab543f87f2bcf64d985eb6f1228c4efd6e4f8d4/werkzeug-3.0.3.tar.gz", hash = "sha256:097e5bfda9f0aba8da6b8545146def481d06aa7d3266e7448e2cccf67dd8bd18", size = 803342 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9d/6e/e792999e816d19d7fcbfa94c730936750036d65656a76a5a688b57a656c4/werkzeug-3.0.3-py3-none-any.whl", hash = "sha256:fc9645dc43e03e4d630d23143a04a7f947a9a3b5727cd535fdfe155a17cc48c8", size = 227274 }, +] + +[[package]] +name = "wheel" +version = "0.44.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b7/a0/95e9e962c5fd9da11c1e28aa4c0d8210ab277b1ada951d2aee336b505813/wheel-0.44.0.tar.gz", hash = "sha256:a29c3f2817e95ab89aa4660681ad547c0e9547f20e75b0562fe7723c9a2a9d49", size = 100733 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1b/d1/9babe2ccaecff775992753d8686970b1e2755d21c8a63be73aba7a4e7d77/wheel-0.44.0-py3-none-any.whl", hash = "sha256:2376a90c98cc337d18623527a97c31797bd02bad0033d41547043a1cbfbe448f", size = 67059 }, +] + +[[package]] +name = "wrapt" +version = "1.14.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/11/eb/e06e77394d6cf09977d92bff310cb0392930c08a338f99af6066a5a98f92/wrapt-1.14.1.tar.gz", hash = "sha256:380a85cf89e0e69b7cfbe2ea9f765f004ff419f34194018a6827ac0e3edfed4d", size = 50890 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f7/92/121147bb2f9ed1aa35a8780c636d5da9c167545f97737f0860b4c6c92086/wrapt-1.14.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:80bb5c256f1415f747011dc3604b59bc1f91c6e7150bd7db03b19170ee06b320", size = 35236 }, + { url = "https://files.pythonhosted.org/packages/39/4d/34599a47c8a41b3ea4986e14f728c293a8a96cd6c23663fe33657c607d34/wrapt-1.14.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:07f7a7d0f388028b2df1d916e94bbb40624c59b48ecc6cbc232546706fac74c2", size = 35934 }, + { url = "https://files.pythonhosted.org/packages/50/d5/bf619c4d204fe8888460f65222b465c7ecfa43590fdb31864fe0e266da29/wrapt-1.14.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:02b41b633c6261feff8ddd8d11c711df6842aba629fdd3da10249a53211a72c4", size = 78011 }, + { url = "https://files.pythonhosted.org/packages/94/56/fd707fb8e1ea86e72503d823549fb002a0f16cb4909619748996daeb3a82/wrapt-1.14.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2fe803deacd09a233e4762a1adcea5db5d31e6be577a43352936179d14d90069", size = 70462 }, + { url = "https://files.pythonhosted.org/packages/fd/70/8a133c88a394394dd57159083b86a564247399440b63f2da0ad727593570/wrapt-1.14.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:257fd78c513e0fb5cdbe058c27a0624c9884e735bbd131935fd49e9fe719d310", size = 77901 }, + { url = "https://files.pythonhosted.org/packages/07/06/2b4aaaa4403f766c938f9780c700d7399726bce3dfd94f5a57c4e5b9dc68/wrapt-1.14.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:4fcc4649dc762cddacd193e6b55bc02edca674067f5f98166d7713b193932b7f", size = 82463 }, + { url = "https://files.pythonhosted.org/packages/cd/ec/383d9552df0641e9915454b03139571e0c6e055f5d414d8f3d04f3892f38/wrapt-1.14.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:11871514607b15cfeb87c547a49bca19fde402f32e2b1c24a632506c0a756656", size = 75352 }, + { url = "https://files.pythonhosted.org/packages/40/f4/7be7124a06c14b92be53912f93c8dc84247f1cb93b4003bed460a430d1de/wrapt-1.14.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8ad85f7f4e20964db4daadcab70b47ab05c7c1cf2a7c1e51087bfaa83831854c", size = 82443 }, + { url = "https://files.pythonhosted.org/packages/4f/83/2669bf2cb4cc2b346c40799478d29749ccd17078cb4f69b4a9f95921ff6d/wrapt-1.14.1-cp310-cp310-win32.whl", hash = "sha256:a9a52172be0b5aae932bef82a79ec0a0ce87288c7d132946d645eba03f0ad8a8", size = 33410 }, + { url = "https://files.pythonhosted.org/packages/c0/1e/e5a5ac09e92fd112d50e1793e5b9982dc9e510311ed89dacd2e801f82967/wrapt-1.14.1-cp310-cp310-win_amd64.whl", hash = "sha256:6d323e1554b3d22cfc03cd3243b5bb815a51f5249fdcbb86fda4bf62bab9e164", size = 35558 }, + { url = "https://files.pythonhosted.org/packages/e7/f9/8c078b4973604cd968b23eb3dff52028b5c48f2a02c4f1f975f4d5e344d1/wrapt-1.14.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ecee4132c6cd2ce5308e21672015ddfed1ff975ad0ac8d27168ea82e71413f55", size = 35432 }, + { url = "https://files.pythonhosted.org/packages/6e/79/aec8185eefe20e8f49e5adeb0c2e20e016d5916d10872c17705ddac41be2/wrapt-1.14.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2020f391008ef874c6d9e208b24f28e31bcb85ccff4f335f15a3251d222b92d9", size = 36219 }, + { url = "https://files.pythonhosted.org/packages/d1/71/8d68004e5d5a676177342a56808af51e1df3b0e54b203e3295a8cd96b53b/wrapt-1.14.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2feecf86e1f7a86517cab34ae6c2f081fd2d0dac860cb0c0ded96d799d20b335", size = 78509 }, + { url = "https://files.pythonhosted.org/packages/5a/27/604d6ad71fe5935446df1b7512d491b47fe2aef8c95e9813d03d78024a28/wrapt-1.14.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:240b1686f38ae665d1b15475966fe0472f78e71b1b4903c143a842659c8e4cb9", size = 70972 }, + { url = "https://files.pythonhosted.org/packages/7f/1b/e0439eec0db6520968c751bc7e12480bb80bb8d939190e0e55ed762f3c7a/wrapt-1.14.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9008dad07d71f68487c91e96579c8567c98ca4c3881b9b113bc7b33e9fd78b8", size = 78402 }, + { url = "https://files.pythonhosted.org/packages/b9/45/2cc612ff64061d4416baf8d0daf27bea7f79f0097638ddc2af51a3e647f3/wrapt-1.14.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:6447e9f3ba72f8e2b985a1da758767698efa72723d5b59accefd716e9e8272bf", size = 83373 }, + { url = "https://files.pythonhosted.org/packages/ad/b7/332692b8d0387922da0f1323ad36a14e365911def3c78ea0d102f83ac592/wrapt-1.14.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:acae32e13a4153809db37405f5eba5bac5fbe2e2ba61ab227926a22901051c0a", size = 76299 }, + { url = "https://files.pythonhosted.org/packages/f2/31/cbce966b6760e62d005c237961e839a755bf0c907199248394e2ee03ab05/wrapt-1.14.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:49ef582b7a1152ae2766557f0550a9fcbf7bbd76f43fbdc94dd3bf07cc7168be", size = 83361 }, + { url = "https://files.pythonhosted.org/packages/9a/aa/ab46fb18072b86e87e0965a402f8723217e8c0312d1b3e2a91308df924ab/wrapt-1.14.1-cp311-cp311-win32.whl", hash = "sha256:358fe87cc899c6bb0ddc185bf3dbfa4ba646f05b1b0b9b5a27c2cb92c2cea204", size = 33454 }, + { url = "https://files.pythonhosted.org/packages/ba/7e/14113996bc6ee68eb987773b4139c87afd3ceff60e27e37648aa5eb2798a/wrapt-1.14.1-cp311-cp311-win_amd64.whl", hash = "sha256:26046cd03936ae745a502abf44dac702a5e6880b2b01c29aea8ddf3353b68224", size = 35616 }, + { url = "https://files.pythonhosted.org/packages/d9/ab/3ba5816dd466ffd7242913708771d258569825ab76fd29d7fd85b9361311/wrapt-1.14.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3232822c7d98d23895ccc443bbdf57c7412c5a65996c30442ebe6ed3df335383", size = 35234 }, + { url = "https://files.pythonhosted.org/packages/bb/70/73c54e24ea69a8b06ae9649e61d5e64f2b4bdfc6f202fc7794abeac1ed20/wrapt-1.14.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:988635d122aaf2bdcef9e795435662bcd65b02f4f4c1ae37fbee7401c440b3a7", size = 35933 }, + { url = "https://files.pythonhosted.org/packages/38/38/5b338163b3b4f1ab718306984678c3d180b85a25d72654ea4c61aa6b0968/wrapt-1.14.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cca3c2cdadb362116235fdbd411735de4328c61425b0aa9f872fd76d02c4e86", size = 77892 }, + { url = "https://files.pythonhosted.org/packages/0a/61/330f24065b8f2fc02f94321092a24e0c30aefcbac89ab5c860e180366c9f/wrapt-1.14.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d52a25136894c63de15a35bc0bdc5adb4b0e173b9c0d07a2be9d3ca64a332735", size = 70318 }, + { url = "https://files.pythonhosted.org/packages/e0/6a/3c660fa34c8106aa9719f2a6636c1c3ea7afd5931ae665eb197fdf4def84/wrapt-1.14.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40e7bc81c9e2b2734ea4bc1aceb8a8f0ceaac7c5299bc5d69e37c44d9081d43b", size = 77752 }, + { url = "https://files.pythonhosted.org/packages/e0/20/9716fb522d17a726364c4d032c8806ffe312268773dd46a394436b2787cc/wrapt-1.14.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b9b7a708dd92306328117d8c4b62e2194d00c365f18eff11a9b53c6f923b01e3", size = 82284 }, + { url = "https://files.pythonhosted.org/packages/6a/12/76bbe26dc39d05f1a7be8d570d91c87bb79297e08e885148ed670ed17b7b/wrapt-1.14.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6a9a25751acb379b466ff6be78a315e2b439d4c94c1e99cb7266d40a537995d3", size = 75170 }, + { url = "https://files.pythonhosted.org/packages/f9/3c/110e52b9da396a4ef3a0521552a1af9c7875a762361f48678c1ac272fd7e/wrapt-1.14.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:34aa51c45f28ba7f12accd624225e2b1e5a3a45206aa191f6f9aac931d9d56fe", size = 82281 }, + { url = "https://files.pythonhosted.org/packages/4b/07/782463e367a7c6b418af231ded753e4b2dd3293a157d9b0bb010806fc0c0/wrapt-1.14.1-cp39-cp39-win32.whl", hash = "sha256:dee0ce50c6a2dd9056c20db781e9c1cfd33e77d2d569f5d1d9321c641bb903d5", size = 33404 }, + { url = "https://files.pythonhosted.org/packages/5b/02/5ac7ea3b6722c84a2882d349ac581a9711b4047fe7a58475903832caa295/wrapt-1.14.1-cp39-cp39-win_amd64.whl", hash = "sha256:dee60e1de1898bde3b238f18340eec6148986da0455d8ba7848d50470a7a32fb", size = 35557 }, +] + +[[package]] +name = "xmltodict" +version = "0.13.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/39/0d/40df5be1e684bbaecdb9d1e0e40d5d482465de6b00cbb92b84ee5d243c7f/xmltodict-0.13.0.tar.gz", hash = "sha256:341595a488e3e01a85a9d8911d8912fd922ede5fecc4dce437eb4b6c8d037e56", size = 33813 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/94/db/fd0326e331726f07ff7f40675cd86aa804bfd2e5016c727fa761c934990e/xmltodict-0.13.0-py2.py3-none-any.whl", hash = "sha256:aa89e8fd76320154a40d19a0df04a4695fb9dc5ba977cbb68ab3e4eb225e7852", size = 9971 }, +] + +[[package]] +name = "xxhash" +version = "3.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/04/ef/1a95dc97a71b128a7c5fd531e42574b274629a4ad1354a694087e2305467/xxhash-3.4.1.tar.gz", hash = "sha256:0379d6cf1ff987cd421609a264ce025e74f346e3e145dd106c0cc2e3ec3f99a9", size = 84220 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/36/5a/0bbf85a88e19d50e35caf55be7aa7377bafeacff6d1a78965e0fc78d7f41/xxhash-3.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:91dbfa55346ad3e18e738742236554531a621042e419b70ad8f3c1d9c7a16e7f", size = 31850 }, + { url = "https://files.pythonhosted.org/packages/ad/7f/dfdf25e416b67970e89d7b85b0e6a4860ec8a227544cb5db069617cc323e/xxhash-3.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:665a65c2a48a72068fcc4d21721510df5f51f1142541c890491afc80451636d2", size = 30383 }, + { url = "https://files.pythonhosted.org/packages/f7/6f/15612eac54ab6a4e9e441ab14a08ba4fdfe6cce48d39f3fff46bcec1fc2a/xxhash-3.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb11628470a6004dc71a09fe90c2f459ff03d611376c1debeec2d648f44cb693", size = 220888 }, + { url = "https://files.pythonhosted.org/packages/6b/db/37b282f55294813fe1d34f8219573a72a0976617a74345982be157ad7e3a/xxhash-3.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5bef2a7dc7b4f4beb45a1edbba9b9194c60a43a89598a87f1a0226d183764189", size = 200320 }, + { url = "https://files.pythonhosted.org/packages/ba/0a/e4c5057c3537884ffbcde785287927ec063d596c632ff01bb50a27728103/xxhash-3.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9c0f7b2d547d72c7eda7aa817acf8791f0146b12b9eba1d4432c531fb0352228", size = 428491 }, + { url = "https://files.pythonhosted.org/packages/80/8a/1dd41557883b6196f8f092011a5c1f72d4d44cf36d7b67d4a5efe3127949/xxhash-3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:00f2fdef6b41c9db3d2fc0e7f94cb3db86693e5c45d6de09625caad9a469635b", size = 194106 }, + { url = "https://files.pythonhosted.org/packages/cf/40/4905206cbb58737efc76dd0ea1b5d0ebf89d78afdff8ce484a20dd95bfe9/xxhash-3.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23cfd9ca09acaf07a43e5a695143d9a21bf00f5b49b15c07d5388cadf1f9ce11", size = 207663 }, + { url = "https://files.pythonhosted.org/packages/34/b0/659d17d5530768c2de58336508b8aa10f159f02b1de8ce04369e01ad1ec5/xxhash-3.4.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:6a9ff50a3cf88355ca4731682c168049af1ca222d1d2925ef7119c1a78e95b3b", size = 219944 }, + { url = "https://files.pythonhosted.org/packages/9a/c3/8cb52cc25731e304c2594b8a4749d9654817f6cb047d3b046691fa2f794c/xxhash-3.4.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:f1d7c69a1e9ca5faa75546fdd267f214f63f52f12692f9b3a2f6467c9e67d5e7", size = 216495 }, + { url = "https://files.pythonhosted.org/packages/22/37/deac36a9f7632e5ddc236df5534289ca3f387b5c174d65359c2a06ed6182/xxhash-3.4.1-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:672b273040d5d5a6864a36287f3514efcd1d4b1b6a7480f294c4b1d1ee1b8de0", size = 227171 }, + { url = "https://files.pythonhosted.org/packages/24/4a/a5b29f30280e484531895d555af9491418f3892f0c4520dc7e44209cb55c/xxhash-3.4.1-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:4178f78d70e88f1c4a89ff1ffe9f43147185930bb962ee3979dba15f2b1cc799", size = 303077 }, + { url = "https://files.pythonhosted.org/packages/92/51/2d7947145b01e648c95e1cb44d87e6047e1a25b504b9b2b441d74586980e/xxhash-3.4.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:9804b9eb254d4b8cc83ab5a2002128f7d631dd427aa873c8727dba7f1f0d1c2b", size = 196464 }, + { url = "https://files.pythonhosted.org/packages/6c/a3/d739a94f3c96b5698e15b7e1546bcd0b6e43f6e604c588ead42e6d0058c1/xxhash-3.4.1-cp310-cp310-win32.whl", hash = "sha256:c09c49473212d9c87261d22c74370457cfff5db2ddfc7fd1e35c80c31a8c14ce", size = 30064 }, + { url = "https://files.pythonhosted.org/packages/a5/b0/2950f76c07e467586d01d9a6cdd4ac668c13d20de5fde49af5364f513e54/xxhash-3.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:ebbb1616435b4a194ce3466d7247df23499475c7ed4eb2681a1fa42ff766aff6", size = 29948 }, + { url = "https://files.pythonhosted.org/packages/fb/7a/31739a48da3121efc7740f7b297804a7386f7053ea9adad834f49cb83967/xxhash-3.4.1-cp310-cp310-win_arm64.whl", hash = "sha256:25dc66be3db54f8a2d136f695b00cfe88018e59ccff0f3b8f545869f376a8a46", size = 26719 }, + { url = "https://files.pythonhosted.org/packages/38/c7/399b07b6af0c89bc96361d9058132b052770d89ae90b7e8a67241ea5a30d/xxhash-3.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:58c49083801885273e262c0f5bbeac23e520564b8357fbb18fb94ff09d3d3ea5", size = 31854 }, + { url = "https://files.pythonhosted.org/packages/9c/0a/d0fd8d78c8a2c3c3b34e7a9dccf85f01bf38f32e0228d107fa3903e0981f/xxhash-3.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b526015a973bfbe81e804a586b703f163861da36d186627e27524f5427b0d520", size = 30379 }, + { url = "https://files.pythonhosted.org/packages/ca/8a/0c89f4ea4cd93a4b2728f742ddb2315bb56206538dc893d49d9bb890c464/xxhash-3.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:36ad4457644c91a966f6fe137d7467636bdc51a6ce10a1d04f365c70d6a16d7e", size = 221530 }, + { url = "https://files.pythonhosted.org/packages/72/13/4396ee5c795264c448703655f3fbb0d39604b3de4a2a158a6835f9b113d4/xxhash-3.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:248d3e83d119770f96003271fe41e049dd4ae52da2feb8f832b7a20e791d2920", size = 201177 }, + { url = "https://files.pythonhosted.org/packages/88/b8/161b3207a0f71755e41c9b81e58ea6320e46732a7651dd2f686273cb6b9b/xxhash-3.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2070b6d5bbef5ee031666cf21d4953c16e92c2f8a24a94b5c240f8995ba3b1d0", size = 429384 }, + { url = "https://files.pythonhosted.org/packages/eb/3a/25c4aecb61a49d4415fd71d4f66a8a5b558dd44a52d7054ea9aa59ccbac1/xxhash-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b2746035f518f0410915e247877f7df43ef3372bf36cfa52cc4bc33e85242641", size = 194779 }, + { url = "https://files.pythonhosted.org/packages/4c/48/166773deae47ad9038a09d0e5628f215a06a7096861d2ef940aad0ef6bdd/xxhash-3.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2a8ba6181514681c2591840d5632fcf7356ab287d4aff1c8dea20f3c78097088", size = 208502 }, + { url = "https://files.pythonhosted.org/packages/a9/5a/25d5250b4472f478adca4773b45a859a111dc9b8ede494939f83759e0ab2/xxhash-3.4.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0aac5010869240e95f740de43cd6a05eae180c59edd182ad93bf12ee289484fa", size = 220623 }, + { url = "https://files.pythonhosted.org/packages/ef/3f/428f4c23d8f34a6b9f86f053b3a90b96b83ca3722c725064e16ee399d063/xxhash-3.4.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:4cb11d8debab1626181633d184b2372aaa09825bde709bf927704ed72765bed1", size = 217257 }, + { url = "https://files.pythonhosted.org/packages/66/d5/6d27f1bf8e949bfa7050cb0ec9aa06909994423b7225ad5e396e064472dc/xxhash-3.4.1-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:b29728cff2c12f3d9f1d940528ee83918d803c0567866e062683f300d1d2eff3", size = 228225 }, + { url = "https://files.pythonhosted.org/packages/b8/ed/50bfcd928c6e5025ea67b089da8433121fcff9d772c865238e74049dfd0c/xxhash-3.4.1-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:a15cbf3a9c40672523bdb6ea97ff74b443406ba0ab9bca10ceccd9546414bd84", size = 304013 }, + { url = "https://files.pythonhosted.org/packages/b4/18/5a280a91876147192a36419db480e6be990d462f785d4aff8090972008f7/xxhash-3.4.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:6e66df260fed01ed8ea790c2913271641c58481e807790d9fca8bfd5a3c13844", size = 197102 }, + { url = "https://files.pythonhosted.org/packages/2c/ab/861020932b8e0aee8761f32311e3af3ecbd08864348c6aff0dc7a1c596de/xxhash-3.4.1-cp311-cp311-win32.whl", hash = "sha256:e867f68a8f381ea12858e6d67378c05359d3a53a888913b5f7d35fbf68939d5f", size = 30065 }, + { url = "https://files.pythonhosted.org/packages/b7/3a/74a609706ef4430fe6d041a3b8d209882c15440b695e373fe26d48c6f35c/xxhash-3.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:200a5a3ad9c7c0c02ed1484a1d838b63edcf92ff538770ea07456a3732c577f4", size = 29954 }, + { url = "https://files.pythonhosted.org/packages/d9/a1/fc0505f9d2c8f1c8959dff7e299e43b135bddfc7e1929f580ce4cf9e2e3c/xxhash-3.4.1-cp311-cp311-win_arm64.whl", hash = "sha256:1d03f1c0d16d24ea032e99f61c552cb2b77d502e545187338bea461fde253583", size = 26718 }, + { url = "https://files.pythonhosted.org/packages/05/68/2892bbbf528793b82b8cffc4dd219e0cfc763aa17377d7b5651dd7c31319/xxhash-3.4.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c4bbba9b182697a52bc0c9f8ec0ba1acb914b4937cd4a877ad78a3b3eeabefb3", size = 31853 }, + { url = "https://files.pythonhosted.org/packages/4f/18/1a10db384eef70f8a9efbbf9ff417e3cb04c66351d192ac24e8e86622831/xxhash-3.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9fd28a9da300e64e434cfc96567a8387d9a96e824a9be1452a1e7248b7763b78", size = 30357 }, + { url = "https://files.pythonhosted.org/packages/03/bd/01ced3eb792410ce05e777bd7d79f383fd8056334575cf84b60aaa2734d2/xxhash-3.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6066d88c9329ab230e18998daec53d819daeee99d003955c8db6fc4971b45ca3", size = 220917 }, + { url = "https://files.pythonhosted.org/packages/9a/af/34452bdc52faf44ff2ef87bb4cebdb64837f8ae576d5e7b8e1ba87ee0aba/xxhash-3.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:93805bc3233ad89abf51772f2ed3355097a5dc74e6080de19706fc447da99cd3", size = 199966 }, + { url = "https://files.pythonhosted.org/packages/12/39/8eca9f98358828040cc2f8a1024d32ac2148e5d33f79fa82bd88244b0270/xxhash-3.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:64da57d5ed586ebb2ecdde1e997fa37c27fe32fe61a656b77fabbc58e6fbff6e", size = 428281 }, + { url = "https://files.pythonhosted.org/packages/ce/d4/8111e14273c0781349af8d0dae55c4e42c7196e7237e81a3db5186ab7dfe/xxhash-3.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7a97322e9a7440bf3c9805cbaac090358b43f650516486746f7fa482672593df", size = 194331 }, + { url = "https://files.pythonhosted.org/packages/82/f0/138223ac68bfb1c210050bf94b4114c7a72ffb5f3c6f5be65e1d7c185a95/xxhash-3.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bbe750d512982ee7d831838a5dee9e9848f3fb440e4734cca3f298228cc957a6", size = 207891 }, + { url = "https://files.pythonhosted.org/packages/84/12/1486a1cf1b06ceb431303daf623e4e7c2064b5fbca11b1ff996be0e39b66/xxhash-3.4.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:fd79d4087727daf4d5b8afe594b37d611ab95dc8e29fe1a7517320794837eb7d", size = 220126 }, + { url = "https://files.pythonhosted.org/packages/b4/51/650fc8885bba3d67e909cc1eb952618556687d691fed9ce5e4cd0f0670b4/xxhash-3.4.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:743612da4071ff9aa4d055f3f111ae5247342931dedb955268954ef7201a71ff", size = 216818 }, + { url = "https://files.pythonhosted.org/packages/a2/6e/c91b2e8255551bd60aff6181f4ade6dcc21d0387435645e81755a47f0ac8/xxhash-3.4.1-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:b41edaf05734092f24f48c0958b3c6cbaaa5b7e024880692078c6b1f8247e2fc", size = 227513 }, + { url = "https://files.pythonhosted.org/packages/5a/2a/c74f5e42fb4bd773768e819ac183a352c9b263bbbb65d024c1e69388f3f2/xxhash-3.4.1-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:a90356ead70d715fe64c30cd0969072de1860e56b78adf7c69d954b43e29d9fa", size = 303627 }, + { url = "https://files.pythonhosted.org/packages/9a/93/5d5f001777d71374ba78a4bc51fc722f8a0dd4195dc988fc4bd34eee57bb/xxhash-3.4.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:ac56eebb364e44c85e1d9e9cc5f6031d78a34f0092fea7fc80478139369a8b4a", size = 196855 }, + { url = "https://files.pythonhosted.org/packages/e8/4a/bf8b7f53727b3ebbebe2965586c244febf4c8b03d0caa98af97910f55e79/xxhash-3.4.1-cp312-cp312-win32.whl", hash = "sha256:911035345932a153c427107397c1518f8ce456f93c618dd1c5b54ebb22e73747", size = 30114 }, + { url = "https://files.pythonhosted.org/packages/e3/63/2627198c4c9d1f987390043bb352fef9e754ed2b11fd21b40bf430b2714e/xxhash-3.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:f31ce76489f8601cc7b8713201ce94b4bd7b7ce90ba3353dccce7e9e1fee71fa", size = 29993 }, + { url = "https://files.pythonhosted.org/packages/73/81/914efdf0a02597d769571f013f575b5672ed7f85c9fed07c7378c657bf2b/xxhash-3.4.1-cp312-cp312-win_arm64.whl", hash = "sha256:b5beb1c6a72fdc7584102f42c4d9df232ee018ddf806e8c90906547dfb43b2da", size = 26741 }, + { url = "https://files.pythonhosted.org/packages/36/c3/db95ec21d23ba87a29d18c54fcc8289ae93f97831d95b2f3b65331b9d423/xxhash-3.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6127813abc1477f3a83529b6bbcfeddc23162cece76fa69aee8f6a8a97720562", size = 31855 }, + { url = "https://files.pythonhosted.org/packages/a4/24/8092b5db6d459cb9e62409edfebb0253b3760d9ab7e4c52e5493c3b026b1/xxhash-3.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ef2e194262f5db16075caea7b3f7f49392242c688412f386d3c7b07c7733a70a", size = 30387 }, + { url = "https://files.pythonhosted.org/packages/7c/b9/93f860969093d5d1c4fa60c75ca351b212560de68f33dc0da04c89b7dc1b/xxhash-3.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:71be94265b6c6590f0018bbf73759d21a41c6bda20409782d8117e76cd0dfa8b", size = 220601 }, + { url = "https://files.pythonhosted.org/packages/95/a7/ee4fa3f044b504281955abbf264c90aff2ff3bc5722fe90de8b819016ebf/xxhash-3.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:10e0a619cdd1c0980e25eb04e30fe96cf8f4324758fa497080af9c21a6de573f", size = 199981 }, + { url = "https://files.pythonhosted.org/packages/09/23/7f67542874f768dbc9e24ed05d914451ade01cd0307d985e2a6dd2e90c83/xxhash-3.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fa122124d2e3bd36581dd78c0efa5f429f5220313479fb1072858188bc2d5ff1", size = 428172 }, + { url = "https://files.pythonhosted.org/packages/63/93/812d78f70145c68c4e64533f4d625bea01236f27698febe15f0ceebc1566/xxhash-3.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17032f5a4fea0a074717fe33477cb5ee723a5f428de7563e75af64bfc1b1e10", size = 193827 }, + { url = "https://files.pythonhosted.org/packages/49/a0/6ec53c45ce6f2df4a38d170caa5d091014304b284edd90ecb6452740932c/xxhash-3.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca7783b20e3e4f3f52f093538895863f21d18598f9a48211ad757680c3bd006f", size = 207361 }, + { url = "https://files.pythonhosted.org/packages/2d/64/fd1cc438c48fa31342509339c780ad3230bf081779ebcb889960805c7125/xxhash-3.4.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d77d09a1113899fad5f354a1eb4f0a9afcf58cefff51082c8ad643ff890e30cf", size = 219645 }, + { url = "https://files.pythonhosted.org/packages/0d/79/8a89c2320a380491288c0205d407ec720479365c26e013c292af4e0b175e/xxhash-3.4.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:21287bcdd299fdc3328cc0fbbdeaa46838a1c05391264e51ddb38a3f5b09611f", size = 216159 }, + { url = "https://files.pythonhosted.org/packages/3a/79/7c29be4a717b47ebf389087cf677b1bc6578df77f242ebf08d5e41f0c938/xxhash-3.4.1-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:dfd7a6cc483e20b4ad90224aeb589e64ec0f31e5610ab9957ff4314270b2bf31", size = 226801 }, + { url = "https://files.pythonhosted.org/packages/2d/ef/553fc2488ce12de22575b05fbf9ce5dddb2b496134a72236325abdb05674/xxhash-3.4.1-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:543c7fcbc02bbb4840ea9915134e14dc3dc15cbd5a30873a7a5bf66039db97ec", size = 302773 }, + { url = "https://files.pythonhosted.org/packages/03/7a/2ad3251eb35d25fd500454efdac85d7f51933aeda771e3e3383e9385fa73/xxhash-3.4.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:fe0a98d990e433013f41827b62be9ab43e3cf18e08b1483fcc343bda0d691182", size = 196178 }, + { url = "https://files.pythonhosted.org/packages/c9/29/892c10e0bd861385d4081b0a5de178d2b853065d717c24ab8a8d5286a6e4/xxhash-3.4.1-cp39-cp39-win32.whl", hash = "sha256:b9097af00ebf429cc7c0e7d2fdf28384e4e2e91008130ccda8d5ae653db71e54", size = 30069 }, + { url = "https://files.pythonhosted.org/packages/33/db/e07aa80e39a7ee82e9ca6f5a0fa9bf0b4465934272116a1b578eaee7f4b3/xxhash-3.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:d699b921af0dcde50ab18be76c0d832f803034d80470703700cb7df0fbec2832", size = 29972 }, + { url = "https://files.pythonhosted.org/packages/26/c6/a43beda71c2fbe4901b8a6b5a9bd1b2fe9f15877f4caed2f3034073aca72/xxhash-3.4.1-cp39-cp39-win_arm64.whl", hash = "sha256:2be491723405e15cc099ade1280133ccfbf6322d2ef568494fb7d07d280e7eee", size = 26730 }, + { url = "https://files.pythonhosted.org/packages/a0/08/9234966abb8e0ac65578442b3dc1ee9eea5fe1db5472d9425d40c838193d/xxhash-3.4.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:431625fad7ab5649368c4849d2b49a83dc711b1f20e1f7f04955aab86cd307bc", size = 29659 }, + { url = "https://files.pythonhosted.org/packages/04/73/8406875fe09d76331cdcce79e9db05699ce9bec126f060d37b540882dcd0/xxhash-3.4.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fc6dbd5fc3c9886a9e041848508b7fb65fd82f94cc793253990f81617b61fe49", size = 36174 }, + { url = "https://files.pythonhosted.org/packages/28/e0/cef7e324cb6e38c463e2b58ba88ed0ce56d1b1717b2e98fe7b692c3bb432/xxhash-3.4.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f3ff8dbd0ec97aec842476cb8ccc3e17dd288cd6ce3c8ef38bff83d6eb927817", size = 31980 }, + { url = "https://files.pythonhosted.org/packages/50/e1/5bfa7e640e2aa56550e0bcbc40594e79bf6e39721d921978a4303317be5d/xxhash-3.4.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef73a53fe90558a4096e3256752268a8bdc0322f4692ed928b6cd7ce06ad4fe3", size = 40474 }, + { url = "https://files.pythonhosted.org/packages/14/b8/5df224b343e8cef8c8a61049b42462f5b088daa3e222c90c5fdc3a184fda/xxhash-3.4.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:450401f42bbd274b519d3d8dcf3c57166913381a3d2664d6609004685039f9d3", size = 30022 }, + { url = "https://files.pythonhosted.org/packages/5d/63/87337f717c70220d711e1f3992a5e5b9ee2cf7f8980bb58418417d69ff77/xxhash-3.4.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:41ddeae47cf2828335d8d991f2d2b03b0bdc89289dc64349d712ff8ce59d0647", size = 29669 }, + { url = "https://files.pythonhosted.org/packages/da/59/bcebce98d2d367f3dfd6010ad134aaab576a5531b3a02d6137206dddf866/xxhash-3.4.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c44d584afdf3c4dbb3277e32321d1a7b01d6071c1992524b6543025fb8f4206f", size = 36178 }, + { url = "https://files.pythonhosted.org/packages/78/04/2e83720cde494ea1c72d0576c731d9381568f814e34b75104156966bab1e/xxhash-3.4.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd7bddb3a5b86213cc3f2c61500c16945a1b80ecd572f3078ddbbe68f9dabdfb", size = 32002 }, + { url = "https://files.pythonhosted.org/packages/c6/17/5e370df14fcc5abc3f2175a13554a07da48d7e9b6fe8645ba8fdd0b25105/xxhash-3.4.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9ecb6c987b62437c2f99c01e97caf8d25660bf541fe79a481d05732e5236719c", size = 40478 }, + { url = "https://files.pythonhosted.org/packages/96/c2/48fbe1319b4bf20a9cc4d93e7e6d71300ce529e0b1554c326f04d4fea40c/xxhash-3.4.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:696b4e18b7023527d5c50ed0626ac0520edac45a50ec7cf3fc265cd08b1f4c03", size = 30062 }, +] + +[[package]] +name = "yarl" +version = "1.9.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "idna", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "multidict", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e0/ad/bedcdccbcbf91363fd425a948994f3340924145c2bc8ccb296f4a1e52c28/yarl-1.9.4.tar.gz", hash = "sha256:566db86717cf8080b99b58b083b773a908ae40f06681e87e589a976faf8246bf", size = 141869 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6c/27/cda5a927df3a894eddfee4efacdd230c2d8486e322fc672194fd651f82c5/yarl-1.9.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a8c1df72eb746f4136fe9a2e72b0c9dc1da1cbd23b5372f94b5820ff8ae30e0e", size = 129061 }, + { url = "https://files.pythonhosted.org/packages/d5/fc/40b85bea1f5686092ea37f472c94c023d6347266852ffd55baa01c40f596/yarl-1.9.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a3a6ed1d525bfb91b3fc9b690c5a21bb52de28c018530ad85093cc488bee2dd2", size = 81246 }, + { url = "https://files.pythonhosted.org/packages/81/c6/06938036ea48fa74521713499fba1459b0eb60af9b9afbe8e0e9e1a96c36/yarl-1.9.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c38c9ddb6103ceae4e4498f9c08fac9b590c5c71b0370f98714768e22ac6fa66", size = 79176 }, + { url = "https://files.pythonhosted.org/packages/30/b5/215d586d5cb17ca9748d7a2d597c07147f210c0c0785257492094d083b65/yarl-1.9.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d9e09c9d74f4566e905a0b8fa668c58109f7624db96a2171f21747abc7524234", size = 297669 }, + { url = "https://files.pythonhosted.org/packages/dd/90/2958ae9f2e12084d616eef95b6a48c8e6d96448add04367c20dc53a33ff2/yarl-1.9.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8477c1ee4bd47c57d49621a062121c3023609f7a13b8a46953eb6c9716ca392", size = 311909 }, + { url = "https://files.pythonhosted.org/packages/0b/58/dd3c69651381a57ac991dba54b20ae2da359eb4b03a661e71c451d6525c6/yarl-1.9.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5ff2c858f5f6a42c2a8e751100f237c5e869cbde669a724f2062d4c4ef93551", size = 308690 }, + { url = "https://files.pythonhosted.org/packages/c3/a0/0ade1409d184cbc9e85acd403a386a7c0563b92ff0f26d138ff9e86e48b4/yarl-1.9.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:357495293086c5b6d34ca9616a43d329317feab7917518bc97a08f9e55648455", size = 301580 }, + { url = "https://files.pythonhosted.org/packages/6d/a1/db0bdf8cc48515e9c02daf04ae2916fc27ce6498eca21432fc9ffa63f71b/yarl-1.9.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:54525ae423d7b7a8ee81ba189f131054defdb122cde31ff17477951464c1691c", size = 291231 }, + { url = "https://files.pythonhosted.org/packages/b2/4f/796b0c73e9ff30a1047a7ee3390e157ab8424d4401b9f32a2624013a5b39/yarl-1.9.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:801e9264d19643548651b9db361ce3287176671fb0117f96b5ac0ee1c3530d53", size = 301079 }, + { url = "https://files.pythonhosted.org/packages/0b/a3/7774786ec6e2dca0bb38b286f12a11af97957546e5fbcce71752a8d2cf07/yarl-1.9.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e516dc8baf7b380e6c1c26792610230f37147bb754d6426462ab115a02944385", size = 295202 }, + { url = "https://files.pythonhosted.org/packages/70/a9/ef6d69ce9a4e82080290bcb6db735bb8a6d6db92f2bbb92b6951bde97e7c/yarl-1.9.4-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:7d5aaac37d19b2904bb9dfe12cdb08c8443e7ba7d2852894ad448d4b8f442863", size = 311784 }, + { url = "https://files.pythonhosted.org/packages/44/ae/fdbc9965ef69e650c3b5b04d60badef90ff0cde21a30770f0700e148b12f/yarl-1.9.4-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:54beabb809ffcacbd9d28ac57b0db46e42a6e341a030293fb3185c409e626b8b", size = 311134 }, + { url = "https://files.pythonhosted.org/packages/cc/2a/abbaf1460becba856e163f2a1274f5d34b1969d476da8e68a8fc2aeb5661/yarl-1.9.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bac8d525a8dbc2a1507ec731d2867025d11ceadcb4dd421423a5d42c56818541", size = 304584 }, + { url = "https://files.pythonhosted.org/packages/a3/73/dd7ced8d9731bd2ef4fdff5da23ce2f772ca04e8ddee886a6b15248d9e65/yarl-1.9.4-cp310-cp310-win32.whl", hash = "sha256:7855426dfbddac81896b6e533ebefc0af2f132d4a47340cee6d22cac7190022d", size = 70175 }, + { url = "https://files.pythonhosted.org/packages/31/d4/2085272a5ccf87af74d4e02787c242c5d60367840a4637b2835565264302/yarl-1.9.4-cp310-cp310-win_amd64.whl", hash = "sha256:848cd2a1df56ddbffeb375535fb62c9d1645dde33ca4d51341378b3f5954429b", size = 76402 }, + { url = "https://files.pythonhosted.org/packages/12/65/4c7f3676209a569405c9f0f492df2bc3a387c253f5d906e36944fdd12277/yarl-1.9.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:35a2b9396879ce32754bd457d31a51ff0a9d426fd9e0e3c33394bf4b9036b099", size = 132836 }, + { url = "https://files.pythonhosted.org/packages/3b/c5/81e3dbf5271ab1510860d2ae7a704ef43f93f7cb9326bf7ebb1949a7260b/yarl-1.9.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4c7d56b293cc071e82532f70adcbd8b61909eec973ae9d2d1f9b233f3d943f2c", size = 83215 }, + { url = "https://files.pythonhosted.org/packages/20/3d/7dabf580dfc0b588e48830486b488858122b10a61f33325e0d7cf1d6180b/yarl-1.9.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d8a1c6c0be645c745a081c192e747c5de06e944a0d21245f4cf7c05e457c36e0", size = 81237 }, + { url = "https://files.pythonhosted.org/packages/38/45/7c669999f5d350f4f8f74369b94e0f6705918eee18e38610bfe44af93d4f/yarl-1.9.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4b3c1ffe10069f655ea2d731808e76e0f452fc6c749bea04781daf18e6039525", size = 324181 }, + { url = "https://files.pythonhosted.org/packages/50/49/aa04effe2876cced8867bf9d89b620acf02b733c62adfe22a8218c35d70b/yarl-1.9.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:549d19c84c55d11687ddbd47eeb348a89df9cb30e1993f1b128f4685cd0ebbf8", size = 339412 }, + { url = "https://files.pythonhosted.org/packages/7d/95/4310771fb9c71599d8466f43347ac18fafd501621e65b93f4f4f16899b1d/yarl-1.9.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7409f968456111140c1c95301cadf071bd30a81cbd7ab829169fb9e3d72eae9", size = 337973 }, + { url = "https://files.pythonhosted.org/packages/9f/ea/94ad7d8299df89844e666e4aa8a0e9b88e02416cd6a7dd97969e9eae5212/yarl-1.9.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e23a6d84d9d1738dbc6e38167776107e63307dfc8ad108e580548d1f2c587f42", size = 328126 }, + { url = "https://files.pythonhosted.org/packages/6d/be/9d4885e2725f5860833547c9e4934b6e0f44a355b24ffc37957264761e3e/yarl-1.9.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d8b889777de69897406c9fb0b76cdf2fd0f31267861ae7501d93003d55f54fbe", size = 316677 }, + { url = "https://files.pythonhosted.org/packages/4a/70/5c744d67cad3d093e233cb02f37f2830cb89abfcbb7ad5b5af00ff21d14d/yarl-1.9.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:03caa9507d3d3c83bca08650678e25364e1843b484f19986a527630ca376ecce", size = 324243 }, + { url = "https://files.pythonhosted.org/packages/c2/80/8b38d8fed958ac37afb8b81a54bf4f767b107e2c2004dab165edb58fc51b/yarl-1.9.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:4e9035df8d0880b2f1c7f5031f33f69e071dfe72ee9310cfc76f7b605958ceb9", size = 318099 }, + { url = "https://files.pythonhosted.org/packages/59/50/715bbc7bda65291f9295e757f67854206f4d8be9746d39187724919ac14d/yarl-1.9.4-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:c0ec0ed476f77db9fb29bca17f0a8fcc7bc97ad4c6c1d8959c507decb22e8572", size = 334924 }, + { url = "https://files.pythonhosted.org/packages/a8/af/ca9962488027576d7162878a1864cbb1275d298af986ce96bdfd4807d7b2/yarl-1.9.4-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:ee04010f26d5102399bd17f8df8bc38dc7ccd7701dc77f4a68c5b8d733406958", size = 335060 }, + { url = "https://files.pythonhosted.org/packages/28/c7/249a3a903d500ca7369eb542e2847a14f12f249638dcc10371db50cd17ff/yarl-1.9.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:49a180c2e0743d5d6e0b4d1a9e5f633c62eca3f8a86ba5dd3c471060e352ca98", size = 326689 }, + { url = "https://files.pythonhosted.org/packages/ec/0c/f02dd0b875a7a460f95dc7cf18983ed43c693283d6ab92e0ad71b9e0de8f/yarl-1.9.4-cp311-cp311-win32.whl", hash = "sha256:81eb57278deb6098a5b62e88ad8281b2ba09f2f1147c4767522353eaa6260b31", size = 70407 }, + { url = "https://files.pythonhosted.org/packages/27/41/945ae9a80590e4fb0be166863c6e63d75e4b35789fa3a61ff1dbdcdc220f/yarl-1.9.4-cp311-cp311-win_amd64.whl", hash = "sha256:d1d2532b340b692880261c15aee4dc94dd22ca5d61b9db9a8a361953d36410b1", size = 76719 }, + { url = "https://files.pythonhosted.org/packages/7b/cd/a921122610dedfed94e494af18e85aae23e93274c00ca464cfc591c8f4fb/yarl-1.9.4-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0d2454f0aef65ea81037759be5ca9947539667eecebca092733b2eb43c965a81", size = 129561 }, + { url = "https://files.pythonhosted.org/packages/7c/a0/887c93020c788f249c24eaab288c46e5fed4d2846080eaf28ed3afc36e8d/yarl-1.9.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:44d8ffbb9c06e5a7f529f38f53eda23e50d1ed33c6c869e01481d3fafa6b8142", size = 81595 }, + { url = "https://files.pythonhosted.org/packages/54/99/ed3c92c38f421ba6e36caf6aa91c34118771d252dce800118fa2f44d7962/yarl-1.9.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:aaaea1e536f98754a6e5c56091baa1b6ce2f2700cc4a00b0d49eca8dea471074", size = 79400 }, + { url = "https://files.pythonhosted.org/packages/ea/45/65801be625ef939acc8b714cf86d4a198c0646e80dc8970359d080c47204/yarl-1.9.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3777ce5536d17989c91696db1d459574e9a9bd37660ea7ee4d3344579bb6f129", size = 317397 }, + { url = "https://files.pythonhosted.org/packages/06/91/9696601a8ba674c8f0c15035cc9e94ca31f541330364adcfd5a399f598bf/yarl-1.9.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fc5fc1eeb029757349ad26bbc5880557389a03fa6ada41703db5e068881e5f2", size = 327246 }, + { url = "https://files.pythonhosted.org/packages/da/3e/bf25177b3618889bf067aacf01ef54e910cd569d14e2f84f5e7bec23bb82/yarl-1.9.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ea65804b5dc88dacd4a40279af0cdadcfe74b3e5b4c897aa0d81cf86927fee78", size = 327321 }, + { url = "https://files.pythonhosted.org/packages/28/1c/bdb3411467b805737dd2720b85fd082e49f59bf0cc12dc1dfcc80ab3d274/yarl-1.9.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa102d6d280a5455ad6a0f9e6d769989638718e938a6a0a2ff3f4a7ff8c62cc4", size = 322424 }, + { url = "https://files.pythonhosted.org/packages/41/e9/53bc89f039df2824a524a2aa03ee0bfb8f0585b08949e7521f5eab607085/yarl-1.9.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09efe4615ada057ba2d30df871d2f668af661e971dfeedf0c159927d48bbeff0", size = 310868 }, + { url = "https://files.pythonhosted.org/packages/79/cd/a78c3b0304a4a970b5ae3993f4f5f649443bc8bfa5622f244aed44c810ed/yarl-1.9.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:008d3e808d03ef28542372d01057fd09168419cdc8f848efe2804f894ae03e51", size = 323452 }, + { url = "https://files.pythonhosted.org/packages/2e/5e/1c78eb05ae0efae08498fd7ab939435a29f12c7f161732e7fe327e5b8ca1/yarl-1.9.4-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:6f5cb257bc2ec58f437da2b37a8cd48f666db96d47b8a3115c29f316313654ff", size = 313554 }, + { url = "https://files.pythonhosted.org/packages/04/e0/0029563a8434472697aebb269fdd2ffc8a19e3840add1d5fa169ec7c56e3/yarl-1.9.4-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:992f18e0ea248ee03b5a6e8b3b4738850ae7dbb172cc41c966462801cbf62cf7", size = 331029 }, + { url = "https://files.pythonhosted.org/packages/de/1b/7e6b1ad42ccc0ed059066a7ae2b6fd4bce67795d109a99ccce52e9824e96/yarl-1.9.4-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:0e9d124c191d5b881060a9e5060627694c3bdd1fe24c5eecc8d5d7d0eb6faabc", size = 333839 }, + { url = "https://files.pythonhosted.org/packages/85/8a/c364d6e2eeb4e128a5ee9a346fc3a09aa76739c0c4e2a7305989b54f174b/yarl-1.9.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:3986b6f41ad22988e53d5778f91855dc0399b043fc8946d4f2e68af22ee9ff10", size = 328251 }, + { url = "https://files.pythonhosted.org/packages/ec/9d/0da94b33b9fb89041e10f95a14a55b0fef36c60b6a1d5ff85a0c2ecb1a97/yarl-1.9.4-cp312-cp312-win32.whl", hash = "sha256:4b21516d181cd77ebd06ce160ef8cc2a5e9ad35fb1c5930882baff5ac865eee7", size = 70195 }, + { url = "https://files.pythonhosted.org/packages/c5/f4/2fdc5a11503bc61818243653d836061c9ce0370e2dd9ac5917258a007675/yarl-1.9.4-cp312-cp312-win_amd64.whl", hash = "sha256:a9bd00dc3bc395a662900f33f74feb3e757429e545d831eef5bb280252631984", size = 76397 }, + { url = "https://files.pythonhosted.org/packages/34/e7/9d51111429691ffdfb6ce526b2dd2b66fc9d2746df053ecb4062a3969f65/yarl-1.9.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:604f31d97fa493083ea21bd9b92c419012531c4e17ea6da0f65cacdcf5d0bd27", size = 134018 }, + { url = "https://files.pythonhosted.org/packages/8f/0f/9fa6f044b04267d22ec29df23936ffd4bf4572ccecd889c6b2b1761c2c5c/yarl-1.9.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8a854227cf581330ffa2c4824d96e52ee621dd571078a252c25e3a3b3d94a1b1", size = 83661 }, + { url = "https://files.pythonhosted.org/packages/f9/b0/c213007560d001c9908649ff4b1dd11d1ff388235e773828e19d4637f502/yarl-1.9.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ba6f52cbc7809cd8d74604cce9c14868306ae4aa0282016b641c661f981a6e91", size = 81842 }, + { url = "https://files.pythonhosted.org/packages/c6/d6/5b30ae1d8a13104ee2ceb649f28f2db5ad42afbd5697fd0fc61528bb112c/yarl-1.9.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a6327976c7c2f4ee6816eff196e25385ccc02cb81427952414a64811037bbc8b", size = 300908 }, + { url = "https://files.pythonhosted.org/packages/d0/50/af41ddf09ff0a6a3f952288ff4ed703a1a6ecc0fbb3a6a9fe50bd33dc7cc/yarl-1.9.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8397a3817d7dcdd14bb266283cd1d6fc7264a48c186b986f32e86d86d35fbac5", size = 315681 }, + { url = "https://files.pythonhosted.org/packages/ec/17/376715c245a28f81f01e72e832d84404cffd29576fcc645ee40e3c03f5f4/yarl-1.9.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e0381b4ce23ff92f8170080c97678040fc5b08da85e9e292292aba67fdac6c34", size = 312857 }, + { url = "https://files.pythonhosted.org/packages/69/ea/d7e961ea9b1b818a43b155ee512117be6ab9ab67c1e94967b2e64126e8e4/yarl-1.9.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:23d32a2594cb5d565d358a92e151315d1b2268bc10f4610d098f96b147370136", size = 304255 }, + { url = "https://files.pythonhosted.org/packages/46/8c/02d0c2eed8c6b41de0f8f26aeefc7a285779cbb370cc7bf043285de18a75/yarl-1.9.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ddb2a5c08a4eaaba605340fdee8fc08e406c56617566d9643ad8bf6852778fc7", size = 295014 }, + { url = "https://files.pythonhosted.org/packages/c2/5c/093c1fd1d8e95b1de4feb282fa3d9c3172c6d8cb5be2cfa19ca0170f9287/yarl-1.9.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:26a1dc6285e03f3cc9e839a2da83bcbf31dcb0d004c72d0730e755b33466c30e", size = 303653 }, + { url = "https://files.pythonhosted.org/packages/96/f1/c2af401567c7b32f908195c8c1a807670f20ea62e10866b71e1d9e3860a1/yarl-1.9.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:18580f672e44ce1238b82f7fb87d727c4a131f3a9d33a5e0e82b793362bf18b4", size = 298147 }, + { url = "https://files.pythonhosted.org/packages/65/ac/b5a3cc5bf4675db5d27ec92453e562f3ee4bfef5133ed071880ac07125e9/yarl-1.9.4-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:29e0f83f37610f173eb7e7b5562dd71467993495e568e708d99e9d1944f561ec", size = 314358 }, + { url = "https://files.pythonhosted.org/packages/3d/4d/b8a950fd92a3aa5c95039731d2eda32a701ac0c789663827e67e398c166a/yarl-1.9.4-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:1f23e4fe1e8794f74b6027d7cf19dc25f8b63af1483d91d595d4a07eca1fb26c", size = 313842 }, + { url = "https://files.pythonhosted.org/packages/57/68/bfac2e16a15af85234cbd2a5c82abb33caa98e981abbfd6e0f9458b6d1a9/yarl-1.9.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:db8e58b9d79200c76956cefd14d5c90af54416ff5353c5bfd7cbe58818e26ef0", size = 306771 }, + { url = "https://files.pythonhosted.org/packages/ab/5f/156e00c7bdc6d84efc7615fe0e14b2febf8ea360a8e1307fb3ba9cc14b73/yarl-1.9.4-cp39-cp39-win32.whl", hash = "sha256:c7224cab95645c7ab53791022ae77a4509472613e839dab722a72abe5a684575", size = 70773 }, + { url = "https://files.pythonhosted.org/packages/a4/e0/5b4376d7361fe09a46dbb206131e8d85b1cb845da03c212a620d5b6b98d8/yarl-1.9.4-cp39-cp39-win_amd64.whl", hash = "sha256:824d6c50492add5da9374875ce72db7a0733b29c2394890aef23d533106e2b15", size = 76935 }, + { url = "https://files.pythonhosted.org/packages/4d/05/4d79198ae568a92159de0f89e710a8d19e3fa267b719a236582eee921f4a/yarl-1.9.4-py3-none-any.whl", hash = "sha256:928cecb0ef9d5a7946eb6ff58417ad2fe9375762382f1bf5c55e61645f2c43ad", size = 31638 }, +] + +[[package]] +name = "zipp" +version = "3.19.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d3/20/b48f58857d98dcb78f9e30ed2cfe533025e2e9827bbd36ea0a64cc00cbc1/zipp-3.19.2.tar.gz", hash = "sha256:bf1dcf6450f873a13e952a29504887c89e6de7506209e5b1bcc3460135d4de19", size = 22922 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/20/38/f5c473fe9b90c8debdd29ea68d5add0289f1936d6f923b6b9cc0b931194c/zipp-3.19.2-py3-none-any.whl", hash = "sha256:f091755f667055f2d02b32c53771a7a6c8b47e1fdbc4b72a8b9072b3eef8015c", size = 9039 }, +] diff --git a/crates/uv/tests/snapshots/ecosystem__transformers-uv-lock-output.snap b/crates/uv/tests/snapshots/ecosystem__transformers-uv-lock-output.snap new file mode 100644 index 000000000000..4d1271c5b97b --- /dev/null +++ b/crates/uv/tests/snapshots/ecosystem__transformers-uv-lock-output.snap @@ -0,0 +1,11 @@ +--- +source: crates/uv/tests/ecosystem.rs +expression: snapshot +--- +success: true +exit_code: 0 +----- stdout ----- + +----- stderr ----- +warning: `uv lock` is experimental and may change without warning +Resolved 286 packages in [TIME] diff --git a/crates/uv/tests/snapshots/ecosystem__warehouse-lock-file.snap b/crates/uv/tests/snapshots/ecosystem__warehouse-lock-file.snap new file mode 100644 index 000000000000..3c183078da82 --- /dev/null +++ b/crates/uv/tests/snapshots/ecosystem__warehouse-lock-file.snap @@ -0,0 +1,4641 @@ +--- +source: crates/uv/tests/ecosystem.rs +expression: lock +--- +version = 1 +requires-python = ">=3.11, <3.12" +environment-markers = [ + "python_version < '3.13'", + "python_version >= '3.13'", + "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')", + "python_version < '3.13' and python_version >= '3.12'", +] + +[options] +exclude-newer = "2024-08-08 00:00:00 UTC" + +[[package]] +name = "alabaster" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a6/f8/d9c74d0daf3f742840fd818d69cfae176fa332022fd44e3469487d5a9420/alabaster-1.0.0.tar.gz", hash = "sha256:c00dca57bca26fa62a6d7d0a9fcce65f3e026e9bfe33e9c538fd3fbb2144fd9e", size = 24210 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/b3/6b4067be973ae96ba0d615946e314c5ae35f9f993eca561b356540bb0c2b/alabaster-1.0.0-py3-none-any.whl", hash = "sha256:fc6786402dc3fcb2de3cabd5fe455a2db534b371124f1f21de8731783dec828b", size = 13929 }, +] + +[[package]] +name = "alembic" +version = "1.13.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mako", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "sqlalchemy", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "typing-extensions", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/66/e2/efa88e86029cada2da5941ec664d50d9a3b2a91f5066405c6f90e5016c16/alembic-1.13.2.tar.gz", hash = "sha256:1ff0ae32975f4fd96028c39ed9bb3c867fe3af956bd7bb37343b54c9fe7445ef", size = 1206463 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/df/ed/c884465c33c25451e4a5cd4acad154c29e5341e3214e220e7f3478aa4b0d/alembic-1.13.2-py3-none-any.whl", hash = "sha256:6b8733129a6224a9a711e17c99b08462dbf7cc9670ba8f2e2ae9af860ceb1953", size = 232990 }, +] + +[[package]] +name = "alembic-postgresql-enum" +version = "1.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "alembic", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "sqlalchemy", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c4/63/5188bd184cc7515090ca98686b97695f68aca403c119e688b66ceb0e653b/alembic_postgresql_enum-1.3.0.tar.gz", hash = "sha256:64d5de7ac2ea39433afd965b057ca882fb420eb5cd6a7db8e2b4d0e7e673cae1", size = 14084 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/3a/a32e5fbe008d67b21a0d629a2be19e63b0848a9a4ecb6c2f44ed62ebf6b0/alembic_postgresql_enum-1.3.0-py3-none-any.whl", hash = "sha256:42539e225f8b6c9adc9862a259edeed105b02143d55503152eeeea7a0b5af70b", size = 21593 }, +] + +[[package]] +name = "amqp" +version = "5.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "vine", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/32/2c/6eb09fbdeb3c060b37bd33f8873832897a83e7a428afe01aad333fc405ec/amqp-5.2.0.tar.gz", hash = "sha256:a1ecff425ad063ad42a486c902807d1482311481c8ad95a72694b2975e75f7fd", size = 128754 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/f0/8e5be5d5e0653d9e1d02b1144efa33ff7d2963dfad07049e02c0fa9b2e8d/amqp-5.2.0-py3-none-any.whl", hash = "sha256:827cb12fb0baa892aad844fd95258143bce4027fdac4fccddbc43330fd281637", size = 50917 }, +] + +[[package]] +name = "annotated-types" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ee/67/531ea369ba64dcff5ec9c3402f9f51bf748cec26dde048a2f973a4eea7f5/annotated_types-0.7.0.tar.gz", hash = "sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89", size = 16081 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl", hash = "sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53", size = 13643 }, +] + +[[package]] +name = "anyio" +version = "4.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "idna", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "sniffio", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e6/e3/c4c8d473d6780ef1853d630d581f70d655b4f8d7553c6997958c283039a2/anyio-4.4.0.tar.gz", hash = "sha256:5aadc6a1bbb7cdb0bede386cac5e2940f5e2ff3aa20277e991cf028e0585ce94", size = 163930 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/a2/10639a79341f6c019dedc95bd48a4928eed9f1d1197f4c04f546fc7ae0ff/anyio-4.4.0-py3-none-any.whl", hash = "sha256:c1b2d8f46a8a812513012e1107cb0e68c17159a7a594208005a57dc776e1bdc7", size = 86780 }, +] + +[[package]] +name = "appdirs" +version = "1.4.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d7/d8/05696357e0311f5b5c316d7b95f46c669dd9c15aaeecbb48c7d0aeb88c40/appdirs-1.4.4.tar.gz", hash = "sha256:7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41", size = 13470 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3b/00/2344469e2084fb287c2e0b57b72910309874c3245463acd6cf5e3db69324/appdirs-1.4.4-py2.py3-none-any.whl", hash = "sha256:a841dacd6b99318a741b166adb07e19ee71a274450e68237b4650ca1055ab128", size = 9566 }, +] + +[[package]] +name = "argon2-cffi" +version = "23.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "argon2-cffi-bindings", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/31/fa/57ec2c6d16ecd2ba0cf15f3c7d1c3c2e7b5fcb83555ff56d7ab10888ec8f/argon2_cffi-23.1.0.tar.gz", hash = "sha256:879c3e79a2729ce768ebb7d36d4609e3a78a4ca2ec3a9f12286ca057e3d0db08", size = 42798 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a4/6a/e8a041599e78b6b3752da48000b14c8d1e8a04ded09c88c714ba047f34f5/argon2_cffi-23.1.0-py3-none-any.whl", hash = "sha256:c670642b78ba29641818ab2e68bd4e6a78ba53b7eff7b4c3815ae16abf91c7ea", size = 15124 }, +] + +[[package]] +name = "argon2-cffi-bindings" +version = "21.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b9/e9/184b8ccce6683b0aa2fbb7ba5683ea4b9c5763f1356347f1312c32e3c66e/argon2-cffi-bindings-21.2.0.tar.gz", hash = "sha256:bb89ceffa6c791807d1305ceb77dbfacc5aa499891d2c55661c6459651fc39e3", size = 1779911 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d4/13/838ce2620025e9666aa8f686431f67a29052241692a3dd1ae9d3692a89d3/argon2_cffi_bindings-21.2.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:ccb949252cb2ab3a08c02024acb77cfb179492d5701c7cbdbfd776124d4d2367", size = 29658 }, + { url = "https://files.pythonhosted.org/packages/b3/02/f7f7bb6b6af6031edb11037639c697b912e1dea2db94d436e681aea2f495/argon2_cffi_bindings-21.2.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9524464572e12979364b7d600abf96181d3541da11e23ddf565a32e70bd4dc0d", size = 80583 }, + { url = "https://files.pythonhosted.org/packages/ec/f7/378254e6dd7ae6f31fe40c8649eea7d4832a42243acaf0f1fff9083b2bed/argon2_cffi_bindings-21.2.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b746dba803a79238e925d9046a63aa26bf86ab2a2fe74ce6b009a1c3f5c8f2ae", size = 86168 }, + { url = "https://files.pythonhosted.org/packages/74/f6/4a34a37a98311ed73bb80efe422fed95f2ac25a4cacc5ae1d7ae6a144505/argon2_cffi_bindings-21.2.0-cp36-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:58ed19212051f49a523abb1dbe954337dc82d947fb6e5a0da60f7c8471a8476c", size = 82709 }, + { url = "https://files.pythonhosted.org/packages/74/2b/73d767bfdaab25484f7e7901379d5f8793cccbb86c6e0cbc4c1b96f63896/argon2_cffi_bindings-21.2.0-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:bd46088725ef7f58b5a1ef7ca06647ebaf0eb4baff7d1d0d177c6cc8744abd86", size = 83613 }, + { url = "https://files.pythonhosted.org/packages/4f/fd/37f86deef67ff57c76f137a67181949c2d408077e2e3dd70c6c42912c9bf/argon2_cffi_bindings-21.2.0-cp36-abi3-musllinux_1_1_i686.whl", hash = "sha256:8cd69c07dd875537a824deec19f978e0f2078fdda07fd5c42ac29668dda5f40f", size = 84583 }, + { url = "https://files.pythonhosted.org/packages/6f/52/5a60085a3dae8fded8327a4f564223029f5f54b0cb0455a31131b5363a01/argon2_cffi_bindings-21.2.0-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:f1152ac548bd5b8bcecfb0b0371f082037e47128653df2e8ba6e914d384f3c3e", size = 88475 }, + { url = "https://files.pythonhosted.org/packages/8b/95/143cd64feb24a15fa4b189a3e1e7efbaeeb00f39a51e99b26fc62fbacabd/argon2_cffi_bindings-21.2.0-cp36-abi3-win32.whl", hash = "sha256:603ca0aba86b1349b147cab91ae970c63118a0f30444d4bc80355937c950c082", size = 27698 }, + { url = "https://files.pythonhosted.org/packages/37/2c/e34e47c7dee97ba6f01a6203e0383e15b60fb85d78ac9a15cd066f6fe28b/argon2_cffi_bindings-21.2.0-cp36-abi3-win_amd64.whl", hash = "sha256:b2ef1c30440dbbcba7a5dc3e319408b59676e2e039e2ae11a8775ecf482b192f", size = 30817 }, + { url = "https://files.pythonhosted.org/packages/5a/e4/bf8034d25edaa495da3c8a3405627d2e35758e44ff6eaa7948092646fdcc/argon2_cffi_bindings-21.2.0-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:e415e3f62c8d124ee16018e491a009937f8cf7ebf5eb430ffc5de21b900dad93", size = 53104 }, +] + +[[package]] +name = "asn1crypto" +version = "1.5.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/de/cf/d547feed25b5244fcb9392e288ff9fdc3280b10260362fc45d37a798a6ee/asn1crypto-1.5.1.tar.gz", hash = "sha256:13ae38502be632115abf8a24cbe5f4da52e3b5231990aff31123c805306ccb9c", size = 121080 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c9/7f/09065fd9e27da0eda08b4d6897f1c13535066174cc023af248fc2a8d5e5a/asn1crypto-1.5.1-py2.py3-none-any.whl", hash = "sha256:db4e40728b728508912cbb3d44f19ce188f218e9eba635821bb4b68564f8fd67", size = 105045 }, +] + +[[package]] +name = "async-timeout" +version = "4.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/87/d6/21b30a550dafea84b1b8eee21b5e23fa16d010ae006011221f33dcd8d7f8/async-timeout-4.0.3.tar.gz", hash = "sha256:4640d96be84d82d02ed59ea2b7105a0f7b33abe8703703cd0ab0bf87c427522f", size = 8345 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/fa/e01228c2938de91d47b307831c62ab9e4001e747789d0b05baf779a6488c/async_timeout-4.0.3-py3-none-any.whl", hash = "sha256:7405140ff1230c310e51dc27b3145b9092d659ce68ff733fb0cefe3ee42be028", size = 5721 }, +] + +[[package]] +name = "asyncudp" +version = "0.11.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/89/0b/b94c42d75e2bd018727e625fa3147447cdfb26603e7b0892a4fdfcd2154d/asyncudp-0.11.0.tar.gz", hash = "sha256:c8ab6459f4dc8ebc42f401d3bd72c2a6c6808d10e42231f39e0c433ac646abf9", size = 3986 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/17/fe/77f4a24264e728fd95542e53f026a91249b51d1611087b8c82d3a033ea97/asyncudp-0.11.0-py3-none-any.whl", hash = "sha256:96d859d86471e3ed30cf9f05cb38e96920156e3a9fe70ee916096ba758ea316e", size = 3538 }, +] + +[[package]] +name = "attrs" +version = "24.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/fc/0f/aafca9af9315aee06a89ffde799a10a582fe8de76c563ee80bbcdc08b3fb/attrs-24.2.0.tar.gz", hash = "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346", size = 792678 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6a/21/5b6702a7f963e95456c0de2d495f67bf5fd62840ac655dc451586d23d39a/attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2", size = 63001 }, +] + +[[package]] +name = "auto-click-auto" +version = "0.1.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/85/bc/58ada0e0d9f96e44556ee8c355c8456fe8a2ae3106c70a47be14c2391618/auto_click_auto-0.1.5.tar.gz", hash = "sha256:fbe2025af8ae3447e052f3b8284e56bc54d737613da6e30e7c3660f06b79ac2c", size = 9439 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b8/d3/345caef0ee9343eb114dd55aa5eab0077360f17a993c7cfd078d3a15f785/auto_click_auto-0.1.5-py3-none-any.whl", hash = "sha256:63ba97d3503578a497a4919b4dc381d8558c2a67f9bcb2d9f317dc60364b9da6", size = 9592 }, +] + +[[package]] +name = "automat" +version = "22.10.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "six", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7a/7b/9c3d26d8a0416eefbc0428f168241b32657ca260fb7ef507596ff5c2f6c4/Automat-22.10.0.tar.gz", hash = "sha256:e56beb84edad19dcc11d30e8d9b895f75deeb5ef5e96b84a467066b3b84bb04e", size = 59099 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/29/90/64aabce6c1b820395452cc5472b8f11cd98320f40941795b8069aef4e0e0/Automat-22.10.0-py2.py3-none-any.whl", hash = "sha256:c3164f8742b9dc440f3682482d32aaff7bb53f71740dd018533f9de286b64180", size = 26404 }, +] + +[[package]] +name = "b2sdk" +version = "2.5.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "annotated-types", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "logfury", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "requests", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "typing-extensions", marker = "python_version < '3.12'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ce/53/2b4ac6ef318444bde570c36219ff0c8cd2207fb2fd8183d88fdf4f0445ab/b2sdk-2.5.0.tar.gz", hash = "sha256:d7c20125e64508a730e56307d75284790079cdb88e63851fff820a09b24fb1d9", size = 203212 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e2/c9/d579c79a1a6778d0c9721c9d026125c4cec4b0bf5982f2dfe342209724f4/b2sdk-2.5.0-py3-none-any.whl", hash = "sha256:38bf80a6cd2bff5b104f7fd10023cf9e338c6f9d41da6108db5ad68f76f5abaa", size = 280856 }, +] + +[[package]] +name = "babel" +version = "2.15.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/15/d2/9671b93d623300f0aef82cde40e25357f11330bdde91743891b22a555bed/babel-2.15.0.tar.gz", hash = "sha256:8daf0e265d05768bc6c7a314cf1321e9a123afc328cc635c18622a2f30a04413", size = 9390000 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/27/45/377f7e32a5c93d94cd56542349b34efab5ca3f9e2fd5a68c5e93169aa32d/Babel-2.15.0-py3-none-any.whl", hash = "sha256:08706bdad8d0a3413266ab61bd6c34d0c28d6e1e7badf40a2cebe67644e2e1fb", size = 9634913 }, +] + +[[package]] +name = "bcrypt" +version = "4.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e4/7e/d95e7d96d4828e965891af92e43b52a4cd3395dc1c1ef4ee62748d0471d0/bcrypt-4.2.0.tar.gz", hash = "sha256:cf69eaf5185fd58f268f805b505ce31f9b9fc2d64b376642164e9244540c1221", size = 24294 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a9/81/4e8f5bc0cd947e91fb720e1737371922854da47a94bc9630454e7b2845f8/bcrypt-4.2.0-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:096a15d26ed6ce37a14c1ac1e48119660f21b24cba457f160a4b830f3fe6b5cb", size = 471568 }, + { url = "https://files.pythonhosted.org/packages/05/d2/1be1e16aedec04bcf8d0156e01b987d16a2063d38e64c3f28030a3427d61/bcrypt-4.2.0-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c02d944ca89d9b1922ceb8a46460dd17df1ba37ab66feac4870f6862a1533c00", size = 277372 }, + { url = "https://files.pythonhosted.org/packages/e3/96/7a654027638ad9b7589effb6db77eb63eba64319dfeaf9c0f4ca953e5f76/bcrypt-4.2.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1d84cf6d877918620b687b8fd1bf7781d11e8a0998f576c7aa939776b512b98d", size = 273488 }, + { url = "https://files.pythonhosted.org/packages/46/54/dc7b58abeb4a3d95bab653405935e27ba32f21b812d8ff38f271fb6f7f55/bcrypt-4.2.0-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:1bb429fedbe0249465cdd85a58e8376f31bb315e484f16e68ca4c786dcc04291", size = 277759 }, + { url = "https://files.pythonhosted.org/packages/ac/be/da233c5f11fce3f8adec05e8e532b299b64833cc962f49331cdd0e614fa9/bcrypt-4.2.0-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:655ea221910bcac76ea08aaa76df427ef8625f92e55a8ee44fbf7753dbabb328", size = 273796 }, + { url = "https://files.pythonhosted.org/packages/b0/b8/8b4add88d55a263cf1c6b8cf66c735280954a04223fcd2880120cc767ac3/bcrypt-4.2.0-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:1ee38e858bf5d0287c39b7a1fc59eec64bbf880c7d504d3a06a96c16e14058e7", size = 311082 }, + { url = "https://files.pythonhosted.org/packages/7b/76/2aa660679abbdc7f8ee961552e4bb6415a81b303e55e9374533f22770203/bcrypt-4.2.0-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:0da52759f7f30e83f1e30a888d9163a81353ef224d82dc58eb5bb52efcabc399", size = 305912 }, + { url = "https://files.pythonhosted.org/packages/00/03/2af7c45034aba6002d4f2b728c1a385676b4eab7d764410e34fd768009f2/bcrypt-4.2.0-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:3698393a1b1f1fd5714524193849d0c6d524d33523acca37cd28f02899285060", size = 325185 }, + { url = "https://files.pythonhosted.org/packages/dc/5d/6843443ce4ab3af40bddb6c7c085ed4a8418b3396f7a17e60e6d9888416c/bcrypt-4.2.0-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:762a2c5fb35f89606a9fde5e51392dad0cd1ab7ae64149a8b935fe8d79dd5ed7", size = 335188 }, + { url = "https://files.pythonhosted.org/packages/cb/4c/ff8ca83d816052fba36def1d24e97d9a85739b9bbf428c0d0ecd296a07c8/bcrypt-4.2.0-cp37-abi3-win32.whl", hash = "sha256:5a1e8aa9b28ae28020a3ac4b053117fb51c57a010b9f969603ed885f23841458", size = 156481 }, + { url = "https://files.pythonhosted.org/packages/65/f1/e09626c88a56cda488810fb29d5035f1662873777ed337880856b9d204ae/bcrypt-4.2.0-cp37-abi3-win_amd64.whl", hash = "sha256:8f6ede91359e5df88d1f5c1ef47428a4420136f3ce97763e31b86dd8280fbdf5", size = 151336 }, + { url = "https://files.pythonhosted.org/packages/96/86/8c6a84daed4dd878fbab094400c9174c43d9b838ace077a2f8ee8bc3ae12/bcrypt-4.2.0-cp39-abi3-macosx_10_12_universal2.whl", hash = "sha256:c52aac18ea1f4a4f65963ea4f9530c306b56ccd0c6f8c8da0c06976e34a6e841", size = 472414 }, + { url = "https://files.pythonhosted.org/packages/f6/05/e394515f4e23c17662e5aeb4d1859b11dc651be01a3bd03c2e919a155901/bcrypt-4.2.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3bbbfb2734f0e4f37c5136130405332640a1e46e6b23e000eeff2ba8d005da68", size = 277599 }, + { url = "https://files.pythonhosted.org/packages/4b/3b/ad784eac415937c53da48983756105d267b91e56aa53ba8a1b2014b8d930/bcrypt-4.2.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3413bd60460f76097ee2e0a493ccebe4a7601918219c02f503984f0a7ee0aebe", size = 273491 }, + { url = "https://files.pythonhosted.org/packages/cc/14/b9ff8e0218bee95e517b70e91130effb4511e8827ac1ab00b4e30943a3f6/bcrypt-4.2.0-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:8d7bb9c42801035e61c109c345a28ed7e84426ae4865511eb82e913df18f58c2", size = 277934 }, + { url = "https://files.pythonhosted.org/packages/3e/d0/31938bb697600a04864246acde4918c4190a938f891fd11883eaaf41327a/bcrypt-4.2.0-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:3d3a6d28cb2305b43feac298774b997e372e56c7c7afd90a12b3dc49b189151c", size = 273804 }, + { url = "https://files.pythonhosted.org/packages/e7/c3/dae866739989e3f04ae304e1201932571708cb292a28b2f1b93283e2dcd8/bcrypt-4.2.0-cp39-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:9c1c4ad86351339c5f320ca372dfba6cb6beb25e8efc659bedd918d921956bae", size = 311275 }, + { url = "https://files.pythonhosted.org/packages/5d/2c/019bc2c63c6125ddf0483ee7d914a405860327767d437913942b476e9c9b/bcrypt-4.2.0-cp39-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:27fe0f57bb5573104b5a6de5e4153c60814c711b29364c10a75a54bb6d7ff48d", size = 306355 }, + { url = "https://files.pythonhosted.org/packages/75/fe/9e137727f122bbe29771d56afbf4e0dbc85968caa8957806f86404a5bfe1/bcrypt-4.2.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:8ac68872c82f1add6a20bd489870c71b00ebacd2e9134a8aa3f98a0052ab4b0e", size = 325381 }, + { url = "https://files.pythonhosted.org/packages/1a/d4/586b9c18a327561ea4cd336ff4586cca1a7aa0f5ee04e23a8a8bb9ca64f1/bcrypt-4.2.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:cb2a8ec2bc07d3553ccebf0746bbf3d19426d1c6d1adbd4fa48925f66af7b9e8", size = 335685 }, + { url = "https://files.pythonhosted.org/packages/24/55/1a7127faf4576138bb278b91e9c75307490178979d69c8e6e273f74b974f/bcrypt-4.2.0-cp39-abi3-win32.whl", hash = "sha256:77800b7147c9dc905db1cba26abe31e504d8247ac73580b4aa179f98e6608f34", size = 155857 }, + { url = "https://files.pythonhosted.org/packages/1c/2a/c74052e54162ec639266d91539cca7cbf3d1d3b8b36afbfeaee0ea6a1702/bcrypt-4.2.0-cp39-abi3-win_amd64.whl", hash = "sha256:61ed14326ee023917ecd093ee6ef422a72f3aec6f07e21ea5f10622b735538a9", size = 151717 }, +] + +[[package]] +name = "beaupy" +version = "3.9.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "emoji", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "python-yakh", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "questo", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "rich", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ab/c6/3097949e005025ca05b3ab885d72018b0dced3f8ac560c88fd38dbe46ae9/beaupy-3.9.1.tar.gz", hash = "sha256:4d9655aa93c099f12291290d8340dfb71796ab27a1706ce41c736c451cb9b88e", size = 16541 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ba/cc/d452342141a1644f2907c5ec389b63169467f300206aa5169ded37774bb3/beaupy-3.9.1-py3-none-any.whl", hash = "sha256:7ba3813b91e2958449a9978507605ae6e0a91c8844b604a9addae7f6d4022c49", size = 14415 }, +] + +[[package]] +name = "beautifulsoup4" +version = "4.12.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "soupsieve", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b3/ca/824b1195773ce6166d388573fc106ce56d4a805bd7427b624e063596ec58/beautifulsoup4-4.12.3.tar.gz", hash = "sha256:74e3d1928edc070d21748185c46e3fb33490f22f52a3addee9aee0f4f7781051", size = 581181 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b1/fe/e8c672695b37eecc5cbf43e1d0638d88d66ba3a44c4d321c796f4e59167f/beautifulsoup4-4.12.3-py3-none-any.whl", hash = "sha256:b80878c9f40111313e55da8ba20bdba06d8fa3969fc68304167741bbf9e082ed", size = 147925 }, +] + +[[package]] +name = "billiard" +version = "4.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/09/52/f10d74fd56e73b430c37417658158ad8386202b069b70ff97d945c3ab67a/billiard-4.2.0.tar.gz", hash = "sha256:9a3c3184cb275aa17a732f93f65b20c525d3d9f253722d26a82194803ade5a2c", size = 154665 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/50/8d/6e9fdeeab04d803abc5a715175f87e88893934d5590595eacff23ca12b07/billiard-4.2.0-py3-none-any.whl", hash = "sha256:07aa978b308f334ff8282bd4a746e681b3513db5c9a514cbdd810cbbdc19714d", size = 86720 }, +] + +[[package]] +name = "black" +version = "24.4.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "mypy-extensions", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "packaging", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pathspec", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "platformdirs", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a2/47/c9997eb470a7f48f7aaddd3d9a828244a2e4199569e38128715c48059ac1/black-24.4.2.tar.gz", hash = "sha256:c872b53057f000085da66a19c55d68f6f8ddcac2642392ad3a355878406fbd4d", size = 642299 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9b/f7/591d601c3046ceb65b97291dfe87fa25124cffac3d97aaaba89d0f0d7bdf/black-24.4.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:257d724c2c9b1660f353b36c802ccece186a30accc7742c176d29c146df6e474", size = 1615013 }, + { url = "https://files.pythonhosted.org/packages/c9/17/5e0036b265bbf6bc44970d93d48febcbc03701b671db3c9603fd43ebc616/black-24.4.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:bdde6f877a18f24844e381d45e9947a49e97933573ac9d4345399be37621e26c", size = 1436163 }, + { url = "https://files.pythonhosted.org/packages/c5/48/34176b522e8cff4620a5d96c2e323ff2413f574870eb25efa8025885e028/black-24.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e151054aa00bad1f4e1f04919542885f89f5f7d086b8a59e5000e6c616896ffb", size = 1803382 }, + { url = "https://files.pythonhosted.org/packages/74/ce/e8eec1a77edbfa982bee3b5460dcdd4fe0e4e3165fc15d8ec44d04da7776/black-24.4.2-cp311-cp311-win_amd64.whl", hash = "sha256:7e122b1c4fb252fd85df3ca93578732b4749d9be076593076ef4d07a0233c3e1", size = 1417802 }, + { url = "https://files.pythonhosted.org/packages/f4/75/3a29de3bda4006cc280d833b5d961cf7df3810a21f49e7a63a7e551fb351/black-24.4.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:accf49e151c8ed2c0cdc528691838afd217c50412534e876a19270fea1e28e2d", size = 1645176 }, + { url = "https://files.pythonhosted.org/packages/be/b8/9c152301774fa62a265b035a8ede4d6280827904ea1af8c3be10a28d3187/black-24.4.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:88c57dc656038f1ab9f92b3eb5335ee9b021412feaa46330d5eba4e51fe49b04", size = 1446227 }, + { url = "https://files.pythonhosted.org/packages/25/6d/eb15a1b155f755f43766cc473618c6e1de6555d6a1764965643f486dcf01/black-24.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:be8bef99eb46d5021bf053114442914baeb3649a89dc5f3a555c88737e5e98fc", size = 1832011 }, + { url = "https://files.pythonhosted.org/packages/43/24/942b22571b0171be7c6f701cdc3e3b7221f5b522ef02cf82503a547a657b/black-24.4.2-cp312-cp312-win_amd64.whl", hash = "sha256:415e686e87dbbe6f4cd5ef0fbf764af7b89f9057b97c908742b6008cc554b9c0", size = 1428800 }, + { url = "https://files.pythonhosted.org/packages/0f/89/294c9a6b6c75a08da55e9d05321d0707e9418735e3062b12ef0f54c33474/black-24.4.2-py3-none-any.whl", hash = "sha256:d36ed1124bb81b32f8614555b34cc4259c3fbc7eec17870e8ff8ded335b58d8c", size = 205925 }, +] + +[[package]] +name = "boto3" +version = "1.34.156" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "botocore", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "jmespath", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "s3transfer", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/75/2f/8c716c4ec9410746a7f6b83f0eee6e88f97d7e19fc1af308cb900c36de2c/boto3-1.34.156.tar.gz", hash = "sha256:b33e9a8f8be80d3053b8418836a7c1900410b23a30c7cb040927d601a1082e68", size = 108623 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/74/00/67f2443fb72af2d7d3b0b7f21c426d0a0508849b0f9cf501fbcea2b28f9b/boto3-1.34.156-py3-none-any.whl", hash = "sha256:cbbd453270b8ce94ef9da60dfbb6f9ceeb3eeee226b635aa9ec44b1def98cc96", size = 139176 }, +] + +[[package]] +name = "boto3-stubs" +version = "1.34.156" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "botocore-stubs", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "types-s3transfer", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "typing-extensions", marker = "python_version < '3.12'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6e/d6/da4a554a6436944cb47cfb84754e8a2e37b04e3ff6dfea3c4958e2eb93ed/boto3_stubs-1.34.156.tar.gz", hash = "sha256:c34220a00b6bd00a3cd326bc5d7e3296b7d1dab1a15660df6f8fba4ae307ff39", size = 88866 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0e/b7/ac6d7adb1a7e7e1d61644857d512e448a083a7822c4f18e6b475ce4bfee1/boto3_stubs-1.34.156-py3-none-any.whl", hash = "sha256:69495bf3bc528617756467fa2ec9c7a19af6497b358836b7015f1cbf6c9534ec", size = 56733 }, +] + +[[package]] +name = "botocore" +version = "1.34.156" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jmespath", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "python-dateutil", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "urllib3" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/22/5b/b524a3109579262225c5954059538476d4b615930ca2f70e2dd9772b9bed/botocore-1.34.156.tar.gz", hash = "sha256:5d1478c41ab9681e660b3322432fe09c4055759c317984b7b8d3af9557ff769a", size = 12663276 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/13/1f/0db4626715ccaacf48cc203fa7ef6a0ecc2814a4df1d48ab11122cb07ba2/botocore-1.34.156-py3-none-any.whl", hash = "sha256:c48f8c8996216dfdeeb0aa6d3c0f2c7ae25234766434a2ea3e57bdc08494bdda", size = 12456483 }, +] + +[[package]] +name = "botocore-stubs" +version = "1.34.156" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "types-awscrt", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/96/09/c7e97a5b6ef17493b6b7aacab268c5917384c8228770f9c92f96e30d7736/botocore_stubs-1.34.156.tar.gz", hash = "sha256:bb5ad1687cd363035c3f000854542476040455629463d4e4db1ebf41048a4c06", size = 38156 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/86/95/f8f51338ebf867114db82cfbc952e35c853fdbac7c8c00ada9a258377547/botocore_stubs-1.34.156-py3-none-any.whl", hash = "sha256:c01d59fe531bf30e7a42b53ed031c77dcfcf4a767ffb0d8b1bfbf285246a5167", size = 59195 }, +] + +[[package]] +name = "build" +version = "1.2.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "os_name == 'nt'" }, + { name = "packaging", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pyproject-hooks", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ce/9e/2d725d2f7729c6e79ca62aeb926492abbc06e25910dd30139d60a68bcb19/build-1.2.1.tar.gz", hash = "sha256:526263f4870c26f26c433545579475377b2b7588b6f1eac76a001e873ae3e19d", size = 44781 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e2/03/f3c8ba0a6b6e30d7d18c40faab90807c9bb5e9a1e3b2fe2008af624a9c97/build-1.2.1-py3-none-any.whl", hash = "sha256:75e10f767a433d9a86e50d83f418e83efc18ede923ee5ff7df93b6cb0306c5d4", size = 21911 }, +] + +[[package]] +name = "bytecode" +version = "0.15.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/30/91/54350d315afb2b91f62596d00abca80ae56ebb6e95d162e1a0e973977513/bytecode-0.15.1.tar.gz", hash = "sha256:7263239a8d3f70fc7c303862b20cd2c6788052e37ce0a26e67309d280e985984", size = 97976 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/84/21b847aadaf64f10b5f613b33e809931af33d6811203ff37cc8816081264/bytecode-0.15.1-py3-none-any.whl", hash = "sha256:0a1dc340cac823cff605609b8b214f7f9bf80418c6b9e0fc8c6db1793c27137d", size = 39966 }, +] + +[[package]] +name = "cachecontrol" +version = "0.14.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "msgpack", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "requests", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/06/55/edea9d90ee57ca54d34707607d15c20f72576b96cb9f3e7fc266cb06b426/cachecontrol-0.14.0.tar.gz", hash = "sha256:7db1195b41c81f8274a7bbd97c956f44e8348265a1bc7641c37dfebc39f0c938", size = 28899 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a3/a9/7d331fec593a4b2953338df33e954aac6ff79eb5a073bca2783766bc7722/cachecontrol-0.14.0-py3-none-any.whl", hash = "sha256:f5bf3f0620c38db2e5122c0726bdebb0d16869de966ea6a2befe92470b740ea0", size = 22064 }, +] + +[package.optional-dependencies] +filecache = [ + { name = "filelock", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] + +[[package]] +name = "cachetools" +version = "5.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a7/3f/ea907ec6d15f68ea7f381546ba58adcb298417a59f01a2962cb5e486489f/cachetools-5.4.0.tar.gz", hash = "sha256:b8adc2e7c07f105ced7bc56dbb6dfbe7c4a00acce20e2227b3f355be89bc6827", size = 26975 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/e6/a1551acbaa06f3e48b311329828a34bc9c51a8cfaecdeb4d03c329a1ef85/cachetools-5.4.0-py3-none-any.whl", hash = "sha256:3ae3b49a3d5e28a77a0be2b37dbcb89005058959cb2323858c2657c4a8cab474", size = 9455 }, +] + +[[package]] +name = "cairocffi" +version = "1.7.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/70/c5/1a4dc131459e68a173cbdab5fad6b524f53f9c1ef7861b7698e998b837cc/cairocffi-1.7.1.tar.gz", hash = "sha256:2e48ee864884ec4a3a34bfa8c9ab9999f688286eb714a15a43ec9d068c36557b", size = 88096 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/93/d8/ba13451aa6b745c49536e87b6bf8f629b950e84bd0e8308f7dc6883b67e2/cairocffi-1.7.1-py3-none-any.whl", hash = "sha256:9803a0e11f6c962f3b0ae2ec8ba6ae45e957a146a004697a1ac1bbf16b073b3f", size = 75611 }, +] + +[[package]] +name = "cairosvg" +version = "2.7.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cairocffi", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "cssselect2", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "defusedxml", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pillow", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "tinycss2", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d5/e6/ec5900b724e3c44af7f6f51f719919137284e5da4aabe96508baec8a1b40/CairoSVG-2.7.1.tar.gz", hash = "sha256:432531d72347291b9a9ebfb6777026b607563fd8719c46ee742db0aef7271ba0", size = 8399085 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/01/a5/1866b42151f50453f1a0d28fc4c39f5be5f412a2e914f33449c42daafdf1/CairoSVG-2.7.1-py3-none-any.whl", hash = "sha256:8a5222d4e6c3f86f1f7046b63246877a63b49923a1cd202184c3a634ef546b3b", size = 43235 }, +] + +[[package]] +name = "cattrs" +version = "23.2.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1e/57/c6ccd22658c4bcb3beb3f1c262e1f170cf136e913b122763d0ddd328d284/cattrs-23.2.3.tar.gz", hash = "sha256:a934090d95abaa9e911dac357e3a8699e0b4b14f8529bcc7d2b1ad9d51672b9f", size = 610215 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/0d/cd4a4071c7f38385dc5ba91286723b4d1090b87815db48216212c6c6c30e/cattrs-23.2.3-py3-none-any.whl", hash = "sha256:0341994d94971052e9ee70662542699a3162ea1e0c62f7ce1b4a57f563685108", size = 57474 }, +] + +[[package]] +name = "cbor2" +version = "5.6.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/fe/da/6e62e701797c627e8d8cb3d5cc0cdcb6f4a876083386ee1b1a35321fdac7/cbor2-5.6.4.tar.gz", hash = "sha256:1c533c50dde86bef1c6950602054a0ffa3c376e8b0e20c7b8f5b108793f6983e", size = 100865 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/11/12/bd1c2f658e8952a5e074a1550afe9e92b27f7cf7d23e94faad739d2d40a8/cbor2-5.6.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5c763d50a1714e0356b90ad39194fc8ef319356b89fb001667a2e836bfde88e3", size = 66721 }, + { url = "https://files.pythonhosted.org/packages/47/fb/83136deb94a4edfbf50581fcb331043fa7af736f0159a51f6b02b3559cc5/cbor2-5.6.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:58a7ac8861857a9f9b0de320a4808a2a5f68a2599b4c14863e2748d5a4686c99", size = 67409 }, + { url = "https://files.pythonhosted.org/packages/e7/db/39664d25a97fe7f5587c203f5d84b069ed3a929be76fa3af6a474b714f47/cbor2-5.6.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7d715b2f101730335e84a25fe0893e2b6adf049d6d44da123bf243b8c875ffd8", size = 260870 }, + { url = "https://files.pythonhosted.org/packages/1c/22/008496c86a0e3a4154afd13ffb3b6dc3b3e651626f1b2abef6bc79ea9629/cbor2-5.6.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3f53a67600038cb9668720b309fdfafa8c16d1a02570b96d2144d58d66774318", size = 249324 }, + { url = "https://files.pythonhosted.org/packages/ef/14/7f8a6021c435f80fab5ce6b78d0812ee8f041c06cc40a998ce6a7f8a243e/cbor2-5.6.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:f898bab20c4f42dca3688c673ff97c2f719b1811090430173c94452603fbcf13", size = 273337 }, + { url = "https://files.pythonhosted.org/packages/c8/2f/9efb48b08cf7a89230c75f0284effe6fe033d5ad0a95fb9beaaa6034bc61/cbor2-5.6.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5e5d50fb9f47d295c1b7f55592111350424283aff4cc88766c656aad0300f11f", size = 269522 }, + { url = "https://files.pythonhosted.org/packages/b2/fd/1dd228398acf0a1620d85b6b4f2b97106b9e4dfedc14bf23507b51b95ffd/cbor2-5.6.4-cp311-cp311-win_amd64.whl", hash = "sha256:7f9d867dcd814ab8383ad132eb4063e2b69f6a9f688797b7a8ca34a4eadb3944", size = 66177 }, + { url = "https://files.pythonhosted.org/packages/4a/61/c97175226cfc7ae54628795ed23f3c84ce9d39d140723a38663ec3b70cf4/cbor2-5.6.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:e0860ca88edf8aaec5461ce0e498eb5318f1bcc70d93f90091b7a1f1d351a167", size = 67771 }, + { url = "https://files.pythonhosted.org/packages/24/a2/e32185f11a0b6720d092a719b55957e3aad25264071989aa7f7bbd320428/cbor2-5.6.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c38a0ed495a63a8bef6400158746a9cb03c36f89aeed699be7ffebf82720bf86", size = 67558 }, + { url = "https://files.pythonhosted.org/packages/5f/f8/0887889ccbd4c8b28d7880b582d79f1fe88a77d9890dcad516f950731162/cbor2-5.6.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0c8d8c2f208c223a61bed48dfd0661694b891e423094ed30bac2ed75032142aa", size = 277280 }, + { url = "https://files.pythonhosted.org/packages/cf/ab/931b66a158794eb6bce2147113485be379418c178e5f5b9b062f0ecaa25a/cbor2-5.6.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:24cd2ce6136e1985da989e5ba572521023a320dcefad5d1fff57fba261de80ca", size = 270636 }, + { url = "https://files.pythonhosted.org/packages/ab/0e/75dd6a32c2882f7f070333c408443275b81e6d26e1063cea8b3c529e3977/cbor2-5.6.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7facce04aed2bf69ef43bdffb725446fe243594c2451921e89cc305bede16f02", size = 288873 }, + { url = "https://files.pythonhosted.org/packages/87/03/6f63204b75f2273557f3a84439fae0fbc777f6c1f5c21d4576743b80a175/cbor2-5.6.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:f9c8ee0d89411e5e039a4f3419befe8b43c0dd8746eedc979e73f4c06fe0ef97", size = 287565 }, + { url = "https://files.pythonhosted.org/packages/c7/18/640dcaebeb36c05e64b83a2933dc7e9b1a990ffec2ecf5c14c6a81fae734/cbor2-5.6.4-cp312-cp312-win_amd64.whl", hash = "sha256:9b45d554daa540e2f29f1747df9f08f8d98ade65a67b1911791bc193d33a5923", size = 66609 }, + { url = "https://files.pythonhosted.org/packages/97/1f/d019205dd6435e4236d9f3f35db43a67be0f4d7cc96c77cf3f7ad76ad2d8/cbor2-5.6.4-py3-none-any.whl", hash = "sha256:fe411c4bf464f5976605103ebcd0f60b893ac3e4c7c8d8bc8f4a0cb456e33c60", size = 23751 }, +] + +[[package]] +name = "celery" +version = "5.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "billiard", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "click", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "click-didyoumean", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "click-plugins", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "click-repl", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "kombu", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "python-dateutil", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "tzdata", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "vine", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a4/e2/102f8d3453a9f1c6918245a97b9b8e7352a2925d4c5477a7401de2bb54dc/celery-5.3.1.tar.gz", hash = "sha256:f84d1c21a1520c116c2b7d26593926581191435a03aa74b77c941b93ca1c6210", size = 1534734 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/18/b9/cb8d519ea0094b9b8fe7480225c14937517729f8ec927643dc7379904f64/celery-5.3.1-py3-none-any.whl", hash = "sha256:27f8f3f3b58de6e0ab4f174791383bbd7445aff0471a43e99cfd77727940753f", size = 420383 }, +] + +[package.optional-dependencies] +sqs = [ + { name = "boto3", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "kombu", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "kombu", extra = ["sqs"] }, + { name = "pycurl", marker = "platform_python_implementation == 'CPython' and sys_platform != 'win32'" }, + { name = "urllib3", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] + +[[package]] +name = "celery-redbeat" +version = "2.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "celery", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "python-dateutil", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "redis", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "tenacity", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/35/0d/63cf4db35c111554913199a54f32be3495526ff08189f9d79a879abcc6ad/celery-redbeat-2.2.0.tar.gz", hash = "sha256:71104729380d4eaefd91a9b7d270ba7851bfff9ad55a43ac8365acbb0c608b77", size = 21372 } + +[[package]] +name = "celery-types" +version = "0.22.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/57/0a/f7d6089e39b43528d74f99f3f58b9900fe76894e8208ec4f22ffa71e4a73/celery_types-0.22.0.tar.gz", hash = "sha256:0ecad2fa5a6eded0a1f919e5e1e381cc2ff0635fe4b21db53b4661b6876d5b30", size = 26654 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b4/fc/ab9ed137f6a7a54746cb27410e475f6b375dbb9e20f8c2d3317186d0a63e/celery_types-0.22.0-py3-none-any.whl", hash = "sha256:79a66637d1d6af5992d1dc80259d9538869941325e966006f1e795220519b9ac", size = 41166 }, +] + +[[package]] +name = "certifi" +version = "2024.7.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c2/02/a95f2b11e207f68bc64d7aae9666fed2e2b3f307748d5123dffb72a1bbea/certifi-2024.7.4.tar.gz", hash = "sha256:5a1e7645bc0ec61a09e26c36f6106dd4cf40c6db3a1fb6352b0244e7fb057c7b", size = 164065 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1c/d5/c84e1a17bf61d4df64ca866a1c9a913874b4e9bdc131ec689a0ad013fb36/certifi-2024.7.4-py3-none-any.whl", hash = "sha256:c198e21b1289c2ab85ee4e67bb4b4ef3ead0892059901a8d5b622f24a1101e90", size = 162960 }, +] + +[[package]] +name = "cffi" +version = "1.17.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pycparser", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1e/bf/82c351342972702867359cfeba5693927efe0a8dd568165490144f554b18/cffi-1.17.0.tar.gz", hash = "sha256:f3157624b7558b914cb039fd1af735e5e8049a87c817cc215109ad1c8779df76", size = 516073 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/53/cc/9298fb6235522e00e47d78d6aa7f395332ef4e5f6fe124f9a03aa60600f7/cffi-1.17.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c5d97162c196ce54af6700949ddf9409e9833ef1003b4741c2b39ef46f1d9720", size = 181912 }, + { url = "https://files.pythonhosted.org/packages/e7/79/dc5334fbe60635d0846c56597a8d2af078a543ff22bc48d36551a0de62c2/cffi-1.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5ba5c243f4004c750836f81606a9fcb7841f8874ad8f3bf204ff5e56332b72b9", size = 178297 }, + { url = "https://files.pythonhosted.org/packages/39/d7/ef1b6b16b51ccbabaced90ff0d821c6c23567fc4b2e4a445aea25d3ceb92/cffi-1.17.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bb9333f58fc3a2296fb1d54576138d4cf5d496a2cc118422bd77835e6ae0b9cb", size = 444909 }, + { url = "https://files.pythonhosted.org/packages/29/b8/6e3c61885537d985c78ef7dd779b68109ba256263d74a2f615c40f44548d/cffi-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:435a22d00ec7d7ea533db494da8581b05977f9c37338c80bc86314bec2619424", size = 468854 }, + { url = "https://files.pythonhosted.org/packages/0b/49/adad1228e19b931e523c2731e6984717d5f9e33a2f9971794ab42815b29b/cffi-1.17.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d1df34588123fcc88c872f5acb6f74ae59e9d182a2707097f9e28275ec26a12d", size = 476890 }, + { url = "https://files.pythonhosted.org/packages/76/54/c00f075c3e7fd14d9011713bcdb5b4f105ad044c5ad948db7b1a0a7e4e78/cffi-1.17.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:df8bb0010fdd0a743b7542589223a2816bdde4d94bb5ad67884348fa2c1c67e8", size = 459374 }, + { url = "https://files.pythonhosted.org/packages/f3/b9/f163bb3fa4fbc636ee1f2a6a4598c096cdef279823ddfaa5734e556dd206/cffi-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8b5b9712783415695663bd463990e2f00c6750562e6ad1d28e072a611c5f2a6", size = 466891 }, + { url = "https://files.pythonhosted.org/packages/31/52/72bbc95f6d06ff2e88a6fa13786be4043e542cb24748e1351aba864cb0a7/cffi-1.17.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ffef8fd58a36fb5f1196919638f73dd3ae0db1a878982b27a9a5a176ede4ba91", size = 477658 }, + { url = "https://files.pythonhosted.org/packages/67/20/d694811457eeae0c7663fa1a7ca201ce495533b646c1180d4ac25684c69c/cffi-1.17.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:4e67d26532bfd8b7f7c05d5a766d6f437b362c1bf203a3a5ce3593a645e870b8", size = 453890 }, + { url = "https://files.pythonhosted.org/packages/dc/79/40cbf5739eb4f694833db5a27ce7f63e30a9b25b4a836c4f25fb7272aacc/cffi-1.17.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:45f7cd36186db767d803b1473b3c659d57a23b5fa491ad83c6d40f2af58e4dbb", size = 478254 }, + { url = "https://files.pythonhosted.org/packages/e9/eb/2c384c385cca5cae67ca10ac4ef685277680b8c552b99aedecf4ea23ff7e/cffi-1.17.0-cp311-cp311-win32.whl", hash = "sha256:a9015f5b8af1bb6837a3fcb0cdf3b874fe3385ff6274e8b7925d81ccaec3c5c9", size = 171285 }, + { url = "https://files.pythonhosted.org/packages/ca/42/74cb1e0f1b79cb64672f3cb46245b506239c1297a20c0d9c3aeb3929cb0c/cffi-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:b50aaac7d05c2c26dfd50c3321199f019ba76bb650e346a6ef3616306eed67b0", size = 180842 }, + { url = "https://files.pythonhosted.org/packages/1a/1f/7862231350cc959a3138889d2c8d33da7042b22e923457dfd4cd487d772a/cffi-1.17.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aec510255ce690d240f7cb23d7114f6b351c733a74c279a84def763660a2c3bc", size = 182826 }, + { url = "https://files.pythonhosted.org/packages/8b/8c/26119bf8b79e05a1c39812064e1ee7981e1f8a5372205ba5698ea4dd958d/cffi-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2770bb0d5e3cc0e31e7318db06efcbcdb7b31bcb1a70086d3177692a02256f59", size = 178494 }, + { url = "https://files.pythonhosted.org/packages/61/94/4882c47d3ad396d91f0eda6ef16d45be3d752a332663b7361933039ed66a/cffi-1.17.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:db9a30ec064129d605d0f1aedc93e00894b9334ec74ba9c6bdd08147434b33eb", size = 454459 }, + { url = "https://files.pythonhosted.org/packages/0f/7c/a6beb119ad515058c5ee1829742d96b25b2b9204ff920746f6e13bf574eb/cffi-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a47eef975d2b8b721775a0fa286f50eab535b9d56c70a6e62842134cf7841195", size = 478502 }, + { url = "https://files.pythonhosted.org/packages/61/8a/2575cd01a90e1eca96a30aec4b1ac101a6fae06c49d490ac2704fa9bc8ba/cffi-1.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f3e0992f23bbb0be00a921eae5363329253c3b86287db27092461c887b791e5e", size = 485381 }, + { url = "https://files.pythonhosted.org/packages/cd/66/85899f5a9f152db49646e0c77427173e1b77a1046de0191ab3b0b9a5e6e3/cffi-1.17.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6107e445faf057c118d5050560695e46d272e5301feffda3c41849641222a828", size = 470907 }, + { url = "https://files.pythonhosted.org/packages/00/13/150924609bf377140abe6e934ce0a57f3fc48f1fd956ec1f578ce97a4624/cffi-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eb862356ee9391dc5a0b3cbc00f416b48c1b9a52d252d898e5b7696a5f9fe150", size = 479074 }, + { url = "https://files.pythonhosted.org/packages/17/fd/7d73d7110155c036303b0a6462c56250e9bc2f4119d7591d27417329b4d1/cffi-1.17.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:c1c13185b90bbd3f8b5963cd8ce7ad4ff441924c31e23c975cb150e27c2bf67a", size = 484225 }, + { url = "https://files.pythonhosted.org/packages/fc/83/8353e5c9b01bb46332dac3dfb18e6c597a04ceb085c19c814c2f78a8c0d0/cffi-1.17.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:17c6d6d3260c7f2d94f657e6872591fe8733872a86ed1345bda872cfc8c74885", size = 488388 }, + { url = "https://files.pythonhosted.org/packages/73/0c/f9d5ca9a095b1fc88ef77d1f8b85d11151c374144e4606da33874e17b65b/cffi-1.17.0-cp312-cp312-win32.whl", hash = "sha256:c3b8bd3133cd50f6b637bb4322822c94c5ce4bf0d724ed5ae70afce62187c492", size = 172096 }, + { url = "https://files.pythonhosted.org/packages/72/21/8c5d285fe20a6e31d29325f1287bb0e55f7d93630a5a44cafdafb5922495/cffi-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:dca802c8db0720ce1c49cce1149ff7b06e91ba15fa84b1d59144fef1a1bc7ac2", size = 181478 }, + { url = "https://files.pythonhosted.org/packages/17/8f/581f2f3c3464d5f7cf87c2f7a5ba9acc6976253e02d73804240964243ec2/cffi-1.17.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:6ce01337d23884b21c03869d2f68c5523d43174d4fc405490eb0091057943118", size = 182638 }, + { url = "https://files.pythonhosted.org/packages/8d/1c/c9afa66684b7039f48018eb11b229b659dfb32b7a16b88251bac106dd1ff/cffi-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:cab2eba3830bf4f6d91e2d6718e0e1c14a2f5ad1af68a89d24ace0c6b17cced7", size = 178453 }, + { url = "https://files.pythonhosted.org/packages/cc/b6/1a134d479d3a5a1ff2fabbee551d1d3f1dd70f453e081b5f70d604aae4c0/cffi-1.17.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:14b9cbc8f7ac98a739558eb86fabc283d4d564dafed50216e7f7ee62d0d25377", size = 454441 }, + { url = "https://files.pythonhosted.org/packages/b1/b4/e1569475d63aad8042b0935dbf62ae2a54d1e9142424e2b0e924d2d4a529/cffi-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b00e7bcd71caa0282cbe3c90966f738e2db91e64092a877c3ff7f19a1628fdcb", size = 478543 }, + { url = "https://files.pythonhosted.org/packages/d2/40/a9ad03fbd64309dec5bb70bc803a9a6772602de0ee164d7b9a6ca5a89249/cffi-1.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:41f4915e09218744d8bae14759f983e466ab69b178de38066f7579892ff2a555", size = 485463 }, + { url = "https://files.pythonhosted.org/packages/a6/1a/f10be60e006dd9242a24bcc2b1cd55c34c578380100f742d8c610f7a5d26/cffi-1.17.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4760a68cab57bfaa628938e9c2971137e05ce48e762a9cb53b76c9b569f1204", size = 470854 }, + { url = "https://files.pythonhosted.org/packages/cc/b3/c035ed21aa3d39432bd749fe331ee90e4bc83ea2dbed1f71c4bc26c41084/cffi-1.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:011aff3524d578a9412c8b3cfaa50f2c0bd78e03eb7af7aa5e0df59b158efb2f", size = 479096 }, + { url = "https://files.pythonhosted.org/packages/00/cb/6f7edde01131de9382c89430b8e253b8c8754d66b63a62059663ceafeab2/cffi-1.17.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:a003ac9edc22d99ae1286b0875c460351f4e101f8c9d9d2576e78d7e048f64e0", size = 484013 }, + { url = "https://files.pythonhosted.org/packages/b9/83/8e4e8c211ea940210d293e951bf06b1bfb90f2eeee590e9778e99b4a8676/cffi-1.17.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ef9528915df81b8f4c7612b19b8628214c65c9b7f74db2e34a646a0a2a0da2d4", size = 488119 }, + { url = "https://files.pythonhosted.org/packages/5e/52/3f7cfbc4f444cb4f73ff17b28690d12436dde665f67d68f1e1687908ab6c/cffi-1.17.0-cp313-cp313-win32.whl", hash = "sha256:70d2aa9fb00cf52034feac4b913181a6e10356019b18ef89bc7c12a283bf5f5a", size = 172122 }, + { url = "https://files.pythonhosted.org/packages/94/19/cf5baa07ee0f0e55eab7382459fbddaba0fdb0ba45973dd92556ae0d02db/cffi-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:b7b6ea9e36d32582cda3465f54c4b454f62f23cb083ebc7a94e2ca6ef011c3a7", size = 181504 }, +] + +[[package]] +name = "charset-normalizer" +version = "3.3.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/63/09/c1bc53dab74b1816a00d8d030de5bf98f724c52c1635e07681d312f20be8/charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5", size = 104809 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/68/77/02839016f6fbbf808e8b38601df6e0e66c17bbab76dff4613f7511413597/charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db", size = 191647 }, + { url = "https://files.pythonhosted.org/packages/3e/33/21a875a61057165e92227466e54ee076b73af1e21fe1b31f1e292251aa1e/charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96", size = 121434 }, + { url = "https://files.pythonhosted.org/packages/dd/51/68b61b90b24ca35495956b718f35a9756ef7d3dd4b3c1508056fa98d1a1b/charset_normalizer-3.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e", size = 118979 }, + { url = "https://files.pythonhosted.org/packages/e4/a6/7ee57823d46331ddc37dd00749c95b0edec2c79b15fc0d6e6efb532e89ac/charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f", size = 136582 }, + { url = "https://files.pythonhosted.org/packages/74/f1/0d9fe69ac441467b737ba7f48c68241487df2f4522dd7246d9426e7c690e/charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574", size = 146645 }, + { url = "https://files.pythonhosted.org/packages/05/31/e1f51c76db7be1d4aef220d29fbfa5dbb4a99165d9833dcbf166753b6dc0/charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4", size = 139398 }, + { url = "https://files.pythonhosted.org/packages/40/26/f35951c45070edc957ba40a5b1db3cf60a9dbb1b350c2d5bef03e01e61de/charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8", size = 140273 }, + { url = "https://files.pythonhosted.org/packages/07/07/7e554f2bbce3295e191f7e653ff15d55309a9ca40d0362fcdab36f01063c/charset_normalizer-3.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc", size = 142577 }, + { url = "https://files.pythonhosted.org/packages/d8/b5/eb705c313100defa57da79277d9207dc8d8e45931035862fa64b625bfead/charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae", size = 137747 }, + { url = "https://files.pythonhosted.org/packages/19/28/573147271fd041d351b438a5665be8223f1dd92f273713cb882ddafe214c/charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887", size = 143375 }, + { url = "https://files.pythonhosted.org/packages/cf/7c/f3b682fa053cc21373c9a839e6beba7705857075686a05c72e0f8c4980ca/charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae", size = 148474 }, + { url = "https://files.pythonhosted.org/packages/1e/49/7ab74d4ac537ece3bc3334ee08645e231f39f7d6df6347b29a74b0537103/charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce", size = 140232 }, + { url = "https://files.pythonhosted.org/packages/2d/dc/9dacba68c9ac0ae781d40e1a0c0058e26302ea0660e574ddf6797a0347f7/charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f", size = 140859 }, + { url = "https://files.pythonhosted.org/packages/6c/c2/4a583f800c0708dd22096298e49f887b49d9746d0e78bfc1d7e29816614c/charset_normalizer-3.3.2-cp311-cp311-win32.whl", hash = "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab", size = 92509 }, + { url = "https://files.pythonhosted.org/packages/57/ec/80c8d48ac8b1741d5b963797b7c0c869335619e13d4744ca2f67fc11c6fc/charset_normalizer-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77", size = 99870 }, + { url = "https://files.pythonhosted.org/packages/d1/b2/fcedc8255ec42afee97f9e6f0145c734bbe104aac28300214593eb326f1d/charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8", size = 192892 }, + { url = "https://files.pythonhosted.org/packages/2e/7d/2259318c202f3d17f3fe6438149b3b9e706d1070fe3fcbb28049730bb25c/charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b", size = 122213 }, + { url = "https://files.pythonhosted.org/packages/3a/52/9f9d17c3b54dc238de384c4cb5a2ef0e27985b42a0e5cc8e8a31d918d48d/charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6", size = 119404 }, + { url = "https://files.pythonhosted.org/packages/99/b0/9c365f6d79a9f0f3c379ddb40a256a67aa69c59609608fe7feb6235896e1/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a", size = 137275 }, + { url = "https://files.pythonhosted.org/packages/91/33/749df346e93d7a30cdcb90cbfdd41a06026317bfbfb62cd68307c1a3c543/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389", size = 147518 }, + { url = "https://files.pythonhosted.org/packages/72/1a/641d5c9f59e6af4c7b53da463d07600a695b9824e20849cb6eea8a627761/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa", size = 140182 }, + { url = "https://files.pythonhosted.org/packages/ee/fb/14d30eb4956408ee3ae09ad34299131fb383c47df355ddb428a7331cfa1e/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b", size = 141869 }, + { url = "https://files.pythonhosted.org/packages/df/3e/a06b18788ca2eb6695c9b22325b6fde7dde0f1d1838b1792a0076f58fe9d/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed", size = 144042 }, + { url = "https://files.pythonhosted.org/packages/45/59/3d27019d3b447a88fe7e7d004a1e04be220227760264cc41b405e863891b/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26", size = 138275 }, + { url = "https://files.pythonhosted.org/packages/7b/ef/5eb105530b4da8ae37d506ccfa25057961b7b63d581def6f99165ea89c7e/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d", size = 144819 }, + { url = "https://files.pythonhosted.org/packages/a2/51/e5023f937d7f307c948ed3e5c29c4b7a3e42ed2ee0b8cdf8f3a706089bf0/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068", size = 149415 }, + { url = "https://files.pythonhosted.org/packages/24/9d/2e3ef673dfd5be0154b20363c5cdcc5606f35666544381bee15af3778239/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143", size = 141212 }, + { url = "https://files.pythonhosted.org/packages/5b/ae/ce2c12fcac59cb3860b2e2d76dc405253a4475436b1861d95fe75bdea520/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4", size = 142167 }, + { url = "https://files.pythonhosted.org/packages/ed/3a/a448bf035dce5da359daf9ae8a16b8a39623cc395a2ffb1620aa1bce62b0/charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7", size = 93041 }, + { url = "https://files.pythonhosted.org/packages/b6/7c/8debebb4f90174074b827c63242c23851bdf00a532489fba57fef3416e40/charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001", size = 100397 }, + { url = "https://files.pythonhosted.org/packages/28/76/e6222113b83e3622caa4bb41032d0b1bf785250607392e1b778aca0b8a7d/charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc", size = 48543 }, +] + +[[package]] +name = "click" +version = "8.1.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "platform_system == 'Windows'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/96/d3/f04c7bfcf5c1862a2a5b845c6b2b360488cf47af55dfa79c98f6a6bf98b5/click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de", size = 336121 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/00/2e/d53fa4befbf2cfa713304affc7ca780ce4fc1fd8710527771b58311a3229/click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28", size = 97941 }, +] + +[[package]] +name = "click-didyoumean" +version = "0.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/30/ce/217289b77c590ea1e7c24242d9ddd6e249e52c795ff10fac2c50062c48cb/click_didyoumean-0.3.1.tar.gz", hash = "sha256:4f82fdff0dbe64ef8ab2279bd6aa3f6a99c3b28c05aa09cbfc07c9d7fbb5a463", size = 3089 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1b/5b/974430b5ffdb7a4f1941d13d83c64a0395114503cc357c6b9ae4ce5047ed/click_didyoumean-0.3.1-py3-none-any.whl", hash = "sha256:5c4bb6007cfea5f2fd6583a2fb6701a22a41eb98957e63d0fac41c10e7c3117c", size = 3631 }, +] + +[[package]] +name = "click-plugins" +version = "1.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5f/1d/45434f64ed749540af821fd7e42b8e4d23ac04b1eda7c26613288d6cd8a8/click-plugins-1.1.1.tar.gz", hash = "sha256:46ab999744a9d831159c3411bb0c79346d94a444df9a3a3742e9ed63645f264b", size = 8164 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e9/da/824b92d9942f4e472702488857914bdd50f73021efea15b4cad9aca8ecef/click_plugins-1.1.1-py2.py3-none-any.whl", hash = "sha256:5d262006d3222f5057fd81e1623d4443e41dcda5dc815c06b442aa3c02889fc8", size = 7497 }, +] + +[[package]] +name = "click-repl" +version = "0.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "prompt-toolkit", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cb/a2/57f4ac79838cfae6912f997b4d1a64a858fb0c86d7fcaae6f7b58d267fca/click-repl-0.3.0.tar.gz", hash = "sha256:17849c23dba3d667247dc4defe1757fff98694e90fe37474f3feebb69ced26a9", size = 10449 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/52/40/9d857001228658f0d59e97ebd4c346fe73e138c6de1bce61dc568a57c7f8/click_repl-0.3.0-py3-none-any.whl", hash = "sha256:fb7e06deb8da8de86180a33a9da97ac316751c094c6899382da7feeeeb51b812", size = 10289 }, +] + +[[package]] +name = "cmarkgfm" +version = "2024.1.14" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7d/57/0480532cf04f77ff6f34985109079e87b9028444540731a5380abd0a3325/cmarkgfm-2024.1.14.tar.gz", hash = "sha256:a208c1726e12ba385125cef2c6d375c41c5dea4cc2673a77af712b1dbf074e90", size = 146699 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/47/5f/08b10b2ed15e7053526b835e6fd198a42de9660f3b031a0edf4c28d32086/cmarkgfm-2024.1.14-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6565d5659d80d119733a407af70e5de7c04e0822fabb91db83688e0e280cc174", size = 125976 }, + { url = "https://files.pythonhosted.org/packages/4f/e2/6ccf5b916ab7b5df1f4472302f65f9daa466eb7d22d2477caed27ee13b0d/cmarkgfm-2024.1.14-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:43db622d57e81dce30dcbea3a0198588080559473e5bafb68e10959dbf0a3d0f", size = 124119 }, + { url = "https://files.pythonhosted.org/packages/0f/29/12a8322342e22c28bce794c3595e27628ad980eb5c22073723abdf117b0f/cmarkgfm-2024.1.14-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:26d39c10b816392a3b54a9a7ba7ce894c40fee2813ac71554c424d6762c28ee6", size = 439522 }, + { url = "https://files.pythonhosted.org/packages/48/7e/eafb45c243f27dcaafee942125e50ab344db7d848a8d7d6de7b3c0b9aabf/cmarkgfm-2024.1.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bba56ccec5b980c9da003ac7449c0cbe8045e4e046d4ce51273a47d3a9b84b1a", size = 444816 }, + { url = "https://files.pythonhosted.org/packages/a8/86/3d6bf7ec4032a81b604c0037f048d3dd98a79feb608dea5fe8ed3d4a273f/cmarkgfm-2024.1.14-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c552ef80fe8c29d647c86ab49b8f66aa7626e7de9009e4005bd2120698667fa2", size = 417741 }, + { url = "https://files.pythonhosted.org/packages/2b/8c/030168b0ef780ad2b8e531ce3d8a77cc48981d2716ced83eae236379feec/cmarkgfm-2024.1.14-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ce0f76ea3d47d206913db8f7933076191be4d8871019095a4880885531586ab5", size = 429147 }, + { url = "https://files.pythonhosted.org/packages/ba/f6/e2efd2c713e6a81a38504a75a566cc3a1e09d588d5d6df60f9216aeb6469/cmarkgfm-2024.1.14-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:b0b5a3be0b76f2802f8f16c40d33f74ff68c0bca8860bd4b5252395181077534", size = 409160 }, + { url = "https://files.pythonhosted.org/packages/80/3f/8022efe3fe4f9fd8a9debeef37ded8b086cfe206e89a6aa169b3c81a896a/cmarkgfm-2024.1.14-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:70db301d140d1f0cabe58770aad8506a4bd7fa0e5b0fae78c8f9a80712d14857", size = 437775 }, + { url = "https://files.pythonhosted.org/packages/d5/8f/46c0fc7cf5c48929a3073d5843e77b638f3798710397bad234627c39c9d9/cmarkgfm-2024.1.14-cp311-cp311-win32.whl", hash = "sha256:3cdc34d749601ff74209580fb7c80b3cbf1112d2832af52c14387cb04831ff2b", size = 116834 }, + { url = "https://files.pythonhosted.org/packages/38/2c/abd3c6a3ed85d688f51135b35188a613f318cb1ab86bff43d284570d453b/cmarkgfm-2024.1.14-cp311-cp311-win_amd64.whl", hash = "sha256:8b8fd26ff27b9895f48459b8e556b9d6c4d255ac3735b3b2f8b14b9787ff6b89", size = 127303 }, + { url = "https://files.pythonhosted.org/packages/ef/40/6e7121dfd03ae1448f014c4ce777ebd991911e2a8db30a72cee8fc61e233/cmarkgfm-2024.1.14-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:eb595be70d86d1497826f80e3e04b46001b2b94bccc099619daea693923a88b3", size = 125988 }, + { url = "https://files.pythonhosted.org/packages/26/46/40036da661de8cc770cd8bd6299e8d949ab4ba8c5a97f0d690dc7794c5c4/cmarkgfm-2024.1.14-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a8c929836caf96c4fb7fd5e7f9efe6fbb6aa57f9dfae543f74f10b55d5a92b56", size = 124162 }, + { url = "https://files.pythonhosted.org/packages/8c/4b/98540e11b4caaaef84a12abbcfd1ea4eb932fed2a34df51628544cd385e5/cmarkgfm-2024.1.14-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:07b83ae8de9a397629b4dbe4f190e8edc87b2b94548fbc644ed006a5cc94d959", size = 440062 }, + { url = "https://files.pythonhosted.org/packages/35/e8/842f3ead6874a7e7c541dbf4fd8e1692e5c0de2f90f1e0bd4b01a0911504/cmarkgfm-2024.1.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5a922846197ac9452cca8aaa9c4b5e56b215299d067e704df9c56c8d87463335", size = 445357 }, + { url = "https://files.pythonhosted.org/packages/a7/3d/7abf18be2c92dd762ce79032de2301d91c34b640f2991c4103d9b594ebe1/cmarkgfm-2024.1.14-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:53ccf3d184080f8626264f49866df4ead90685f4d5a3d5d01ffba7f50fd15512", size = 418349 }, + { url = "https://files.pythonhosted.org/packages/51/94/a5347feedee8b3f4323f8f416797f6d4580f4e992a6cecf151162b34b5df/cmarkgfm-2024.1.14-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:a9bd82bac3673a0848fa09512ae61059943462ce824944faaeadc727068d9e19", size = 429812 }, + { url = "https://files.pythonhosted.org/packages/b2/ec/3712d98dddf746e5bff1271b9460b765935a3387cc3d2d677cce34a66a15/cmarkgfm-2024.1.14-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:1f530595c5fbd92c248576ce43771bd07289c1d42623422d669e20ddb545d41b", size = 409850 }, + { url = "https://files.pythonhosted.org/packages/80/63/4207931a850f4cb17fc768e0adfa4933ada3e6330de393b46e0deeb2eb06/cmarkgfm-2024.1.14-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2196871b8f42dea9d85e1a3c1bcb5e05758946874441ec3f7226d80881284e32", size = 438592 }, + { url = "https://files.pythonhosted.org/packages/dc/fc/fb5a0fa00cec6552eedc053ed0a6850f7cab6c9ae6327af7d55a33e0d753/cmarkgfm-2024.1.14-cp312-cp312-win32.whl", hash = "sha256:7de3d8bfc64168419a6d1edb223616ac6f54b67e20e4b6b70f3ae659fd3f3f31", size = 116841 }, + { url = "https://files.pythonhosted.org/packages/58/21/ca6817890a35c7952da6683fc2a940196857cbb1a38def3f47d8f6978a91/cmarkgfm-2024.1.14-cp312-cp312-win_amd64.whl", hash = "sha256:ded64f663955f852d8965b40ab47718461df6d42d12719264b09a23d33b8d38f", size = 127343 }, +] + +[[package]] +name = "colorama" +version = "0.4.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335 }, +] + +[[package]] +name = "configobj" +version = "5.0.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cb/87/17d4c6d634c044ab08b11c0cd2a8a136d103713d438f8792d7be2c5148fb/configobj-5.0.8.tar.gz", hash = "sha256:6f704434a07dc4f4dc7c9a745172c1cad449feb548febd9f7fe362629c627a97", size = 38012 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d3/bb/d10e531b297dd1d46f6b1fd11d018247af9f2d460037554bb7bb9011c6ac/configobj-5.0.8-py2.py3-none-any.whl", hash = "sha256:a7a8c6ab7daade85c3f329931a807c8aee750a2494363934f8ea84d8a54c87ea", size = 36180 }, +] + +[[package]] +name = "coverage" +version = "7.6.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f7/08/7e37f82e4d1aead42a7443ff06a1e406aabf7302c4f00a546e4b320b994c/coverage-7.6.1.tar.gz", hash = "sha256:953510dfb7b12ab69d20135a0662397f077c59b1e6379a768e97c59d852ee51d", size = 798791 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ad/5f/67af7d60d7e8ce61a4e2ddcd1bd5fb787180c8d0ae0fbd073f903b3dd95d/coverage-7.6.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:7dea0889685db8550f839fa202744652e87c60015029ce3f60e006f8c4462c93", size = 206796 }, + { url = "https://files.pythonhosted.org/packages/e1/0e/e52332389e057daa2e03be1fbfef25bb4d626b37d12ed42ae6281d0a274c/coverage-7.6.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ed37bd3c3b063412f7620464a9ac1314d33100329f39799255fb8d3027da50d3", size = 207244 }, + { url = "https://files.pythonhosted.org/packages/aa/cd/766b45fb6e090f20f8927d9c7cb34237d41c73a939358bc881883fd3a40d/coverage-7.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d85f5e9a5f8b73e2350097c3756ef7e785f55bd71205defa0bfdaf96c31616ff", size = 239279 }, + { url = "https://files.pythonhosted.org/packages/70/6c/a9ccd6fe50ddaf13442a1e2dd519ca805cbe0f1fcd377fba6d8339b98ccb/coverage-7.6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bc572be474cafb617672c43fe989d6e48d3c83af02ce8de73fff1c6bb3c198d", size = 236859 }, + { url = "https://files.pythonhosted.org/packages/14/6f/8351b465febb4dbc1ca9929505202db909c5a635c6fdf33e089bbc3d7d85/coverage-7.6.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c0420b573964c760df9e9e86d1a9a622d0d27f417e1a949a8a66dd7bcee7bc6", size = 238549 }, + { url = "https://files.pythonhosted.org/packages/68/3c/289b81fa18ad72138e6d78c4c11a82b5378a312c0e467e2f6b495c260907/coverage-7.6.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1f4aa8219db826ce6be7099d559f8ec311549bfc4046f7f9fe9b5cea5c581c56", size = 237477 }, + { url = "https://files.pythonhosted.org/packages/ed/1c/aa1efa6459d822bd72c4abc0b9418cf268de3f60eeccd65dc4988553bd8d/coverage-7.6.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:fc5a77d0c516700ebad189b587de289a20a78324bc54baee03dd486f0855d234", size = 236134 }, + { url = "https://files.pythonhosted.org/packages/fb/c8/521c698f2d2796565fe9c789c2ee1ccdae610b3aa20b9b2ef980cc253640/coverage-7.6.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b48f312cca9621272ae49008c7f613337c53fadca647d6384cc129d2996d1133", size = 236910 }, + { url = "https://files.pythonhosted.org/packages/7d/30/033e663399ff17dca90d793ee8a2ea2890e7fdf085da58d82468b4220bf7/coverage-7.6.1-cp311-cp311-win32.whl", hash = "sha256:1125ca0e5fd475cbbba3bb67ae20bd2c23a98fac4e32412883f9bcbaa81c314c", size = 209348 }, + { url = "https://files.pythonhosted.org/packages/20/05/0d1ccbb52727ccdadaa3ff37e4d2dc1cd4d47f0c3df9eb58d9ec8508ca88/coverage-7.6.1-cp311-cp311-win_amd64.whl", hash = "sha256:8ae539519c4c040c5ffd0632784e21b2f03fc1340752af711f33e5be83a9d6c6", size = 210230 }, + { url = "https://files.pythonhosted.org/packages/7e/d4/300fc921dff243cd518c7db3a4c614b7e4b2431b0d1145c1e274fd99bd70/coverage-7.6.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:95cae0efeb032af8458fc27d191f85d1717b1d4e49f7cb226cf526ff28179778", size = 206983 }, + { url = "https://files.pythonhosted.org/packages/e1/ab/6bf00de5327ecb8db205f9ae596885417a31535eeda6e7b99463108782e1/coverage-7.6.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5621a9175cf9d0b0c84c2ef2b12e9f5f5071357c4d2ea6ca1cf01814f45d2391", size = 207221 }, + { url = "https://files.pythonhosted.org/packages/92/8f/2ead05e735022d1a7f3a0a683ac7f737de14850395a826192f0288703472/coverage-7.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:260933720fdcd75340e7dbe9060655aff3af1f0c5d20f46b57f262ab6c86a5e8", size = 240342 }, + { url = "https://files.pythonhosted.org/packages/0f/ef/94043e478201ffa85b8ae2d2c79b4081e5a1b73438aafafccf3e9bafb6b5/coverage-7.6.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07e2ca0ad381b91350c0ed49d52699b625aab2b44b65e1b4e02fa9df0e92ad2d", size = 237371 }, + { url = "https://files.pythonhosted.org/packages/1f/0f/c890339dd605f3ebc269543247bdd43b703cce6825b5ed42ff5f2d6122c7/coverage-7.6.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c44fee9975f04b33331cb8eb272827111efc8930cfd582e0320613263ca849ca", size = 239455 }, + { url = "https://files.pythonhosted.org/packages/d1/04/7fd7b39ec7372a04efb0f70c70e35857a99b6a9188b5205efb4c77d6a57a/coverage-7.6.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:877abb17e6339d96bf08e7a622d05095e72b71f8afd8a9fefc82cf30ed944163", size = 238924 }, + { url = "https://files.pythonhosted.org/packages/ed/bf/73ce346a9d32a09cf369f14d2a06651329c984e106f5992c89579d25b27e/coverage-7.6.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:3e0cadcf6733c09154b461f1ca72d5416635e5e4ec4e536192180d34ec160f8a", size = 237252 }, + { url = "https://files.pythonhosted.org/packages/86/74/1dc7a20969725e917b1e07fe71a955eb34bc606b938316bcc799f228374b/coverage-7.6.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c3c02d12f837d9683e5ab2f3d9844dc57655b92c74e286c262e0fc54213c216d", size = 238897 }, + { url = "https://files.pythonhosted.org/packages/b6/e9/d9cc3deceb361c491b81005c668578b0dfa51eed02cd081620e9a62f24ec/coverage-7.6.1-cp312-cp312-win32.whl", hash = "sha256:e05882b70b87a18d937ca6768ff33cc3f72847cbc4de4491c8e73880766718e5", size = 209606 }, + { url = "https://files.pythonhosted.org/packages/47/c8/5a2e41922ea6740f77d555c4d47544acd7dc3f251fe14199c09c0f5958d3/coverage-7.6.1-cp312-cp312-win_amd64.whl", hash = "sha256:b5d7b556859dd85f3a541db6a4e0167b86e7273e1cdc973e5b175166bb634fdb", size = 210373 }, + { url = "https://files.pythonhosted.org/packages/8c/f9/9aa4dfb751cb01c949c990d136a0f92027fbcc5781c6e921df1cb1563f20/coverage-7.6.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a4acd025ecc06185ba2b801f2de85546e0b8ac787cf9d3b06e7e2a69f925b106", size = 207007 }, + { url = "https://files.pythonhosted.org/packages/b9/67/e1413d5a8591622a46dd04ff80873b04c849268831ed5c304c16433e7e30/coverage-7.6.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a6d3adcf24b624a7b778533480e32434a39ad8fa30c315208f6d3e5542aeb6e9", size = 207269 }, + { url = "https://files.pythonhosted.org/packages/14/5b/9dec847b305e44a5634d0fb8498d135ab1d88330482b74065fcec0622224/coverage-7.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d0c212c49b6c10e6951362f7c6df3329f04c2b1c28499563d4035d964ab8e08c", size = 239886 }, + { url = "https://files.pythonhosted.org/packages/7b/b7/35760a67c168e29f454928f51f970342d23cf75a2bb0323e0f07334c85f3/coverage-7.6.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6e81d7a3e58882450ec4186ca59a3f20a5d4440f25b1cff6f0902ad890e6748a", size = 237037 }, + { url = "https://files.pythonhosted.org/packages/f7/95/d2fd31f1d638df806cae59d7daea5abf2b15b5234016a5ebb502c2f3f7ee/coverage-7.6.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78b260de9790fd81e69401c2dc8b17da47c8038176a79092a89cb2b7d945d060", size = 239038 }, + { url = "https://files.pythonhosted.org/packages/6e/bd/110689ff5752b67924efd5e2aedf5190cbbe245fc81b8dec1abaffba619d/coverage-7.6.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a78d169acd38300060b28d600344a803628c3fd585c912cacc9ea8790fe96862", size = 238690 }, + { url = "https://files.pythonhosted.org/packages/d3/a8/08d7b38e6ff8df52331c83130d0ab92d9c9a8b5462f9e99c9f051a4ae206/coverage-7.6.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:2c09f4ce52cb99dd7505cd0fc8e0e37c77b87f46bc9c1eb03fe3bc9991085388", size = 236765 }, + { url = "https://files.pythonhosted.org/packages/d6/6a/9cf96839d3147d55ae713eb2d877f4d777e7dc5ba2bce227167d0118dfe8/coverage-7.6.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6878ef48d4227aace338d88c48738a4258213cd7b74fd9a3d4d7582bb1d8a155", size = 238611 }, + { url = "https://files.pythonhosted.org/packages/74/e4/7ff20d6a0b59eeaab40b3140a71e38cf52547ba21dbcf1d79c5a32bba61b/coverage-7.6.1-cp313-cp313-win32.whl", hash = "sha256:44df346d5215a8c0e360307d46ffaabe0f5d3502c8a1cefd700b34baf31d411a", size = 209671 }, + { url = "https://files.pythonhosted.org/packages/35/59/1812f08a85b57c9fdb6d0b383d779e47b6f643bc278ed682859512517e83/coverage-7.6.1-cp313-cp313-win_amd64.whl", hash = "sha256:8284cf8c0dd272a247bc154eb6c95548722dce90d098c17a883ed36e67cdb129", size = 210368 }, + { url = "https://files.pythonhosted.org/packages/9c/15/08913be1c59d7562a3e39fce20661a98c0a3f59d5754312899acc6cb8a2d/coverage-7.6.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:d3296782ca4eab572a1a4eca686d8bfb00226300dcefdf43faa25b5242ab8a3e", size = 207758 }, + { url = "https://files.pythonhosted.org/packages/c4/ae/b5d58dff26cade02ada6ca612a76447acd69dccdbb3a478e9e088eb3d4b9/coverage-7.6.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:502753043567491d3ff6d08629270127e0c31d4184c4c8d98f92c26f65019962", size = 208035 }, + { url = "https://files.pythonhosted.org/packages/b8/d7/62095e355ec0613b08dfb19206ce3033a0eedb6f4a67af5ed267a8800642/coverage-7.6.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6a89ecca80709d4076b95f89f308544ec8f7b4727e8a547913a35f16717856cb", size = 250839 }, + { url = "https://files.pythonhosted.org/packages/7c/1e/c2967cb7991b112ba3766df0d9c21de46b476d103e32bb401b1b2adf3380/coverage-7.6.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a318d68e92e80af8b00fa99609796fdbcdfef3629c77c6283566c6f02c6d6704", size = 246569 }, + { url = "https://files.pythonhosted.org/packages/8b/61/a7a6a55dd266007ed3b1df7a3386a0d760d014542d72f7c2c6938483b7bd/coverage-7.6.1-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13b0a73a0896988f053e4fbb7de6d93388e6dd292b0d87ee51d106f2c11b465b", size = 248927 }, + { url = "https://files.pythonhosted.org/packages/c8/fa/13a6f56d72b429f56ef612eb3bc5ce1b75b7ee12864b3bd12526ab794847/coverage-7.6.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:4421712dbfc5562150f7554f13dde997a2e932a6b5f352edcce948a815efee6f", size = 248401 }, + { url = "https://files.pythonhosted.org/packages/75/06/0429c652aa0fb761fc60e8c6b291338c9173c6aa0f4e40e1902345b42830/coverage-7.6.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:166811d20dfea725e2e4baa71fffd6c968a958577848d2131f39b60043400223", size = 246301 }, + { url = "https://files.pythonhosted.org/packages/52/76/1766bb8b803a88f93c3a2d07e30ffa359467810e5cbc68e375ebe6906efb/coverage-7.6.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:225667980479a17db1048cb2bf8bfb39b8e5be8f164b8f6628b64f78a72cf9d3", size = 247598 }, + { url = "https://files.pythonhosted.org/packages/66/8b/f54f8db2ae17188be9566e8166ac6df105c1c611e25da755738025708d54/coverage-7.6.1-cp313-cp313t-win32.whl", hash = "sha256:170d444ab405852903b7d04ea9ae9b98f98ab6d7e63e1115e82620807519797f", size = 210307 }, + { url = "https://files.pythonhosted.org/packages/9f/b0/e0dca6da9170aefc07515cce067b97178cefafb512d00a87a1c717d2efd5/coverage-7.6.1-cp313-cp313t-win_amd64.whl", hash = "sha256:b9f222de8cded79c49bf184bdbc06630d4c58eec9459b939b4a690c82ed05657", size = 211453 }, +] + +[[package]] +name = "cryptography" +version = "43.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi", marker = "platform_python_implementation != 'PyPy'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/69/ec/9fb9dcf4f91f0e5e76de597256c43eedefd8423aa59be95c70c4c3db426a/cryptography-43.0.0.tar.gz", hash = "sha256:b88075ada2d51aa9f18283532c9f60e72170041bba88d7f37e49cbb10275299e", size = 686873 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d3/46/dcd2eb6840b9452e7fbc52720f3dc54a85eb41e68414733379e8f98e3275/cryptography-43.0.0-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:64c3f16e2a4fc51c0d06af28441881f98c5d91009b8caaff40cf3548089e9c74", size = 6239718 }, + { url = "https://files.pythonhosted.org/packages/e8/23/b0713319edff1d8633775b354f8b34a476e4dd5f4cd4b91e488baec3361a/cryptography-43.0.0-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3dcdedae5c7710b9f97ac6bba7e1052b95c7083c9d0e9df96e02a1932e777895", size = 3808466 }, + { url = "https://files.pythonhosted.org/packages/77/9d/0b98c73cebfd41e4fb0439fe9ce08022e8d059f51caa7afc8934fc1edcd9/cryptography-43.0.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3d9a1eca329405219b605fac09ecfc09ac09e595d6def650a437523fcd08dd22", size = 3998060 }, + { url = "https://files.pythonhosted.org/packages/ae/71/e073795d0d1624847f323481f7d84855f699172a632aa37646464b0e1712/cryptography-43.0.0-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:ea9e57f8ea880eeea38ab5abf9fbe39f923544d7884228ec67d666abd60f5a47", size = 3792596 }, + { url = "https://files.pythonhosted.org/packages/83/25/439a8ddd8058e7f898b7d27c36f94b66c8c8a2d60e1855d725845f4be0bc/cryptography-43.0.0-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:9a8d6802e0825767476f62aafed40532bd435e8a5f7d23bd8b4f5fd04cc80ecf", size = 4008355 }, + { url = "https://files.pythonhosted.org/packages/c7/a2/1607f1295eb2c30fcf2c07d7fd0c3772d21dcdb827de2b2730b02df0af51/cryptography-43.0.0-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:cc70b4b581f28d0a254d006f26949245e3657d40d8857066c2ae22a61222ef55", size = 3899133 }, + { url = "https://files.pythonhosted.org/packages/5e/64/f41f42ddc9c583737c9df0093affb92c61de7d5b0d299bf644524afe31c1/cryptography-43.0.0-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:4a997df8c1c2aae1e1e5ac49c2e4f610ad037fc5a3aadc7b64e39dea42249431", size = 4096946 }, + { url = "https://files.pythonhosted.org/packages/cd/cd/d165adcf3e707d6a049d44ade6ca89973549bed0ab3686fa49efdeefea53/cryptography-43.0.0-cp37-abi3-win32.whl", hash = "sha256:6e2b11c55d260d03a8cf29ac9b5e0608d35f08077d8c087be96287f43af3ccdc", size = 2616826 }, + { url = "https://files.pythonhosted.org/packages/f9/b7/38924229e84c41b0e88d7a5eed8a29d05a44364f85fbb9ddb3984b746fd2/cryptography-43.0.0-cp37-abi3-win_amd64.whl", hash = "sha256:31e44a986ceccec3d0498e16f3d27b2ee5fdf69ce2ab89b52eaad1d2f33d8778", size = 3078700 }, + { url = "https://files.pythonhosted.org/packages/66/d7/397515233e6a861f921bd0365b162b38e0cc513fcf4f1bdd9cc7bc5a3384/cryptography-43.0.0-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:7b3f5fe74a5ca32d4d0f302ffe6680fcc5c28f8ef0dc0ae8f40c0f3a1b4fca66", size = 6242814 }, + { url = "https://files.pythonhosted.org/packages/58/aa/99b2c00a4f54c60d210d6d1759c720ecf28305aa32d6fb1bb1853f415be6/cryptography-43.0.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac1955ce000cb29ab40def14fd1bbfa7af2017cca696ee696925615cafd0dce5", size = 3809467 }, + { url = "https://files.pythonhosted.org/packages/76/eb/ab783b47b3b9b55371b4361c7ec695144bde1a3343ff2b7a8c1d8fe617bb/cryptography-43.0.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:299d3da8e00b7e2b54bb02ef58d73cd5f55fb31f33ebbf33bd00d9aa6807df7e", size = 3998617 }, + { url = "https://files.pythonhosted.org/packages/a3/62/62770f34290ebb1b6542bd3f13b3b102875b90aed4804e296f8d2a5ac6d7/cryptography-43.0.0-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:ee0c405832ade84d4de74b9029bedb7b31200600fa524d218fc29bfa371e97f5", size = 3794003 }, + { url = "https://files.pythonhosted.org/packages/0f/6c/b42660b3075ff543065b2c1c5a3d9bedaadcff8ebce2ee981be2babc2934/cryptography-43.0.0-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:cb013933d4c127349b3948aa8aaf2f12c0353ad0eccd715ca789c8a0f671646f", size = 4008774 }, + { url = "https://files.pythonhosted.org/packages/f7/74/028cea86db9315ba3f991e307adabf9f0aa15067011137c38b2fb2aa16eb/cryptography-43.0.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:fdcb265de28585de5b859ae13e3846a8e805268a823a12a4da2597f1f5afc9f0", size = 3900098 }, + { url = "https://files.pythonhosted.org/packages/bd/f6/e4387edb55563e2546028ba4c634522fe727693d3cdd9ec0ecacedc75411/cryptography-43.0.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:2905ccf93a8a2a416f3ec01b1a7911c3fe4073ef35640e7ee5296754e30b762b", size = 4096867 }, + { url = "https://files.pythonhosted.org/packages/ce/61/55560405e75432bdd9f6cf72fa516cab623b83a3f6d230791bc8fc4afeee/cryptography-43.0.0-cp39-abi3-win32.whl", hash = "sha256:47ca71115e545954e6c1d207dd13461ab81f4eccfcb1345eac874828b5e3eaaf", size = 2616481 }, + { url = "https://files.pythonhosted.org/packages/e6/3d/696e7a0f04555c58a2813d47aaa78cb5ba863c1f453c74a4f45ae772b054/cryptography-43.0.0-cp39-abi3-win_amd64.whl", hash = "sha256:0663585d02f76929792470451a5ba64424acc3cd5227b03921dab0e2f27b1709", size = 3081462 }, +] + +[[package]] +name = "cssselect" +version = "1.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d1/91/d51202cc41fbfca7fa332f43a5adac4b253962588c7cc5a54824b019081c/cssselect-1.2.0.tar.gz", hash = "sha256:666b19839cfaddb9ce9d36bfe4c969132c647b92fc9088c4e23f786b30f1b3dc", size = 41423 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/06/a9/2da08717a6862c48f1d61ef957a7bba171e7eefa6c0aa0ceb96a140c2a6b/cssselect-1.2.0-py2.py3-none-any.whl", hash = "sha256:da1885f0c10b60c03ed5eccbb6b68d6eff248d91976fcde348f395d54c9fd35e", size = 18687 }, +] + +[[package]] +name = "cssselect2" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "tinycss2", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "webencodings", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e7/fc/326cb6f988905998f09bb54a3f5d98d4462ba119363c0dfad29750d48c09/cssselect2-0.7.0.tar.gz", hash = "sha256:1ccd984dab89fc68955043aca4e1b03e0cf29cad9880f6e28e3ba7a74b14aa5a", size = 35888 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9d/3a/e39436efe51894243ff145a37c4f9a030839b97779ebcc4f13b3ba21c54e/cssselect2-0.7.0-py3-none-any.whl", hash = "sha256:fd23a65bfd444595913f02fc71f6b286c29261e354c41d722ca7a261a49b5969", size = 15586 }, +] + +[[package]] +name = "cssutils" +version = "2.11.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "more-itertools", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/33/9f/329d26121fe165be44b1dfff21aa0dc348f04633931f1d20ed6cf448a236/cssutils-2.11.1.tar.gz", hash = "sha256:0563a76513b6af6eebbe788c3bf3d01c920e46b3f90c8416738c5cfc773ff8e2", size = 711657 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/ec/bb273b7208c606890dc36540fe667d06ce840a6f62f9fae7e658fcdc90fb/cssutils-2.11.1-py3-none-any.whl", hash = "sha256:a67bfdfdff4f3867fab43698ec4897c1a828eca5973f4073321b3bccaf1199b1", size = 385747 }, +] + +[[package]] +name = "curlylint" +version = "0.13.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "click", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "parsy", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pathspec", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "toml", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/75/0a/0279da0b7d28614e0dd4aa5e9fcdb79edb73b59b6175aa6058fa4b479d81/curlylint-0.13.1.tar.gz", hash = "sha256:008b9d160f3920404ac12efb05c0a39e209cb972f9aafd956b79c5f4e2162752", size = 35291 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/63/17/151703ae3694f94fdf70814c09092d1a44813839f68a06fc15ddce57039f/curlylint-0.13.1-py3-none-any.whl", hash = "sha256:9546ea82cdfc9292fd6fe49dca28587164bd315782a209c0a46e013d7f38d2fa", size = 51961 }, +] + +[[package]] +name = "datadog" +version = "0.49.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "requests", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/24/d4/fcf0894ebeac76698076f224e566b65f6be218d673ef4b5570728c5ce157/datadog-0.49.1.tar.gz", hash = "sha256:4cb7a7991af6cadb868fe450cd456473e65f11fc678b7d7cf61044ff1c6074d8", size = 345833 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1b/98/35e3588a74bde57a6ac0f581cca9536278abd38c081c8601b8183906dd7b/datadog-0.49.1-py2.py3-none-any.whl", hash = "sha256:4a56d57490ea699a0dfd9253547485a57b4120e93489defadcf95c66272374d6", size = 116891 }, +] + +[[package]] +name = "ddsketch" +version = "3.0.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b8/c7/25f300ba359c7e723180ce962a30e1f820c3990e3f3e8bbed16ae9387cab/ddsketch-3.0.1.tar.gz", hash = "sha256:aa8f20b2965e61731ca4fee2ca9c209f397f5bbb23f9d192ec8bd7a2f5bd9824", size = 30010 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ac/da/c821e4958c8df43ded1a92aaca678d89ec8b7a4df5bb561ef25354be1912/ddsketch-3.0.1-py3-none-any.whl", hash = "sha256:6d047b455fe2837c43d366ff1ae6ba0c3166e15499de8688437a75cea914224e", size = 19113 }, +] + +[[package]] +name = "ddtrace" +version = "2.8.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "bytecode" }, + { name = "cattrs", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "ddsketch", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "envier", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "opentelemetry-api", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "protobuf", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "setuptools", marker = "python_version >= '3.12'" }, + { name = "six", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "sqlparse", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "typing-extensions", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "xmltodict", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a8/98/7846fce1b0de751c88b97a1273a5bd72d67312d6fffc536cc1e7a8226453/ddtrace-2.8.5.tar.gz", hash = "sha256:11e055acbc9de6d0d2fa26d9ca97a0256ede9ff36199419bce23837764c84559", size = 6981904 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/19/08/cd2f78551814e1d3b8e49d3ed4274b7b080b85848860b2d8d2e1d6c75e7f/ddtrace-2.8.5-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:da94a1752032ab805bccb4878fdda671719f13c541cfca004aedd9b99c92ccfd", size = 3355729 }, + { url = "https://files.pythonhosted.org/packages/c8/1a/d942d867c9363d04508a6da604c867b2f2d897663926759f271f43756d38/ddtrace-2.8.5-cp311-cp311-macosx_11_0_x86_64.whl", hash = "sha256:f15d799e3e7c3055cdb8e4b4bdf5f9c137893e0e04ff6b430d0f663bb48dd176", size = 2301958 }, + { url = "https://files.pythonhosted.org/packages/53/8d/d1be6c8d73cfd82296d69d08d5d880321f909615bcf8f4f7d1450cd2e977/ddtrace-2.8.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:376ac38cd9de471842a5b395005deed1d7ca7448b7dd66402bf108598c996e0d", size = 4079830 }, + { url = "https://files.pythonhosted.org/packages/df/e2/f0ff260935b485a83d557f7e0f378a83c337c04e0fd40de093730f53b299/ddtrace-2.8.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:77be9629d7123636a7559bf49bc3a9255febcea22685214c441ace28d3bf1e6b", size = 2153720 }, + { url = "https://files.pythonhosted.org/packages/e2/88/c4a5044c69e929cfdeaf7d615a7f51d513ea74646ddaa5f5c17cb471e693/ddtrace-2.8.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b92b8e0dab9444a79c7afa4253e88e1948ac51267deb354251fb2ee64c0659f1", size = 4297327 }, + { url = "https://files.pythonhosted.org/packages/bf/b3/4544e753219a078763d1bb2f832e72f0872eb47579a28fabdc01ccaaaf93/ddtrace-2.8.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:33c5a3e7c3fe82be8316b7264bca45627cc105c9b8f72eef6b6cf9dea6102ca1", size = 4537526 }, + { url = "https://files.pythonhosted.org/packages/f6/aa/07f5a1de9094b959334d726edbc9667e9c9acb951cd74041b1a0e6b82e2e/ddtrace-2.8.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:521c0d6c972d51a887415cccf6c8ad49761fc7ce7af4f70794648429c9aa6ea8", size = 2723996 }, + { url = "https://files.pythonhosted.org/packages/0b/f0/a952b451bc1933149683ff1418fa60e6896d975451e9175bb90c6cd89cfe/ddtrace-2.8.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:7360f43edec29f5ded3b9f3eb3b549997fb84484b9f3f33bb97a37dfd13266a0", size = 4759867 }, + { url = "https://files.pythonhosted.org/packages/47/26/a7a1fb6e58eb3b1a3bd8d3a8eb33688072494cd97a710126e41024deeff3/ddtrace-2.8.5-cp311-cp311-win32.whl", hash = "sha256:b40194643b21159910bd52f041597aee8d594d5450feb16ffb1ac0bd51016eb7", size = 2416751 }, + { url = "https://files.pythonhosted.org/packages/81/09/57ffd7ca8f0781c7adc3ba9f01684db3c46eff7df2b1d0fc71f3ca21f3bd/ddtrace-2.8.5-cp311-cp311-win_amd64.whl", hash = "sha256:6c45f818c08eab1c6898ea8263422cf19e2425bf725e1843c094c5628baac589", size = 2608052 }, + { url = "https://files.pythonhosted.org/packages/f8/bd/7e2b58a75d88a588ed90ebea2232fbc5dcc1f456fdb625a4afff5740c765/ddtrace-2.8.5-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:0cb3bc95ca4dae45531ad59d859712ccd52a465f19b0e03d3703e1c9fcec8614", size = 3330439 }, + { url = "https://files.pythonhosted.org/packages/21/a3/6a5dde0b7984fb36d1a4841b95e6f084990552fd1cc0ea03954015ac2561/ddtrace-2.8.5-cp312-cp312-macosx_11_0_x86_64.whl", hash = "sha256:51ef36d884cb508166c3699ec8fd01ac32749bea2e826953e697658697e351f4", size = 2284071 }, + { url = "https://files.pythonhosted.org/packages/d5/53/5f4d040752290232da5ba405109f96a9f14f2e3d9af24e648f80b66ce9d6/ddtrace-2.8.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c3af5070b6eda559555c68a92bdef2d8495208fff0a123601655ebc6a0ec6d02", size = 4050381 }, + { url = "https://files.pythonhosted.org/packages/03/9b/fe2b14afbaae25bf141f757c7172f4927ba796b616139384bbca24af1eb0/ddtrace-2.8.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7b7eb223d7c000daa69d7d82e36af254f8e49e154b4713d842b60b2d4cbc250c", size = 2124983 }, + { url = "https://files.pythonhosted.org/packages/46/c0/928626cdbe8b2018590425c35e4d1baf5721f689359d00276825cb9e4a03/ddtrace-2.8.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c16a77926332615c018c44591c93215b08aaddfd724bd84bfbee4efa8bfcf877", size = 4269674 }, + { url = "https://files.pythonhosted.org/packages/02/61/fb8f02a75e5e46009207a2192958482818cfd97253bc148678c1d97aa45e/ddtrace-2.8.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:bf61abef38d26e4e892fdf63493541290630038d78f8294dde81596ed7208858", size = 4514748 }, + { url = "https://files.pythonhosted.org/packages/eb/18/d1c5a003c7e155ea2eca80b1bf3fdb0b288d863e422ae22eac38f0fd137b/ddtrace-2.8.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:5ddebfcef09e84b9c6efa58036576347243946473a6db4f143f4b60d9f5e6b34", size = 2687084 }, + { url = "https://files.pythonhosted.org/packages/bb/e7/2a64a653d99be0cba738463c27f71e25729ca1088a348e10b2ad396b6348/ddtrace-2.8.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:901d47e455cb197ee12604a10b5d10ee74e0b56a5e0a50092e19a654976923dc", size = 4730816 }, + { url = "https://files.pythonhosted.org/packages/ed/2d/7e9f46d6f571e4da9c288a9e8531a4bd473fe6c147541d7ef38692428623/ddtrace-2.8.5-cp312-cp312-win32.whl", hash = "sha256:9ec3c24d1a7ea7e1ac5c8251d074b7c053e60f3060f335fb88e612fe35dbbe54", size = 2403283 }, + { url = "https://files.pythonhosted.org/packages/57/1f/a8e6cad33f567507f294f2b938a99e7fcd779cc3c7d42c2fbee64661daf4/ddtrace-2.8.5-cp312-cp312-win_amd64.whl", hash = "sha256:9430e3197f4e56cce4a2b0829faddf4c4efde6588fea66fb4aa3adc4946cae0c", size = 2598832 }, +] + +[[package]] +name = "defusedxml" +version = "0.7.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0f/d5/c66da9b79e5bdb124974bfe172b4daf3c984ebd9c2a06e2b8a4dc7331c72/defusedxml-0.7.1.tar.gz", hash = "sha256:1bb3032db185915b62d7c6209c5a8792be6a32ab2fedacc84e01b52c51aa3e69", size = 75520 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/07/6c/aa3f2f849e01cb6a001cd8554a88d4c77c5c1a31c95bdf1cf9301e6d9ef4/defusedxml-0.7.1-py2.py3-none-any.whl", hash = "sha256:a352e7e428770286cc899e2542b6cdaedb2b4953ff269a210103ec58f6198a61", size = 25604 }, +] + +[[package]] +name = "deprecated" +version = "1.2.14" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "wrapt", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/92/14/1e41f504a246fc224d2ac264c227975427a85caf37c3979979edb9b1b232/Deprecated-1.2.14.tar.gz", hash = "sha256:e5323eb936458dccc2582dc6f9c322c852a775a27065ff2b0c4970b9d53d01b3", size = 2974416 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/20/8d/778b7d51b981a96554f29136cd59ca7880bf58094338085bcf2a979a0e6a/Deprecated-1.2.14-py2.py3-none-any.whl", hash = "sha256:6fac8b097794a90302bdbb17b9b815e732d3c4720583ff1b198499d78470466c", size = 9561 }, +] + +[[package]] +name = "disposable-email-domains" +version = "0.0.104" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2c/a4/38068ec91dc5c4b7df7765a41264a1349e176723dd47e21fe533be76a82b/disposable_email_domains-0.0.104.tar.gz", hash = "sha256:53b097fed6d6961f75e16c041eaf1e9227409b56e3b113840fc7672905803520", size = 48634 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/08/e2/e656462fab0ed2aa86c6865204279cd72bdb212e54dc94510a0fea688fa5/disposable_email_domains-0.0.104-py2.py3-none-any.whl", hash = "sha256:17400a32a254f33c6f8b4785a8cad3ab61ccbf9fdff9d7a48bbfafb229929aea", size = 24904 }, +] + +[[package]] +name = "dnspython" +version = "2.6.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/37/7d/c871f55054e403fdfd6b8f65fd6d1c4e147ed100d3e9f9ba1fe695403939/dnspython-2.6.1.tar.gz", hash = "sha256:e8f0f9c23a7b7cb99ded64e6c3a6f3e701d78f50c55e002b839dea7225cff7cc", size = 332727 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/87/a1/8c5287991ddb8d3e4662f71356d9656d91ab3a36618c3dd11b280df0d255/dnspython-2.6.1-py3-none-any.whl", hash = "sha256:5ef3b9680161f6fa89daf8ad451b5f1a33b18ae8a1c6778cdf4b43f08c0a6e50", size = 307696 }, +] + +[[package]] +name = "doc8" +version = "1.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "docutils", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pygments", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "restructuredtext-lint", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "stevedore", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a1/b5/63a2f2ceba95be5cc15813fd310d560264e8662dbd7495669a1e26d59026/doc8-1.1.1.tar.gz", hash = "sha256:d97a93e8f5a2efc4713a0804657dedad83745cca4cd1d88de9186f77f9776004", size = 26514 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3e/68/2f230017092b5f166a6fa03d7dde4b209b33d18d294ad4b1abdadb1060a3/doc8-1.1.1-py3-none-any.whl", hash = "sha256:e493aa3f36820197c49f407583521bb76a0fde4fffbcd0e092be946ff95931ac", size = 25495 }, +] + +[[package]] +name = "docutils" +version = "0.20.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1f/53/a5da4f2c5739cf66290fac1431ee52aff6851c7c8ffd8264f13affd7bcdd/docutils-0.20.1.tar.gz", hash = "sha256:f08a4e276c3a1583a86dce3e34aba3fe04d02bba2dd51ed16106244e8a923e3b", size = 2058365 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/26/87/f238c0670b94533ac0353a4e2a1a771a0cc73277b88bff23d3ae35a256c1/docutils-0.20.1-py3-none-any.whl", hash = "sha256:96f387a2c5562db4476f09f13bbab2192e764cac08ebbf3a34a95d9b1e4a59d6", size = 572666 }, +] + +[[package]] +name = "dynaconf" +version = "3.1.9" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f0/0e/3c102db167de3e2bb3a36a680a89c27b9b08d9f856b2164cc1a03db96f1c/dynaconf-3.1.9.tar.gz", hash = "sha256:f435c9e5b0b4b1dddf5e17e60a1e4c91ae0e6275aa51522456e671a7be3380eb", size = 199235 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/48/7b/50059a4b56354801c34929a831130893faf838fd10d28c38d4dba8276568/dynaconf-3.1.9-py2.py3-none-any.whl", hash = "sha256:9eaaa6e64a4a64225f80cdad14379a37656b8f2dc607ab0fd949b75d479674cc", size = 202807 }, +] + +[package.optional-dependencies] +ini = [ + { name = "configobj", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] + +[[package]] +name = "elasticsearch" +version = "7.10.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "urllib3", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/65/6e/7d949d1801ae0ff84de0ed0ef3473bd061d0f26647282d632f2e65a05364/elasticsearch-7.10.1.tar.gz", hash = "sha256:a725dd923d349ca0652cf95d6ce23d952e2153740cf4ab6daf4a2d804feeed48", size = 215377 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/86/74/054342aa07121f7c82e30ae63e3f257a793a69ddc11c5065449252dcd8af/elasticsearch-7.10.1-py2.py3-none-any.whl", hash = "sha256:4ebd34fd223b31c99d9f3b6b6236d3ac18b3046191a37231e8235b06ae7db955", size = 322062 }, +] + +[[package]] +name = "elasticsearch-dsl" +version = "7.4.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "elasticsearch", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "python-dateutil", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "six", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0c/7d/dcd5493c707db180c5fc71f0d69b34b590418ee4fd1b06284df552926609/elasticsearch-dsl-7.4.1.tar.gz", hash = "sha256:07ee9c87dc28cc3cae2daa19401e1e18a172174ad9e5ca67938f752e3902a1d5", size = 56722 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7a/35/5be0558cb93b69d8da5235d0f9448b8fdaccb988b60c8e18f332632d3d9b/elasticsearch_dsl-7.4.1-py2.py3-none-any.whl", hash = "sha256:97f79239a252be7c4cce554c29e64695d7ef6a4828372316a5e5ff815e7a7498", size = 64110 }, +] + +[[package]] +name = "email-validator" +version = "2.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "dnspython", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "idna", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/48/ce/13508a1ec3f8bb981ae4ca79ea40384becc868bfae97fd1c942bb3a001b1/email_validator-2.2.0.tar.gz", hash = "sha256:cb690f344c617a714f22e66ae771445a1ceb46821152df8e165c5f9a364582b7", size = 48967 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d7/ee/bf0adb559ad3c786f12bcbc9296b3f5675f529199bef03e2df281fa1fadb/email_validator-2.2.0-py3-none-any.whl", hash = "sha256:561977c2d73ce3611850a06fa56b414621e0c8faa9d66f2611407d87465da631", size = 33521 }, +] + +[[package]] +name = "emoji" +version = "2.12.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1b/13/ae307086e7d761fb7fdb2e3439bdd4628b10b7b372639e33fac4e52cfbc2/emoji-2.12.1.tar.gz", hash = "sha256:4aa0488817691aa58d83764b6c209f8a27c0b3ab3f89d1b8dceca1a62e4973eb", size = 442019 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e6/90/20ad30babfa8f2b5ab46281d8e17bdfdbb3ac294cda14d525b9c2d958846/emoji-2.12.1-py3-none-any.whl", hash = "sha256:a00d62173bdadc2510967a381810101624a2f0986145b8da0cffa42e29430235", size = 431357 }, +] + +[[package]] +name = "envier" +version = "0.5.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1a/3e/49a0e2111173a259c96027e17a50361c474336aba04de6f834d816d18ec3/envier-0.5.2.tar.gz", hash = "sha256:4e7e398cb09a8dd360508ef7e12511a152355426d2544b8487a34dad27cc20ad", size = 9503 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/39/74/99f5d33b4ec2eed9d19d975ab61e3eeddc71c8780a3e46ec9e0f17095451/envier-0.5.2-py3-none-any.whl", hash = "sha256:65099cf3aa9b3b3b4b92db2f7d29e2910672e085b76f7e587d2167561a834add", size = 10050 }, +] + +[[package]] +name = "factory-boy" +version = "3.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "faker", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ec/02/30796763f5661ef0028e12f09b66757b2c8dd1ab783d6b7e6d834a404884/factory_boy-3.3.0.tar.gz", hash = "sha256:bc76d97d1a65bbd9842a6d722882098eb549ec8ee1081f9fb2e8ff29f0c300f1", size = 163604 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7d/37/69bc18ffa39ae7723b61ca0dde30130ea45f9127c129f084f5c6ca5d5dae/factory_boy-3.3.0-py2.py3-none-any.whl", hash = "sha256:a2cdbdb63228177aa4f1c52f4b6d83fab2b8623bf602c7dedd7eb83c0f69c04c", size = 36684 }, +] + +[[package]] +name = "faker" +version = "26.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "python-dateutil", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b2/c4/1c3ac64e86e92bb99fd4906d27e3a0d10bf14827df9f3e40243be58b3068/Faker-26.2.0.tar.gz", hash = "sha256:81768de19012147521140f0d8bf5353e501ac42c1065d25e0cac455d3615c0a7", size = 1764867 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ec/f7/fbee37e5854c9a3a204a9ad9245d17259428e2a953f19d7bcb428386e1eb/Faker-26.2.0-py3-none-any.whl", hash = "sha256:7b123090774deff5f2cd3eb92a84dcbbf1e163f30a6d07321b7852c11bfe6a75", size = 1802529 }, +] + +[[package]] +name = "filelock" +version = "3.15.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/08/dd/49e06f09b6645156550fb9aee9cc1e59aba7efbc972d665a1bd6ae0435d4/filelock-3.15.4.tar.gz", hash = "sha256:2207938cbc1844345cb01a5a95524dae30f0ce089eba5b00378295a17e3e90cb", size = 18007 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ae/f0/48285f0262fe47103a4a45972ed2f9b93e4c80b8fd609fa98da78b2a5706/filelock-3.15.4-py3-none-any.whl", hash = "sha256:6ca1fffae96225dab4c6eaf1c4f4f28cd2568d3ec2a44e15a08520504de468e7", size = 16159 }, +] + +[[package]] +name = "first" +version = "2.0.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b0/a2/78a4e6801fbd789c60888afb8e28ccbe629f9a25137bfafecb363db2fb53/first-2.0.2.tar.gz", hash = "sha256:ff285b08c55f8c97ce4ea7012743af2495c9f1291785f163722bd36f6af6d3bf", size = 6964 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/40/62/eda58db762d4845c971029becfecf6e85ad71c3bcba7d400598013a222a1/first-2.0.2-py2.py3-none-any.whl", hash = "sha256:8d8e46e115ea8ac652c76123c0865e3ff18372aef6f03c22809ceefcea9dec86", size = 5359 }, +] + +[[package]] +name = "flake8" +version = "7.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mccabe", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pycodestyle", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pyflakes", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/37/72/e8d66150c4fcace3c0a450466aa3480506ba2cae7b61e100a2613afc3907/flake8-7.1.1.tar.gz", hash = "sha256:049d058491e228e03e67b390f311bbf88fce2dbaa8fa673e7aea87b7198b8d38", size = 48054 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d9/42/65004373ac4617464f35ed15931b30d764f53cdd30cc78d5aea349c8c050/flake8-7.1.1-py2.py3-none-any.whl", hash = "sha256:597477df7860daa5aa0fdd84bf5208a043ab96b8e96ab708770ae0364dd03213", size = 57731 }, +] + +[[package]] +name = "forcediphttpsadapter" +version = "1.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "requests", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0e/95/3594efe6b53469b19b6200d67066e1f11b8f7442ca5b67a44dd17a6c4145/forcediphttpsadapter-1.1.0.tar.gz", hash = "sha256:0d224cf6e8e50eb788c9f5994a7afa6d389bac6dbe540b7dfd77a32590ad0153", size = 4794 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1b/df/e255d3d7ffabba7f6795940a1f9daca0c3dee88955f1535557fd39e4eb79/forcediphttpsadapter-1.1.0-py3-none-any.whl", hash = "sha256:5e7662ece61735585332d09b87d94fffe4752469d5c0d3feff48746e5d70744b", size = 4949 }, +] + +[[package]] +name = "freezegun" +version = "1.5.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "python-dateutil", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/2c/ef/722b8d71ddf4d48f25f6d78aa2533d505bf3eec000a7cacb8ccc8de61f2f/freezegun-1.5.1.tar.gz", hash = "sha256:b29dedfcda6d5e8e083ce71b2b542753ad48cfec44037b3fc79702e2980a89e9", size = 33697 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/51/0b/0d7fee5919bccc1fdc1c2a7528b98f65c6f69b223a3fd8f809918c142c36/freezegun-1.5.1-py3-none-any.whl", hash = "sha256:bf111d7138a8abe55ab48a71755673dbaa4ab87f4cff5634a4442dfec34c15f1", size = 17569 }, +] + +[[package]] +name = "furo" +version = "2024.8.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "beautifulsoup4", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pygments", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "sphinx", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "sphinx-basic-ng", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a0/e2/d351d69a9a9e4badb4a5be062c2d0e87bd9e6c23b5e57337fef14bef34c8/furo-2024.8.6.tar.gz", hash = "sha256:b63e4cee8abfc3136d3bc03a3d45a76a850bada4d6374d24c1716b0e01394a01", size = 1661506 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/27/48/e791a7ed487dbb9729ef32bb5d1af16693d8925f4366befef54119b2e576/furo-2024.8.6-py3-none-any.whl", hash = "sha256:6cd97c58b47813d3619e63e9081169880fbe331f0ca883c871ff1f3f11814f5c", size = 341333 }, +] + +[[package]] +name = "ghp-import" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "python-dateutil", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d9/29/d40217cbe2f6b1359e00c6c307bb3fc876ba74068cbab3dde77f03ca0dc4/ghp-import-2.1.0.tar.gz", hash = "sha256:9c535c4c61193c2df8871222567d7fd7e5014d835f97dc7b7439069e2413d343", size = 10943 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f7/ec/67fbef5d497f86283db54c22eec6f6140243aae73265799baaaa19cd17fb/ghp_import-2.1.0-py3-none-any.whl", hash = "sha256:8337dd7b50877f163d4c0289bc1f1c7f127550241988d568c1db512c4324a619", size = 11034 }, +] + +[[package]] +name = "gitdb" +version = "4.0.11" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "smmap", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/19/0d/bbb5b5ee188dec84647a4664f3e11b06ade2bde568dbd489d9d64adef8ed/gitdb-4.0.11.tar.gz", hash = "sha256:bf5421126136d6d0af55bc1e7c1af1c397a34f5b7bd79e776cd3e89785c2b04b", size = 394469 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fd/5b/8f0c4a5bb9fd491c277c21eff7ccae71b47d43c4446c9d0c6cff2fe8c2c4/gitdb-4.0.11-py3-none-any.whl", hash = "sha256:81a3407ddd2ee8df444cbacea00e2d038e40150acfa3001696fe0dcf1d3adfa4", size = 62721 }, +] + +[[package]] +name = "github-reserved-names" +version = "2023.9.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/92/ed/ccb123a24f9ebf146ab5d17fd541b315ed5de981f99dc04cff1993166ac4/github_reserved_names-2023.9.1.tar.gz", hash = "sha256:707551fd0521a74274c5d3e73810a10b3e72762e3c69a12e0d96f87ce64c845f", size = 7403 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/10/80/829f6bf0bf2d40967d9ea98023e6790ad2a6e7273365806e93e29f93a1d2/github_reserved_names-2023.9.1-py2.py3-none-any.whl", hash = "sha256:16bb1a8ff505dd082c7167670b4115b31c00b8ffa77e0c1b7676807117c0169a", size = 3981 }, +] + +[[package]] +name = "gitpython" +version = "3.1.43" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "gitdb", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b6/a1/106fd9fa2dd989b6fb36e5893961f82992cf676381707253e0bf93eb1662/GitPython-3.1.43.tar.gz", hash = "sha256:35f314a9f878467f5453cc1fee295c3e18e52f1b99f10f6cf5b1682e968a9e7c", size = 214149 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e9/bd/cc3a402a6439c15c3d4294333e13042b915bbeab54edc457c723931fed3f/GitPython-3.1.43-py3-none-any.whl", hash = "sha256:eec7ec56b92aad751f9912a73404bc02ba212a23adb2c7098ee668417051a1ff", size = 207337 }, +] + +[[package]] +name = "google-api-core" +version = "2.19.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "google-auth", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "googleapis-common-protos", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "proto-plus", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "protobuf", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "requests", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c2/41/42a127bf163d9bf1f21540a3bf41c69b231b88707d8d753680b8878201a6/google-api-core-2.19.1.tar.gz", hash = "sha256:f4695f1e3650b316a795108a76a1c416e6afb036199d1c1f1f110916df479ffd", size = 148925 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/44/99/daa3541e8ecd7d8b7907b714ba92126097a976b5b3dbabdb5febdcf08554/google_api_core-2.19.1-py3-none-any.whl", hash = "sha256:f12a9b8309b5e21d92483bbd47ce2c445861ec7d269ef6784ecc0ea8c1fa6125", size = 139384 }, +] + +[package.optional-dependencies] +grpc = [ + { name = "grpcio" }, + { name = "grpcio-status" }, +] + +[[package]] +name = "google-auth" +version = "2.33.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cachetools", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pyasn1-modules", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "rsa", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/28/4d/626b37c6bcc1f211aef23f47c49375072c0cb19148627d98c85e099acbc8/google_auth-2.33.0.tar.gz", hash = "sha256:d6a52342160d7290e334b4d47ba390767e4438ad0d45b7630774533e82655b95", size = 257157 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/60/57/0f37c6f35847e26b7bea7d5e4f069cf037fd792cf8b67206311761e7bb92/google_auth-2.33.0-py2.py3-none-any.whl", hash = "sha256:8eff47d0d4a34ab6265c50a106a3362de6a9975bb08998700e389f857e4d39df", size = 200537 }, +] + +[[package]] +name = "google-cloud-bigquery" +version = "3.25.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "google-api-core", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "google-api-core", extra = ["grpc"] }, + { name = "google-auth", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "google-cloud-core", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "google-resumable-media", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "packaging", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "python-dateutil", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "requests", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/39/07/d6f8c55f68d796a6a045cbb3c1783ed1c77ec641acbf9e6ff78b38b127a4/google-cloud-bigquery-3.25.0.tar.gz", hash = "sha256:5b2aff3205a854481117436836ae1403f11f2594e6810a98886afd57eda28509", size = 455186 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/81/98/2f931388614ea894640f84c1874d72d84d890c093e334a3990e363ff689e/google_cloud_bigquery-3.25.0-py2.py3-none-any.whl", hash = "sha256:7f0c371bc74d2a7fb74dacbc00ac0f90c8c2bec2289b51dd6685a275873b1ce9", size = 239012 }, +] + +[[package]] +name = "google-cloud-core" +version = "2.4.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "google-api-core", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "google-auth", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b8/1f/9d1e0ba6919668608570418a9a51e47070ac15aeff64261fb092d8be94c0/google-cloud-core-2.4.1.tar.gz", hash = "sha256:9b7749272a812bde58fff28868d0c5e2f585b82f37e09a1f6ed2d4d10f134073", size = 35587 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5e/0f/2e2061e3fbcb9d535d5da3f58cc8de4947df1786fe6a1355960feb05a681/google_cloud_core-2.4.1-py2.py3-none-any.whl", hash = "sha256:a9e6a4422b9ac5c29f79a0ede9485473338e2ce78d91f2370c01e730eab22e61", size = 29233 }, +] + +[[package]] +name = "google-cloud-storage" +version = "2.18.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "google-api-core", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "google-auth", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "google-cloud-core", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "google-crc32c", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "google-resumable-media", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "requests", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cc/14/579c9cd7b14475ca7ae93a11c565cd4b2053cdf5f37b465829be16a0c22e/google_cloud_storage-2.18.1.tar.gz", hash = "sha256:6707a6f30a05aee36faca81296419ca2907ac750af1c0457f278bc9a6fb219ad", size = 5532795 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a5/88/bce4149eb948a8b2ce286b5793e664bff2a6e01264f61517e2230e3a176a/google_cloud_storage-2.18.1-py2.py3-none-any.whl", hash = "sha256:9d8db6bde3a979cca7150511cd0e4cb363e5f69d31259d890ba1124fa109418c", size = 130461 }, +] + +[[package]] +name = "google-crc32c" +version = "1.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d3/a5/4bb58448fffd36ede39684044df93a396c13d1ea3516f585767f9f960352/google-crc32c-1.5.0.tar.gz", hash = "sha256:89284716bc6a5a415d4eaa11b1726d2d60a0cd12aadf5439828353662ede9dd7", size = 12689 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/69/0f/7f89ae2b22c55273110a44a7ed55a2948bc213fb58983093fbefcdfd2d13/google_crc32c-1.5.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:cae0274952c079886567f3f4f685bcaf5708f0a23a5f5216fdab71f81a6c0273", size = 32093 }, + { url = "https://files.pythonhosted.org/packages/41/3f/8141b03ad127fc569c3efda2bfe31d64665e02e2b8b7fbf7b25ea914c27a/google_crc32c-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1034d91442ead5a95b5aaef90dbfaca8633b0247d1e41621d1e9f9db88c36298", size = 30071 }, + { url = "https://files.pythonhosted.org/packages/fc/76/3ef124b893aa280e45e95d2346160f1d1d5c0ffc89d3f6e446c83116fb91/google_crc32c-1.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7c42c70cd1d362284289c6273adda4c6af8039a8ae12dc451dcd61cdabb8ab57", size = 32702 }, + { url = "https://files.pythonhosted.org/packages/fd/71/299a368347aeab3c89896cdfb67703161becbf5afbc1748a1850094828dc/google_crc32c-1.5.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8485b340a6a9e76c62a7dce3c98e5f102c9219f4cfbf896a00cf48caf078d438", size = 30041 }, + { url = "https://files.pythonhosted.org/packages/72/92/2a2fa23db7d0b0382accbdf09768c28f7c07fc8c354cdcf2f44a47f4314e/google_crc32c-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:77e2fd3057c9d78e225fa0a2160f96b64a824de17840351b26825b0848022906", size = 32317 }, + { url = "https://files.pythonhosted.org/packages/0f/99/e7e288f1b50baf4964ff39fa79d9259d004ae44db35c8280ff4ffea362d5/google_crc32c-1.5.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:f583edb943cf2e09c60441b910d6a20b4d9d626c75a36c8fcac01a6c96c01183", size = 570024 }, + { url = "https://files.pythonhosted.org/packages/88/ea/e53fbafcd0be2349d9c2a6912646cdfc47cfc5c22be9a8a5156552e33821/google_crc32c-1.5.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:a1fd716e7a01f8e717490fbe2e431d2905ab8aa598b9b12f8d10abebb36b04dd", size = 36047 }, + { url = "https://files.pythonhosted.org/packages/02/94/d2ea867760d5a27b3e9eb40ff31faf7f03f949e51d4e3b3ae24f759b5963/google_crc32c-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:72218785ce41b9cfd2fc1d6a017dc1ff7acfc4c17d01053265c41a2c0cc39b8c", size = 582541 }, + { url = "https://files.pythonhosted.org/packages/b7/09/768d2ca0c10a0765f83c6d06a5e40f3083cb75b8e7718ac22edff997aefc/google_crc32c-1.5.0-cp311-cp311-win32.whl", hash = "sha256:66741ef4ee08ea0b2cc3c86916ab66b6aef03768525627fd6a1b34968b4e3709", size = 23928 }, + { url = "https://files.pythonhosted.org/packages/ce/8b/02bf4765c487901c8660290ade9929d65a6151c367ba32e75d136ef2d0eb/google_crc32c-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:ba1eb1843304b1e5537e1fca632fa894d6f6deca8d6389636ee5b4797affb968", size = 27318 }, +] + +[[package]] +name = "google-resumable-media" +version = "2.7.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "google-crc32c", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/58/5a/0efdc02665dca14e0837b62c8a1a93132c264bd02054a15abb2218afe0ae/google_resumable_media-2.7.2.tar.gz", hash = "sha256:5280aed4629f2b60b847b0d42f9857fd4935c11af266744df33d8074cae92fe0", size = 2163099 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/82/35/b8d3baf8c46695858cb9d8835a53baa1eeb9906ddaf2f728a5f5b640fd1e/google_resumable_media-2.7.2-py2.py3-none-any.whl", hash = "sha256:3ce7551e9fe6d99e9a126101d2536612bb73486721951e9562fee0f90c6ababa", size = 81251 }, +] + +[[package]] +name = "googleapis-common-protos" +version = "1.63.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "protobuf", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0b/1a/41723ae380fa9c561cbe7b61c4eef9091d5fe95486465ccfc84845877331/googleapis-common-protos-1.63.2.tar.gz", hash = "sha256:27c5abdffc4911f28101e635de1533fb4cfd2c37fbaa9174587c799fac90aa87", size = 112890 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/02/48/87422ff1bddcae677fb6f58c97f5cfc613304a5e8ce2c3662760199c0a84/googleapis_common_protos-1.63.2-py2.py3-none-any.whl", hash = "sha256:27a2499c7e8aff199665b22741997e485eccc8645aa9176c7c988e6fae507945", size = 220001 }, +] + +[[package]] +name = "greenlet" +version = "3.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/17/14/3bddb1298b9a6786539ac609ba4b7c9c0842e12aa73aaa4d8d73ec8f8185/greenlet-3.0.3.tar.gz", hash = "sha256:43374442353259554ce33599da8b692d5aa96f8976d567d4badf263371fbe491", size = 182013 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6e/20/68a278a6f93fa36e21cfc3d7599399a8a831225644eb3b6b18755cd3d6fc/greenlet-3.0.3-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:b1b5667cced97081bf57b8fa1d6bfca67814b0afd38208d52538316e9422fc61", size = 271666 }, + { url = "https://files.pythonhosted.org/packages/21/b4/90e06e07c78513ab03855768200bdb35c8e764e805b3f14fb488e56f82dc/greenlet-3.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52f59dd9c96ad2fc0d5724107444f76eb20aaccb675bf825df6435acb7703559", size = 657689 }, + { url = "https://files.pythonhosted.org/packages/f6/a2/0ed21078039072f9dc738bbf3af12b103a84106b1385ac4723841f846ce7/greenlet-3.0.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:afaff6cf5200befd5cec055b07d1c0a5a06c040fe5ad148abcd11ba6ab9b114e", size = 673009 }, + { url = "https://files.pythonhosted.org/packages/42/11/42ad6b1104c357826bbee7d7b9e4f24dbd9fde94899a03efb004aab62963/greenlet-3.0.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fe754d231288e1e64323cfad462fcee8f0288654c10bdf4f603a39ed923bef33", size = 667432 }, + { url = "https://files.pythonhosted.org/packages/bb/6b/384dee7e0121cbd1757bdc1824a5ee28e43d8d4e3f99aa59521f629442fe/greenlet-3.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2797aa5aedac23af156bbb5a6aa2cd3427ada2972c828244eb7d1b9255846379", size = 667442 }, + { url = "https://files.pythonhosted.org/packages/c6/1f/12d5a6cc26e8b483c2e7975f9c22e088ac735c0d8dcb8a8f72d31a4e5f04/greenlet-3.0.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b7f009caad047246ed379e1c4dbcb8b020f0a390667ea74d2387be2998f58a22", size = 620032 }, + { url = "https://files.pythonhosted.org/packages/c7/ec/85b647e59e0f137c7792a809156f413e38379cf7f3f2e1353c37f4be4026/greenlet-3.0.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c5e1536de2aad7bf62e27baf79225d0d64360d4168cf2e6becb91baf1ed074f3", size = 1154218 }, + { url = "https://files.pythonhosted.org/packages/94/ed/1e5f4bca691a81700e5a88e86d6f0e538acb10188cd2cc17140e523255ef/greenlet-3.0.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:894393ce10ceac937e56ec00bb71c4c2f8209ad516e96033e4b3b1de270e200d", size = 1180754 }, + { url = "https://files.pythonhosted.org/packages/47/79/26d54d7d700ef65b689fc2665a40846d13e834da0486674a8d4f0f371a47/greenlet-3.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:1ea188d4f49089fc6fb283845ab18a2518d279c7cd9da1065d7a84e991748728", size = 292822 }, + { url = "https://files.pythonhosted.org/packages/a2/2f/461615adc53ba81e99471303b15ac6b2a6daa8d2a0f7f77fd15605e16d5b/greenlet-3.0.3-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:70fb482fdf2c707765ab5f0b6655e9cfcf3780d8d87355a063547b41177599be", size = 273085 }, + { url = "https://files.pythonhosted.org/packages/e9/55/2c3cfa3cdbb940cf7321fbcf544f0e9c74898eed43bf678abf416812d132/greenlet-3.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d4d1ac74f5c0c0524e4a24335350edad7e5f03b9532da7ea4d3c54d527784f2e", size = 660514 }, + { url = "https://files.pythonhosted.org/packages/38/77/efb21ab402651896c74f24a172eb4d7479f9f53898bd5e56b9e20bb24ffd/greenlet-3.0.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:149e94a2dd82d19838fe4b2259f1b6b9957d5ba1b25640d2380bea9c5df37676", size = 674295 }, + { url = "https://files.pythonhosted.org/packages/74/3a/92f188ace0190f0066dca3636cf1b09481d0854c46e92ec5e29c7cefe5b1/greenlet-3.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:15d79dd26056573940fcb8c7413d84118086f2ec1a8acdfa854631084393efcc", size = 669395 }, + { url = "https://files.pythonhosted.org/packages/63/0f/847ed02cdfce10f0e6e3425cd054296bddb11a17ef1b34681fa01a055187/greenlet-3.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:881b7db1ebff4ba09aaaeae6aa491daeb226c8150fc20e836ad00041bcb11230", size = 670455 }, + { url = "https://files.pythonhosted.org/packages/bd/37/56b0da468a85e7704f3b2bc045015301bdf4be2184a44868c71f6dca6fe2/greenlet-3.0.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fcd2469d6a2cf298f198f0487e0a5b1a47a42ca0fa4dfd1b6862c999f018ebbf", size = 625692 }, + { url = "https://files.pythonhosted.org/packages/7c/68/b5f4084c0a252d7e9c0d95fc1cfc845d08622037adb74e05be3a49831186/greenlet-3.0.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:1f672519db1796ca0d8753f9e78ec02355e862d0998193038c7073045899f305", size = 1152597 }, + { url = "https://files.pythonhosted.org/packages/a4/fa/31e22345518adcd69d1d6ab5087a12c178aa7f3c51103f6d5d702199d243/greenlet-3.0.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2516a9957eed41dd8f1ec0c604f1cdc86758b587d964668b5b196a9db5bfcde6", size = 1181043 }, + { url = "https://files.pythonhosted.org/packages/53/80/3d94d5999b4179d91bcc93745d1b0815b073d61be79dd546b840d17adb18/greenlet-3.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:bba5387a6975598857d86de9eac14210a49d554a77eb8261cc68b7d082f78ce2", size = 293635 }, +] + +[[package]] +name = "grpcio" +version = "1.65.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cf/e7/739849982ca7fa1bf5e52a472803618e4f1f2963e9a73b1ca2cb056f95c7/grpcio-1.65.4.tar.gz", hash = "sha256:2a4f476209acffec056360d3e647ae0e14ae13dcf3dfb130c227ae1c594cbe39", size = 12254082 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a5/cf/969a2de144666f483a0c11aa2b33bf646689062f928bb361c57db8b7c90e/grpcio-1.65.4-cp311-cp311-linux_armv7l.whl", hash = "sha256:85e9c69378af02e483bc626fc19a218451b24a402bdf44c7531e4c9253fb49ef", size = 4884884 }, + { url = "https://files.pythonhosted.org/packages/9d/ee/4ce71fac8935862bb43e4d2a30d286e3de4d9f53d0cf486daa2e379e5c8f/grpcio-1.65.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:2bd672e005afab8bf0d6aad5ad659e72a06dd713020554182a66d7c0c8f47e18", size = 10438328 }, + { url = "https://files.pythonhosted.org/packages/40/ef/c85c23ce58d55ae21d4812be8462cce91d2f271d8e174c862f1cb1f5a51e/grpcio-1.65.4-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:abccc5d73f5988e8f512eb29341ed9ced923b586bb72e785f265131c160231d8", size = 5396919 }, + { url = "https://files.pythonhosted.org/packages/9d/48/595fa809256e09d9defbbd17a92dc7ee5d36cf7392c5cbc69eb9fa5b0daf/grpcio-1.65.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:886b45b29f3793b0c2576201947258782d7e54a218fe15d4a0468d9a6e00ce17", size = 5982481 }, + { url = "https://files.pythonhosted.org/packages/a7/40/086bcaa583f1c4b80c193f9269f0270fb6e5eb384cd855ec2660e1bbcc75/grpcio-1.65.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:be952436571dacc93ccc7796db06b7daf37b3b56bb97e3420e6503dccfe2f1b4", size = 5659542 }, + { url = "https://files.pythonhosted.org/packages/13/b4/5b60479e819889834a785dfceb67a8710e78518ac154158cf745e95fe853/grpcio-1.65.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:8dc9ddc4603ec43f6238a5c95400c9a901b6d079feb824e890623da7194ff11e", size = 6292647 }, + { url = "https://files.pythonhosted.org/packages/d5/2e/791a7c1d5582068adb87e63f291758c8c8e459b8aff0fe75f96e075ba42a/grpcio-1.65.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:ade1256c98cba5a333ef54636095f2c09e6882c35f76acb04412f3b1aa3c29a5", size = 5908730 }, + { url = "https://files.pythonhosted.org/packages/f9/75/87a399e96428270c9cc6700f1451d819bc8423ff242de6387a1a1f1b857e/grpcio-1.65.4-cp311-cp311-win32.whl", hash = "sha256:280e93356fba6058cbbfc6f91a18e958062ef1bdaf5b1caf46c615ba1ae71b5b", size = 3435309 }, + { url = "https://files.pythonhosted.org/packages/74/12/257ab1687ab913aa39330092a9816014bfcf108557f05869a4d40e01ece1/grpcio-1.65.4-cp311-cp311-win_amd64.whl", hash = "sha256:d2b819f9ee27ed4e3e737a4f3920e337e00bc53f9e254377dd26fc7027c4d558", size = 4145930 }, + { url = "https://files.pythonhosted.org/packages/10/32/29329ba27ddef8d502e2c279f0beab93fb60d13c1cb7e3e6c5bf2c1ef3d7/grpcio-1.65.4-cp312-cp312-linux_armv7l.whl", hash = "sha256:926a0750a5e6fb002542e80f7fa6cab8b1a2ce5513a1c24641da33e088ca4c56", size = 4822752 }, + { url = "https://files.pythonhosted.org/packages/a3/4e/218d076b1f939d02b4738bd0b1044ec6898f3e21a9fe8b7c4876dd970195/grpcio-1.65.4-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:2a1d4c84d9e657f72bfbab8bedf31bdfc6bfc4a1efb10b8f2d28241efabfaaf2", size = 10400601 }, + { url = "https://files.pythonhosted.org/packages/62/51/46f4366183f72986071bed97caa1aa19e05a9288df7b7fb3c439bd48d5ac/grpcio-1.65.4-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:17de4fda50967679677712eec0a5c13e8904b76ec90ac845d83386b65da0ae1e", size = 5337677 }, + { url = "https://files.pythonhosted.org/packages/24/dd/8d19248f6645e3acd34d2a22d84e7b3db14135db528a3003239f8e26460d/grpcio-1.65.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3dee50c1b69754a4228e933696408ea87f7e896e8d9797a3ed2aeed8dbd04b74", size = 5922221 }, + { url = "https://files.pythonhosted.org/packages/12/75/b25d1f130db4a294214ac300a38cc1f5a853ee8ea2e0e2529a200d3e6165/grpcio-1.65.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:74c34fc7562bdd169b77966068434a93040bfca990e235f7a67cdf26e1bd5c63", size = 5603315 }, + { url = "https://files.pythonhosted.org/packages/b5/0f/72647daa8dec968c338ed8fbf904369103377de73fe10ba4456eb843bd70/grpcio-1.65.4-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:24a2246e80a059b9eb981e4c2a6d8111b1b5e03a44421adbf2736cc1d4988a8a", size = 6236055 }, + { url = "https://files.pythonhosted.org/packages/d9/56/32bdcfdab28a42207095f6d799508d135b9d072521ce322165d0599478d1/grpcio-1.65.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:18c10f0d054d2dce34dd15855fcca7cc44ec3b811139437543226776730c0f28", size = 5853581 }, + { url = "https://files.pythonhosted.org/packages/63/7f/8716a0ecc1fc1a80e5071c4de52bb8b4993032f2841670f099eb865eca88/grpcio-1.65.4-cp312-cp312-win32.whl", hash = "sha256:d72962788b6c22ddbcdb70b10c11fbb37d60ae598c51eb47ec019db66ccfdff0", size = 3418578 }, + { url = "https://files.pythonhosted.org/packages/a9/2a/b104830e8ffe183d6e648fa2b4e200e7e1582191df195beaa93d28127f5f/grpcio-1.65.4-cp312-cp312-win_amd64.whl", hash = "sha256:7656376821fed8c89e68206a522522317787a3d9ed66fb5110b1dff736a5e416", size = 4130956 }, +] + +[[package]] +name = "grpcio-status" +version = "1.65.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "googleapis-common-protos", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "grpcio", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "protobuf", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/4f/70/f9d165fbc37cb198137bef6961c7f49556bc5c68429d521c6397daf742a0/grpcio_status-1.65.4.tar.gz", hash = "sha256:1803968c4f14d81b4b156f6f2b54e6959bac4f40b0a6ca2bd4c169978438b9dc", size = 13528 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/21/56/890973ef868fe6031ce88c033e9b685d8aa920a2d895d09f3bea8ee6f5fb/grpcio_status-1.65.4-py3-none-any.whl", hash = "sha256:09dd3d84d1a3164940b1d8ed2177688cd8d25a423b1f5ad826b393653ea3de01", size = 14444 }, +] + +[[package]] +name = "gunicorn" +version = "22.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1e/88/e2f93c5738a4c1f56a458fc7a5b1676fc31dcdbb182bef6b40a141c17d66/gunicorn-22.0.0.tar.gz", hash = "sha256:4a0b436239ff76fb33f11c07a16482c521a7e09c1ce3cc293c2330afe01bec63", size = 3639760 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/29/97/6d610ae77b5633d24b69c2ff1ac3044e0e565ecbd1ec188f02c45073054c/gunicorn-22.0.0-py3-none-any.whl", hash = "sha256:350679f91b24062c86e386e198a15438d53a7a8207235a78ba1b53df4c4378d9", size = 84443 }, +] + +[[package]] +name = "h11" +version = "0.14.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f5/38/3af3d3633a34a3316095b39c8e8fb4853a28a536e55d347bd8d8e9a14b03/h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d", size = 100418 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/95/04/ff642e65ad6b90db43e668d70ffb6736436c7ce41fcc549f4e9472234127/h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761", size = 58259 }, +] + +[[package]] +name = "hiredis" +version = "3.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8b/80/740fb0dfa7a42416ce8376490f41dcdb1e5deed9c3739dfe4200fad865a9/hiredis-3.0.0.tar.gz", hash = "sha256:fed8581ae26345dea1f1e0d1a96e05041a727a45e7d8d459164583e23c6ac441", size = 87581 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/42/3e/502e2ce2487673214fbb4cc733b1a279bc71309a689803d9ba8ad6f2fa8f/hiredis-3.0.0-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:4664dedcd5933364756d7251a7ea86d60246ccf73a2e00912872dacbfcef8978", size = 81442 }, + { url = "https://files.pythonhosted.org/packages/18/0b/171d85b2ee0ac51f94e993a323beffdb6b273b838a4f86d9abaaca22e2f7/hiredis-3.0.0-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:47de0bbccf4c8a9f99d82d225f7672b9dd690d8fd872007b933ef51a302c9fa6", size = 44742 }, + { url = "https://files.pythonhosted.org/packages/6a/67/466e0b16caff07bc8df8f3ff8b0b279f81066e0fb6a201b0ec66288fe5a4/hiredis-3.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e43679eca508ba8240d016d8cca9d27342d70184773c15bea78a23c87a1922f1", size = 42424 }, + { url = "https://files.pythonhosted.org/packages/01/50/e1f21e1cc9426bdf62e9ca8106294fbc3e5d27ddbae2e85e47fb9f251d1b/hiredis-3.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:13c345e7278c210317e77e1934b27b61394fee0dec2e8bd47e71570900f75823", size = 166331 }, + { url = "https://files.pythonhosted.org/packages/98/40/8d8e4e15045ce066570f82f49604c6273b186eda1e5c9b93b450dd25d7b9/hiredis-3.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:00018f22f38530768b73ea86c11f47e8d4df65facd4e562bd78773bd1baef35e", size = 177350 }, + { url = "https://files.pythonhosted.org/packages/5d/9c/f7b6d7afa2bd9c6671de853069222d9d874725e387100dfb0f1a22aab122/hiredis-3.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4ea3a86405baa8eb0d3639ced6926ad03e07113de54cb00fd7510cb0db76a89d", size = 166794 }, + { url = "https://files.pythonhosted.org/packages/53/0c/1076e0c045412081ec44dc81969373cda15c093a0692e10f2941e154e583/hiredis-3.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c073848d2b1d5561f3903879ccf4e1a70c9b1e7566c7bdcc98d082fa3e7f0a1d", size = 166566 }, + { url = "https://files.pythonhosted.org/packages/05/69/e081b023f86b0128fcf9f76c8ed5a5f9426895ad86de234b0332c18a57b8/hiredis-3.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5a8dffb5f5b3415a4669d25de48b617fd9d44b0bccfc4c2ab24b06406ecc9ecb", size = 162561 }, + { url = "https://files.pythonhosted.org/packages/96/e0/7f957fb2158c6f6800b6faa2f90bedcc485ca038a2d42166761d400683a3/hiredis-3.0.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:22c17c96143c2a62dfd61b13803bc5de2ac526b8768d2141c018b965d0333b66", size = 160472 }, + { url = "https://files.pythonhosted.org/packages/5c/31/d68020aa6276bd1a7436ece96d540ad17c204d97285639e0757ef1c3d430/hiredis-3.0.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:c3ece960008dab66c6b8bb3a1350764677ee7c74ccd6270aaf1b1caf9ccebb46", size = 159705 }, + { url = "https://files.pythonhosted.org/packages/f7/68/5d101f8ffd764a96c2b959815adebb1e4b7e06db68122f9d3dbbc19b81eb/hiredis-3.0.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f75999ae00a920f7dce6ecae76fa5e8674a3110e5a75f12c7a2c75ae1af53396", size = 171498 }, + { url = "https://files.pythonhosted.org/packages/83/86/66131743a2012f668f84aa2eddc07e7b2462b4a07a753b27125f14e4b8bc/hiredis-3.0.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:e069967cbd5e1900aafc4b5943888f6d34937fc59bf8918a1a546cb729b4b1e4", size = 163951 }, + { url = "https://files.pythonhosted.org/packages/a5/ea/58976d9c21086975a90c7fa2337591ea3903eeb55083e366b5ea36b99ca5/hiredis-3.0.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0aacc0a78e1d94d843a6d191f224a35893e6bdfeb77a4a89264155015c65f126", size = 161566 }, + { url = "https://files.pythonhosted.org/packages/39/69/cdb255e3d37f82f31f4b7b2db5bbd8500eae8d22c0d7992fe474fd02babd/hiredis-3.0.0-cp311-cp311-win32.whl", hash = "sha256:719c32147ba29528cb451f037bf837dcdda4ff3ddb6cdb12c4216b0973174718", size = 20037 }, + { url = "https://files.pythonhosted.org/packages/9d/cf/40d209e0458ac28a26973d1449df2922c7b8259f7f88d7738d11c87f9ff6/hiredis-3.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:bdc144d56333c52c853c31b4e2e52cfbdb22d3da4374c00f5f3d67c42158970f", size = 21862 }, + { url = "https://files.pythonhosted.org/packages/ae/09/0a3eace00115d8c82a8e7d8e58e60aacec10334f4f1512f09ffbac3252e3/hiredis-3.0.0-cp312-cp312-macosx_10_15_universal2.whl", hash = "sha256:484025d2eb8f6348f7876fc5a2ee742f568915039fcb31b478fd5c242bb0fe3a", size = 81540 }, + { url = "https://files.pythonhosted.org/packages/1c/e8/1a7a5ded4fb11e91aafc5ba5518392f22883d54e79c4b47f188fb712ea46/hiredis-3.0.0-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:fcdb552ffd97151dab8e7bc3ab556dfa1512556b48a367db94b5c20253a35ee1", size = 44814 }, + { url = "https://files.pythonhosted.org/packages/3b/f5/4e055dc9b55484644afb18063f28649cdbd19be4f15bc152bd633dccd6f7/hiredis-3.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0bb6f9fd92f147ba11d338ef5c68af4fd2908739c09e51f186e1d90958c68cc1", size = 42478 }, + { url = "https://files.pythonhosted.org/packages/65/7b/e06f55b9dcdf10cb6b3f08d7917d3080096cd83deaef1bd4927720fbb280/hiredis-3.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fa86bf9a0ed339ec9e8a9a9d0ae4dccd8671625c83f9f9f2640729b15e07fbfd", size = 168303 }, + { url = "https://files.pythonhosted.org/packages/f4/16/081e90137bb896acd9dc2e1e68480cc84d652af4d959e75e52d6ce9dd602/hiredis-3.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e194a0d5df9456995d8f510eab9f529213e7326af6b94770abf8f8b7952ddcaa", size = 179151 }, + { url = "https://files.pythonhosted.org/packages/1e/0f/f5aba1c82977f4b639e5b450c0d8685333f1200cd1972647eb3f4d972e55/hiredis-3.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c8a1df39d74ec507d79c7a82c8063eee60bf80537cdeee652f576059b9cdd15c", size = 168580 }, + { url = "https://files.pythonhosted.org/packages/60/86/aa24c20f6d3038bf244bc60a2fe8cde61fb3c0d6a82e2bed30b08d55f96c/hiredis-3.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f91456507427ba36fd81b2ca11053a8e112c775325acc74e993201ea912d63e9", size = 169147 }, + { url = "https://files.pythonhosted.org/packages/6e/03/a4c7a28b6320ef3e36062c1c51e9d66e889c9e09ee7d7ae38b8a2ffdb365/hiredis-3.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9862db92ef67a8a02e0d5370f07d380e14577ecb281b79720e0d7a89aedb9ee5", size = 164722 }, + { url = "https://files.pythonhosted.org/packages/cd/66/d60106b56ba0ddd9789656d204a577591ff0cd91ab94178bb96c84d0d918/hiredis-3.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d10fcd9e0eeab835f492832b2a6edb5940e2f1230155f33006a8dfd3bd2c94e4", size = 162561 }, + { url = "https://files.pythonhosted.org/packages/6a/30/f33f2b782096efe9fe6b24c67a4df13b5055d9c859f615a74fb4f18cce41/hiredis-3.0.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:48727d7d405d03977d01885f317328dc21d639096308de126c2c4e9950cbd3c9", size = 161388 }, + { url = "https://files.pythonhosted.org/packages/45/02/34d9b151f9ea4655bfe00e0230f7db8fd8a52c7b7bd728efdf1c17655860/hiredis-3.0.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:8e0bb6102ebe2efecf8a3292c6660a0e6fac98176af6de67f020bea1c2343717", size = 173561 }, + { url = "https://files.pythonhosted.org/packages/cf/54/68285d208918b6d83e32d872d8dcbf8d479ed2c74b863b836e48a2702a3f/hiredis-3.0.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:df274e3abb4df40f4c7274dd3e587dfbb25691826c948bc98d5fead019dfb001", size = 165914 }, + { url = "https://files.pythonhosted.org/packages/56/4f/5f36865f9f032caf00d603ff9cbde21506d2b1e0e0ce0b5d2ce2851411c9/hiredis-3.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:034925b5fb514f7b11aac38cd55b3fd7e9d3af23bd6497f3f20aa5b8ba58e232", size = 163968 }, + { url = "https://files.pythonhosted.org/packages/d3/ee/c38693bd1dbce34806ecc3536dc425e87e420030de7018194865511860c2/hiredis-3.0.0-cp312-cp312-win32.whl", hash = "sha256:120f2dda469b28d12ccff7c2230225162e174657b49cf4cd119db525414ae281", size = 20189 }, + { url = "https://files.pythonhosted.org/packages/4e/67/f50b45071bb8652fa9a28a84ee470a02042fb7a096a16f3c08842f2a5c2b/hiredis-3.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:e584fe5f4e6681d8762982be055f1534e0170f6308a7a90f58d737bab12ff6a8", size = 21971 }, +] + +[[package]] +name = "html5lib" +version = "1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "webencodings", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ac/b6/b55c3f49042f1df3dcd422b7f224f939892ee94f22abcf503a9b7339eaf2/html5lib-1.1.tar.gz", hash = "sha256:b2e5b40261e20f354d198eae92afc10d750afb487ed5e50f9c4eaf07c184146f", size = 272215 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6c/dd/a834df6482147d48e225a49515aabc28974ad5a4ca3215c18a882565b028/html5lib-1.1-py2.py3-none-any.whl", hash = "sha256:0d78f8fde1c230e99fe37986a60526d7049ed4bf8a9fadbad5f00e22e58e041d", size = 112173 }, +] + +[[package]] +name = "humanize" +version = "4.10.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/5d/b1/c8f05d5dc8f64030d8cc71e91307c1daadf6ec0d70bcd6eabdfd9b6f153f/humanize-4.10.0.tar.gz", hash = "sha256:06b6eb0293e4b85e8d385397c5868926820db32b9b654b932f57fa41c23c9978", size = 79192 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8f/49/a29c79bea335e52fb512a43faf84998c184c87fef82c65f568f8c56f2642/humanize-4.10.0-py3-none-any.whl", hash = "sha256:39e7ccb96923e732b5c2e27aeaa3b10a8dfeeba3eb965ba7b74a3eb0e30040a6", size = 126957 }, +] + +[[package]] +name = "hupper" +version = "1.12.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bd/e6/bb064537288eee2be97f3e0fcad8e7242bc5bbe9664ae57c7d29b3fa18c2/hupper-1.12.1.tar.gz", hash = "sha256:06bf54170ff4ecf4c84ad5f188dee3901173ab449c2608ad05b9bfd6b13e32eb", size = 43231 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/86/7d/3888833e4f5ea56af4a9935066ec09a83228e533d7b8877f65889d706ee4/hupper-1.12.1-py3-none-any.whl", hash = "sha256:e872b959f09d90be5fb615bd2e62de89a0b57efc037bdf9637fb09cdf8552b19", size = 22830 }, +] + +[[package]] +name = "icdiff" +version = "2.0.7" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/fa/e4/43341832be5f2bcae71eb3ef08a07aaef9b74f74fe0b3675f62bd12057fe/icdiff-2.0.7.tar.gz", hash = "sha256:f79a318891adbf59a45e3a7694f5e1f18c5407065264637072ac8363b759866f", size = 16394 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7c/2a/b3178baa75a3ec75a33588252296c82a1332d2b83cd01061539b74bde9dd/icdiff-2.0.7-py3-none-any.whl", hash = "sha256:f05d1b3623223dd1c70f7848da7d699de3d9a2550b902a8234d9026292fb5762", size = 17018 }, +] + +[[package]] +name = "idna" +version = "3.7" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/21/ed/f86a79a07470cb07819390452f178b3bef1d375f2ec021ecfc709fc7cf07/idna-3.7.tar.gz", hash = "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc", size = 189575 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e5/3e/741d8c82801c347547f8a2a06aa57dbb1992be9e948df2ea0eda2c8b79e8/idna-3.7-py3-none-any.whl", hash = "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0", size = 66836 }, +] + +[[package]] +name = "imagesize" +version = "1.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a7/84/62473fb57d61e31fef6e36d64a179c8781605429fd927b5dd608c997be31/imagesize-1.4.1.tar.gz", hash = "sha256:69150444affb9cb0d5cc5a92b3676f0b2fb7cd9ae39e947a5e11a36b4497cd4a", size = 1280026 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ff/62/85c4c919272577931d407be5ba5d71c20f0b616d31a0befe0ae45bb79abd/imagesize-1.4.1-py2.py3-none-any.whl", hash = "sha256:0d8d18d08f840c19d0ee7ca1fd82490fdc3729b7ac93f49870406ddde8ef8d8b", size = 8769 }, +] + +[[package]] +name = "importlib-metadata" +version = "8.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "zipp", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/20/ff/bd28f70283b9cca0cbf0c2a6082acbecd822d1962ae7b2a904861b9965f8/importlib_metadata-8.0.0.tar.gz", hash = "sha256:188bd24e4c346d3f0a933f275c2fec67050326a856b9a359881d7c2a697e8812", size = 52667 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/dc/ef/38766b2edb096260d9b1b6ad35adaa0bce3b0567abb452b21eb074af88c4/importlib_metadata-8.0.0-py3-none-any.whl", hash = "sha256:15584cf2b1bf449d98ff8a6ff1abef57bf20f3ac6454f431736cd3e660921b2f", size = 24769 }, +] + +[[package]] +name = "importlib-resources" +version = "6.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c8/9d/6ee73859d6be81c6ea7ebac89655e92740296419bd37e5c8abdb5b62fd55/importlib_resources-6.4.0.tar.gz", hash = "sha256:cdb2b453b8046ca4e3798eb1d84f3cce1446a0e8e7b5ef4efb600f19fc398145", size = 42040 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/75/06/4df55e1b7b112d183f65db9503bff189e97179b256e1ea450a3c365241e0/importlib_resources-6.4.0-py3-none-any.whl", hash = "sha256:50d10f043df931902d4194ea07ec57960f66a80449ff867bfe782b4c486ba78c", size = 38168 }, +] + +[[package]] +name = "iniconfig" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d7/4b/cbd8e699e64a6f16ca3a8220661b5f83792b3017d0f79807cb8708d33913/iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3", size = 4646 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374", size = 5892 }, +] + +[[package]] +name = "isodate" +version = "0.6.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/db/7a/c0a56c7d56c7fa723988f122fa1f1ccf8c5c4ccc48efad0d214b49e5b1af/isodate-0.6.1.tar.gz", hash = "sha256:48c5881de7e8b0a0d648cb024c8062dc84e7b840ed81e864c7614fd3c127bde9", size = 28443 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/85/7882d311924cbcfc70b1890780763e36ff0b140c7e51c110fc59a532f087/isodate-0.6.1-py2.py3-none-any.whl", hash = "sha256:0751eece944162659049d35f4f549ed815792b38793f07cf73381c1c87cbed96", size = 41722 }, +] + +[[package]] +name = "isort" +version = "5.13.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/87/f9/c1eb8635a24e87ade2efce21e3ce8cd6b8630bb685ddc9cdaca1349b2eb5/isort-5.13.2.tar.gz", hash = "sha256:48fdfcb9face5d58a4f6dde2e72a1fb8dcaf8ab26f95ab49fab84c2ddefb0109", size = 175303 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/b3/8def84f539e7d2289a02f0524b944b15d7c75dab7628bedf1c4f0992029c/isort-5.13.2-py3-none-any.whl", hash = "sha256:8ca5e72a8d85860d5a3fa69b8745237f2939afe12dbf656afbcb47fe72d947a6", size = 92310 }, +] + +[[package]] +name = "itsdangerous" +version = "2.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9c/cb/8ac0172223afbccb63986cc25049b154ecfb5e85932587206f42317be31d/itsdangerous-2.2.0.tar.gz", hash = "sha256:e0050c0b7da1eea53ffaf149c0cfbb5c6e2e2b69c4bef22c81fa6eb73e5f6173", size = 54410 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/96/92447566d16df59b2a776c0fb82dbc4d9e07cd95062562af01e408583fc4/itsdangerous-2.2.0-py3-none-any.whl", hash = "sha256:c6242fc49e35958c8b15141343aa660db5fc54d4f13a1db01a3f5891b98700ef", size = 16234 }, +] + +[[package]] +name = "jinja2" +version = "3.1.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ed/55/39036716d19cab0747a5020fc7e907f362fbf48c984b14e62127f7e68e5d/jinja2-3.1.4.tar.gz", hash = "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369", size = 240245 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/31/80/3a54838c3fb461f6fec263ebf3a3a41771bd05190238de3486aae8540c36/jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d", size = 133271 }, +] + +[[package]] +name = "jmespath" +version = "1.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/00/2a/e867e8531cf3e36b41201936b7fa7ba7b5702dbef42922193f05c8976cd6/jmespath-1.0.1.tar.gz", hash = "sha256:90261b206d6defd58fdd5e85f478bf633a2901798906be2ad389150c5c60edbe", size = 25843 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/31/b4/b9b800c45527aadd64d5b442f9b932b00648617eb5d63d2c7a6587b7cafc/jmespath-1.0.1-py3-none-any.whl", hash = "sha256:02e2e4cc71b5bcab88332eebf907519190dd9e6e82107fa7f83b1003a6252980", size = 20256 }, +] + +[[package]] +name = "jsonschema" +version = "4.23.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "jsonschema-specifications", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "referencing", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "rpds-py", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/38/2e/03362ee4034a4c917f697890ccd4aec0800ccf9ded7f511971c75451deec/jsonschema-4.23.0.tar.gz", hash = "sha256:d71497fef26351a33265337fa77ffeb82423f3ea21283cd9467bb03999266bc4", size = 325778 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/69/4a/4f9dbeb84e8850557c02365a0eee0649abe5eb1d84af92a25731c6c0f922/jsonschema-4.23.0-py3-none-any.whl", hash = "sha256:fbadb6f8b144a8f8cf9f0b89ba94501d143e50411a1278633f56a7acf7fd5566", size = 88462 }, +] + +[[package]] +name = "jsonschema-path" +version = "0.3.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pathable", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pyyaml", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "referencing", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "requests", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/85/39/3a58b63a997b0cf824536d6f84fff82645a1ca8de222ee63586adab44dfa/jsonschema_path-0.3.3.tar.gz", hash = "sha256:f02e5481a4288ec062f8e68c808569e427d905bedfecb7f2e4c69ef77957c382", size = 11589 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/53/b0/69237e85976916b2e37586b7ddc48b9547fc38b440e25103d084b2b02ab3/jsonschema_path-0.3.3-py3-none-any.whl", hash = "sha256:203aff257f8038cd3c67be614fe6b2001043408cb1b4e36576bc4921e09d83c4", size = 14817 }, +] + +[[package]] +name = "jsonschema-specifications" +version = "2023.12.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "referencing", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f8/b9/cc0cc592e7c195fb8a650c1d5990b10175cf13b4c97465c72ec841de9e4b/jsonschema_specifications-2023.12.1.tar.gz", hash = "sha256:48a76787b3e70f5ed53f1160d2b81f586e4ca6d1548c5de7085d1682674764cc", size = 13983 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ee/07/44bd408781594c4d0a027666ef27fab1e441b109dc3b76b4f836f8fd04fe/jsonschema_specifications-2023.12.1-py3-none-any.whl", hash = "sha256:87e4fdf3a94858b8a2ba2778d9ba57d8a9cafca7c7489c46ba0d30a8bc6a9c3c", size = 18482 }, +] + +[[package]] +name = "kombu" +version = "5.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "amqp", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "vine", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c8/69/b703f8ec8d0406be22534dad885cac847fe092b793c4893034e3308feb9b/kombu-5.3.1.tar.gz", hash = "sha256:fbd7572d92c0bf71c112a6b45163153dea5a7b6a701ec16b568c27d0fd2370f2", size = 434284 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/63/58/b23b9c1ffb30d8b5cdfc7bdecb17bfd7ea20c619e86e515297b496177144/kombu-5.3.1-py3-none-any.whl", hash = "sha256:48ee589e8833126fd01ceaa08f8a2041334e9f5894e5763c8486a550454551e9", size = 198498 }, +] + +[package.optional-dependencies] +sqs = [ + { name = "boto3", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pycurl", marker = "platform_python_implementation == 'CPython' and sys_platform != 'win32'" }, + { name = "urllib3", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] + +[[package]] +name = "lazy-object-proxy" +version = "1.10.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2c/f0/f02e2d150d581a294efded4020094a371bbab42423fe78625ac18854d89b/lazy-object-proxy-1.10.0.tar.gz", hash = "sha256:78247b6d45f43a52ef35c25b5581459e85117225408a4128a3daf8bf9648ac69", size = 43271 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ff/e1/99a7ec68b892c9b8c6212617f54e7e9b0304d47edad8c0ff043ae3aeb1a9/lazy_object_proxy-1.10.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fec03caabbc6b59ea4a638bee5fce7117be8e99a4103d9d5ad77f15d6f81020c", size = 27434 }, + { url = "https://files.pythonhosted.org/packages/1a/76/6a41de4b44d1dcfe4c720d4606de0d7b69b6b450f0bdce16f2e1fb8abc89/lazy_object_proxy-1.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:02c83f957782cbbe8136bee26416686a6ae998c7b6191711a04da776dc9e47d4", size = 70687 }, + { url = "https://files.pythonhosted.org/packages/1e/5d/eaa12126e8989c9bdd21d864cbba2b258cb9ee2f574ada1462a0004cfad8/lazy_object_proxy-1.10.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:009e6bb1f1935a62889ddc8541514b6a9e1fcf302667dcb049a0be5c8f613e56", size = 69757 }, + { url = "https://files.pythonhosted.org/packages/53/a9/6f22cfe9572929656988b72c0de266c5d10755369b575322725f67364c4e/lazy_object_proxy-1.10.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:75fc59fc450050b1b3c203c35020bc41bd2695ed692a392924c6ce180c6f1dc9", size = 73709 }, + { url = "https://files.pythonhosted.org/packages/bd/e6/b10fd94710a99a6309f3ad61a4eb480944bbb17fcb41bd2d852fdbee57ee/lazy_object_proxy-1.10.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:782e2c9b2aab1708ffb07d4bf377d12901d7a1d99e5e410d648d892f8967ab1f", size = 73191 }, + { url = "https://files.pythonhosted.org/packages/c9/78/a9b9d314da02fe66b632f2354e20e40fc3508befb450b5a17987a222b383/lazy_object_proxy-1.10.0-cp311-cp311-win32.whl", hash = "sha256:edb45bb8278574710e68a6b021599a10ce730d156e5b254941754a9cc0b17d03", size = 25773 }, + { url = "https://files.pythonhosted.org/packages/94/e6/e2d3b0c9efe61f72dc327ce2355941f540e0b0d1f2b3490cbab6bab7d3ea/lazy_object_proxy-1.10.0-cp311-cp311-win_amd64.whl", hash = "sha256:e271058822765ad5e3bca7f05f2ace0de58a3f4e62045a8c90a0dfd2f8ad8cc6", size = 27550 }, + { url = "https://files.pythonhosted.org/packages/d0/5d/768a7f2ccebb29604def61842fd54f6f5f75c79e366ee8748dda84de0b13/lazy_object_proxy-1.10.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:e98c8af98d5707dcdecc9ab0863c0ea6e88545d42ca7c3feffb6b4d1e370c7ba", size = 27560 }, + { url = "https://files.pythonhosted.org/packages/b3/ce/f369815549dbfa4bebed541fa4e1561d69e4f268a1f6f77da886df182dab/lazy_object_proxy-1.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:952c81d415b9b80ea261d2372d2a4a2332a3890c2b83e0535f263ddfe43f0d43", size = 72403 }, + { url = "https://files.pythonhosted.org/packages/44/46/3771e0a4315044aa7b67da892b2fb1f59dfcf0eaff2c8967b2a0a85d5896/lazy_object_proxy-1.10.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80b39d3a151309efc8cc48675918891b865bdf742a8616a337cb0090791a0de9", size = 72401 }, + { url = "https://files.pythonhosted.org/packages/81/39/84ce4740718e1c700bd04d3457ac92b2e9ce76529911583e7a2bf4d96eb2/lazy_object_proxy-1.10.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:e221060b701e2aa2ea991542900dd13907a5c90fa80e199dbf5a03359019e7a3", size = 75375 }, + { url = "https://files.pythonhosted.org/packages/86/3b/d6b65da2b864822324745c0a73fe7fd86c67ccea54173682c3081d7adea8/lazy_object_proxy-1.10.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:92f09ff65ecff3108e56526f9e2481b8116c0b9e1425325e13245abfd79bdb1b", size = 75466 }, + { url = "https://files.pythonhosted.org/packages/f5/33/467a093bf004a70022cb410c590d937134bba2faa17bf9dc42a48f49af35/lazy_object_proxy-1.10.0-cp312-cp312-win32.whl", hash = "sha256:3ad54b9ddbe20ae9f7c1b29e52f123120772b06dbb18ec6be9101369d63a4074", size = 25914 }, + { url = "https://files.pythonhosted.org/packages/77/ce/7956dc5ac2f8b62291b798c8363c81810e22a9effe469629d297d087e350/lazy_object_proxy-1.10.0-cp312-cp312-win_amd64.whl", hash = "sha256:127a789c75151db6af398b8972178afe6bda7d6f68730c057fbbc2e96b08d282", size = 27525 }, + { url = "https://files.pythonhosted.org/packages/31/8b/94dc8d58704ab87b39faed6f2fc0090b9d90e2e2aa2bbec35c79f3d2a054/lazy_object_proxy-1.10.0-pp310.pp311.pp312.pp38.pp39-none-any.whl", hash = "sha256:80fa48bd89c8f2f456fc0765c11c23bf5af827febacd2f523ca5bc1893fcc09d", size = 16405 }, +] + +[[package]] +name = "limits" +version = "3.13.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "deprecated", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "importlib-resources", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "packaging", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "typing-extensions", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c4/5f/89fb5405ee37d8b172e48e357438dd79482731b0cd5db2f734ac58f019e4/limits-3.13.0.tar.gz", hash = "sha256:6571b0c567bfa175a35fed9f8a954c0c92f1c3200804282f1b8f1de4ad98a953", size = 70218 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/81/80/b340bc7c3eb8f5c40e4d38c8e3cd04c127756d8de06b9e54caefb4ae16d5/limits-3.13.0-py3-none-any.whl", hash = "sha256:9767f7233da4255e9904b79908a728e8ec0984c0b086058b4cbbd309aea553f6", size = 45547 }, +] + +[[package]] +name = "linehaul" +version = "1.0.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cattrs", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "packaging", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pyparsing", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f8/e7/74d1bd36ed26ac43bfe22e97129edaa7066f7af4bf76084b9493cd581d58/linehaul-1.0.1.tar.gz", hash = "sha256:09d71b1f6a9ab92dd8c763b3d099e4ae05c2845ee783a02d5fe731e6e2a6a997", size = 19410 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/03/73/c73588052198be06462d1a7c4653b602a109a0df0208c59e58075dc3bc73/linehaul-1.0.1-py3-none-any.whl", hash = "sha256:d19ca669008dad910868dfae7f904dfc5362583729bda344799cf7ea2ad5ef12", size = 27848 }, +] + +[[package]] +name = "logfury" +version = "1.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/90/f2/24389d99f861dd65753fc5a56e2672339ec1b078da5e2f4b174d0767b132/logfury-1.0.1.tar.gz", hash = "sha256:130a5daceab9ad534924252ddf70482aa2c96662b3a3825a7d30981d03b76a26", size = 12826 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/c7/8a2cfdf39f4cbbb307603aeb03ca89a4765b96be310a0848b20eb4d17e76/logfury-1.0.1-py3-none-any.whl", hash = "sha256:b4f04be1701a1df644afc3384d6167d64c899f8036b7eefc3b6c570c6a9b290b", size = 7512 }, +] + +[[package]] +name = "lxml" +version = "5.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/63/f7/ffbb6d2eb67b80a45b8a0834baa5557a14a5ffce0979439e7cd7f0c4055b/lxml-5.2.2.tar.gz", hash = "sha256:bb2dc4898180bea79863d5487e5f9c7c34297414bad54bcd0f0852aee9cfdb87", size = 3678631 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/da/6a/24e9f77d17668dd4ac0a6c2a56113fd3e0db07cee51e3a67afcd47c597e5/lxml-5.2.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:45f9494613160d0405682f9eee781c7e6d1bf45f819654eb249f8f46a2c22545", size = 8137962 }, + { url = "https://files.pythonhosted.org/packages/4e/42/3bfe92749715c819763d2205370ecc7f586b44e277f38839e27cce7d6bb8/lxml-5.2.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b0b3f2df149efb242cee2ffdeb6674b7f30d23c9a7af26595099afaf46ef4e88", size = 4424403 }, + { url = "https://files.pythonhosted.org/packages/d5/fd/4899215277e3ef1767019fab178fad8a149081f80cf886a73dc0ba1badae/lxml-5.2.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d28cb356f119a437cc58a13f8135ab8a4c8ece18159eb9194b0d269ec4e28083", size = 5099309 }, + { url = "https://files.pythonhosted.org/packages/15/3d/d84d07fc450af34ce49b88a5aac805b486f38c9f9305fba647a39367c51c/lxml-5.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:657a972f46bbefdbba2d4f14413c0d079f9ae243bd68193cb5061b9732fa54c1", size = 4810147 }, + { url = "https://files.pythonhosted.org/packages/bc/c6/32af0ec3e8323e12212c064f924ddf993017e68d1f50e03da2a3be1289c1/lxml-5.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b74b9ea10063efb77a965a8d5f4182806fbf59ed068b3c3fd6f30d2ac7bee734", size = 5406165 }, + { url = "https://files.pythonhosted.org/packages/67/c7/6060ea3efbd1a60a10963b1b09f493fc8f6f6728310a7a77479a3f9ab20a/lxml-5.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:07542787f86112d46d07d4f3c4e7c760282011b354d012dc4141cc12a68cef5f", size = 4866924 }, + { url = "https://files.pythonhosted.org/packages/8a/f7/f5df71c70c4d14d186dd86fd0e9ebeffdb63b9b86fb19fe9315f9576266b/lxml-5.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:303f540ad2dddd35b92415b74b900c749ec2010e703ab3bfd6660979d01fd4ed", size = 4967116 }, + { url = "https://files.pythonhosted.org/packages/4e/56/c35969591789763657eb16c2fa79c924823b97da5536da8b89e11582da89/lxml-5.2.2-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:2eb2227ce1ff998faf0cd7fe85bbf086aa41dfc5af3b1d80867ecfe75fb68df3", size = 4811365 }, + { url = "https://files.pythonhosted.org/packages/e7/28/1809a5406282c03df561a3c8143c143bd515d5668f1a138f51aec6d2618e/lxml-5.2.2-cp311-cp311-manylinux_2_28_ppc64le.whl", hash = "sha256:1d8a701774dfc42a2f0b8ccdfe7dbc140500d1049e0632a611985d943fcf12df", size = 5452505 }, + { url = "https://files.pythonhosted.org/packages/99/a1/d91217a8d7fef5ac41af87c916d322c273a9b2047c735ea1dafa2ac46d16/lxml-5.2.2-cp311-cp311-manylinux_2_28_s390x.whl", hash = "sha256:56793b7a1a091a7c286b5f4aa1fe4ae5d1446fe742d00cdf2ffb1077865db10d", size = 4973479 }, + { url = "https://files.pythonhosted.org/packages/ad/b7/0dc82afed00c4c189cfd0b83464f9a431c66de8e73d911063956a147276a/lxml-5.2.2-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:eb00b549b13bd6d884c863554566095bf6fa9c3cecb2e7b399c4bc7904cb33b5", size = 5013920 }, + { url = "https://files.pythonhosted.org/packages/5f/e0/4cd021850f2e8ab5ce6ce294556300bd4b5c1eb7def88b5f859449dc883c/lxml-5.2.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:1a2569a1f15ae6c8c64108a2cd2b4a858fc1e13d25846be0666fc144715e32ab", size = 4849156 }, + { url = "https://files.pythonhosted.org/packages/f0/f4/fb01451fda1e121eb8f117a00040454ca05a9c9d82b308272042eebd05f3/lxml-5.2.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:8cf85a6e40ff1f37fe0f25719aadf443686b1ac7652593dc53c7ef9b8492b115", size = 5408551 }, + { url = "https://files.pythonhosted.org/packages/2f/ca/0376418e202e9423d47f86ae09db885fa6e109d0efb602f6468e6d1e8e77/lxml-5.2.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:d237ba6664b8e60fd90b8549a149a74fcc675272e0e95539a00522e4ca688b04", size = 4829966 }, + { url = "https://files.pythonhosted.org/packages/74/c4/4e6f5e2be18f8eb76dff5bff3619c2c654650fee93aea37a92866efe90bc/lxml-5.2.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0b3f5016e00ae7630a4b83d0868fca1e3d494c78a75b1c7252606a3a1c5fc2ad", size = 4976003 }, + { url = "https://files.pythonhosted.org/packages/3b/ca/5d74a0572c911f8dbf12d89abe0fdcbe0409c18978b5694392becd4d56fb/lxml-5.2.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:23441e2b5339bc54dc949e9e675fa35efe858108404ef9aa92f0456929ef6fe8", size = 4852709 }, + { url = "https://files.pythonhosted.org/packages/83/07/d95e9663ad8d875f344930e4fb52a0a6f56225267d3cc6e3e9bfa44ca736/lxml-5.2.2-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:2fb0ba3e8566548d6c8e7dd82a8229ff47bd8fb8c2da237607ac8e5a1b8312e5", size = 5479261 }, + { url = "https://files.pythonhosted.org/packages/df/e1/9ebae8d05492a8e9f632f2add15199e7bca5c1b063444e360a7bde685718/lxml-5.2.2-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:79d1fb9252e7e2cfe4de6e9a6610c7cbb99b9708e2c3e29057f487de5a9eaefa", size = 4944199 }, + { url = "https://files.pythonhosted.org/packages/ec/ab/189f571450e3393d4d442f88683d11b5a47c88e66a4e6b0d467500360483/lxml-5.2.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6dcc3d17eac1df7859ae01202e9bb11ffa8c98949dcbeb1069c8b9a75917e01b", size = 5033723 }, + { url = "https://files.pythonhosted.org/packages/80/d7/f28ccad4f08596592a58ad945c636140268bb4de9dcf4d10c9f72108d8a5/lxml-5.2.2-cp311-cp311-win32.whl", hash = "sha256:4c30a2f83677876465f44c018830f608fa3c6a8a466eb223535035fbc16f3438", size = 3475657 }, + { url = "https://files.pythonhosted.org/packages/04/19/d6aa2d980f220a04c91d4de538d2fea1a65535e7b0a4aec0998ce46e3667/lxml-5.2.2-cp311-cp311-win_amd64.whl", hash = "sha256:49095a38eb333aaf44c06052fd2ec3b8f23e19747ca7ec6f6c954ffea6dbf7be", size = 3816665 }, + { url = "https://files.pythonhosted.org/packages/26/36/6e00905cb4de2d014f4a62df58f0e82d262b5461245d951a6e7442b0222a/lxml-5.2.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:7429e7faa1a60cad26ae4227f4dd0459efde239e494c7312624ce228e04f6391", size = 8171540 }, + { url = "https://files.pythonhosted.org/packages/d6/68/7e9de19d47cd5430414063cd7739e8c8d8386016740c18af5ff13b64ff5c/lxml-5.2.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:50ccb5d355961c0f12f6cf24b7187dbabd5433f29e15147a67995474f27d1776", size = 4441241 }, + { url = "https://files.pythonhosted.org/packages/b4/1f/6a88a8e1b6a9be644c74e5f72cf581cb342a392e020c60a389cd194ebba1/lxml-5.2.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dc911208b18842a3a57266d8e51fc3cfaccee90a5351b92079beed912a7914c2", size = 5052926 }, + { url = "https://files.pythonhosted.org/packages/6b/cc/8e73a63c2aeb205fbed44272fea8c5ded07920233b9956e8e304e2516931/lxml-5.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:33ce9e786753743159799fdf8e92a5da351158c4bfb6f2db0bf31e7892a1feb5", size = 4748543 }, + { url = "https://files.pythonhosted.org/packages/ae/fc/6020fe1468fccb684619df6765a79b67229091631e5f14b97c3efcd75ca7/lxml-5.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec87c44f619380878bd49ca109669c9f221d9ae6883a5bcb3616785fa8f94c97", size = 5320915 }, + { url = "https://files.pythonhosted.org/packages/25/6c/02cecb6a26b0baec373baa3f4fb55343cf0d8710d6a853ff4c4b12a9cf16/lxml-5.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08ea0f606808354eb8f2dfaac095963cb25d9d28e27edcc375d7b30ab01abbf6", size = 4814179 }, + { url = "https://files.pythonhosted.org/packages/de/12/0253de661bb9f8c26b47059be4ed2ec5b9e4411fd2b1d45a2f4b399a7616/lxml-5.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75a9632f1d4f698b2e6e2e1ada40e71f369b15d69baddb8968dcc8e683839b18", size = 4923168 }, + { url = "https://files.pythonhosted.org/packages/cd/e7/63435cfa76534fb33a9656507057b96a25bb850ae932424b9724c9fe379e/lxml-5.2.2-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:74da9f97daec6928567b48c90ea2c82a106b2d500f397eeb8941e47d30b1ca85", size = 4741798 }, + { url = "https://files.pythonhosted.org/packages/27/7f/9e203e850609fa12c8b347fcceaba8655f062bc19ace7a837bb7fcf64b8f/lxml-5.2.2-cp312-cp312-manylinux_2_28_ppc64le.whl", hash = "sha256:0969e92af09c5687d769731e3f39ed62427cc72176cebb54b7a9d52cc4fa3b73", size = 5347143 }, + { url = "https://files.pythonhosted.org/packages/d9/d2/089fcb90e6bdd16639656c2632573508ae02f42a3b034376d3e32efd2ccc/lxml-5.2.2-cp312-cp312-manylinux_2_28_s390x.whl", hash = "sha256:9164361769b6ca7769079f4d426a41df6164879f7f3568be9086e15baca61466", size = 4901745 }, + { url = "https://files.pythonhosted.org/packages/9a/87/cff3c63ebe067ec9a7cc1948c379b8a16e7990c29bd5baf77c0a1dbd03c0/lxml-5.2.2-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:d26a618ae1766279f2660aca0081b2220aca6bd1aa06b2cf73f07383faf48927", size = 4947584 }, + { url = "https://files.pythonhosted.org/packages/73/3f/5a22be26edce482cb5dbdc5cf75544cfd1d3fb1389124d06995395829617/lxml-5.2.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ab67ed772c584b7ef2379797bf14b82df9aa5f7438c5b9a09624dd834c1c1aaf", size = 4790271 }, + { url = "https://files.pythonhosted.org/packages/b5/66/007666e7878ca746e44da3b4c2acf9d5c617dd51e152e89589e7eeb59f87/lxml-5.2.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:3d1e35572a56941b32c239774d7e9ad724074d37f90c7a7d499ab98761bd80cf", size = 5340401 }, + { url = "https://files.pythonhosted.org/packages/9d/3e/b7464d5c06a57cb206fd14a9251bfa75ae03d4f6b1c0c41cf82111bdfa3b/lxml-5.2.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:8268cbcd48c5375f46e000adb1390572c98879eb4f77910c6053d25cc3ac2c67", size = 4784839 }, + { url = "https://files.pythonhosted.org/packages/5b/70/1c45927de1cd7dc47292cfa8a9eb7928b38ce5647d66601bd169b25af4a7/lxml-5.2.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:e282aedd63c639c07c3857097fc0e236f984ceb4089a8b284da1c526491e3f3d", size = 4933979 }, + { url = "https://files.pythonhosted.org/packages/08/e1/51f6ad2bdb5f28fceeb6bd591d4a0ed5de42ffc6741fd88eb2209c6a46f2/lxml-5.2.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6dfdc2bfe69e9adf0df4915949c22a25b39d175d599bf98e7ddf620a13678585", size = 4782412 }, + { url = "https://files.pythonhosted.org/packages/81/13/7df8804d4fb678e0216f6f4532754fd471856b5cb24726dab55a3b65f527/lxml-5.2.2-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:4aefd911793b5d2d7a921233a54c90329bf3d4a6817dc465f12ffdfe4fc7b8fe", size = 5371318 }, + { url = "https://files.pythonhosted.org/packages/d7/7d/c98b7ef3e496a9c371057dc955be1fda04dab4e8af488b01bec254e1b59b/lxml-5.2.2-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:8b8df03a9e995b6211dafa63b32f9d405881518ff1ddd775db4e7b98fb545e1c", size = 4871432 }, + { url = "https://files.pythonhosted.org/packages/3e/fa/b361d670ffa8f477504b7fc0e5734a7878815c7e0b6769f3a5a903a94aee/lxml-5.2.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f11ae142f3a322d44513de1018b50f474f8f736bc3cd91d969f464b5bfef8836", size = 4972719 }, + { url = "https://files.pythonhosted.org/packages/fc/43/70e469a190a8f39ca5829b4ef4f2f7299ce65243abe46ba4a73dc58c1365/lxml-5.2.2-cp312-cp312-win32.whl", hash = "sha256:16a8326e51fcdffc886294c1e70b11ddccec836516a343f9ed0f82aac043c24a", size = 3487299 }, + { url = "https://files.pythonhosted.org/packages/58/16/99b03974974537c8c786fb98183d7c213ceb16e71205174a29ae869ca988/lxml-5.2.2-cp312-cp312-win_amd64.whl", hash = "sha256:bbc4b80af581e18568ff07f6395c02114d05f4865c2812a1f02f2eaecf0bfd48", size = 3817779 }, +] + +[[package]] +name = "mako" +version = "1.3.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/67/03/fb5ba97ff65ce64f6d35b582aacffc26b693a98053fa831ab43a437cbddb/Mako-1.3.5.tar.gz", hash = "sha256:48dbc20568c1d276a2698b36d968fa76161bf127194907ea6fc594fa81f943bc", size = 392738 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/03/62/70f5a0c2dd208f9f3f2f9afd103aec42ee4d9ad2401d78342f75e9b8da36/Mako-1.3.5-py3-none-any.whl", hash = "sha256:260f1dbc3a519453a9c856dedfe4beb4e50bd5a26d96386cb6c80856556bb91a", size = 78565 }, +] + +[[package]] +name = "markdown" +version = "3.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/22/02/4785861427848cc11e452cc62bb541006a1087cf04a1de83aedd5530b948/Markdown-3.6.tar.gz", hash = "sha256:ed4f41f6daecbeeb96e576ce414c41d2d876daa9a16cb35fa8ed8c2ddfad0224", size = 354715 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fc/b3/0c0c994fe49cd661084f8d5dc06562af53818cc0abefaca35bdc894577c3/Markdown-3.6-py3-none-any.whl", hash = "sha256:48f276f4d8cfb8ce6527c8f79e2ee29708508bf4d40aa410fbc3b4ee832c850f", size = 105381 }, +] + +[[package]] +name = "markdown-it-py" +version = "3.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mdurl", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/38/71/3b932df36c1a044d397a1f92d1cf91ee0a503d91e470cbd670aa66b07ed0/markdown-it-py-3.0.0.tar.gz", hash = "sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb", size = 74596 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl", hash = "sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1", size = 87528 }, +] + +[[package]] +name = "markupsafe" +version = "2.1.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/87/5b/aae44c6655f3801e81aa3eef09dbbf012431987ba564d7231722f68df02d/MarkupSafe-2.1.5.tar.gz", hash = "sha256:d283d37a890ba4c1ae73ffadf8046435c76e7bc2247bbb63c00bd1a709c6544b", size = 19384 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/11/e7/291e55127bb2ae67c64d66cef01432b5933859dfb7d6949daa721b89d0b3/MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:629ddd2ca402ae6dbedfceeba9c46d5f7b2a61d9749597d4307f943ef198fc1f", size = 18219 }, + { url = "https://files.pythonhosted.org/packages/6b/cb/aed7a284c00dfa7c0682d14df85ad4955a350a21d2e3b06d8240497359bf/MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b7b716f97b52c5a14bffdf688f971b2d5ef4029127f1ad7a513973cfd818df2", size = 14098 }, + { url = "https://files.pythonhosted.org/packages/1c/cf/35fe557e53709e93feb65575c93927942087e9b97213eabc3fe9d5b25a55/MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ec585f69cec0aa07d945b20805be741395e28ac1627333b1c5b0105962ffced", size = 29014 }, + { url = "https://files.pythonhosted.org/packages/97/18/c30da5e7a0e7f4603abfc6780574131221d9148f323752c2755d48abad30/MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b91c037585eba9095565a3556f611e3cbfaa42ca1e865f7b8015fe5c7336d5a5", size = 28220 }, + { url = "https://files.pythonhosted.org/packages/0c/40/2e73e7d532d030b1e41180807a80d564eda53babaf04d65e15c1cf897e40/MarkupSafe-2.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7502934a33b54030eaf1194c21c692a534196063db72176b0c4028e140f8f32c", size = 27756 }, + { url = "https://files.pythonhosted.org/packages/18/46/5dca760547e8c59c5311b332f70605d24c99d1303dd9a6e1fc3ed0d73561/MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0e397ac966fdf721b2c528cf028494e86172b4feba51d65f81ffd65c63798f3f", size = 33988 }, + { url = "https://files.pythonhosted.org/packages/6d/c5/27febe918ac36397919cd4a67d5579cbbfa8da027fa1238af6285bb368ea/MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c061bb86a71b42465156a3ee7bd58c8c2ceacdbeb95d05a99893e08b8467359a", size = 32718 }, + { url = "https://files.pythonhosted.org/packages/f8/81/56e567126a2c2bc2684d6391332e357589a96a76cb9f8e5052d85cb0ead8/MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3a57fdd7ce31c7ff06cdfbf31dafa96cc533c21e443d57f5b1ecc6cdc668ec7f", size = 33317 }, + { url = "https://files.pythonhosted.org/packages/00/0b/23f4b2470accb53285c613a3ab9ec19dc944eaf53592cb6d9e2af8aa24cc/MarkupSafe-2.1.5-cp311-cp311-win32.whl", hash = "sha256:397081c1a0bfb5124355710fe79478cdbeb39626492b15d399526ae53422b906", size = 16670 }, + { url = "https://files.pythonhosted.org/packages/b7/a2/c78a06a9ec6d04b3445a949615c4c7ed86a0b2eb68e44e7541b9d57067cc/MarkupSafe-2.1.5-cp311-cp311-win_amd64.whl", hash = "sha256:2b7c57a4dfc4f16f7142221afe5ba4e093e09e728ca65c51f5620c9aaeb9a617", size = 17224 }, + { url = "https://files.pythonhosted.org/packages/53/bd/583bf3e4c8d6a321938c13f49d44024dbe5ed63e0a7ba127e454a66da974/MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:8dec4936e9c3100156f8a2dc89c4b88d5c435175ff03413b443469c7c8c5f4d1", size = 18215 }, + { url = "https://files.pythonhosted.org/packages/48/d6/e7cd795fc710292c3af3a06d80868ce4b02bfbbf370b7cee11d282815a2a/MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:3c6b973f22eb18a789b1460b4b91bf04ae3f0c4234a0a6aa6b0a92f6f7b951d4", size = 14069 }, + { url = "https://files.pythonhosted.org/packages/51/b5/5d8ec796e2a08fc814a2c7d2584b55f889a55cf17dd1a90f2beb70744e5c/MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac07bad82163452a6884fe8fa0963fb98c2346ba78d779ec06bd7a6262132aee", size = 29452 }, + { url = "https://files.pythonhosted.org/packages/0a/0d/2454f072fae3b5a137c119abf15465d1771319dfe9e4acbb31722a0fff91/MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5dfb42c4604dddc8e4305050aa6deb084540643ed5804d7455b5df8fe16f5e5", size = 28462 }, + { url = "https://files.pythonhosted.org/packages/2d/75/fd6cb2e68780f72d47e6671840ca517bda5ef663d30ada7616b0462ad1e3/MarkupSafe-2.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ea3d8a3d18833cf4304cd2fc9cbb1efe188ca9b5efef2bdac7adc20594a0e46b", size = 27869 }, + { url = "https://files.pythonhosted.org/packages/b0/81/147c477391c2750e8fc7705829f7351cf1cd3be64406edcf900dc633feb2/MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d050b3361367a06d752db6ead6e7edeb0009be66bc3bae0ee9d97fb326badc2a", size = 33906 }, + { url = "https://files.pythonhosted.org/packages/8b/ff/9a52b71839d7a256b563e85d11050e307121000dcebc97df120176b3ad93/MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:bec0a414d016ac1a18862a519e54b2fd0fc8bbfd6890376898a6c0891dd82e9f", size = 32296 }, + { url = "https://files.pythonhosted.org/packages/88/07/2dc76aa51b481eb96a4c3198894f38b480490e834479611a4053fbf08623/MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:58c98fee265677f63a4385256a6d7683ab1832f3ddd1e66fe948d5880c21a169", size = 33038 }, + { url = "https://files.pythonhosted.org/packages/96/0c/620c1fb3661858c0e37eb3cbffd8c6f732a67cd97296f725789679801b31/MarkupSafe-2.1.5-cp312-cp312-win32.whl", hash = "sha256:8590b4ae07a35970728874632fed7bd57b26b0102df2d2b233b6d9d82f6c62ad", size = 16572 }, + { url = "https://files.pythonhosted.org/packages/3f/14/c3554d512d5f9100a95e737502f4a2323a1959f6d0d01e0d0997b35f7b10/MarkupSafe-2.1.5-cp312-cp312-win_amd64.whl", hash = "sha256:823b65d8706e32ad2df51ed89496147a42a2a6e01c13cfb6ffb8b1e92bc910bb", size = 17127 }, +] + +[[package]] +name = "mccabe" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e7/ff/0ffefdcac38932a54d2b5eed4e0ba8a408f215002cd178ad1df0f2806ff8/mccabe-0.7.0.tar.gz", hash = "sha256:348e0240c33b60bbdf4e523192ef919f28cb2c3d7d5c7794f74009290f236325", size = 9658 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/27/1a/1f68f9ba0c207934b35b86a8ca3aad8395a3d6dd7921c0686e23853ff5a9/mccabe-0.7.0-py2.py3-none-any.whl", hash = "sha256:6c2d30ab6be0e4a46919781807b4f0d834ebdd6c6e3dca0bda5a15f863427b6e", size = 7350 }, +] + +[[package]] +name = "mdit-py-plugins" +version = "0.4.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markdown-it-py", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/00/6c/79c52651b22b64dba5c7bbabd7a294cc410bfb2353250dc8ade44d7d8ad8/mdit_py_plugins-0.4.1.tar.gz", hash = "sha256:834b8ac23d1cd60cec703646ffd22ae97b7955a6d596eb1d304be1e251ae499c", size = 42713 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ef/f7/8a4dcea720a581e69ac8c5a38524baf0e3e2bb5f3819a9ff661464fe7d10/mdit_py_plugins-0.4.1-py3-none-any.whl", hash = "sha256:1020dfe4e6bfc2c79fb49ae4e3f5b297f5ccd20f010187acc52af2921e27dc6a", size = 54794 }, +] + +[[package]] +name = "mdurl" +version = "0.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba", size = 8729 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979 }, +] + +[[package]] +name = "mergedeep" +version = "1.3.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3a/41/580bb4006e3ed0361b8151a01d324fb03f420815446c7def45d02f74c270/mergedeep-1.3.4.tar.gz", hash = "sha256:0096d52e9dad9939c3d975a774666af186eda617e6ca84df4c94dec30004f2a8", size = 4661 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2c/19/04f9b178c2d8a15b076c8b5140708fa6ffc5601fb6f1e975537072df5b2a/mergedeep-1.3.4-py3-none-any.whl", hash = "sha256:70775750742b25c0d8f36c55aed03d24c3384d17c951b3175d898bd778ef0307", size = 6354 }, +] + +[[package]] +name = "mirakuru" +version = "2.5.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "psutil", marker = "sys_platform != 'cygwin'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d7/10/8318d218d15110f59aec6c3260ba0e93b5a95a8e572f5cb57df44e14b1ae/mirakuru-2.5.2.tar.gz", hash = "sha256:41ca583d355eb7a6cfdc21c1aea549979d685c27b57239b88725434f115a7132", size = 29714 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d6/08/68ee95f7bbbd43d02fb17f9c3d4dcf2d092983c4d6b1e05f347d16d4a8d3/mirakuru-2.5.2-py3-none-any.whl", hash = "sha256:90c2d90a8cf14349b2f33e6db30a16acd855499811e0312e56cf80ceacf2d3e5", size = 29188 }, +] + +[[package]] +name = "mistune" +version = "3.0.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ef/c8/f0173fe3bf85fd891aee2e7bcd8207dfe26c2c683d727c5a6cc3aec7b628/mistune-3.0.2.tar.gz", hash = "sha256:fc7f93ded930c92394ef2cb6f04a8aabab4117a91449e72dcc8dfa646a508be8", size = 90840 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f0/74/c95adcdf032956d9ef6c89a9b8a5152bf73915f8c633f3e3d88d06bd699c/mistune-3.0.2-py3-none-any.whl", hash = "sha256:71481854c30fdbc938963d3605b72501f5c10a9320ecd412c121c163a1c7d205", size = 47958 }, +] + +[[package]] +name = "mkdocs" +version = "1.6.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "colorama", marker = "platform_system == 'Windows'" }, + { name = "ghp-import", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "jinja2", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "markdown", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "markupsafe", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "mergedeep", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "mkdocs-get-deps", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "packaging", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pathspec", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pyyaml", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pyyaml-env-tag", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "watchdog", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cc/6b/26b33cc8ad54e8bc0345cddc061c2c5c23e364de0ecd97969df23f95a673/mkdocs-1.6.0.tar.gz", hash = "sha256:a73f735824ef83a4f3bcb7a231dcab23f5a838f88b7efc54a0eef5fbdbc3c512", size = 3888392 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b8/c0/930dcf5a3e96b9c8e7ad15502603fc61d495479699e2d2c381e3d37294d1/mkdocs-1.6.0-py3-none-any.whl", hash = "sha256:1eb5cb7676b7d89323e62b56235010216319217d4af5ddc543a91beb8d125ea7", size = 3862264 }, +] + +[[package]] +name = "mkdocs-get-deps" +version = "0.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mergedeep", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "platformdirs", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pyyaml", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/98/f5/ed29cd50067784976f25ed0ed6fcd3c2ce9eb90650aa3b2796ddf7b6870b/mkdocs_get_deps-0.2.0.tar.gz", hash = "sha256:162b3d129c7fad9b19abfdcb9c1458a651628e4b1dea628ac68790fb3061c60c", size = 10239 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9f/d4/029f984e8d3f3b6b726bd33cafc473b75e9e44c0f7e80a5b29abc466bdea/mkdocs_get_deps-0.2.0-py3-none-any.whl", hash = "sha256:2bf11d0b133e77a0dd036abeeb06dec8775e46efa526dc70667d8863eefc6134", size = 9521 }, +] + +[[package]] +name = "mkdocs-macros-plugin" +version = "1.0.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jinja2", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "mkdocs", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "python-dateutil", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pyyaml", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "termcolor", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c1/92/06948e4d60aac760c227f8fcc86d20dfc0cf9b1735b087302ac6c16a9479/mkdocs-macros-plugin-1.0.5.tar.gz", hash = "sha256:fe348d75f01c911f362b6d998c57b3d85b505876dde69db924f2c512c395c328", size = 566013 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c5/60/81e3b580bafe20a3103163b8fd89f62911f0df2e50f331d316313f8c2dc8/mkdocs_macros_plugin-1.0.5-py3-none-any.whl", hash = "sha256:f60e26f711f5a830ddf1e7980865bf5c0f1180db56109803cdd280073c1a050a", size = 21401 }, +] + +[[package]] +name = "mkdocs-material" +version = "9.5.31" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "babel", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "colorama", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "jinja2", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "markdown", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "mkdocs", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "mkdocs-material-extensions", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "paginate", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pygments", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pymdown-extensions", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "regex", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "requests", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/98/6b/ebc5dfe25614aabd3cfbd7bd18c4224194dfce0eb01d221fb3bf8988b380/mkdocs_material-9.5.31.tar.gz", hash = "sha256:31833ec664772669f5856f4f276bf3fdf0e642a445e64491eda459249c3a1ca8", size = 4103722 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6a/ae/2f3aaab2abfe76e5e3073cf9429895449c30168d04421cf73cbe48b4e11b/mkdocs_material-9.5.31-py3-none-any.whl", hash = "sha256:1b1f49066fdb3824c1e96d6bacd2d4375de4ac74580b47e79ff44c4d835c5fcb", size = 8818355 }, +] + +[[package]] +name = "mkdocs-material-extensions" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/79/9b/9b4c96d6593b2a541e1cb8b34899a6d021d208bb357042823d4d2cabdbe7/mkdocs_material_extensions-1.3.1.tar.gz", hash = "sha256:10c9511cea88f568257f960358a467d12b970e1f7b2c0e5fb2bb48cab1928443", size = 11847 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5b/54/662a4743aa81d9582ee9339d4ffa3c8fd40a4965e033d77b9da9774d3960/mkdocs_material_extensions-1.3.1-py3-none-any.whl", hash = "sha256:adff8b62700b25cb77b53358dad940f3ef973dd6db797907c49e3c2ef3ab4e31", size = 8728 }, +] + +[[package]] +name = "mkdocs-rss-plugin" +version = "1.15.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cachecontrol", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "cachecontrol", extra = ["filecache"] }, + { name = "gitpython", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "mkdocs", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "requests", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "tzdata", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/97/7f/6d668a1f6210db0738c9043922e38c2ff8646559d200e94ad1b4766a677f/mkdocs_rss_plugin-1.15.0.tar.gz", hash = "sha256:92995ed6c77b2ae1f5f2913e62282c27e50c35d618c4291b5b939e50badd7504", size = 32566 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/65/5c/82651a82b49f2ecaaaa3bac1ed5729719cda7d462641c8190f923e77d34c/mkdocs_rss_plugin-1.15.0-py2.py3-none-any.whl", hash = "sha256:7308ac13f0976c0479db5a62cb7ef9b10fdd74b6521e459bb66a13e2cfe69d4b", size = 27566 }, +] + +[[package]] +name = "more-itertools" +version = "10.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/92/0d/ad6a82320cb8eba710fd0dceb0f678d5a1b58d67d03ae5be14874baa39e0/more-itertools-10.4.0.tar.gz", hash = "sha256:fe0e63c4ab068eac62410ab05cccca2dc71ec44ba8ef29916a0090df061cf923", size = 120755 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d8/0b/6a51175e1395774449fca317fb8861379b7a2d59be411b8cce3d19d6ce78/more_itertools-10.4.0-py3-none-any.whl", hash = "sha256:0f7d9f83a0a8dcfa8a2694a770590d98a67ea943e3d9f5298309a484758c4e27", size = 60935 }, +] + +[[package]] +name = "msgpack" +version = "1.0.8" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/08/4c/17adf86a8fbb02c144c7569dc4919483c01a2ac270307e2d59e1ce394087/msgpack-1.0.8.tar.gz", hash = "sha256:95c02b0e27e706e48d0e5426d1710ca78e0f0628d6e89d5b5a5b91a5f12274f3", size = 167014 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3e/0e/96477b0448c593cc5c679e855c7bb58bb6543a065760e67cad0c3f90deb1/msgpack-1.0.8-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9517004e21664f2b5a5fd6333b0731b9cf0817403a941b393d89a2f1dc2bd836", size = 157669 }, + { url = "https://files.pythonhosted.org/packages/46/ca/96051d40050cd17bf054996662dbf8900da9995fa0a3308f2597a47bedad/msgpack-1.0.8-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d16a786905034e7e34098634b184a7d81f91d4c3d246edc6bd7aefb2fd8ea6ad", size = 87994 }, + { url = "https://files.pythonhosted.org/packages/17/29/7f3f30dd40bf1c2599350099645d3664b3aadb803583cbfce57a28047c4d/msgpack-1.0.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e2872993e209f7ed04d963e4b4fbae72d034844ec66bc4ca403329db2074377b", size = 84887 }, + { url = "https://files.pythonhosted.org/packages/1a/01/01a88f7971c68037dab4be2737b50e00557bbdaf179ab988803c736043ed/msgpack-1.0.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c330eace3dd100bdb54b5653b966de7f51c26ec4a7d4e87132d9b4f738220ba", size = 400836 }, + { url = "https://files.pythonhosted.org/packages/f6/f0/a7bdb48223cd21b9abed814b08fca8fe6a40931e70ec97c24d2f15d68ef3/msgpack-1.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:83b5c044f3eff2a6534768ccfd50425939e7a8b5cf9a7261c385de1e20dcfc85", size = 409267 }, + { url = "https://files.pythonhosted.org/packages/f5/9a/88388f7960930a7dc0bbcde3d1db1bd543c9645483f3172c64853f4cab67/msgpack-1.0.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1876b0b653a808fcd50123b953af170c535027bf1d053b59790eebb0aeb38950", size = 397264 }, + { url = "https://files.pythonhosted.org/packages/43/7c/82b729d105dae9f8be500228fdd8cfc1f918a18e285afcbf6d6915146037/msgpack-1.0.8-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:dfe1f0f0ed5785c187144c46a292b8c34c1295c01da12e10ccddfc16def4448a", size = 404763 }, + { url = "https://files.pythonhosted.org/packages/e0/3f/978df03be94c2198be22df5d6e31b69ef7a9759c6cc0cce4ed1d08e2b27b/msgpack-1.0.8-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3528807cbbb7f315bb81959d5961855e7ba52aa60a3097151cb21956fbc7502b", size = 434775 }, + { url = "https://files.pythonhosted.org/packages/dd/06/adb6c8cdea18f9ba09b7dc1442b50ce222858ae4a85703420349784429d0/msgpack-1.0.8-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e2f879ab92ce502a1e65fce390eab619774dda6a6ff719718069ac94084098ce", size = 409109 }, + { url = "https://files.pythonhosted.org/packages/c6/d6/46eec1866b1ff58001a4be192ec43675620392de078fd4baf394f7d03552/msgpack-1.0.8-cp311-cp311-win32.whl", hash = "sha256:26ee97a8261e6e35885c2ecd2fd4a6d38252246f94a2aec23665a4e66d066305", size = 68779 }, + { url = "https://files.pythonhosted.org/packages/33/e9/f450b8e1243704c0ab656dcd37f6146881d11bbb68588132d8ae673c455b/msgpack-1.0.8-cp311-cp311-win_amd64.whl", hash = "sha256:eadb9f826c138e6cf3c49d6f8de88225a3c0ab181a9b4ba792e006e5292d150e", size = 75180 }, + { url = "https://files.pythonhosted.org/packages/97/73/757eeca26527ebac31d86d35bf4ba20155ee14d35c8619dd96bc80a037f3/msgpack-1.0.8-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:114be227f5213ef8b215c22dde19532f5da9652e56e8ce969bf0a26d7c419fee", size = 158948 }, + { url = "https://files.pythonhosted.org/packages/11/df/558899a5f90d450e988484be25be0b49c6930858d6fe44ea6f1f66502fe5/msgpack-1.0.8-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d661dc4785affa9d0edfdd1e59ec056a58b3dbb9f196fa43587f3ddac654ac7b", size = 88696 }, + { url = "https://files.pythonhosted.org/packages/99/3e/49d430df1e9abf06bb91e9824422cd6ceead2114662417286da3ddcdd295/msgpack-1.0.8-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d56fd9f1f1cdc8227d7b7918f55091349741904d9520c65f0139a9755952c9e8", size = 85428 }, + { url = "https://files.pythonhosted.org/packages/54/f7/84828d0c6be6b7f0770777f1a7b1f76f3a78e8b6afb5e4e9c1c9350242be/msgpack-1.0.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0726c282d188e204281ebd8de31724b7d749adebc086873a59efb8cf7ae27df3", size = 396116 }, + { url = "https://files.pythonhosted.org/packages/04/2a/c833a8503be9030083f0469e7a3c74d3622a3b4eae676c3934d3ccc01036/msgpack-1.0.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8db8e423192303ed77cff4dce3a4b88dbfaf43979d280181558af5e2c3c71afc", size = 408331 }, + { url = "https://files.pythonhosted.org/packages/04/50/b988d0a8e8835f705e4bbcb6433845ff11dd50083c0aa43e607bb7b2ff96/msgpack-1.0.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:99881222f4a8c2f641f25703963a5cefb076adffd959e0558dc9f803a52d6a58", size = 394182 }, + { url = "https://files.pythonhosted.org/packages/98/e1/0d18496cbeef771db605b6a14794f9b4235d371f36b43f7223c1613969ec/msgpack-1.0.8-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:b5505774ea2a73a86ea176e8a9a4a7c8bf5d521050f0f6f8426afe798689243f", size = 401226 }, + { url = "https://files.pythonhosted.org/packages/03/79/ae000bde2aee4b9f0d50c1ca1ab301ade873b59dd6968c28f918d1cf8be4/msgpack-1.0.8-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:ef254a06bcea461e65ff0373d8a0dd1ed3aa004af48839f002a0c994a6f72d04", size = 432994 }, + { url = "https://files.pythonhosted.org/packages/cb/46/f97bedf3ab16d38eeea0aafa3ad93cc7b9adf898218961faaea9c3c639f1/msgpack-1.0.8-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:e1dd7839443592d00e96db831eddb4111a2a81a46b028f0facd60a09ebbdd543", size = 410432 }, + { url = "https://files.pythonhosted.org/packages/8f/59/db5b61c74341b6fdf2c8a5743bb242c395d728666cf3105ff17290eb421a/msgpack-1.0.8-cp312-cp312-win32.whl", hash = "sha256:64d0fcd436c5683fdd7c907eeae5e2cbb5eb872fafbc03a43609d7941840995c", size = 69255 }, + { url = "https://files.pythonhosted.org/packages/72/5c/5facaa9b5d1b3ead831697daacf37d485af312bbe483ac6ecf43a3dd777f/msgpack-1.0.8-cp312-cp312-win_amd64.whl", hash = "sha256:74398a4cf19de42e1498368c36eed45d9528f5fd0155241e82c4082b7e16cffd", size = 75348 }, +] + +[[package]] +name = "msgpack-types" +version = "0.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c6/3a/f6252e5deaa60297f957fb2a478e6af197fb4df341ccff1f411e94679e79/msgpack_types-0.3.0.tar.gz", hash = "sha256:e14faa08ab56ce529738f04d585e601c90f415d11d84f8089883d00d731d1ebf", size = 6615 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ba/40/469e4fbfe01d1edf5ed0fcf3c78b0ba3e80ba74cdb0b9f505c3b517be373/msgpack_types-0.3.0-py3-none-any.whl", hash = "sha256:44933978973cf1f09a97fc830676b10ba848cc103d73628af5c57f14ec4d6e92", size = 8122 }, +] + +[[package]] +name = "mypy" +version = "1.11.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mypy-extensions", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "typing-extensions", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b6/9c/a4b3bda53823439cf395db8ecdda6229a83f9bf201714a68a15190bb2919/mypy-1.11.1.tar.gz", hash = "sha256:f404a0b069709f18bbdb702eb3dcfe51910602995de00bd39cea3050b5772d08", size = 3078369 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0b/b1/62d8ce619493a5364dda4f410912aa12c27126926e8fb8393edca0664640/mypy-1.11.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:7b6343d338390bb946d449677726edf60102a1c96079b4f002dedff375953fc5", size = 10858723 }, + { url = "https://files.pythonhosted.org/packages/fe/aa/2ad15a318bc6a17b7f23e1641a624603949904f6131e09681f40340fb875/mypy-1.11.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e4fe9f4e5e521b458d8feb52547f4bade7ef8c93238dfb5bbc790d9ff2d770ca", size = 10038078 }, + { url = "https://files.pythonhosted.org/packages/4d/7f/77feb389d91603f55b3c4e3e16ccf8752bce007ed73ca921e42c9a5dff12/mypy-1.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:886c9dbecc87b9516eff294541bf7f3655722bf22bb898ee06985cd7269898de", size = 12420213 }, + { url = "https://files.pythonhosted.org/packages/bc/5b/907b4681f68e7ee2e2e88eed65c514cf6406b8f2f83b243ea79bd4eddb97/mypy-1.11.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:fca4a60e1dd9fd0193ae0067eaeeb962f2d79e0d9f0f66223a0682f26ffcc809", size = 12898278 }, + { url = "https://files.pythonhosted.org/packages/5b/b3/2a83be637825d7432b8e6a51e45d02de4f463b6c7ec7164a45009a7cf477/mypy-1.11.1-cp311-cp311-win_amd64.whl", hash = "sha256:0bd53faf56de9643336aeea1c925012837432b5faf1701ccca7fde70166ccf72", size = 9564438 }, + { url = "https://files.pythonhosted.org/packages/3a/34/69638cee2e87303f19a0c35e80d42757e14d9aba328f272fdcdc0bf3c9b8/mypy-1.11.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f39918a50f74dc5969807dcfaecafa804fa7f90c9d60506835036cc1bc891dc8", size = 10995789 }, + { url = "https://files.pythonhosted.org/packages/c4/3c/3e0611348fc53a4a7c80485959478b4f6eae706baf3b7c03cafa22639216/mypy-1.11.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0bc71d1fb27a428139dd78621953effe0d208aed9857cb08d002280b0422003a", size = 10002696 }, + { url = "https://files.pythonhosted.org/packages/1c/21/a6b46c91b4c9d1918ee59c305f46850cde7cbea748635a352e7c3c8ed204/mypy-1.11.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b868d3bcff720dd7217c383474008ddabaf048fad8d78ed948bb4b624870a417", size = 12505772 }, + { url = "https://files.pythonhosted.org/packages/c4/55/07904d4c8f408e70308015edcbff067eaa77514475938a9dd81b063de2a8/mypy-1.11.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:a707ec1527ffcdd1c784d0924bf5cb15cd7f22683b919668a04d2b9c34549d2e", size = 12954190 }, + { url = "https://files.pythonhosted.org/packages/1e/b7/3a50f318979c8c541428c2f1ee973cda813bcc89614de982dafdd0df2b3e/mypy-1.11.1-cp312-cp312-win_amd64.whl", hash = "sha256:64f4a90e3ea07f590c5bcf9029035cf0efeae5ba8be511a8caada1a4893f5525", size = 9663138 }, + { url = "https://files.pythonhosted.org/packages/f8/d4/4960d0df55f30a7625d9c3c9414dfd42f779caabae137ef73ffaed0c97b9/mypy-1.11.1-py3-none-any.whl", hash = "sha256:0624bdb940255d2dd24e829d99a13cfeb72e4e9031f9492148f410ed30bcab54", size = 2619257 }, +] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/98/a4/1ab47638b92648243faf97a5aeb6ea83059cc3624972ab6b8d2316078d3f/mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782", size = 4433 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2a/e2/5d3f6ada4297caebe1a2add3b126fe800c96f56dbe5d1988a2cbe0b267aa/mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d", size = 4695 }, +] + +[[package]] +name = "mypy-zope" +version = "0.1.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mypy", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "zope-interface", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "zope-schema", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/77/45/ba2c0ac5487a70ba26209bc32773ead684092c40e122c5d3c50f8587fa0f/mypy-zope-0.1.3.tar.gz", hash = "sha256:4247f7ad0202cc82f12ee0b14a3d7b31adfeff1b6d5ca176168853d64c672dd1", size = 23600 } + +[[package]] +name = "myst-parser" +version = "4.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "docutils", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "jinja2", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "markdown-it-py", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "mdit-py-plugins", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pyyaml", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "sphinx", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/85/55/6d1741a1780e5e65038b74bce6689da15f620261c490c3511eb4c12bac4b/myst_parser-4.0.0.tar.gz", hash = "sha256:851c9dfb44e36e56d15d05e72f02b80da21a9e0d07cba96baf5e2d476bb91531", size = 93858 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ca/b4/b036f8fdb667587bb37df29dc6644681dd78b7a2a6321a34684b79412b28/myst_parser-4.0.0-py3-none-any.whl", hash = "sha256:b9317997552424448c6096c2558872fdb6f81d3ecb3a40ce84a7518798f3f28d", size = 84563 }, +] + +[[package]] +name = "natsort" +version = "8.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e2/a9/a0c57aee75f77794adaf35322f8b6404cbd0f89ad45c87197a937764b7d0/natsort-8.4.0.tar.gz", hash = "sha256:45312c4a0e5507593da193dedd04abb1469253b601ecaf63445ad80f0a1ea581", size = 76575 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ef/82/7a9d0550484a62c6da82858ee9419f3dd1ccc9aa1c26a1e43da3ecd20b0d/natsort-8.4.0-py3-none-any.whl", hash = "sha256:4732914fb471f56b5cce04d7bae6f164a592c7712e1c85f9ef585e197299521c", size = 38268 }, +] + +[[package]] +name = "nh3" +version = "0.2.18" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/62/73/10df50b42ddb547a907deeb2f3c9823022580a7a47281e8eae8e003a9639/nh3-0.2.18.tar.gz", hash = "sha256:94a166927e53972a9698af9542ace4e38b9de50c34352b962f4d9a7d4c927af4", size = 15028 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/89/1daff5d9ba5a95a157c092c7c5f39b8dd2b1ddb4559966f808d31cfb67e0/nh3-0.2.18-cp37-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:14c5a72e9fe82aea5fe3072116ad4661af5cf8e8ff8fc5ad3450f123e4925e86", size = 1374474 }, + { url = "https://files.pythonhosted.org/packages/2c/b6/42fc3c69cabf86b6b81e4c051a9b6e249c5ba9f8155590222c2622961f58/nh3-0.2.18-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:7b7c2a3c9eb1a827d42539aa64091640bd275b81e097cd1d8d82ef91ffa2e811", size = 694573 }, + { url = "https://files.pythonhosted.org/packages/45/b9/833f385403abaf0023c6547389ec7a7acf141ddd9d1f21573723a6eab39a/nh3-0.2.18-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42c64511469005058cd17cc1537578eac40ae9f7200bedcfd1fc1a05f4f8c200", size = 844082 }, + { url = "https://files.pythonhosted.org/packages/05/2b/85977d9e11713b5747595ee61f381bc820749daf83f07b90b6c9964cf932/nh3-0.2.18-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0411beb0589eacb6734f28d5497ca2ed379eafab8ad8c84b31bb5c34072b7164", size = 782460 }, + { url = "https://files.pythonhosted.org/packages/72/f2/5c894d5265ab80a97c68ca36f25c8f6f0308abac649aaf152b74e7e854a8/nh3-0.2.18-cp37-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:5f36b271dae35c465ef5e9090e1fdaba4a60a56f0bb0ba03e0932a66f28b9189", size = 879827 }, + { url = "https://files.pythonhosted.org/packages/ab/a7/375afcc710dbe2d64cfbd69e31f82f3e423d43737258af01f6a56d844085/nh3-0.2.18-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:34c03fa78e328c691f982b7c03d4423bdfd7da69cd707fe572f544cf74ac23ad", size = 841080 }, + { url = "https://files.pythonhosted.org/packages/c2/a8/3bb02d0c60a03ad3a112b76c46971e9480efa98a8946677b5a59f60130ca/nh3-0.2.18-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:19aaba96e0f795bd0a6c56291495ff59364f4300d4a39b29a0abc9cb3774a84b", size = 924144 }, + { url = "https://files.pythonhosted.org/packages/1b/63/6ab90d0e5225ab9780f6c9fb52254fa36b52bb7c188df9201d05b647e5e1/nh3-0.2.18-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de3ceed6e661954871d6cd78b410213bdcb136f79aafe22aa7182e028b8c7307", size = 769192 }, + { url = "https://files.pythonhosted.org/packages/a4/17/59391c28580e2c32272761629893e761442fc7666da0b1cdb479f3b67b88/nh3-0.2.18-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6955369e4d9f48f41e3f238a9e60f9410645db7e07435e62c6a9ea6135a4907f", size = 791042 }, + { url = "https://files.pythonhosted.org/packages/a3/da/0c4e282bc3cff4a0adf37005fa1fb42257673fbc1bbf7d1ff639ec3d255a/nh3-0.2.18-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:f0eca9ca8628dbb4e916ae2491d72957fdd35f7a5d326b7032a345f111ac07fe", size = 1010073 }, + { url = "https://files.pythonhosted.org/packages/de/81/c291231463d21da5f8bba82c8167a6d6893cc5419b0639801ee5d3aeb8a9/nh3-0.2.18-cp37-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:3a157ab149e591bb638a55c8c6bcb8cdb559c8b12c13a8affaba6cedfe51713a", size = 1029782 }, + { url = "https://files.pythonhosted.org/packages/63/1d/842fed85cf66c973be0aed8770093d6a04741f65e2c388ddd4c07fd3296e/nh3-0.2.18-cp37-abi3-musllinux_1_2_i686.whl", hash = "sha256:c8b3a1cebcba9b3669ed1a84cc65bf005728d2f0bc1ed2a6594a992e817f3a50", size = 942504 }, + { url = "https://files.pythonhosted.org/packages/eb/61/73a007c74c37895fdf66e0edcd881f5eaa17a348ff02f4bb4bc906d61085/nh3-0.2.18-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:36c95d4b70530b320b365659bb5034341316e6a9b30f0b25fa9c9eff4c27a204", size = 941541 }, + { url = "https://files.pythonhosted.org/packages/78/48/54a788fc9428e481b2f58e0cd8564f6c74ffb6e9ef73d39e8acbeae8c629/nh3-0.2.18-cp37-abi3-win32.whl", hash = "sha256:a7f1b5b2c15866f2db413a3649a8fe4fd7b428ae58be2c0f6bca5eefd53ca2be", size = 573750 }, + { url = "https://files.pythonhosted.org/packages/26/8d/53c5b19c4999bdc6ba95f246f4ef35ca83d7d7423e5e38be43ad66544e5d/nh3-0.2.18-cp37-abi3-win_amd64.whl", hash = "sha256:8ce0f819d2f1933953fca255db2471ad58184a60508f03e6285e5114b6254844", size = 579012 }, +] + +[[package]] +name = "openapi-core" +version = "0.19.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "isodate", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "jsonschema", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "jsonschema-path", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "more-itertools", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "openapi-schema-validator", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "openapi-spec-validator", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "parse", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "werkzeug", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/9f/ad/8ec5980178957abc9a3da1a58b68ae4b17fa14c2b859157e97165537ac68/openapi_core-0.19.2.tar.gz", hash = "sha256:db4e13dd3162d861d9485ae804f350586d9fd1d72808cdb264d6993d9b5ede3f", size = 108121 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c9/7d/825ec00dfb433a5b4975490e52590297796db11e96ef77b5c5e78a9165f8/openapi_core-0.19.2-py3-none-any.whl", hash = "sha256:b05f81031cc5b14f3a90b02f955d2ec756ccd5fba4f4e80bc4362520dac679a4", size = 103505 }, +] + +[[package]] +name = "openapi-schema-validator" +version = "0.6.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jsonschema", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "jsonschema-specifications", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "rfc3339-validator", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5c/b2/7d5bdf2b26b6a95ebf4fbec294acaf4306c713f3a47c2453962511110248/openapi_schema_validator-0.6.2.tar.gz", hash = "sha256:11a95c9c9017912964e3e5f2545a5b11c3814880681fcacfb73b1759bb4f2804", size = 11860 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/dc/9aefae8891454130968ff079ece851d1ae9ccf6fb7965761f47c50c04853/openapi_schema_validator-0.6.2-py3-none-any.whl", hash = "sha256:c4887c1347c669eb7cded9090f4438b710845cd0f90d1fb9e1b3303fb37339f8", size = 8750 }, +] + +[[package]] +name = "openapi-spec-validator" +version = "0.7.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jsonschema", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "jsonschema-path", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "lazy-object-proxy", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "openapi-schema-validator", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/67/fe/21954ff978239dc29ebb313f5c87eeb4ec929b694b9667323086730998e2/openapi_spec_validator-0.7.1.tar.gz", hash = "sha256:8577b85a8268685da6f8aa30990b83b7960d4d1117e901d451b5d572605e5ec7", size = 37985 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2b/4d/e744fff95aaf3aeafc968d5ba7297c8cda0d1ecb8e3acd21b25adae4d835/openapi_spec_validator-0.7.1-py3-none-any.whl", hash = "sha256:3c81825043f24ccbcd2f4b149b11e8231abce5ba84f37065e14ec947d8f4e959", size = 38998 }, +] + +[[package]] +name = "opentelemetry-api" +version = "1.26.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "deprecated", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "importlib-metadata", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/48/d4/e9a0ddef6eed086c96e8265d864a46da099611b7be153b0cfb63fd47e1b4/opentelemetry_api-1.26.0.tar.gz", hash = "sha256:2bd639e4bed5b18486fef0b5a520aaffde5a18fc225e808a1ac4df363f43a1ce", size = 60904 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e3/a7/6322d1d7a1fb926e8b99208c27730f21217da2f1e0e11dab48a78a0427a4/opentelemetry_api-1.26.0-py3-none-any.whl", hash = "sha256:7d7ea33adf2ceda2dd680b18b1677e4152000b37ca76e679da71ff103b943064", size = 61533 }, +] + +[[package]] +name = "orjson" +version = "3.10.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/70/24/8be1c9f6d21e3c510c441d6cbb6f3a75f2538b42a45f0c17ffb2182882f1/orjson-3.10.6.tar.gz", hash = "sha256:e54b63d0a7c6c54a5f5f726bc93a2078111ef060fec4ecbf34c5db800ca3b3a7", size = 4939742 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c2/88/9b7f032f11eef88e56559fb7d8fff70dbc43b95de4acd0b43acf1b235034/orjson-3.10.6-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b1ec490e10d2a77c345def52599311849fc063ae0e67cf4f84528073152bb2ba", size = 250490 }, + { url = "https://files.pythonhosted.org/packages/64/7b/a06d303ced99ae1d321148462d7e277db0359c50846d7c29143f387636d9/orjson-3.10.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:55d43d3feb8f19d07e9f01e5b9be4f28801cf7c60d0fa0d279951b18fae1932b", size = 150500 }, + { url = "https://files.pythonhosted.org/packages/a9/23/4f380e4a3cbbe020f5bc5467d91c45a1a3868424078c1b66f9af12042c1e/orjson-3.10.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ac3045267e98fe749408eee1593a142e02357c5c99be0802185ef2170086a863", size = 148569 }, + { url = "https://files.pythonhosted.org/packages/6c/9c/adab3ab2cb665a1f853e53aa164c07cecda31ccac4b6084b12f7314ddf4a/orjson-3.10.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c27bc6a28ae95923350ab382c57113abd38f3928af3c80be6f2ba7eb8d8db0b0", size = 153143 }, + { url = "https://files.pythonhosted.org/packages/71/d9/ce882ceb67fc75b6550c116077b1853a273e9d22775d20e769aaeea1534f/orjson-3.10.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d27456491ca79532d11e507cadca37fb8c9324a3976294f68fb1eff2dc6ced5a", size = 164754 }, + { url = "https://files.pythonhosted.org/packages/09/28/2f44c58edd42d53ef4a994e0a548eef1df170454fb74416ef80271850588/orjson-3.10.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05ac3d3916023745aa3b3b388e91b9166be1ca02b7c7e41045da6d12985685f0", size = 141064 }, + { url = "https://files.pythonhosted.org/packages/68/a8/d39130e04b0afff3548b5afbb16c39ee5bcda7ba69f4b98da3aec8f9135f/orjson-3.10.6-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1335d4ef59ab85cab66fe73fd7a4e881c298ee7f63ede918b7faa1b27cbe5212", size = 173013 }, + { url = "https://files.pythonhosted.org/packages/ca/df/1a0ca1bb25721be0adbe8a70318fb8e078f4e5ccb32f66c9cd869bd9e42f/orjson-3.10.6-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:4bbc6d0af24c1575edc79994c20e1b29e6fb3c6a570371306db0993ecf144dc5", size = 167293 }, + { url = "https://files.pythonhosted.org/packages/40/41/330a5bc136a3189f9c499c1c5b72a49974165eefbd9cd2e391d53aa8b342/orjson-3.10.6-cp311-none-win32.whl", hash = "sha256:450e39ab1f7694465060a0550b3f6d328d20297bf2e06aa947b97c21e5241fbd", size = 142507 }, + { url = "https://files.pythonhosted.org/packages/04/82/7d588fae234da97502bceec16d4fbaa4799156693aa1513a7745034dab08/orjson-3.10.6-cp311-none-win_amd64.whl", hash = "sha256:227df19441372610b20e05bdb906e1742ec2ad7a66ac8350dcfd29a63014a83b", size = 136397 }, + { url = "https://files.pythonhosted.org/packages/0d/27/a3927c3d6d69c7af8eb0ee6f92cd9d0a1cc33a1616eceec9f20f3bbbad36/orjson-3.10.6-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:ea2977b21f8d5d9b758bb3f344a75e55ca78e3ff85595d248eee813ae23ecdfb", size = 250627 }, + { url = "https://files.pythonhosted.org/packages/0e/ad/95aa3b5965b0fefd6bbc1207fc3227c638c2b135838f9f16dc9676d6e571/orjson-3.10.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b6f3d167d13a16ed263b52dbfedff52c962bfd3d270b46b7518365bcc2121eed", size = 150290 }, + { url = "https://files.pythonhosted.org/packages/d6/ee/c6b5a15d5c4a77c1f22bc48ab4e8bc8263ab6231fae7af451b13704fdc81/orjson-3.10.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f710f346e4c44a4e8bdf23daa974faede58f83334289df80bc9cd12fe82573c7", size = 148702 }, + { url = "https://files.pythonhosted.org/packages/2c/b7/a5f07b53ac7771a1748be80c5fb8a4f7d7b797cdf1b73a726c975e3a43d7/orjson-3.10.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7275664f84e027dcb1ad5200b8b18373e9c669b2a9ec33d410c40f5ccf4b257e", size = 153183 }, + { url = "https://files.pythonhosted.org/packages/d7/04/5358e8006cf08623260d6a253bc78fb86ccb544cdcabaf08b6a74e9ef62f/orjson-3.10.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0943e4c701196b23c240b3d10ed8ecd674f03089198cf503105b474a4f77f21f", size = 164857 }, + { url = "https://files.pythonhosted.org/packages/2f/d9/f6158899462baaf13f98c80186965201b8920a1cfd58c3b614b8f2924535/orjson-3.10.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:446dee5a491b5bc7d8f825d80d9637e7af43f86a331207b9c9610e2f93fee22a", size = 141261 }, + { url = "https://files.pythonhosted.org/packages/a8/2f/8cb2b5bee432627777148dd368484af0359fb0e7ee57aaf05c0efb477e46/orjson-3.10.6-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:64c81456d2a050d380786413786b057983892db105516639cb5d3ee3c7fd5148", size = 172776 }, + { url = "https://files.pythonhosted.org/packages/08/0c/db8d8ccb3d79a176987680f83f4dab46486c06eade3c31d5c30472075500/orjson-3.10.6-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:960db0e31c4e52fa0fc3ecbaea5b2d3b58f379e32a95ae6b0ebeaa25b93dfd34", size = 167460 }, + { url = "https://files.pythonhosted.org/packages/1d/74/ad114571e665c6e7e8b22a473f9bc2afd3c853df54d9d0ea81cf60c4162e/orjson-3.10.6-cp312-none-win32.whl", hash = "sha256:a6ea7afb5b30b2317e0bee03c8d34c8181bc5a36f2afd4d0952f378972c4efd5", size = 142618 }, + { url = "https://files.pythonhosted.org/packages/21/3a/f004e58a43ff2741703eb23f0c56347c7a41bbbcafd45d1494be68319269/orjson-3.10.6-cp312-none-win_amd64.whl", hash = "sha256:874ce88264b7e655dde4aeaacdc8fd772a7962faadfb41abe63e2a4861abc3dc", size = 136426 }, + { url = "https://files.pythonhosted.org/packages/ca/44/9d31c751dbc64736a45f161a39fa08cb15a68eb4007fce98dc155843db95/orjson-3.10.6-cp313-none-win32.whl", hash = "sha256:efdf2c5cde290ae6b83095f03119bdc00303d7a03b42b16c54517baa3c4ca3d0", size = 143067 }, + { url = "https://files.pythonhosted.org/packages/3b/78/5f7426862134ee209c475cc9fc60d8aa603e6be4f53b45b4d1215d084d30/orjson-3.10.6-cp313-none-win_amd64.whl", hash = "sha256:8e190fe7888e2e4392f52cafb9626113ba135ef53aacc65cd13109eb9746c43e", size = 137059 }, +] + +[[package]] +name = "packaging" +version = "24.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/51/65/50db4dda066951078f0a96cf12f4b9ada6e4b811516bf0262c0f4f7064d4/packaging-24.1.tar.gz", hash = "sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002", size = 148788 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/08/aa/cc0199a5f0ad350994d660967a8efb233fe0416e4639146c089643407ce6/packaging-24.1-py3-none-any.whl", hash = "sha256:5b8f2217dbdbd2f7f384c41c628544e6d52f2d0f53c6d0c3ea61aa5d1d7ff124", size = 53985 }, +] + +[[package]] +name = "packaging-legacy" +version = "23.0.post0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f8/31/3a2fe3f5fc01a0671ba20560c556b4239b69bfef842a20bba99e3239fd3e/packaging_legacy-23.0.post0.tar.gz", hash = "sha256:c974a42291a77112313f0198b87ad96e07a3c357295d572560a4b9c368f7d9db", size = 8655 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/64/3a/cca5260a6e346027495775bef30869acce88d6f72f69ad7c27a0ba87ec95/packaging_legacy-23.0.post0-py3-none-any.whl", hash = "sha256:6cd21cd283c09409349bccc10bb55bfd837b4aab86a7b0f87bfcb8dd9831a8a3", size = 8216 }, +] + +[[package]] +name = "paginate" +version = "0.5.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/68/58/e670a947136fdcece8ac5376b3df1369d29e4f6659b0c9b358605b115e9e/paginate-0.5.6.tar.gz", hash = "sha256:5e6007b6a9398177a7e1648d04fdd9f8c9766a1a945bceac82f1929e8c78af2d", size = 12840 } + +[[package]] +name = "paginate-sqlalchemy" +version = "0.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "paginate", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "sqlalchemy", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7b/59/2ee2fd72e15306ccecc74fc6d0eec64a12bf6a9eb3ca3dfc7edaad7d7330/paginate_sqlalchemy-0.3.1.tar.gz", hash = "sha256:9ee349b74a5f2f52455cb1280d0ca24222c8137e638363df5877e6e76c369b5b", size = 3127 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3f/f0/6a793e39078853cbd39281dd1c7a98c7cde5e3fb8e9a2f16efdaaafc1632/paginate_sqlalchemy-0.3.1-py3-none-any.whl", hash = "sha256:e022f79ed798e62092a8618c528158ed619a1b604dce43c9dbc5441f5325137e", size = 3766 }, +] + +[[package]] +name = "parse" +version = "1.20.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4f/78/d9b09ba24bb36ef8b83b71be547e118d46214735b6dfb39e4bfde0e9b9dd/parse-1.20.2.tar.gz", hash = "sha256:b41d604d16503c79d81af5165155c0b20f6c8d6c559efa66b4b695c3e5a0a0ce", size = 29391 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d0/31/ba45bf0b2aa7898d81cbbfac0e88c267befb59ad91a19e36e1bc5578ddb1/parse-1.20.2-py2.py3-none-any.whl", hash = "sha256:967095588cb802add9177d0c0b6133b5ba33b1ea9007ca800e526f42a85af558", size = 20126 }, +] + +[[package]] +name = "parsy" +version = "1.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/84/b0/ffc25c3a8031ee0f7ab0aea46739e739fbdf6bc7cee78a5282615c95355b/parsy-1.1.0.tar.gz", hash = "sha256:36173ba01a5372c7a1b32352cc73a279a49198f52252adf1c8c1ed41d1f94e8d", size = 32080 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/06/9a216e3828a8cc884ddf5fd7c076a82f499f4a97fc493933143544f44a1d/parsy-1.1.0-py3-none-any.whl", hash = "sha256:25bd5cea2954950ebbfdf71f8bdaf7fd45a5df5325fd36a1064be2204d9d4c94", size = 6851 }, +] + +[[package]] +name = "passlib" +version = "1.7.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b6/06/9da9ee59a67fae7761aab3ccc84fa4f3f33f125b370f1ccdb915bf967c11/passlib-1.7.4.tar.gz", hash = "sha256:defd50f72b65c5402ab2c573830a6978e5f202ad0d984793c8dde2c4152ebe04", size = 689844 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3b/a4/ab6b7589382ca3df236e03faa71deac88cae040af60c071a78d254a62172/passlib-1.7.4-py2.py3-none-any.whl", hash = "sha256:aa6bca462b8d8bda89c70b382f0c298a20b5560af6cbfa2dce410c0a2fb669f1", size = 525554 }, +] + +[[package]] +name = "pastedeploy" +version = "3.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e3/97/0c4a613ec96a54d21daa7e089178263915554320402e89b4e319436a63cb/PasteDeploy-3.1.0.tar.gz", hash = "sha256:9ddbaf152f8095438a9fe81f82c78a6714b92ae8e066bed418b6a7ff6a095a95", size = 37841 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/85/30/cdddd9a88969683a59222a6d61cd6dce923977f2e9f9ffba38e1324149cd/PasteDeploy-3.1.0-py3-none-any.whl", hash = "sha256:76388ad53a661448d436df28c798063108f70e994ddc749540d733cdbd1b38cf", size = 16943 }, +] + +[[package]] +name = "pathable" +version = "0.4.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9d/ed/e0e29300253b61dea3b7ec3a31f5d061d577c2a6fd1e35c5cfd0e6f2cd6d/pathable-0.4.3.tar.gz", hash = "sha256:5c869d315be50776cc8a993f3af43e0c60dc01506b399643f919034ebf4cdcab", size = 8679 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5b/0a/acfb251ba01009d3053f04f4661e96abf9d485266b04a0a4deebc702d9cb/pathable-0.4.3-py3-none-any.whl", hash = "sha256:cdd7b1f9d7d5c8b8d3315dbf5a86b2596053ae845f056f57d97c0eefff84da14", size = 9587 }, +] + +[[package]] +name = "pathspec" +version = "0.12.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ca/bc/f35b8446f4531a7cb215605d100cd88b7ac6f44ab3fc94870c120ab3adbf/pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712", size = 51043 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl", hash = "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08", size = 31191 }, +] + +[[package]] +name = "pbr" +version = "6.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8d/c2/ee43b3b11bf2b40e56536183fc9f22afbb04e882720332b6276ee2454c24/pbr-6.0.0.tar.gz", hash = "sha256:d1377122a5a00e2f940ee482999518efe16d745d423a670c27773dfbc3c9a7d9", size = 123150 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/64/dd/171c9fb653591cf265bcc89c436eec75c9bde3dec921cc236fa71e5698df/pbr-6.0.0-py2.py3-none-any.whl", hash = "sha256:4a7317d5e3b17a3dccb6a8cfe67dab65b20551404c52c8ed41279fa4f0cb4cda", size = 107506 }, +] + +[[package]] +name = "pep8-naming" +version = "0.14.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "flake8", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/be/8e/1de32e908d8b008bb9352bfe7749aedecb71e2793d36c7ee342716acd1ec/pep8-naming-0.14.1.tar.gz", hash = "sha256:1ef228ae80875557eb6c1549deafed4dabbf3261cfcafa12f773fe0db9be8a36", size = 16546 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ec/a2/450b71d1a87fcee50a7b994a53b1c68fc6a6b718df0eb035f2bffb2d3a4f/pep8_naming-0.14.1-py3-none-any.whl", hash = "sha256:63f514fc777d715f935faf185dedd679ab99526a7f2f503abb61587877f7b1c5", size = 8859 }, +] + +[[package]] +name = "pillow" +version = "10.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cd/74/ad3d526f3bf7b6d3f408b73fde271ec69dfac8b81341a318ce825f2b3812/pillow-10.4.0.tar.gz", hash = "sha256:166c1cd4d24309b30d61f79f4a9114b7b2313d7450912277855ff5dfd7cd4a06", size = 46555059 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/62/c9449f9c3043c37f73e7487ec4ef0c03eb9c9afc91a92b977a67b3c0bbc5/pillow-10.4.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:0a9ec697746f268507404647e531e92889890a087e03681a3606d9b920fbee3c", size = 3509265 }, + { url = "https://files.pythonhosted.org/packages/f4/5f/491dafc7bbf5a3cc1845dc0430872e8096eb9e2b6f8161509d124594ec2d/pillow-10.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:dfe91cb65544a1321e631e696759491ae04a2ea11d36715eca01ce07284738be", size = 3375655 }, + { url = "https://files.pythonhosted.org/packages/73/d5/c4011a76f4207a3c151134cd22a1415741e42fa5ddecec7c0182887deb3d/pillow-10.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5dc6761a6efc781e6a1544206f22c80c3af4c8cf461206d46a1e6006e4429ff3", size = 4340304 }, + { url = "https://files.pythonhosted.org/packages/ac/10/c67e20445a707f7a610699bba4fe050583b688d8cd2d202572b257f46600/pillow-10.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e84b6cc6a4a3d76c153a6b19270b3526a5a8ed6b09501d3af891daa2a9de7d6", size = 4452804 }, + { url = "https://files.pythonhosted.org/packages/a9/83/6523837906d1da2b269dee787e31df3b0acb12e3d08f024965a3e7f64665/pillow-10.4.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:bbc527b519bd3aa9d7f429d152fea69f9ad37c95f0b02aebddff592688998abe", size = 4365126 }, + { url = "https://files.pythonhosted.org/packages/ba/e5/8c68ff608a4203085158cff5cc2a3c534ec384536d9438c405ed6370d080/pillow-10.4.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:76a911dfe51a36041f2e756b00f96ed84677cdeb75d25c767f296c1c1eda1319", size = 4533541 }, + { url = "https://files.pythonhosted.org/packages/f4/7c/01b8dbdca5bc6785573f4cee96e2358b0918b7b2c7b60d8b6f3abf87a070/pillow-10.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:59291fb29317122398786c2d44427bbd1a6d7ff54017075b22be9d21aa59bd8d", size = 4471616 }, + { url = "https://files.pythonhosted.org/packages/c8/57/2899b82394a35a0fbfd352e290945440e3b3785655a03365c0ca8279f351/pillow-10.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:416d3a5d0e8cfe4f27f574362435bc9bae57f679a7158e0096ad2beb427b8696", size = 4600802 }, + { url = "https://files.pythonhosted.org/packages/4d/d7/a44f193d4c26e58ee5d2d9db3d4854b2cfb5b5e08d360a5e03fe987c0086/pillow-10.4.0-cp311-cp311-win32.whl", hash = "sha256:7086cc1d5eebb91ad24ded9f58bec6c688e9f0ed7eb3dbbf1e4800280a896496", size = 2235213 }, + { url = "https://files.pythonhosted.org/packages/c1/d0/5866318eec2b801cdb8c82abf190c8343d8a1cd8bf5a0c17444a6f268291/pillow-10.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cbed61494057c0f83b83eb3a310f0bf774b09513307c434d4366ed64f4128a91", size = 2554498 }, + { url = "https://files.pythonhosted.org/packages/d4/c8/310ac16ac2b97e902d9eb438688de0d961660a87703ad1561fd3dfbd2aa0/pillow-10.4.0-cp311-cp311-win_arm64.whl", hash = "sha256:f5f0c3e969c8f12dd2bb7e0b15d5c468b51e5017e01e2e867335c81903046a22", size = 2243219 }, + { url = "https://files.pythonhosted.org/packages/05/cb/0353013dc30c02a8be34eb91d25e4e4cf594b59e5a55ea1128fde1e5f8ea/pillow-10.4.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:673655af3eadf4df6b5457033f086e90299fdd7a47983a13827acf7459c15d94", size = 3509350 }, + { url = "https://files.pythonhosted.org/packages/e7/cf/5c558a0f247e0bf9cec92bff9b46ae6474dd736f6d906315e60e4075f737/pillow-10.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:866b6942a92f56300012f5fbac71f2d610312ee65e22f1aa2609e491284e5597", size = 3374980 }, + { url = "https://files.pythonhosted.org/packages/84/48/6e394b86369a4eb68b8a1382c78dc092245af517385c086c5094e3b34428/pillow-10.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:29dbdc4207642ea6aad70fbde1a9338753d33fb23ed6956e706936706f52dd80", size = 4343799 }, + { url = "https://files.pythonhosted.org/packages/3b/f3/a8c6c11fa84b59b9df0cd5694492da8c039a24cd159f0f6918690105c3be/pillow-10.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf2342ac639c4cf38799a44950bbc2dfcb685f052b9e262f446482afaf4bffca", size = 4459973 }, + { url = "https://files.pythonhosted.org/packages/7d/1b/c14b4197b80150fb64453585247e6fb2e1d93761fa0fa9cf63b102fde822/pillow-10.4.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:f5b92f4d70791b4a67157321c4e8225d60b119c5cc9aee8ecf153aace4aad4ef", size = 4370054 }, + { url = "https://files.pythonhosted.org/packages/55/77/40daddf677897a923d5d33329acd52a2144d54a9644f2a5422c028c6bf2d/pillow-10.4.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:86dcb5a1eb778d8b25659d5e4341269e8590ad6b4e8b44d9f4b07f8d136c414a", size = 4539484 }, + { url = "https://files.pythonhosted.org/packages/40/54/90de3e4256b1207300fb2b1d7168dd912a2fb4b2401e439ba23c2b2cabde/pillow-10.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:780c072c2e11c9b2c7ca37f9a2ee8ba66f44367ac3e5c7832afcfe5104fd6d1b", size = 4477375 }, + { url = "https://files.pythonhosted.org/packages/13/24/1bfba52f44193860918ff7c93d03d95e3f8748ca1de3ceaf11157a14cf16/pillow-10.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:37fb69d905be665f68f28a8bba3c6d3223c8efe1edf14cc4cfa06c241f8c81d9", size = 4608773 }, + { url = "https://files.pythonhosted.org/packages/55/04/5e6de6e6120451ec0c24516c41dbaf80cce1b6451f96561235ef2429da2e/pillow-10.4.0-cp312-cp312-win32.whl", hash = "sha256:7dfecdbad5c301d7b5bde160150b4db4c659cee2b69589705b6f8a0c509d9f42", size = 2235690 }, + { url = "https://files.pythonhosted.org/packages/74/0a/d4ce3c44bca8635bd29a2eab5aa181b654a734a29b263ca8efe013beea98/pillow-10.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:1d846aea995ad352d4bdcc847535bd56e0fd88d36829d2c90be880ef1ee4668a", size = 2554951 }, + { url = "https://files.pythonhosted.org/packages/b5/ca/184349ee40f2e92439be9b3502ae6cfc43ac4b50bc4fc6b3de7957563894/pillow-10.4.0-cp312-cp312-win_arm64.whl", hash = "sha256:e553cad5179a66ba15bb18b353a19020e73a7921296a7979c4a2b7f6a5cd57f9", size = 2243427 }, + { url = "https://files.pythonhosted.org/packages/c3/00/706cebe7c2c12a6318aabe5d354836f54adff7156fd9e1bd6c89f4ba0e98/pillow-10.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8bc1a764ed8c957a2e9cacf97c8b2b053b70307cf2996aafd70e91a082e70df3", size = 3525685 }, + { url = "https://files.pythonhosted.org/packages/cf/76/f658cbfa49405e5ecbfb9ba42d07074ad9792031267e782d409fd8fe7c69/pillow-10.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6209bb41dc692ddfee4942517c19ee81b86c864b626dbfca272ec0f7cff5d9fb", size = 3374883 }, + { url = "https://files.pythonhosted.org/packages/46/2b/99c28c4379a85e65378211971c0b430d9c7234b1ec4d59b2668f6299e011/pillow-10.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bee197b30783295d2eb680b311af15a20a8b24024a19c3a26431ff83eb8d1f70", size = 4339837 }, + { url = "https://files.pythonhosted.org/packages/f1/74/b1ec314f624c0c43711fdf0d8076f82d9d802afd58f1d62c2a86878e8615/pillow-10.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1ef61f5dd14c300786318482456481463b9d6b91ebe5ef12f405afbba77ed0be", size = 4455562 }, + { url = "https://files.pythonhosted.org/packages/4a/2a/4b04157cb7b9c74372fa867096a1607e6fedad93a44deeff553ccd307868/pillow-10.4.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:297e388da6e248c98bc4a02e018966af0c5f92dfacf5a5ca22fa01cb3179bca0", size = 4366761 }, + { url = "https://files.pythonhosted.org/packages/ac/7b/8f1d815c1a6a268fe90481232c98dd0e5fa8c75e341a75f060037bd5ceae/pillow-10.4.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:e4db64794ccdf6cb83a59d73405f63adbe2a1887012e308828596100a0b2f6cc", size = 4536767 }, + { url = "https://files.pythonhosted.org/packages/e5/77/05fa64d1f45d12c22c314e7b97398ffb28ef2813a485465017b7978b3ce7/pillow-10.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:bd2880a07482090a3bcb01f4265f1936a903d70bc740bfcb1fd4e8a2ffe5cf5a", size = 4477989 }, + { url = "https://files.pythonhosted.org/packages/12/63/b0397cfc2caae05c3fb2f4ed1b4fc4fc878f0243510a7a6034ca59726494/pillow-10.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4b35b21b819ac1dbd1233317adeecd63495f6babf21b7b2512d244ff6c6ce309", size = 4610255 }, + { url = "https://files.pythonhosted.org/packages/7b/f9/cfaa5082ca9bc4a6de66ffe1c12c2d90bf09c309a5f52b27759a596900e7/pillow-10.4.0-cp313-cp313-win32.whl", hash = "sha256:551d3fd6e9dc15e4c1eb6fc4ba2b39c0c7933fa113b220057a34f4bb3268a060", size = 2235603 }, + { url = "https://files.pythonhosted.org/packages/01/6a/30ff0eef6e0c0e71e55ded56a38d4859bf9d3634a94a88743897b5f96936/pillow-10.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:030abdbe43ee02e0de642aee345efa443740aa4d828bfe8e2eb11922ea6a21ea", size = 2554972 }, + { url = "https://files.pythonhosted.org/packages/48/2c/2e0a52890f269435eee38b21c8218e102c621fe8d8df8b9dd06fabf879ba/pillow-10.4.0-cp313-cp313-win_arm64.whl", hash = "sha256:5b001114dd152cfd6b23befeb28d7aee43553e2402c9f159807bf55f33af8a8d", size = 2243375 }, +] + +[[package]] +name = "pip" +version = "24.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4d/87/fb90046e096a03aeab235e139436b3fe804cdd447ed2093b0d70eba3f7f8/pip-24.2.tar.gz", hash = "sha256:5b5e490b5e9cb275c879595064adce9ebd31b854e3e803740b72f9ccf34a45b8", size = 1922041 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d4/55/90db48d85f7689ec6f81c0db0622d704306c5284850383c090e6c7195a5c/pip-24.2-py3-none-any.whl", hash = "sha256:2cd581cf58ab7fcfca4ce8efa6dcacd0de5bf8d0a3eb9ec927e07405f4d9e2a2", size = 1815170 }, +] + +[[package]] +name = "pip-api" +version = "0.0.34" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pip", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b9/f1/ee85f8c7e82bccf90a3c7aad22863cc6e20057860a1361083cd2adacb92e/pip_api-0.0.34.tar.gz", hash = "sha256:9b75e958f14c5a2614bae415f2adf7eeb54d50a2cfbe7e24fd4826471bac3625", size = 123017 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/91/f7/ebf5003e1065fd00b4cbef53bf0a65c3d3e1b599b676d5383ccb7a8b88ba/pip_api-0.0.34-py3-none-any.whl", hash = "sha256:8b2d7d7c37f2447373aa2cf8b1f60a2f2b27a84e1e9e0294a3f6ef10eb3ba6bb", size = 120369 }, +] + +[[package]] +name = "pip-tools" +version = "7.4.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "build", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "click", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pip", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pyproject-hooks", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "setuptools", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "wheel", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1a/87/1ef453f10fb0772f43549686f924460cc0a2404b828b348f72c52cb2f5bf/pip-tools-7.4.1.tar.gz", hash = "sha256:864826f5073864450e24dbeeb85ce3920cdfb09848a3d69ebf537b521f14bcc9", size = 145417 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0d/dc/38f4ce065e92c66f058ea7a368a9c5de4e702272b479c0992059f7693941/pip_tools-7.4.1-py3-none-any.whl", hash = "sha256:4c690e5fbae2f21e87843e89c26191f0d9454f362d8acdbd695716493ec8b3a9", size = 61235 }, +] + +[[package]] +name = "plaster" +version = "1.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/26/93/66df0f87f1442d8afea8531ae8a4a9eca656006a54eac2b4489427e92c10/plaster-1.1.2.tar.gz", hash = "sha256:f8befc54bf8c1147c10ab40297ec84c2676fa2d4ea5d6f524d9436a80074ef98", size = 33232 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/8b/3f98db1448e3b4d2d142716874a7e02f6101685fdaa0f55a8668e9ffa048/plaster-1.1.2-py2.py3-none-any.whl", hash = "sha256:42992ab1f4865f1278e2ad740e8ad145683bb4022e03534265528f0c23c0df2d", size = 11554 }, +] + +[[package]] +name = "plaster-pastedeploy" +version = "1.0.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pastedeploy", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "plaster", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c7/af/01a22f73ce97c6375c88d7ceaf6f5f4f345e940da93c94f98833d898a449/plaster_pastedeploy-1.0.1.tar.gz", hash = "sha256:be262e6d2e41a7264875daa2fe2850cbb0615728bcdc92828fdc72736e381412", size = 20915 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bd/30/2d4cf89035c22a89bf0e34dbc50fdc07c42c9bdc90fd972d495257ad2b6e/plaster_pastedeploy-1.0.1-py2.py3-none-any.whl", hash = "sha256:ad3550cc744648969ed3b810f33c9344f515ee8d8a8cec18e8f2c4a643c2181f", size = 7823 }, +] + +[[package]] +name = "platformdirs" +version = "4.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f5/52/0763d1d976d5c262df53ddda8d8d4719eedf9594d046f117c25a27261a19/platformdirs-4.2.2.tar.gz", hash = "sha256:38b7b51f512eed9e84a22788b4bce1de17c0adb134d6becb09836e37d8654cd3", size = 20916 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/68/13/2aa1f0e1364feb2c9ef45302f387ac0bd81484e9c9a4c5688a322fbdfd08/platformdirs-4.2.2-py3-none-any.whl", hash = "sha256:2d7a1657e36a80ea911db832a8a6ece5ee53d8de21edd5cc5879af6530b1bfee", size = 18146 }, +] + +[[package]] +name = "pluggy" +version = "1.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/96/2d/02d4312c973c6050a18b314a5ad0b3210edb65a906f868e31c111dede4a6/pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1", size = 67955 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/5f/e351af9a41f866ac3f1fac4ca0613908d9a41741cfcf2228f4ad853b697d/pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669", size = 20556 }, +] + +[[package]] +name = "port-for" +version = "0.7.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/69/d0/b843bcb330a2a6b90ce8599eea4a3a65863196bab9817d87ac1d9195679f/port-for-0.7.2.tar.gz", hash = "sha256:074f29335130578aa42fef3726985e57d01c15189e509633a8a1b0b7f9226349", size = 24948 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3f/3f/9b6c24f1e2a05cabb2d7cf1e6675957707231d7d3bac1fb64ab463da0e17/port_for-0.7.2-py3-none-any.whl", hash = "sha256:16b279ab4f210bad33515c45bd9af0c6e048ab24c3b6bbd9cfc7e451782617df", size = 21348 }, +] + +[[package]] +name = "pprintpp" +version = "0.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/06/1a/7737e7a0774da3c3824d654993cf57adc915cb04660212f03406334d8c0b/pprintpp-0.4.0.tar.gz", hash = "sha256:ea826108e2c7f49dc6d66c752973c3fc9749142a798d6b254e1e301cfdbc6403", size = 17995 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4e/d1/e4ed95fdd3ef13b78630280d9e9e240aeb65cc7c544ec57106149c3942fb/pprintpp-0.4.0-py2.py3-none-any.whl", hash = "sha256:b6b4dcdd0c0c0d75e4d7b2f21a9e933e5b2ce62b26e1a54537f9651ae5a5c01d", size = 16952 }, +] + +[[package]] +name = "premailer" +version = "3.10.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cachetools", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "cssselect", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "cssutils", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "lxml", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "requests", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a3/6f/e49bd31941eff2987076383fa6d811eb785a28f498f5bb131e981bd71e13/premailer-3.10.0.tar.gz", hash = "sha256:d1875a8411f5dc92b53ef9f193db6c0f879dc378d618e0ad292723e388bfe4c2", size = 24342 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b1/07/4e8d94f94c7d41ca5ddf8a9695ad87b888104e2fd41a35546c1dc9ca74ac/premailer-3.10.0-py2.py3-none-any.whl", hash = "sha256:021b8196364d7df96d04f9ade51b794d0b77bcc19e998321c515633a2273be1a", size = 19544 }, +] + +[[package]] +name = "pretend" +version = "1.0.9" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3c/f8/7c86fd40c9e83deb10891a60d2dcb1af0b3b38064d72ebdb12486acc824f/pretend-1.0.9.tar.gz", hash = "sha256:c90eb810cde8ebb06dafcb8796f9a95228ce796531bc806e794c2f4649aa1b10", size = 4848 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/49/1f/3d4f0579913edd3ad5b23ad52fcc42531cb736ad52af2ba6c057da8785b6/pretend-1.0.9-py2.py3-none-any.whl", hash = "sha256:e389b12b7073604be67845dbe32bf8297360ad9a609b24846fe15d86e0b7dc01", size = 3848 }, +] + +[[package]] +name = "prompt-toolkit" +version = "3.0.47" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "wcwidth", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/47/6d/0279b119dafc74c1220420028d490c4399b790fc1256998666e3a341879f/prompt_toolkit-3.0.47.tar.gz", hash = "sha256:1e1b29cb58080b1e69f207c893a1a7bf16d127a5c30c9d17a25a5d77792e5360", size = 425859 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e8/23/22750c4b768f09386d1c3cc4337953e8936f48a888fa6dddfb669b2c9088/prompt_toolkit-3.0.47-py3-none-any.whl", hash = "sha256:0d7bfa67001d5e39d02c224b663abc33687405033a8c422d0d675a5a13361d10", size = 386411 }, +] + +[[package]] +name = "proto-plus" +version = "1.24.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "protobuf", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/3e/fc/e9a65cd52c1330d8d23af6013651a0bc50b6d76bcbdf91fae7cd19c68f29/proto-plus-1.24.0.tar.gz", hash = "sha256:30b72a5ecafe4406b0d339db35b56c4059064e69227b8c3bda7462397f966445", size = 55942 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7c/6f/db31f0711c0402aa477257205ce7d29e86a75cb52cd19f7afb585f75cda0/proto_plus-1.24.0-py3-none-any.whl", hash = "sha256:402576830425e5f6ce4c2a6702400ac79897dab0b4343821aa5188b0fab81a12", size = 50080 }, +] + +[[package]] +name = "protobuf" +version = "5.27.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1b/61/0671db2ab2aee7c92d6c1b617c39b30a4cd973950118da56d77e7f397a9d/protobuf-5.27.3.tar.gz", hash = "sha256:82460903e640f2b7e34ee81a947fdaad89de796d324bcbc38ff5430bcdead82c", size = 401665 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cd/6d/a8a4b84aaf83d6cb552247e1da2fa07140bbda894bbaf0d5afddec4699df/protobuf-5.27.3-cp310-abi3-win32.whl", hash = "sha256:dcb307cd4ef8fec0cf52cb9105a03d06fbb5275ce6d84a6ae33bc6cf84e0a07b", size = 405837 }, + { url = "https://files.pythonhosted.org/packages/a4/30/cb5395acd5f65edc0dee77bdd134fe556c52fade2ad3ea9ac2676d01effe/protobuf-5.27.3-cp310-abi3-win_amd64.whl", hash = "sha256:16ddf3f8c6c41e1e803da7abea17b1793a97ef079a912e42351eabb19b2cffe7", size = 426928 }, + { url = "https://files.pythonhosted.org/packages/ca/bc/bceb11aa96dd0b2ae7002d2f46870fbdef7649a0c28420f0abb831ee3294/protobuf-5.27.3-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:68248c60d53f6168f565a8c76dc58ba4fa2ade31c2d1ebdae6d80f969cdc2d4f", size = 412255 }, + { url = "https://files.pythonhosted.org/packages/d9/83/a610396958a5b735e988880a0fdb5cde80b95111eb550849a5bd5cff735d/protobuf-5.27.3-cp38-abi3-manylinux2014_aarch64.whl", hash = "sha256:b8a994fb3d1c11156e7d1e427186662b64694a62b55936b2b9348f0a7c6625ce", size = 307150 }, + { url = "https://files.pythonhosted.org/packages/4c/98/db690e43e2f28495c8fc7c997003cbd59a6db342914b404e216c9b6791f0/protobuf-5.27.3-cp38-abi3-manylinux2014_x86_64.whl", hash = "sha256:a55c48f2a2092d8e213bd143474df33a6ae751b781dd1d1f4d953c128a415b25", size = 309266 }, + { url = "https://files.pythonhosted.org/packages/e1/94/d77bd282d3d53155147166c2bbd156f540009b0d7be24330f76286668b90/protobuf-5.27.3-py3-none-any.whl", hash = "sha256:8572c6533e544ebf6899c360e91d6bcbbee2549251643d32c52cf8a5de295ba5", size = 164778 }, +] + +[[package]] +name = "psutil" +version = "6.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/18/c7/8c6872f7372eb6a6b2e4708b88419fb46b857f7a2e1892966b851cc79fc9/psutil-6.0.0.tar.gz", hash = "sha256:8faae4f310b6d969fa26ca0545338b21f73c6b15db7c4a8d934a5482faa818f2", size = 508067 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c5/66/78c9c3020f573c58101dc43a44f6855d01bbbd747e24da2f0c4491200ea3/psutil-6.0.0-cp27-none-win32.whl", hash = "sha256:02b69001f44cc73c1c5279d02b30a817e339ceb258ad75997325e0e6169d8b35", size = 249766 }, + { url = "https://files.pythonhosted.org/packages/e1/3f/2403aa9558bea4d3854b0e5e567bc3dd8e9fbc1fc4453c0aa9aafeb75467/psutil-6.0.0-cp27-none-win_amd64.whl", hash = "sha256:21f1fb635deccd510f69f485b87433460a603919b45e2a324ad65b0cc74f8fb1", size = 253024 }, + { url = "https://files.pythonhosted.org/packages/0b/37/f8da2fbd29690b3557cca414c1949f92162981920699cd62095a984983bf/psutil-6.0.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:c588a7e9b1173b6e866756dde596fd4cad94f9399daf99ad8c3258b3cb2b47a0", size = 250961 }, + { url = "https://files.pythonhosted.org/packages/35/56/72f86175e81c656a01c4401cd3b1c923f891b31fbcebe98985894176d7c9/psutil-6.0.0-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ed2440ada7ef7d0d608f20ad89a04ec47d2d3ab7190896cd62ca5fc4fe08bf0", size = 287478 }, + { url = "https://files.pythonhosted.org/packages/19/74/f59e7e0d392bc1070e9a70e2f9190d652487ac115bb16e2eff6b22ad1d24/psutil-6.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5fd9a97c8e94059b0ef54a7d4baf13b405011176c3b6ff257c247cae0d560ecd", size = 290455 }, + { url = "https://files.pythonhosted.org/packages/cd/5f/60038e277ff0a9cc8f0c9ea3d0c5eb6ee1d2470ea3f9389d776432888e47/psutil-6.0.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e2e8d0054fc88153ca0544f5c4d554d42e33df2e009c4ff42284ac9ebdef4132", size = 292046 }, + { url = "https://files.pythonhosted.org/packages/8b/20/2ff69ad9c35c3df1858ac4e094f20bd2374d33c8643cf41da8fd7cdcb78b/psutil-6.0.0-cp37-abi3-win32.whl", hash = "sha256:a495580d6bae27291324fe60cea0b5a7c23fa36a7cd35035a16d93bdcf076b9d", size = 253560 }, + { url = "https://files.pythonhosted.org/packages/73/44/561092313ae925f3acfaace6f9ddc4f6a9c748704317bad9c8c8f8a36a79/psutil-6.0.0-cp37-abi3-win_amd64.whl", hash = "sha256:33ea5e1c975250a720b3a6609c490db40dae5d83a4eb315170c4fe0d8b1f34b3", size = 257399 }, + { url = "https://files.pythonhosted.org/packages/7c/06/63872a64c312a24fb9b4af123ee7007a306617da63ff13bcc1432386ead7/psutil-6.0.0-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:ffe7fc9b6b36beadc8c322f84e1caff51e8703b88eee1da46d1e3a6ae11b4fd0", size = 251988 }, +] + +[[package]] +name = "psycopg" +version = "3.2.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "tzdata", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ff/8e/f176997fd790d3dce9fa0ca695391beaeee39af7ecd6d426c4c063cf6744/psycopg-3.2.1.tar.gz", hash = "sha256:dc8da6dc8729dacacda3cc2f17d2c9397a70a66cf0d2b69c91065d60d5f00cb7", size = 155313 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8a/0e/0f755db36f47f96464463385552f8f132a981731356837c9a30a11ab2d35/psycopg-3.2.1-py3-none-any.whl", hash = "sha256:ece385fb413a37db332f97c49208b36cf030ff02b199d7635ed2fbd378724175", size = 197743 }, +] + +[package.optional-dependencies] +c = [ + { name = "psycopg-c", marker = "implementation_name != 'pypy'" }, +] + +[[package]] +name = "psycopg-c" +version = "3.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a5/22/0e674f2f0ca1bda855e81e28aaa9765fe210a86f335ec9247ed15a2d94d4/psycopg_c-3.2.1.tar.gz", hash = "sha256:2d09943cc8a855c42c1e23b4298957b7ce8f27bf3683258c52fd139f601f7cda", size = 598194 } + +[[package]] +name = "pyasn1" +version = "0.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4a/a3/d2157f333900747f20984553aca98008b6dc843eb62f3a36030140ccec0d/pyasn1-0.6.0.tar.gz", hash = "sha256:3a35ab2c4b5ef98e17dfdec8ab074046fbda76e281c5a706ccd82328cfc8f64c", size = 148088 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/23/7e/5f50d07d5e70a2addbccd90ac2950f81d1edd0783630651d9268d7f1db49/pyasn1-0.6.0-py2.py3-none-any.whl", hash = "sha256:cca4bb0f2df5504f02f6f8a775b6e416ff9b0b3b16f7ee80b5a3153d9b804473", size = 85313 }, +] + +[[package]] +name = "pyasn1-modules" +version = "0.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyasn1", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f7/00/e7bd1dec10667e3f2be602686537969a7ac92b0a7c5165be2e5875dc3971/pyasn1_modules-0.4.0.tar.gz", hash = "sha256:831dbcea1b177b28c9baddf4c6d1013c24c3accd14a1873fffaa6a2e905f17b6", size = 307859 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/13/68/8906226b15ef38e71dc926c321d2fe99de8048e9098b5dfd38343011c886/pyasn1_modules-0.4.0-py3-none-any.whl", hash = "sha256:be04f15b66c206eed667e0bb5ab27e2b1855ea54a842e5037738099e8ca4ae0b", size = 181220 }, +] + +[[package]] +name = "pycodestyle" +version = "2.12.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/43/aa/210b2c9aedd8c1cbeea31a50e42050ad56187754b34eb214c46709445801/pycodestyle-2.12.1.tar.gz", hash = "sha256:6838eae08bbce4f6accd5d5572075c63626a15ee3e6f842df996bf62f6d73521", size = 39232 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3a/d8/a211b3f85e99a0daa2ddec96c949cac6824bd305b040571b82a03dd62636/pycodestyle-2.12.1-py2.py3-none-any.whl", hash = "sha256:46f0fb92069a7c28ab7bb558f05bfc0110dac69a0cd23c61ea0040283a9d78b3", size = 31284 }, +] + +[[package]] +name = "pycparser" +version = "2.22" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1d/b2/31537cf4b1ca988837256c910a668b553fceb8f069bedc4b1c826024b52c/pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6", size = 172736 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc", size = 117552 }, +] + +[[package]] +name = "pycurl" +version = "7.45.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c9/5a/e68b8abbc1102113b7839e708ba04ef4c4b8b8a6da392832bb166d09ea72/pycurl-7.45.3.tar.gz", hash = "sha256:8c2471af9079ad798e1645ec0b0d3d4223db687379d17dd36a70637449f81d6b", size = 236470 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/14/00/b8d3c6c038a0d85ed1ebbca45b2b7d2593976e37bfc465596fc2d11841e2/pycurl-7.45.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:1610cc45b5bc8b39bc18b981d0473e59ef41226ee467eaa8fbfc7276603ef5af", size = 196201 }, + { url = "https://files.pythonhosted.org/packages/c4/d3/12deea4babf4debd1ea1efdf907c7994ee242a3bde6e480afaa99b87a91d/pycurl-7.45.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c854885398410fa6e88fc29f7a420a3c13b88bae9b4e10a804437b582e24f58b", size = 142564 }, + { url = "https://files.pythonhosted.org/packages/5a/33/b91fa969848f8f78fcca800f1fea808d4c34fd2b05dca0d9bbe60228f21a/pycurl-7.45.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:921c9db0c3128481954f625b3b1bc10c730100aa944d54643528f716676439ee", size = 142152 }, + { url = "https://files.pythonhosted.org/packages/49/34/b2fe050d7e6f27fcd392e8847a8229ed1202d592f6b3bb040949ebd3e0e4/pycurl-7.45.3-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:483f3aa5d1bc8cff5657ad96f68e1d89281f971a7b6aa93408a31e3199981ea9", size = 4450108 }, + { url = "https://files.pythonhosted.org/packages/d1/64/82fc5c3584fa11462732ddbf76cf23215d725bb224910517099f53017a3b/pycurl-7.45.3-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:1e0d32d6ed3a7ba13dbbd3a6fb50ca76c40c70e6bc6fe347f90677478d3422c7", size = 4556395 }, + { url = "https://files.pythonhosted.org/packages/69/49/c3da5c633b0aa5cfeb48f21738658b4e0538ad2b2594de411f018b815e34/pycurl-7.45.3-cp311-cp311-win32.whl", hash = "sha256:beaaa4450e23d41dd0c2f2f47a4f8a171210271543550c2c556090c7eeea88f5", size = 435974 }, + { url = "https://files.pythonhosted.org/packages/6f/55/691f9f025017b9c7efe2bd0b3e3a9eeb9bcb38ddc58a63b132e574742860/pycurl-7.45.3-cp311-cp311-win_amd64.whl", hash = "sha256:dd33fd9de8907a6275c70113124aeb7eea672c1324f5d5423f203738b341697d", size = 475595 }, + { url = "https://files.pythonhosted.org/packages/21/0e/8073f971cd4e380178d6ada00c4956f9a5f6090fea9d94ff81d2cf7b52c8/pycurl-7.45.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0c41a172d5e8a5cdd8328cc8134f47b2a57960ac677f7cda8520eaa9fbe7d990", size = 198105 }, + { url = "https://files.pythonhosted.org/packages/85/dd/9d398ffbf0002cca9393aa0f7586a2dc3b68624faf4eafa98f916c61180a/pycurl-7.45.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:13006b62c157bb4483c58e1abdced6df723c9399255a4f5f6bb7f8e425106679", size = 143733 }, + { url = "https://files.pythonhosted.org/packages/b7/8d/a23069b4e30979f0d7745fd057d3c23b3c55181da1ae450542bb2818f689/pycurl-7.45.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:27f4c5c20c86a9a823677316724306fb1ce3b25ec568efd52026dc6c563e5b29", size = 142709 }, + { url = "https://files.pythonhosted.org/packages/4a/27/9936d21a7a754f29ee8615361948f90e6bfeac5db7aa7c92d278b853cbc7/pycurl-7.45.3-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:c2c246bc29e8762ff4c8a833ac5b4da4c797d16ab138286e8aec9b0c0a0da2d4", size = 4462052 }, + { url = "https://files.pythonhosted.org/packages/65/80/8791945007e2295806bfd0e982e00fee023517b17d5b2d845ca64c81878c/pycurl-7.45.3-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:3d07c5daef2d0d85949e32ec254ee44232bb57febb0634194379dd14d1ff4f87", size = 4570051 }, + { url = "https://files.pythonhosted.org/packages/75/04/83cc6db47d73c879c318fb0f302d726587470495f3e70cecc6d9b2da45c6/pycurl-7.45.3-cp312-cp312-win32.whl", hash = "sha256:9f7afe5ef0e4750ac4515baebc251ee94aaefe5de6e2e8a24668473128d69904", size = 432924 }, + { url = "https://files.pythonhosted.org/packages/0e/e1/7df02d4f600b9d452fd5c33b00a1886c2757c985dc8ffccd4ba8a7d9a9d5/pycurl-7.45.3-cp312-cp312-win_amd64.whl", hash = "sha256:3648ed9a57a6b704673faeab3dc64d1469cc69f2bc1ed8227ffa0f84e147c500", size = 472986 }, +] + +[[package]] +name = "pydantic" +version = "2.8.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "annotated-types", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pydantic-core", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/8c/99/d0a5dca411e0a017762258013ba9905cd6e7baa9a3fd1fe8b6529472902e/pydantic-2.8.2.tar.gz", hash = "sha256:6f62c13d067b0755ad1c21a34bdd06c0c12625a22b0fc09c6b149816604f7c2a", size = 739834 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1f/fa/b7f815b8c9ad021c07f88875b601222ef5e70619391ade4a49234d12d278/pydantic-2.8.2-py3-none-any.whl", hash = "sha256:73ee9fddd406dc318b885c7a2eab8a6472b68b8fb5ba8150949fc3db939f23c8", size = 423875 }, +] + +[[package]] +name = "pydantic-core" +version = "2.20.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/12/e3/0d5ad91211dba310f7ded335f4dad871172b9cc9ce204f5a56d76ccd6247/pydantic_core-2.20.1.tar.gz", hash = "sha256:26ca695eeee5f9f1aeeb211ffc12f10bcb6f71e2989988fda61dabd65db878d4", size = 388371 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/61/db/f6a724db226d990a329910727cfac43539ff6969edc217286dd05cda3ef6/pydantic_core-2.20.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:d2a8fa9d6d6f891f3deec72f5cc668e6f66b188ab14bb1ab52422fe8e644f312", size = 1834507 }, + { url = "https://files.pythonhosted.org/packages/9b/83/6f2bfe75209d557ae1c3550c1252684fc1827b8b12fbed84c3b4439e135d/pydantic_core-2.20.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:175873691124f3d0da55aeea1d90660a6ea7a3cfea137c38afa0a5ffabe37b88", size = 1773527 }, + { url = "https://files.pythonhosted.org/packages/93/ef/513ea76d7ca81f2354bb9c8d7839fc1157673e652613f7e1aff17d8ce05d/pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:37eee5b638f0e0dcd18d21f59b679686bbd18917b87db0193ae36f9c23c355fc", size = 1787879 }, + { url = "https://files.pythonhosted.org/packages/31/0a/ac294caecf235f0cc651de6232f1642bb793af448d1cfc541b0dc1fd72b8/pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:25e9185e2d06c16ee438ed39bf62935ec436474a6ac4f9358524220f1b236e43", size = 1774694 }, + { url = "https://files.pythonhosted.org/packages/46/a4/08f12b5512f095963550a7cb49ae010e3f8f3f22b45e508c2cb4d7744fce/pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:150906b40ff188a3260cbee25380e7494ee85048584998c1e66df0c7a11c17a6", size = 1976369 }, + { url = "https://files.pythonhosted.org/packages/15/59/b2495be4410462aedb399071c71884042a2c6443319cbf62d00b4a7ed7a5/pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ad4aeb3e9a97286573c03df758fc7627aecdd02f1da04516a86dc159bf70121", size = 2691250 }, + { url = "https://files.pythonhosted.org/packages/3c/ae/fc99ce1ba791c9e9d1dee04ce80eef1dae5b25b27e3fc8e19f4e3f1348bf/pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3f3ed29cd9f978c604708511a1f9c2fdcb6c38b9aae36a51905b8811ee5cbf1", size = 2061462 }, + { url = "https://files.pythonhosted.org/packages/44/bb/eb07cbe47cfd638603ce3cb8c220f1a054b821e666509e535f27ba07ca5f/pydantic_core-2.20.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0dae11d8f5ded51699c74d9548dcc5938e0804cc8298ec0aa0da95c21fff57b", size = 1893923 }, + { url = "https://files.pythonhosted.org/packages/ce/ef/5a52400553b8faa0e7f11fd7a2ba11e8d2feb50b540f9e7973c49b97eac0/pydantic_core-2.20.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:faa6b09ee09433b87992fb5a2859efd1c264ddc37280d2dd5db502126d0e7f27", size = 1966779 }, + { url = "https://files.pythonhosted.org/packages/4c/5b/fb37fe341344d9651f5c5f579639cd97d50a457dc53901aa8f7e9f28beb9/pydantic_core-2.20.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9dc1b507c12eb0481d071f3c1808f0529ad41dc415d0ca11f7ebfc666e66a18b", size = 2109044 }, + { url = "https://files.pythonhosted.org/packages/70/1a/6f7278802dbc66716661618807ab0dfa4fc32b09d1235923bbbe8b3a5757/pydantic_core-2.20.1-cp311-none-win32.whl", hash = "sha256:fa2fddcb7107e0d1808086ca306dcade7df60a13a6c347a7acf1ec139aa6789a", size = 1708265 }, + { url = "https://files.pythonhosted.org/packages/35/7f/58758c42c61b0bdd585158586fecea295523d49933cb33664ea888162daf/pydantic_core-2.20.1-cp311-none-win_amd64.whl", hash = "sha256:40a783fb7ee353c50bd3853e626f15677ea527ae556429453685ae32280c19c2", size = 1901750 }, + { url = "https://files.pythonhosted.org/packages/6f/47/ef0d60ae23c41aced42921728650460dc831a0adf604bfa66b76028cb4d0/pydantic_core-2.20.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:595ba5be69b35777474fa07f80fc260ea71255656191adb22a8c53aba4479231", size = 1839225 }, + { url = "https://files.pythonhosted.org/packages/6a/23/430f2878c9cd977a61bb39f71751d9310ec55cee36b3d5bf1752c6341fd0/pydantic_core-2.20.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a4f55095ad087474999ee28d3398bae183a66be4823f753cd7d67dd0153427c9", size = 1768604 }, + { url = "https://files.pythonhosted.org/packages/9e/2b/ec4e7225dee79e0dc80ccc3c35ab33cc2c4bbb8a1a7ecf060e5e453651ec/pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f9aa05d09ecf4c75157197f27cdc9cfaeb7c5f15021c6373932bf3e124af029f", size = 1789767 }, + { url = "https://files.pythonhosted.org/packages/64/b0/38b24a1fa6d2f96af3148362e10737ec073768cd44d3ec21dca3be40a519/pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e97fdf088d4b31ff4ba35db26d9cc472ac7ef4a2ff2badeabf8d727b3377fc52", size = 1772061 }, + { url = "https://files.pythonhosted.org/packages/5e/da/bb73274c42cb60decfa61e9eb0c9029da78b3b9af0a9de0309dbc8ff87b6/pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bc633a9fe1eb87e250b5c57d389cf28998e4292336926b0b6cdaee353f89a237", size = 1974573 }, + { url = "https://files.pythonhosted.org/packages/c8/65/41693110fb3552556180460daffdb8bbeefb87fc026fd9aa4b849374015c/pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d573faf8eb7e6b1cbbcb4f5b247c60ca8be39fe2c674495df0eb4318303137fe", size = 2625596 }, + { url = "https://files.pythonhosted.org/packages/09/b3/a5a54b47cccd1ab661ed5775235c5e06924753c2d4817737c5667bfa19a8/pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:26dc97754b57d2fd00ac2b24dfa341abffc380b823211994c4efac7f13b9e90e", size = 2099064 }, + { url = "https://files.pythonhosted.org/packages/52/fa/443a7a6ea54beaba45ff3a59f3d3e6e3004b7460bcfb0be77bcf98719d3b/pydantic_core-2.20.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:33499e85e739a4b60c9dac710c20a08dc73cb3240c9a0e22325e671b27b70d24", size = 1900345 }, + { url = "https://files.pythonhosted.org/packages/8e/e6/9aca9ffae60f9cdf0183069de3e271889b628d0fb175913fcb3db5618fb1/pydantic_core-2.20.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:bebb4d6715c814597f85297c332297c6ce81e29436125ca59d1159b07f423eb1", size = 1968252 }, + { url = "https://files.pythonhosted.org/packages/46/5e/6c716810ea20a6419188992973a73c2fb4eb99cd382368d0637ddb6d3c99/pydantic_core-2.20.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:516d9227919612425c8ef1c9b869bbbee249bc91912c8aaffb66116c0b447ebd", size = 2119191 }, + { url = "https://files.pythonhosted.org/packages/06/fc/6123b00a9240fbb9ae0babad7a005d51103d9a5d39c957a986f5cdd0c271/pydantic_core-2.20.1-cp312-none-win32.whl", hash = "sha256:469f29f9093c9d834432034d33f5fe45699e664f12a13bf38c04967ce233d688", size = 1717788 }, + { url = "https://files.pythonhosted.org/packages/d5/36/e61ad5a46607a469e2786f398cd671ebafcd9fb17f09a2359985c7228df5/pydantic_core-2.20.1-cp312-none-win_amd64.whl", hash = "sha256:035ede2e16da7281041f0e626459bcae33ed998cca6a0a007a5ebb73414ac72d", size = 1898188 }, + { url = "https://files.pythonhosted.org/packages/49/75/40b0e98b658fdba02a693b3bacb4c875a28bba87796c7b13975976597d8c/pydantic_core-2.20.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:0827505a5c87e8aa285dc31e9ec7f4a17c81a813d45f70b1d9164e03a813a686", size = 1838688 }, + { url = "https://files.pythonhosted.org/packages/75/02/d8ba2d4a266591a6a623c68b331b96523d4b62ab82a951794e3ed8907390/pydantic_core-2.20.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:19c0fa39fa154e7e0b7f82f88ef85faa2a4c23cc65aae2f5aea625e3c13c735a", size = 1768409 }, + { url = "https://files.pythonhosted.org/packages/91/ae/25ecd9bc4ce4993e99a1a3c9ab111c082630c914260e129572fafed4ecc2/pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa223cd1e36b642092c326d694d8bf59b71ddddc94cdb752bbbb1c5c91d833b", size = 1789317 }, + { url = "https://files.pythonhosted.org/packages/7a/80/72057580681cdbe55699c367963d9c661b569a1d39338b4f6239faf36cdc/pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c336a6d235522a62fef872c6295a42ecb0c4e1d0f1a3e500fe949415761b8a19", size = 1771949 }, + { url = "https://files.pythonhosted.org/packages/a2/be/d9bbabc55b05019013180f141fcaf3b14dbe15ca7da550e95b60c321009a/pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7eb6a0587eded33aeefea9f916899d42b1799b7b14b8f8ff2753c0ac1741edac", size = 1974392 }, + { url = "https://files.pythonhosted.org/packages/79/2d/7bcd938c6afb0f40293283f5f09988b61fb0a4f1d180abe7c23a2f665f8e/pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:70c8daf4faca8da5a6d655f9af86faf6ec2e1768f4b8b9d0226c02f3d6209703", size = 2625565 }, + { url = "https://files.pythonhosted.org/packages/ac/88/ca758e979457096008a4b16a064509028e3e092a1e85a5ed6c18ced8da88/pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9fa4c9bf273ca41f940bceb86922a7667cd5bf90e95dbb157cbb8441008482c", size = 2098784 }, + { url = "https://files.pythonhosted.org/packages/eb/de/2fad6d63c3c42e472e985acb12ec45b7f56e42e6f4cd6dfbc5e87ee8678c/pydantic_core-2.20.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:11b71d67b4725e7e2a9f6e9c0ac1239bbc0c48cce3dc59f98635efc57d6dac83", size = 1900198 }, + { url = "https://files.pythonhosted.org/packages/fe/50/077c7f35b6488dc369a6d22993af3a37901e198630f38ac43391ca730f5b/pydantic_core-2.20.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:270755f15174fb983890c49881e93f8f1b80f0b5e3a3cc1394a255706cabd203", size = 1968005 }, + { url = "https://files.pythonhosted.org/packages/5d/1f/f378631574ead46d636b9a04a80ff878b9365d4b361b1905ef1667d4182a/pydantic_core-2.20.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:c81131869240e3e568916ef4c307f8b99583efaa60a8112ef27a366eefba8ef0", size = 2118920 }, + { url = "https://files.pythonhosted.org/packages/7a/ea/e4943f17df7a3031d709481fe4363d4624ae875a6409aec34c28c9e6cf59/pydantic_core-2.20.1-cp313-none-win32.whl", hash = "sha256:b91ced227c41aa29c672814f50dbb05ec93536abf8f43cd14ec9521ea09afe4e", size = 1717397 }, + { url = "https://files.pythonhosted.org/packages/13/63/b95781763e8d84207025071c0cec16d921c0163c7a9033ae4b9a0e020dc7/pydantic_core-2.20.1-cp313-none-win_amd64.whl", hash = "sha256:65db0f2eefcaad1a3950f498aabb4875c8890438bc80b19362cf633b87a8ab20", size = 1898013 }, +] + +[[package]] +name = "pyflakes" +version = "3.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/57/f9/669d8c9c86613c9d568757c7f5824bd3197d7b1c6c27553bc5618a27cce2/pyflakes-3.2.0.tar.gz", hash = "sha256:1c61603ff154621fb2a9172037d84dca3500def8c8b630657d1701f026f8af3f", size = 63788 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d4/d7/f1b7db88d8e4417c5d47adad627a93547f44bdc9028372dbd2313f34a855/pyflakes-3.2.0-py2.py3-none-any.whl", hash = "sha256:84b5be138a2dfbb40689ca07e2152deb896a65c3a3e24c251c5c62489568074a", size = 62725 }, +] + +[[package]] +name = "pygments" +version = "2.18.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8e/62/8336eff65bcbc8e4cb5d05b55faf041285951b6e80f33e2bff2024788f31/pygments-2.18.0.tar.gz", hash = "sha256:786ff802f32e91311bff3889f6e9a86e81505fe99f2735bb6d60ae0c5004f199", size = 4891905 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f7/3f/01c8b82017c199075f8f788d0d906b9ffbbc5a47dc9918a945e13d5a2bda/pygments-2.18.0-py3-none-any.whl", hash = "sha256:b8e6aca0523f3ab76fee51799c488e38782ac06eafcf95e7ba832985c8e7b13a", size = 1205513 }, +] + +[[package]] +name = "pyjwt" +version = "2.9.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/fb/68/ce067f09fca4abeca8771fe667d89cc347d1e99da3e093112ac329c6020e/pyjwt-2.9.0.tar.gz", hash = "sha256:7e1e5b56cc735432a7369cbfa0efe50fa113ebecdc04ae6922deba8b84582d0c", size = 78825 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/79/84/0fdf9b18ba31d69877bd39c9cd6052b47f3761e9910c15de788e519f079f/PyJWT-2.9.0-py3-none-any.whl", hash = "sha256:3b02fb0f44517787776cf48f2ae25d8e14f300e6d7545a4315cee571a415e850", size = 22344 }, +] + +[package.optional-dependencies] +crypto = [ + { name = "cryptography", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] + +[[package]] +name = "pymacaroons" +version = "0.13.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pynacl", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "six", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/37/b4/52ff00b59e91c4817ca60210c33caf11e85a7f68f7b361748ca2eb50923e/pymacaroons-0.13.0.tar.gz", hash = "sha256:1e6bba42a5f66c245adf38a5a4006a99dcc06a0703786ea636098667d42903b8", size = 21083 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d8/87/fd9b54258216e3f19671f6e9dd76da1ebc49e93ea0107c986b1071dd3068/pymacaroons-0.13.0-py2.py3-none-any.whl", hash = "sha256:3e14dff6a262fdbf1a15e769ce635a8aea72e6f8f91e408f9a97166c53b91907", size = 19463 }, +] + +[[package]] +name = "pymdown-extensions" +version = "10.9" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markdown", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pyyaml", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d8/d3/fb86beeaa4416f73a28a5e8d440976b7cada2b2d7b5e715b2bd849d4de32/pymdown_extensions-10.9.tar.gz", hash = "sha256:6ff740bcd99ec4172a938970d42b96128bdc9d4b9bcad72494f29921dc69b753", size = 812128 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/41/18b5dc5e97ec3ff1c2f51d372e570a9fbe231f1124dcc36dbc6b47f93058/pymdown_extensions-10.9-py3-none-any.whl", hash = "sha256:d323f7e90d83c86113ee78f3fe62fc9dee5f56b54d912660703ea1816fed5626", size = 250954 }, +] + +[[package]] +name = "pynacl" +version = "1.5.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a7/22/27582568be639dfe22ddb3902225f91f2f17ceff88ce80e4db396c8986da/PyNaCl-1.5.0.tar.gz", hash = "sha256:8ac7448f09ab85811607bdd21ec2464495ac8b7c66d146bf545b0f08fb9220ba", size = 3392854 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ce/75/0b8ede18506041c0bf23ac4d8e2971b4161cd6ce630b177d0a08eb0d8857/PyNaCl-1.5.0-cp36-abi3-macosx_10_10_universal2.whl", hash = "sha256:401002a4aaa07c9414132aaed7f6836ff98f59277a234704ff66878c2ee4a0d1", size = 349920 }, + { url = "https://files.pythonhosted.org/packages/59/bb/fddf10acd09637327a97ef89d2a9d621328850a72f1fdc8c08bdf72e385f/PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:52cb72a79269189d4e0dc537556f4740f7f0a9ec41c1322598799b0bdad4ef92", size = 601722 }, + { url = "https://files.pythonhosted.org/packages/5d/70/87a065c37cca41a75f2ce113a5a2c2aa7533be648b184ade58971b5f7ccc/PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a36d4a9dda1f19ce6e03c9a784a2921a4b726b02e1c736600ca9c22029474394", size = 680087 }, + { url = "https://files.pythonhosted.org/packages/ee/87/f1bb6a595f14a327e8285b9eb54d41fef76c585a0edef0a45f6fc95de125/PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:0c84947a22519e013607c9be43706dd42513f9e6ae5d39d3613ca1e142fba44d", size = 856678 }, + { url = "https://files.pythonhosted.org/packages/66/28/ca86676b69bf9f90e710571b67450508484388bfce09acf8a46f0b8c785f/PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:06b8f6fa7f5de8d5d2f7573fe8c863c051225a27b61e6860fd047b1775807858", size = 1133660 }, + { url = "https://files.pythonhosted.org/packages/3d/85/c262db650e86812585e2bc59e497a8f59948a005325a11bbbc9ecd3fe26b/PyNaCl-1.5.0-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:a422368fc821589c228f4c49438a368831cb5bbc0eab5ebe1d7fac9dded6567b", size = 663824 }, + { url = "https://files.pythonhosted.org/packages/fd/1a/cc308a884bd299b651f1633acb978e8596c71c33ca85e9dc9fa33a5399b9/PyNaCl-1.5.0-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:61f642bf2378713e2c2e1de73444a3778e5f0a38be6fee0fe532fe30060282ff", size = 1117912 }, + { url = "https://files.pythonhosted.org/packages/25/2d/b7df6ddb0c2a33afdb358f8af6ea3b8c4d1196ca45497dd37a56f0c122be/PyNaCl-1.5.0-cp36-abi3-win32.whl", hash = "sha256:e46dae94e34b085175f8abb3b0aaa7da40767865ac82c928eeb9e57e1ea8a543", size = 204624 }, + { url = "https://files.pythonhosted.org/packages/5e/22/d3db169895faaf3e2eda892f005f433a62db2decbcfbc2f61e6517adfa87/PyNaCl-1.5.0-cp36-abi3-win_amd64.whl", hash = "sha256:20f42270d27e1b6a29f54032090b972d97f0a1b0948cc52392041ef7831fee93", size = 212141 }, +] + +[[package]] +name = "pyopenssl" +version = "24.2.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cryptography", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5d/70/ff56a63248562e77c0c8ee4aefc3224258f1856977e0c1472672b62dadb8/pyopenssl-24.2.1.tar.gz", hash = "sha256:4247f0dbe3748d560dcbb2ff3ea01af0f9a1a001ef5f7c4c647956ed8cbf0e95", size = 184323 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d9/dd/e0aa7ebef5168c75b772eda64978c597a9129b46be17779054652a7999e4/pyOpenSSL-24.2.1-py3-none-any.whl", hash = "sha256:967d5719b12b243588573f39b0c677637145c7a1ffedcd495a487e58177fbb8d", size = 58390 }, +] + +[[package]] +name = "pyparsing" +version = "3.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/46/3a/31fd28064d016a2182584d579e033ec95b809d8e220e74c4af6f0f2e8842/pyparsing-3.1.2.tar.gz", hash = "sha256:a1bac0ce561155ecc3ed78ca94d3c9378656ad4c94c1270de543f621420f94ad", size = 889571 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9d/ea/6d76df31432a0e6fdf81681a895f009a4bb47b3c39036db3e1b528191d52/pyparsing-3.1.2-py3-none-any.whl", hash = "sha256:f9db75911801ed778fe61bb643079ff86601aca99fcae6345aa67292038fb742", size = 103245 }, +] + +[[package]] +name = "pyproject-hooks" +version = "1.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c7/07/6f63dda440d4abb191b91dc383b472dae3dd9f37e4c1e4a5c3db150531c6/pyproject_hooks-1.1.0.tar.gz", hash = "sha256:4b37730834edbd6bd37f26ece6b44802fb1c1ee2ece0e54ddff8bfc06db86965", size = 7838 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ae/f3/431b9d5fe7d14af7a32340792ef43b8a714e7726f1d7b69cc4e8e7a3f1d7/pyproject_hooks-1.1.0-py3-none-any.whl", hash = "sha256:7ceeefe9aec63a1064c18d939bdc3adf2d8aa1988a510afec15151578b232aa2", size = 9184 }, +] + +[[package]] +name = "pyqrcode" +version = "1.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/37/61/f07226075c347897937d4086ef8e55f0a62ae535e28069884ac68d979316/PyQRCode-1.2.1.tar.gz", hash = "sha256:fdbf7634733e56b72e27f9bce46e4550b75a3a2c420414035cae9d9d26b234d5", size = 36989 } + +[[package]] +name = "pyramid" +version = "2.0.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "hupper", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "plaster", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "plaster-pastedeploy", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "setuptools", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "translationstring", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "venusian", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "webob", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "zope-deprecation", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "zope-interface", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/47/c3/5d5736e692fc7ff052577f03136b5edfdf1e2e177eff2f4b91206acae11d/pyramid-2.0.2.tar.gz", hash = "sha256:372138a738e4216535cc76dcce6eddd5a1aaca95130f2354fb834264c06f18de", size = 2637533 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/db/41/a2114b8dd2187ae007e022a2baabdc7937cc78211cefc0c01fc5452193af/pyramid-2.0.2-py3-none-any.whl", hash = "sha256:2e6585ac55c147f0a51bc00dadf72075b3bdd9a871b332ff9e5e04117ccd76fa", size = 247277 }, +] + +[[package]] +name = "pyramid-debugtoolbar" +version = "4.12.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pygments", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pyramid", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pyramid-mako", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1c/09/c2757fa0d1dd4d3f748e5160453bf5a50918f2fbeb22913e184998989644/pyramid_debugtoolbar-4.12.1.tar.gz", hash = "sha256:71e888d349c85fcca12b3e6dc4c7ae8e3f02a1d5acc05154fd9ba8c7f661b43d", size = 3081467 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/35/00/45969d152de9389e932c6e345846c97069b42987ef1388840db507d9f557/pyramid_debugtoolbar-4.12.1-py3-none-any.whl", hash = "sha256:1d13a82444b3396d5a76d1e611d0de1b38da096f04440041e8e889536103864b", size = 350810 }, +] + +[[package]] +name = "pyramid-jinja2" +version = "2.10.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jinja2", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "markupsafe", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pyramid", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "zope-deprecation", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b9/18/bd33281543c1ea7b2b750d48049741c50dc5bf5aef29774dcf88d3071eab/pyramid_jinja2-2.10.1.tar.gz", hash = "sha256:8c508cb35c135f95149ca236110f9c8875343575740d16c5cb73a50ef1c21677", size = 77976 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f0/dd/65863c289e57ddad25f43d6396db263f982b11e88a6bd1cb6a10484b4fef/pyramid_jinja2-2.10.1-py3-none-any.whl", hash = "sha256:425a52a0c1cc2a83e183d22bb15cdd999112aa4c7b1e0f4e21c49a6b523ad6e1", size = 43193 }, +] + +[[package]] +name = "pyramid-mailer" +version = "0.15.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyramid", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "repoze-sendmail", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "transaction", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a0/f2/6febf5459dff4d7e653314d575469ad2e11b9d2af2c3606360e1c67202f2/pyramid_mailer-0.15.1.tar.gz", hash = "sha256:ec0aff54d9179b2aa2922ff82c2016a4dc8d1da5dc3408d6594f0e2096446f9b", size = 46836 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ea/c3/0ce593179a8da8e1ab7fe178b0ae096a046246bd44a5787f72940d6dd5b2/pyramid_mailer-0.15.1-py2.py3-none-any.whl", hash = "sha256:28d4a7829ebc19dd40e712d8cb1998cec03c296ba675b2c112a503539738bdc1", size = 19041 }, +] + +[[package]] +name = "pyramid-mako" +version = "1.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mako", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pyramid", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/63/7b/5e2af68f675071a6bad148c1c393928f0ef5fcd94e95cbf53b89d6471a83/pyramid_mako-1.1.0.tar.gz", hash = "sha256:0066c863441f1c3ddea60cee1ccc50d00a91a317a8052ca44131da1a12a840e2", size = 31236 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/57/ce/bc0aec2166cff2b2a9d061b02b07bfaa2413f31a5f828987038e5e99d53c/pyramid_mako-1.1.0-py2.py3-none-any.whl", hash = "sha256:76104592d292b6974cf7080aa52405c51f396a621535f01e274d7fe546e85a43", size = 14145 }, +] + +[[package]] +name = "pyramid-openapi3" +version = "0.19" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "openapi-core", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pyramid", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1f/69/6023bc9ba4fbbc3dc38971bdb055ac036c6de44c3be37398cbc751be893b/pyramid_openapi3-0.19.tar.gz", hash = "sha256:843c1666d7f57e29694c2deaf215c83b96d210a3a3b479d52fbf4575b38869b0", size = 20826 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b9/15/d8fba0bbbbd20d0831bcb8c70f5282e2f9bd61903d205c7f2255953a9685/pyramid_openapi3-0.19-py3-none-any.whl", hash = "sha256:d0d68f0745ba059c91fc0ca4f764466adaaf3bf97acf6f129e096c04ced7022b", size = 17376 }, +] + +[[package]] +name = "pyramid-retry" +version = "2.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyramid", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "zope-interface", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/bf/02/2a084e7bc8ca3c50b67c6a6d58598c5771d93399e9ff2aadf6aa29c1adcc/pyramid_retry-2.1.1.tar.gz", hash = "sha256:baa8276ae68babad09e5f2f94efc4f7421f3b8fb526151df522052f8cd3ec0c9", size = 23266 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/a7/b04390f36dcd0b117e023e4f980d6173da893b3c27f8b12ecd5dcc6fdb95/pyramid_retry-2.1.1-py2.py3-none-any.whl", hash = "sha256:b5129a60eb9d7409234ea52839006426d2ae887b4a1f0530c75ec336cabf2476", size = 6641 }, +] + +[[package]] +name = "pyramid-rpc" +version = "0.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyramid", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "venusian", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/2d/6a/cd63ce9e4ee09b59061f889a6b4fe5981fe1e64e536127d3ad3abe9cc829/pyramid_rpc-0.8.tar.gz", hash = "sha256:5dcd59a52d28ed5594df897ddbd473f68e599d48d4c86546e688db9752fa1f3a", size = 30940 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/03/4f/5edd9469b2ce8172167018e1beea775ad57f4e9a4d83a9e79afc4f3085fa/pyramid_rpc-0.8-py2.py3-none-any.whl", hash = "sha256:0ad0368404d4f5c7afd31e801b48efed6866bdbeb0f5d14413d2a0bb17f00bd6", size = 24034 }, +] + +[[package]] +name = "pyramid-services" +version = "2.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyramid", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "wired", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "zope-interface", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a1/69/2564c19c3377eef855caa94ce7e31dbf8962532788c6b7de6b7a11640aa9/pyramid_services-2.2.tar.gz", hash = "sha256:459f4da035198592b776fe80f51e72439984f50abd4f2f1719584d37aa763639", size = 14023 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/08/4b04132884feb5190fda1391eb832e618c9118084339dc1669110e9d4f6c/pyramid_services-2.2-py2.py3-none-any.whl", hash = "sha256:01d175d84752e2a4178519cbd26cf900aa62a2e267cdd71370e5b88d06092b38", size = 7818 }, +] + +[[package]] +name = "pyramid-tm" +version = "2.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyramid", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "transaction", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/65/93/601f4410a76026abf4d589c815ef6626b4923d004f30a7af105117c67d44/pyramid_tm-2.5.tar.gz", hash = "sha256:5c81dcecd33770f5e3596687d2be35ffc4f8ce5eda00a31acb00ae35a51430d0", size = 34524 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a5/77/6aa3da7b347194ed277356648975b82b05b18d7d4cc5c9140b4389678b97/pyramid_tm-2.5-py2.py3-none-any.whl", hash = "sha256:6638721946e809de8b4bf3f405bd2daaaa76d58442cbdf46be30ebc259f1a354", size = 6511 }, +] + +[[package]] +name = "pytest" +version = "8.3.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "iniconfig", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "packaging", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pluggy", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b4/8c/9862305bdcd6020bc7b45b1b5e7397a6caf1a33d3025b9a003b39075ffb2/pytest-8.3.2.tar.gz", hash = "sha256:c132345d12ce551242c87269de812483f5bcc87cdbb4722e48487ba194f9fdce", size = 1439314 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0f/f9/cf155cf32ca7d6fa3601bc4c5dd19086af4b320b706919d48a4c79081cf9/pytest-8.3.2-py3-none-any.whl", hash = "sha256:4ba08f9ae7dcf84ded419494d229b48d0903ea6407b030eaec46df5e6a73bba5", size = 341802 }, +] + +[[package]] +name = "pytest-icdiff" +version = "0.9" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "icdiff", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pprintpp", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pytest", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5a/0c/66e1e2590e98f4428e374a3b6448dc086a908d15b1e24b914539d13b7ac4/pytest-icdiff-0.9.tar.gz", hash = "sha256:13aede616202e57fcc882568b64589002ef85438046f012ac30a8d959dac8b75", size = 7110 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e2/e1/cafe1edf7a30be6fa1bbbf43f7af12b34682eadcf19eb6e9f7352062c422/pytest_icdiff-0.9-py3-none-any.whl", hash = "sha256:efee0da3bd1b24ef2d923751c5c547fbb8df0a46795553fba08ef57c3ca03d82", size = 4994 }, +] + +[[package]] +name = "pytest-postgresql" +version = "6.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mirakuru", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "port-for", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "psycopg", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pytest", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "setuptools", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7a/a3/ed108b77370e53830dbeac0b14bce1637c21e8cfa3b4818194668ad0dd2f/pytest-postgresql-6.0.0.tar.gz", hash = "sha256:6a4d8e600a2eef273f3c0e846cd0b2ea577282e252de29b4ca854bfb929bb682", size = 46932 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2b/34/91723749613145d418df9d20e85270fbb03f1fa4995452c88b83e7a4bdca/pytest_postgresql-6.0.0-py3-none-any.whl", hash = "sha256:f14272bffad16a74d9a63f4cc828f243a12ae92995e236b68fd53154760e6a5a", size = 40276 }, +] + +[[package]] +name = "pytest-randomly" +version = "3.15.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pytest", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c9/d4/6e924a0b2855736d942703dec88dfc98b4fe0881c8fa849b6b0fbb9182fa/pytest_randomly-3.15.0.tar.gz", hash = "sha256:b908529648667ba5e54723088edd6f82252f540cc340d748d1fa985539687047", size = 21743 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/24/d3/00e575657422055c4ea220b2f80e8cc6026ab7130372b7067444d1b0ac10/pytest_randomly-3.15.0-py3-none-any.whl", hash = "sha256:0516f4344b29f4e9cdae8bce31c4aeebf59d0b9ef05927c33354ff3859eeeca6", size = 8685 }, +] + +[[package]] +name = "pytest-socket" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pytest", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/05/ff/90c7e1e746baf3d62ce864c479fd53410b534818b9437413903596f81580/pytest_socket-0.7.0.tar.gz", hash = "sha256:71ab048cbbcb085c15a4423b73b619a8b35d6a307f46f78ea46be51b1b7e11b3", size = 12389 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/19/58/5d14cb5cb59409e491ebe816c47bf81423cd03098ea92281336320ae5681/pytest_socket-0.7.0-py3-none-any.whl", hash = "sha256:7e0f4642177d55d317bbd58fc68c6bd9048d6eadb2d46a89307fa9221336ce45", size = 6754 }, +] + +[[package]] +name = "python-dateutil" +version = "2.9.0.post0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892 }, +] + +[[package]] +name = "python-slugify" +version = "8.0.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "text-unidecode", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/87/c7/5e1547c44e31da50a460df93af11a535ace568ef89d7a811069ead340c4a/python-slugify-8.0.4.tar.gz", hash = "sha256:59202371d1d05b54a9e7720c5e038f928f45daaffe41dd10822f3907b937c856", size = 10921 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a4/62/02da182e544a51a5c3ccf4b03ab79df279f9c60c5e82d5e8bec7ca26ac11/python_slugify-8.0.4-py2.py3-none-any.whl", hash = "sha256:276540b79961052b66b7d116620b36518847f52d5fd9e3a70164fc8c50faa6b8", size = 10051 }, +] + +[[package]] +name = "python-yakh" +version = "0.3.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/94/47/1c5246b7444fa1ed97bc54674ccdc46d77d2e160d9f042894a9ceaaf7a90/python_yakh-0.3.2.tar.gz", hash = "sha256:f2833a4c00d9823b1e3b517b71bfcb672f81d4e9719f4326389cef38f5b1bfe3", size = 4210 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6d/46/1c9fe7bba42d293d0447fe3d41f7f021b4268a2583d372e07ea14fc561bc/python_yakh-0.3.2-py3-none-any.whl", hash = "sha256:18e526e11fbd185a0da98581b8b08d3848bef97b070590fcd5ec49de0893371e", size = 5828 }, +] + +[[package]] +name = "pytz" +version = "2024.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/90/26/9f1f00a5d021fff16dee3de13d43e5e978f3d58928e129c3a62cf7eb9738/pytz-2024.1.tar.gz", hash = "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812", size = 316214 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9c/3d/a121f284241f08268b21359bd425f7d4825cffc5ac5cd0e1b3d82ffd2b10/pytz-2024.1-py2.py3-none-any.whl", hash = "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319", size = 505474 }, +] + +[[package]] +name = "pyupgrade" +version = "3.17.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "tokenize-rt", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7a/79/15cd93e47b5d670f0e32a540eb3f11bac4b5800cf1f796590eb448c6a768/pyupgrade-3.17.0.tar.gz", hash = "sha256:d5dd1dcaf9a016c31508bb9d3d09fd335d736578092f91df52bb26ac30c37919", size = 45381 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2c/a6/97092b45591e35945ea9714a8f77bfdf7058bd311e61bb47763174067f4f/pyupgrade-3.17.0-py2.py3-none-any.whl", hash = "sha256:cbc8f67a61d3f4e7ca9c2ef57b9aae67f023d3780ce30c99fccec78401723754", size = 62039 }, +] + +[[package]] +name = "pyyaml" +version = "6.0.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/54/ed/79a089b6be93607fa5cdaedf301d7dfb23af5f25c398d5ead2525b063e17/pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e", size = 130631 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f8/aa/7af4e81f7acba21a4c6be026da38fd2b872ca46226673c89a758ebdc4fd2/PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774", size = 184612 }, + { url = "https://files.pythonhosted.org/packages/8b/62/b9faa998fd185f65c1371643678e4d58254add437edb764a08c5a98fb986/PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee", size = 172040 }, + { url = "https://files.pythonhosted.org/packages/ad/0c/c804f5f922a9a6563bab712d8dcc70251e8af811fce4524d57c2c0fd49a4/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c", size = 736829 }, + { url = "https://files.pythonhosted.org/packages/51/16/6af8d6a6b210c8e54f1406a6b9481febf9c64a3109c541567e35a49aa2e7/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317", size = 764167 }, + { url = "https://files.pythonhosted.org/packages/75/e4/2c27590dfc9992f73aabbeb9241ae20220bd9452df27483b6e56d3975cc5/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85", size = 762952 }, + { url = "https://files.pythonhosted.org/packages/9b/97/ecc1abf4a823f5ac61941a9c00fe501b02ac3ab0e373c3857f7d4b83e2b6/PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4", size = 735301 }, + { url = "https://files.pythonhosted.org/packages/45/73/0f49dacd6e82c9430e46f4a027baa4ca205e8b0a9dce1397f44edc23559d/PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e", size = 756638 }, + { url = "https://files.pythonhosted.org/packages/22/5f/956f0f9fc65223a58fbc14459bf34b4cc48dec52e00535c79b8db361aabd/PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5", size = 143850 }, + { url = "https://files.pythonhosted.org/packages/ed/23/8da0bbe2ab9dcdd11f4f4557ccaf95c10b9811b13ecced089d43ce59c3c8/PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44", size = 161980 }, + { url = "https://files.pythonhosted.org/packages/86/0c/c581167fc46d6d6d7ddcfb8c843a4de25bdd27e4466938109ca68492292c/PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab", size = 183873 }, + { url = "https://files.pythonhosted.org/packages/a8/0c/38374f5bb272c051e2a69281d71cba6fdb983413e6758b84482905e29a5d/PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725", size = 173302 }, + { url = "https://files.pythonhosted.org/packages/c3/93/9916574aa8c00aa06bbac729972eb1071d002b8e158bd0e83a3b9a20a1f7/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5", size = 739154 }, + { url = "https://files.pythonhosted.org/packages/95/0f/b8938f1cbd09739c6da569d172531567dbcc9789e0029aa070856f123984/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425", size = 766223 }, + { url = "https://files.pythonhosted.org/packages/b9/2b/614b4752f2e127db5cc206abc23a8c19678e92b23c3db30fc86ab731d3bd/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476", size = 767542 }, + { url = "https://files.pythonhosted.org/packages/d4/00/dd137d5bcc7efea1836d6264f049359861cf548469d18da90cd8216cf05f/PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48", size = 731164 }, + { url = "https://files.pythonhosted.org/packages/c9/1f/4f998c900485e5c0ef43838363ba4a9723ac0ad73a9dc42068b12aaba4e4/PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b", size = 756611 }, + { url = "https://files.pythonhosted.org/packages/df/d1/f5a275fdb252768b7a11ec63585bc38d0e87c9e05668a139fea92b80634c/PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4", size = 140591 }, + { url = "https://files.pythonhosted.org/packages/0c/e8/4f648c598b17c3d06e8753d7d13d57542b30d56e6c2dedf9c331ae56312e/PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8", size = 156338 }, + { url = "https://files.pythonhosted.org/packages/ef/e3/3af305b830494fa85d95f6d95ef7fa73f2ee1cc8ef5b495c7c3269fb835f/PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba", size = 181309 }, + { url = "https://files.pythonhosted.org/packages/45/9f/3b1c20a0b7a3200524eb0076cc027a970d320bd3a6592873c85c92a08731/PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1", size = 171679 }, + { url = "https://files.pythonhosted.org/packages/7c/9a/337322f27005c33bcb656c655fa78325b730324c78620e8328ae28b64d0c/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133", size = 733428 }, + { url = "https://files.pythonhosted.org/packages/a3/69/864fbe19e6c18ea3cc196cbe5d392175b4cf3d5d0ac1403ec3f2d237ebb5/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484", size = 763361 }, + { url = "https://files.pythonhosted.org/packages/04/24/b7721e4845c2f162d26f50521b825fb061bc0a5afcf9a386840f23ea19fa/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5", size = 759523 }, + { url = "https://files.pythonhosted.org/packages/2b/b2/e3234f59ba06559c6ff63c4e10baea10e5e7df868092bf9ab40e5b9c56b6/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc", size = 726660 }, + { url = "https://files.pythonhosted.org/packages/fe/0f/25911a9f080464c59fab9027482f822b86bf0608957a5fcc6eaac85aa515/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652", size = 751597 }, + { url = "https://files.pythonhosted.org/packages/14/0d/e2c3b43bbce3cf6bd97c840b46088a3031085179e596d4929729d8d68270/PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183", size = 140527 }, + { url = "https://files.pythonhosted.org/packages/fa/de/02b54f42487e3d3c6efb3f89428677074ca7bf43aae402517bc7cca949f3/PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563", size = 156446 }, +] + +[[package]] +name = "pyyaml-env-tag" +version = "0.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyyaml", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/fb/8e/da1c6c58f751b70f8ceb1eb25bc25d524e8f14fe16edcce3f4e3ba08629c/pyyaml_env_tag-0.1.tar.gz", hash = "sha256:70092675bda14fdec33b31ba77e7543de9ddc88f2e5b99160396572d11525bdb", size = 5631 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5a/66/bbb1dd374f5c870f59c5bb1db0e18cbe7fa739415a24cbd95b2d1f5ae0c4/pyyaml_env_tag-0.1-py3-none-any.whl", hash = "sha256:af31106dec8a4d68c60207c1886031cbf839b68aa7abccdb19868200532c2069", size = 3911 }, +] + +[[package]] +name = "questo" +version = "0.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "python-yakh", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "rich", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/48/c5/4f6c79f770b12a67eb60d176c727e98312b5fce6f2a41af35bf08465b892/questo-0.3.0.tar.gz", hash = "sha256:b5cf16744b0e490ff93522a45fdd953ffc878d22aea404ff14ec4e9186b64c37", size = 8033 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d0/b7/74bf83cb431db799a7db6945c42f9ecb12413bcd2e1c577304ea5d450dcb/questo-0.3.0-py3-none-any.whl", hash = "sha256:5e1ea5f71058a35edcee49fae2aa4a55b9b28918535ff6d121a505a1f0b0580e", size = 10106 }, +] + +[[package]] +name = "readme-renderer" +version = "43.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "docutils", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "nh3", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pygments", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/fe/b5/536c775084d239df6345dccf9b043419c7e3308bc31be4c7882196abc62e/readme_renderer-43.0.tar.gz", hash = "sha256:1818dd28140813509eeed8d62687f7cd4f7bad90d4db586001c5dc09d4fde311", size = 31768 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/45/be/3ea20dc38b9db08387cf97997a85a7d51527ea2057d71118feb0aa8afa55/readme_renderer-43.0-py3-none-any.whl", hash = "sha256:19db308d86ecd60e5affa3b2a98f017af384678c63c88e5d4556a380e674f3f9", size = 13301 }, +] + +[package.optional-dependencies] +md = [ + { name = "cmarkgfm", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] + +[[package]] +name = "redis" +version = "5.0.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "async-timeout", marker = "python_full_version < '3.11.[X]'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/48/10/defc227d65ea9c2ff5244645870859865cba34da7373477c8376629746ec/redis-5.0.8.tar.gz", hash = "sha256:0c5b10d387568dfe0698c6fad6615750c24170e548ca2deac10c649d463e9870", size = 4595651 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c5/d1/19a9c76811757684a0f74adc25765c8a901d67f9f6472ac9d57c844a23c8/redis-5.0.8-py3-none-any.whl", hash = "sha256:56134ee08ea909106090934adc36f65c9bcbbaecea5b21ba704ba6fb561f8eb4", size = 255608 }, +] + +[[package]] +name = "referencing" +version = "0.35.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "rpds-py", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/99/5b/73ca1f8e72fff6fa52119dbd185f73a907b1989428917b24cff660129b6d/referencing-0.35.1.tar.gz", hash = "sha256:25b42124a6c8b632a425174f24087783efb348a6f1e0008e63cd4466fedf703c", size = 62991 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/59/2056f61236782a2c86b33906c025d4f4a0b17be0161b63b70fd9e8775d36/referencing-0.35.1-py3-none-any.whl", hash = "sha256:eda6d3234d62814d1c64e305c1331c9a3a6132da475ab6382eaa997b21ee75de", size = 26684 }, +] + +[[package]] +name = "regex" +version = "2024.7.24" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3f/51/64256d0dc72816a4fe3779449627c69ec8fee5a5625fd60ba048f53b3478/regex-2024.7.24.tar.gz", hash = "sha256:9cfd009eed1a46b27c14039ad5bbc5e71b6367c5b2e6d5f5da0ea91600817506", size = 393485 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cb/ec/261f8434a47685d61e59a4ef3d9ce7902af521219f3ebd2194c7adb171a6/regex-2024.7.24-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:382281306e3adaaa7b8b9ebbb3ffb43358a7bbf585fa93821300a418bb975281", size = 470810 }, + { url = "https://files.pythonhosted.org/packages/f0/47/f33b1cac88841f95fff862476a9e875d9a10dae6912a675c6f13c128e5d9/regex-2024.7.24-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4fdd1384619f406ad9037fe6b6eaa3de2749e2e12084abc80169e8e075377d3b", size = 282126 }, + { url = "https://files.pythonhosted.org/packages/fc/1b/256ca4e2d5041c0aa2f1dc222f04412b796346ab9ce2aa5147405a9457b4/regex-2024.7.24-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3d974d24edb231446f708c455fd08f94c41c1ff4f04bcf06e5f36df5ef50b95a", size = 278920 }, + { url = "https://files.pythonhosted.org/packages/91/03/4603ec057c0bafd2f6f50b0bdda4b12a0ff81022decf1de007b485c356a6/regex-2024.7.24-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a2ec4419a3fe6cf8a4795752596dfe0adb4aea40d3683a132bae9c30b81e8d73", size = 785420 }, + { url = "https://files.pythonhosted.org/packages/75/f8/13b111fab93e6273e26de2926345e5ecf6ddad1e44c4d419d7b0924f9c52/regex-2024.7.24-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eb563dd3aea54c797adf513eeec819c4213d7dbfc311874eb4fd28d10f2ff0f2", size = 828164 }, + { url = "https://files.pythonhosted.org/packages/4a/80/bc3b9d31bd47ff578758af929af0ac1d6169b247e26fa6e87764007f3d93/regex-2024.7.24-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:45104baae8b9f67569f0f1dca5e1f1ed77a54ae1cd8b0b07aba89272710db61e", size = 812621 }, + { url = "https://files.pythonhosted.org/packages/8b/77/92d4a14530900d46dddc57b728eea65d723cc9fcfd07b96c2c141dabba84/regex-2024.7.24-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:994448ee01864501912abf2bad9203bffc34158e80fe8bfb5b031f4f8e16da51", size = 786609 }, + { url = "https://files.pythonhosted.org/packages/35/58/06695fd8afad4c8ed0a53ec5e222156398b9fe5afd58887ab94ea68e4d16/regex-2024.7.24-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3fac296f99283ac232d8125be932c5cd7644084a30748fda013028c815ba3364", size = 775290 }, + { url = "https://files.pythonhosted.org/packages/1b/0f/50b97ee1fc6965744b9e943b5c0f3740792ab54792df73d984510964ef29/regex-2024.7.24-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:7e37e809b9303ec3a179085415cb5f418ecf65ec98cdfe34f6a078b46ef823ee", size = 772849 }, + { url = "https://files.pythonhosted.org/packages/8f/64/565ff6cf241586ab7ae76bb4138c4d29bc1d1780973b457c2db30b21809a/regex-2024.7.24-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:01b689e887f612610c869421241e075c02f2e3d1ae93a037cb14f88ab6a8934c", size = 778428 }, + { url = "https://files.pythonhosted.org/packages/e5/fe/4ceabf4382e44e1e096ac46fd5e3bca490738b24157116a48270fd542e88/regex-2024.7.24-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f6442f0f0ff81775eaa5b05af8a0ffa1dda36e9cf6ec1e0d3d245e8564b684ce", size = 849436 }, + { url = "https://files.pythonhosted.org/packages/68/23/1868e40d6b594843fd1a3498ffe75d58674edfc90d95e18dd87865b93bf2/regex-2024.7.24-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:871e3ab2838fbcb4e0865a6e01233975df3a15e6fce93b6f99d75cacbd9862d1", size = 849484 }, + { url = "https://files.pythonhosted.org/packages/f3/52/bff76de2f6e2bc05edce3abeb7e98e6309aa022fc06071100a0216fbeb50/regex-2024.7.24-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:c918b7a1e26b4ab40409820ddccc5d49871a82329640f5005f73572d5eaa9b5e", size = 776712 }, + { url = "https://files.pythonhosted.org/packages/f2/72/70ade7b0b5fe5c6df38fdfa2a5a8273e3ea6a10b772aa671b7e889e78bae/regex-2024.7.24-cp311-cp311-win32.whl", hash = "sha256:2dfbb8baf8ba2c2b9aa2807f44ed272f0913eeeba002478c4577b8d29cde215c", size = 257716 }, + { url = "https://files.pythonhosted.org/packages/04/4d/80e04f4e27ab0cbc9096e2d10696da6d9c26a39b60db52670fd57614fea5/regex-2024.7.24-cp311-cp311-win_amd64.whl", hash = "sha256:538d30cd96ed7d1416d3956f94d54e426a8daf7c14527f6e0d6d425fcb4cca52", size = 269662 }, + { url = "https://files.pythonhosted.org/packages/0f/26/f505782f386ac0399a9237571833f187414882ab6902e2e71a1ecb506835/regex-2024.7.24-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:fe4ebef608553aff8deb845c7f4f1d0740ff76fa672c011cc0bacb2a00fbde86", size = 471748 }, + { url = "https://files.pythonhosted.org/packages/bb/1d/ea9a21beeb433dbfca31ab82867d69cb67ff8674af9fab6ebd55fa9d3387/regex-2024.7.24-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:74007a5b25b7a678459f06559504f1eec2f0f17bca218c9d56f6a0a12bfffdad", size = 282841 }, + { url = "https://files.pythonhosted.org/packages/9b/f2/c6182095baf0a10169c34e87133a8e73b2e816a80035669b1278e927685e/regex-2024.7.24-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7df9ea48641da022c2a3c9c641650cd09f0cd15e8908bf931ad538f5ca7919c9", size = 279114 }, + { url = "https://files.pythonhosted.org/packages/72/58/b5161bf890b6ca575a25685f19a4a3e3b6f4a072238814f8658123177d84/regex-2024.7.24-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6a1141a1dcc32904c47f6846b040275c6e5de0bf73f17d7a409035d55b76f289", size = 789749 }, + { url = "https://files.pythonhosted.org/packages/09/fb/5381b19b62f3a3494266be462f6a015a869cf4bfd8e14d6e7db67e2c8069/regex-2024.7.24-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80c811cfcb5c331237d9bad3bea2c391114588cf4131707e84d9493064d267f9", size = 831666 }, + { url = "https://files.pythonhosted.org/packages/3d/6d/2a21c85f970f9be79357d12cf4b97f4fc6bf3bf6b843c39dabbc4e5f1181/regex-2024.7.24-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7214477bf9bd195894cf24005b1e7b496f46833337b5dedb7b2a6e33f66d962c", size = 817544 }, + { url = "https://files.pythonhosted.org/packages/f9/ae/5f23e64f6cf170614237c654f3501a912dfb8549143d4b91d1cd13dba319/regex-2024.7.24-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d55588cba7553f0b6ec33130bc3e114b355570b45785cebdc9daed8c637dd440", size = 790854 }, + { url = "https://files.pythonhosted.org/packages/29/0a/d04baad1bbc49cdfb4aef90c4fc875a60aaf96d35a1616f1dfe8149716bc/regex-2024.7.24-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:558a57cfc32adcf19d3f791f62b5ff564922942e389e3cfdb538a23d65a6b610", size = 779242 }, + { url = "https://files.pythonhosted.org/packages/3a/27/b242a962f650c3213da4596d70e24c7c1c46e3aa0f79f2a81164291085f8/regex-2024.7.24-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a512eed9dfd4117110b1881ba9a59b31433caed0c4101b361f768e7bcbaf93c5", size = 776932 }, + { url = "https://files.pythonhosted.org/packages/9c/ae/de659bdfff80ad2c0b577a43dd89dbc43870a4fc4bbf604e452196758e83/regex-2024.7.24-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:86b17ba823ea76256b1885652e3a141a99a5c4422f4a869189db328321b73799", size = 784521 }, + { url = "https://files.pythonhosted.org/packages/d4/ac/eb6a796da0bdefbf09644a7868309423b18d344cf49963a9d36c13502d46/regex-2024.7.24-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:5eefee9bfe23f6df09ffb6dfb23809f4d74a78acef004aa904dc7c88b9944b05", size = 854548 }, + { url = "https://files.pythonhosted.org/packages/56/77/fde8d825dec69e70256e0925af6c81eea9acf0a634d3d80f619d8dcd6888/regex-2024.7.24-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:731fcd76bbdbf225e2eb85b7c38da9633ad3073822f5ab32379381e8c3c12e94", size = 853345 }, + { url = "https://files.pythonhosted.org/packages/ff/04/2b79ad0bb9bc05ab4386caa2c19aa047a66afcbdfc2640618ffc729841e4/regex-2024.7.24-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:eaef80eac3b4cfbdd6de53c6e108b4c534c21ae055d1dbea2de6b3b8ff3def38", size = 781414 }, + { url = "https://files.pythonhosted.org/packages/bf/71/d0af58199283ada7d25b20e416f5b155f50aad99b0e791c0966ff5a1cd00/regex-2024.7.24-cp312-cp312-win32.whl", hash = "sha256:185e029368d6f89f36e526764cf12bf8d6f0e3a2a7737da625a76f594bdfcbfc", size = 258125 }, + { url = "https://files.pythonhosted.org/packages/95/b3/10e875c45c60b010b66fc109b899c6fc4f05d485fe1d54abff98ce791124/regex-2024.7.24-cp312-cp312-win_amd64.whl", hash = "sha256:2f1baff13cc2521bea83ab2528e7a80cbe0ebb2c6f0bfad15be7da3aed443908", size = 269162 }, +] + +[[package]] +name = "repository-service-tuf" +version = "0.13.1b1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "auto-click-auto", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "beaupy", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "click", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "dynaconf", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "dynaconf", extra = ["ini"] }, + { name = "pynacl", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "requests", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "rich", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "rich-click", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "securesystemslib", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "securesystemslib", extra = ["crypto"] }, + { name = "sigstore", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "tuf", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ce/2a/2b986c57a215f275b94cd3265222376164c71e5bdc66b7f8d4f6d9f05b78/repository_service_tuf-0.13.1b1.tar.gz", hash = "sha256:9560cacb1f6f9276797a05afad20215a638788b8b5ac0ef59e105b5ab8ca1425", size = 277443 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bd/a0/4b96f33b985d682844caeb256a1778bde2d57ebc42c4f235260a146af9cf/repository_service_tuf-0.13.1b1-py3-none-any.whl", hash = "sha256:5156de724f9865dca8e1c2805850a101759af61e00b7ff210195a9ffa124f5e6", size = 35784 }, +] + +[[package]] +name = "repoze-sendmail" +version = "4.4.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "setuptools", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "transaction", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "zope-interface", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/12/4e/8ef1fd5c42765d712427b9c391419a77bd48877886d2cbc5e9f23c8cad9b/repoze.sendmail-4.4.1.tar.gz", hash = "sha256:7a8ea37914a5d38bad38052a83eac1d867b171ff4cc8b4d4994e892c05b0d424", size = 41006 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/25/98/c5c64dc045b7c45858c391d04673a0f2748acef8e0eea4f2989b22220f97/repoze.sendmail-4.4.1-py2.py3-none-any.whl", hash = "sha256:f1396893d3aa43502624e88941a441233c06679ae50b1966ffbfccba05da6347", size = 41013 }, +] + +[[package]] +name = "requests" +version = "2.32.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "charset-normalizer", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "idna", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "urllib3", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/63/70/2bf7780ad2d390a8d301ad0b550f1581eadbd9a20f896afe06353c2a2913/requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760", size = 131218 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/9b/335f9764261e915ed497fcdeb11df5dfd6f7bf257d4a6a2a686d80da4d54/requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6", size = 64928 }, +] + +[[package]] +name = "requests-aws4auth" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "requests", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e5/0e/af3754c15e79a6279df256b56a805f8c7512f641839f68c2aa63dafc8f3c/requests_aws4auth-1.3.1.tar.gz", hash = "sha256:b6ad4882310e03ba2538ebf94d1f001ca9feabc5c52618539cf1eb6d5af76791", size = 25886 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/57/41/bd1b81fd1e5a59c3afdf50c678a028498dd7c4197637f27406be0d1b55d2/requests_aws4auth-1.3.1-py3-none-any.whl", hash = "sha256:2969b5379ae6e60ee666638caf6cb94a32d67033f6bfcf0d50c95cd5474f2419", size = 24584 }, +] + +[[package]] +name = "responses" +version = "0.25.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyyaml", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "requests", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "urllib3", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/67/24/1d67c8974daa502e860b4a5b57ad6de0d7dbc0b1160ef7148189a24a40e1/responses-0.25.3.tar.gz", hash = "sha256:617b9247abd9ae28313d57a75880422d55ec63c29d33d629697590a034358dba", size = 77798 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/12/24/93293d0be0db9da1ed8dfc5e6af700fdd40e8f10a928704dd179db9f03c1/responses-0.25.3-py3-none-any.whl", hash = "sha256:521efcbc82081ab8daa588e08f7e8a64ce79b91c39f6e62199b19159bea7dbcb", size = 55238 }, +] + +[[package]] +name = "restructuredtext-lint" +version = "1.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "docutils", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/48/9c/6d8035cafa2d2d314f34e6cd9313a299de095b26e96f1c7312878f988eec/restructuredtext_lint-1.4.0.tar.gz", hash = "sha256:1b235c0c922341ab6c530390892eb9e92f90b9b75046063e047cacfb0f050c45", size = 16723 } + +[[package]] +name = "rfc3339-validator" +version = "0.1.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/28/ea/a9387748e2d111c3c2b275ba970b735e04e15cdb1eb30693b6b5708c4dbd/rfc3339_validator-0.1.4.tar.gz", hash = "sha256:138a2abdf93304ad60530167e51d2dfb9549521a836871b88d7f4695d0022f6b", size = 5513 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/44/4e421b96b67b2daff264473f7465db72fbdf36a07e05494f50300cc7b0c6/rfc3339_validator-0.1.4-py2.py3-none-any.whl", hash = "sha256:24f6ec1eda14ef823da9e36ec7113124b39c04d50a4d3d3a3c2859577e7791fa", size = 3490 }, +] + +[[package]] +name = "rfc3986" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/85/40/1520d68bfa07ab5a6f065a186815fb6610c86fe957bc065754e47f7b0840/rfc3986-2.0.0.tar.gz", hash = "sha256:97aacf9dbd4bfd829baad6e6309fa6573aaf1be3f6fa735c8ab05e46cecb261c", size = 49026 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ff/9a/9afaade874b2fa6c752c36f1548f718b5b83af81ed9b76628329dab81c1b/rfc3986-2.0.0-py2.py3-none-any.whl", hash = "sha256:50b1502b60e289cb37883f3dfd34532b8873c7de9f49bb546641ce9cbd256ebd", size = 31326 }, +] + +[[package]] +name = "rich" +version = "13.7.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markdown-it-py", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pygments", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b3/01/c954e134dc440ab5f96952fe52b4fdc64225530320a910473c1fe270d9aa/rich-13.7.1.tar.gz", hash = "sha256:9be308cb1fe2f1f57d67ce99e95af38a1e2bc71ad9813b0e247cf7ffbcc3a432", size = 221248 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/87/67/a37f6214d0e9fe57f6ae54b2956d550ca8365857f42a1ce0392bb21d9410/rich-13.7.1-py3-none-any.whl", hash = "sha256:4edbae314f59eb482f54e9e30bf00d33350aaa94f4bfcd4e9e3110e64d0d7222", size = 240681 }, +] + +[[package]] +name = "rich-click" +version = "1.8.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "rich", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "typing-extensions", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/3a/a9/a1f1af87e83832d794342fbc09c96cc7cd6798b8dfb8adfbe6ccbef8d70c/rich_click-1.8.3.tar.gz", hash = "sha256:6d75bdfa7aa9ed2c467789a0688bc6da23fbe3a143e19aa6ad3f8bac113d2ab3", size = 38209 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c6/ea/5a0c5a8e6532e971983d1b0fc99268eb66a10f489da35d9022ce01044191/rich_click-1.8.3-py3-none-any.whl", hash = "sha256:636d9c040d31c5eee242201b5bf4f2d358bfae4db14bb22ec1cafa717cfd02cd", size = 35032 }, +] + +[[package]] +name = "rpds-py" +version = "0.20.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/55/64/b693f262791b818880d17268f3f8181ef799b0d187f6f731b1772e05a29a/rpds_py-0.20.0.tar.gz", hash = "sha256:d72a210824facfdaf8768cf2d7ca25a042c30320b3020de2fa04640920d4e121", size = 25814 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ab/2a/191374c52d7be0b056cc2a04d718d2244c152f915d4a8d2db2aacc526189/rpds_py-0.20.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:ac2f4f7a98934c2ed6505aead07b979e6f999389f16b714448fb39bbaa86a489", size = 318369 }, + { url = "https://files.pythonhosted.org/packages/0e/6a/2c9fdcc6d235ac0d61ec4fd9981184689c3e682abd05e3caa49bccb9c298/rpds_py-0.20.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:220002c1b846db9afd83371d08d239fdc865e8f8c5795bbaec20916a76db3318", size = 311303 }, + { url = "https://files.pythonhosted.org/packages/d2/b2/725487d29633f64ef8f9cbf4729111a0b61702c8f8e94db1653930f52cce/rpds_py-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8d7919548df3f25374a1f5d01fbcd38dacab338ef5f33e044744b5c36729c8db", size = 366424 }, + { url = "https://files.pythonhosted.org/packages/7a/8c/668195ab9226d01b7cf7cd9e59c1c0be1df05d602df7ec0cf46f857dcf59/rpds_py-0.20.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:758406267907b3781beee0f0edfe4a179fbd97c0be2e9b1154d7f0a1279cf8e5", size = 368359 }, + { url = "https://files.pythonhosted.org/packages/52/28/356f6a39c1adeb02cf3e5dd526f5e8e54e17899bef045397abcfbf50dffa/rpds_py-0.20.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3d61339e9f84a3f0767b1995adfb171a0d00a1185192718a17af6e124728e0f5", size = 394886 }, + { url = "https://files.pythonhosted.org/packages/a2/65/640fb1a89080a8fb6f4bebd3dafb65a2edba82e2e44c33e6eb0f3e7956f1/rpds_py-0.20.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1259c7b3705ac0a0bd38197565a5d603218591d3f6cee6e614e380b6ba61c6f6", size = 432416 }, + { url = "https://files.pythonhosted.org/packages/a7/e8/85835077b782555d6b3416874b702ea6ebd7db1f145283c9252968670dd5/rpds_py-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5c1dc0f53856b9cc9a0ccca0a7cc61d3d20a7088201c0937f3f4048c1718a209", size = 354819 }, + { url = "https://files.pythonhosted.org/packages/4f/87/1ac631e923d65cbf36fbcfc6eaa702a169496de1311e54be142f178e53ee/rpds_py-0.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7e60cb630f674a31f0368ed32b2a6b4331b8350d67de53c0359992444b116dd3", size = 373282 }, + { url = "https://files.pythonhosted.org/packages/e4/ce/cb316f7970189e217b998191c7cf0da2ede3d5437932c86a7210dc1e9994/rpds_py-0.20.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:dbe982f38565bb50cb7fb061ebf762c2f254ca3d8c20d4006878766e84266272", size = 541540 }, + { url = "https://files.pythonhosted.org/packages/90/d7/4112d7655ec8aff168ecc91d4ceb51c557336edde7e6ccf6463691a2f253/rpds_py-0.20.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:514b3293b64187172bc77c8fb0cdae26981618021053b30d8371c3a902d4d5ad", size = 547640 }, + { url = "https://files.pythonhosted.org/packages/ab/44/4f61d64dfed98cc71623f3a7fcb612df636a208b4b2c6611eaa985e130a9/rpds_py-0.20.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d0a26ffe9d4dd35e4dfdd1e71f46401cff0181c75ac174711ccff0459135fa58", size = 525555 }, + { url = "https://files.pythonhosted.org/packages/35/f2/a862d81eacb21f340d584cd1c749c289979f9a60e9229f78bffc0418a199/rpds_py-0.20.0-cp311-none-win32.whl", hash = "sha256:89c19a494bf3ad08c1da49445cc5d13d8fefc265f48ee7e7556839acdacf69d0", size = 199338 }, + { url = "https://files.pythonhosted.org/packages/cc/ec/77d0674f9af4872919f3738018558dd9d37ad3f7ad792d062eadd4af7cba/rpds_py-0.20.0-cp311-none-win_amd64.whl", hash = "sha256:c638144ce971df84650d3ed0096e2ae7af8e62ecbbb7b201c8935c370df00a2c", size = 213585 }, + { url = "https://files.pythonhosted.org/packages/89/b7/f9682c5cc37fcc035f4a0fc33c1fe92ec9cbfdee0cdfd071cf948f53e0df/rpds_py-0.20.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:a84ab91cbe7aab97f7446652d0ed37d35b68a465aeef8fc41932a9d7eee2c1a6", size = 321468 }, + { url = "https://files.pythonhosted.org/packages/b8/ad/fc82be4eaceb8d444cb6fc1956ce972b3a0795104279de05e0e4131d0a47/rpds_py-0.20.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:56e27147a5a4c2c21633ff8475d185734c0e4befd1c989b5b95a5d0db699b21b", size = 313062 }, + { url = "https://files.pythonhosted.org/packages/0e/1c/6039e80b13a08569a304dc13476dc986352dca4598e909384db043b4e2bb/rpds_py-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2580b0c34583b85efec8c5c5ec9edf2dfe817330cc882ee972ae650e7b5ef739", size = 370168 }, + { url = "https://files.pythonhosted.org/packages/dc/c9/5b9aa35acfb58946b4b785bc8e700ac313669e02fb100f3efa6176a83e81/rpds_py-0.20.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b80d4a7900cf6b66bb9cee5c352b2d708e29e5a37fe9bf784fa97fc11504bf6c", size = 371376 }, + { url = "https://files.pythonhosted.org/packages/7b/dd/0e0dbeb70d8a5357d2814764d467ded98d81d90d3570de4fb05ec7224f6b/rpds_py-0.20.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:50eccbf054e62a7b2209b28dc7a22d6254860209d6753e6b78cfaeb0075d7bee", size = 397200 }, + { url = "https://files.pythonhosted.org/packages/e4/da/a47d931eb688ccfd77a7389e45935c79c41e8098d984d87335004baccb1d/rpds_py-0.20.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:49a8063ea4296b3a7e81a5dfb8f7b2d73f0b1c20c2af401fb0cdf22e14711a96", size = 426824 }, + { url = "https://files.pythonhosted.org/packages/0f/f7/a59a673594e6c2ff2dbc44b00fd4ecdec2fc399bb6a7bd82d612699a0121/rpds_py-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea438162a9fcbee3ecf36c23e6c68237479f89f962f82dae83dc15feeceb37e4", size = 357967 }, + { url = "https://files.pythonhosted.org/packages/5f/61/3ba1905396b2cb7088f9503a460b87da33452da54d478cb9241f6ad16d00/rpds_py-0.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:18d7585c463087bddcfa74c2ba267339f14f2515158ac4db30b1f9cbdb62c8ef", size = 378905 }, + { url = "https://files.pythonhosted.org/packages/08/31/6d0df9356b4edb0a3a077f1ef714e25ad21f9f5382fc490c2383691885ea/rpds_py-0.20.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d4c7d1a051eeb39f5c9547e82ea27cbcc28338482242e3e0b7768033cb083821", size = 546348 }, + { url = "https://files.pythonhosted.org/packages/ae/15/d33c021de5cb793101df9961c3c746dfc476953dbbf5db337d8010dffd4e/rpds_py-0.20.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e4df1e3b3bec320790f699890d41c59d250f6beda159ea3c44c3f5bac1976940", size = 553152 }, + { url = "https://files.pythonhosted.org/packages/70/2d/5536d28c507a4679179ab15aa0049440e4d3dd6752050fa0843ed11e9354/rpds_py-0.20.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2cf126d33a91ee6eedc7f3197b53e87a2acdac63602c0f03a02dd69e4b138174", size = 528807 }, + { url = "https://files.pythonhosted.org/packages/e3/62/7ebe6ec0d3dd6130921f8cffb7e34afb7f71b3819aa0446a24c5e81245ec/rpds_py-0.20.0-cp312-none-win32.whl", hash = "sha256:8bc7690f7caee50b04a79bf017a8d020c1f48c2a1077ffe172abec59870f1139", size = 200993 }, + { url = "https://files.pythonhosted.org/packages/ec/2f/b938864d66b86a6e4acadefdc56de75ef56f7cafdfd568a6464605457bd5/rpds_py-0.20.0-cp312-none-win_amd64.whl", hash = "sha256:0e13e6952ef264c40587d510ad676a988df19adea20444c2b295e536457bc585", size = 214458 }, + { url = "https://files.pythonhosted.org/packages/99/32/43b919a0a423c270a838ac2726b1c7168b946f2563fd99a51aaa9692d00f/rpds_py-0.20.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:aa9a0521aeca7d4941499a73ad7d4f8ffa3d1affc50b9ea11d992cd7eff18a29", size = 321465 }, + { url = "https://files.pythonhosted.org/packages/58/a9/c4d899cb28e9e47b0ff12462e8f827381f243176036f17bef9c1604667f2/rpds_py-0.20.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4a1f1d51eccb7e6c32ae89243cb352389228ea62f89cd80823ea7dd1b98e0b91", size = 312900 }, + { url = "https://files.pythonhosted.org/packages/8f/90/9e51670575b5dfaa8c823369ef7d943087bfb73d4f124a99ad6ef19a2b26/rpds_py-0.20.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8a86a9b96070674fc88b6f9f71a97d2c1d3e5165574615d1f9168ecba4cecb24", size = 370973 }, + { url = "https://files.pythonhosted.org/packages/fc/c1/523f2a03f853fc0d4c1acbef161747e9ab7df0a8abf6236106e333540921/rpds_py-0.20.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6c8ef2ebf76df43f5750b46851ed1cdf8f109d7787ca40035fe19fbdc1acc5a7", size = 370890 }, + { url = "https://files.pythonhosted.org/packages/51/ca/2458a771f16b0931de4d384decbe43016710bc948036c8f4562d6e063437/rpds_py-0.20.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b74b25f024b421d5859d156750ea9a65651793d51b76a2e9238c05c9d5f203a9", size = 397174 }, + { url = "https://files.pythonhosted.org/packages/00/7d/6e06807f6305ea2408b364efb0eef83a6e21b5e7b5267ad6b473b9a7e416/rpds_py-0.20.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:57eb94a8c16ab08fef6404301c38318e2c5a32216bf5de453e2714c964c125c8", size = 426449 }, + { url = "https://files.pythonhosted.org/packages/8c/d1/6c9e65260a819a1714510a7d69ac1d68aa23ee9ce8a2d9da12187263c8fc/rpds_py-0.20.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e1940dae14e715e2e02dfd5b0f64a52e8374a517a1e531ad9412319dc3ac7879", size = 357698 }, + { url = "https://files.pythonhosted.org/packages/5d/fb/ecea8b5286d2f03eec922be7173a03ed17278944f7c124348f535116db15/rpds_py-0.20.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d20277fd62e1b992a50c43f13fbe13277a31f8c9f70d59759c88f644d66c619f", size = 378530 }, + { url = "https://files.pythonhosted.org/packages/e3/e3/ac72f858957f52a109c588589b73bd2fad4a0fc82387fb55fb34aeb0f9cd/rpds_py-0.20.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:06db23d43f26478303e954c34c75182356ca9aa7797d22c5345b16871ab9c45c", size = 545753 }, + { url = "https://files.pythonhosted.org/packages/b2/a4/a27683b519d5fc98e4390a3b130117d80fd475c67aeda8aac83c0e8e326a/rpds_py-0.20.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:b2a5db5397d82fa847e4c624b0c98fe59d2d9b7cf0ce6de09e4d2e80f8f5b3f2", size = 552443 }, + { url = "https://files.pythonhosted.org/packages/a1/ed/c074d248409b4432b1ccb2056974175fa0af2d1bc1f9c21121f80a358fa3/rpds_py-0.20.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5a35df9f5548fd79cb2f52d27182108c3e6641a4feb0f39067911bf2adaa3e57", size = 528380 }, + { url = "https://files.pythonhosted.org/packages/d5/bd/04caf938895d2d78201e89c0c8a94dfd9990c34a19ff52fb01d0912343e3/rpds_py-0.20.0-cp313-none-win32.whl", hash = "sha256:fd2d84f40633bc475ef2d5490b9c19543fbf18596dcb1b291e3a12ea5d722f7a", size = 200540 }, + { url = "https://files.pythonhosted.org/packages/95/cc/109eb8b9863680411ae703664abacaa035820c7755acc9686d5dd02cdd2e/rpds_py-0.20.0-cp313-none-win_amd64.whl", hash = "sha256:9bc2d153989e3216b0559251b0c260cfd168ec78b1fac33dd485750a228db5a2", size = 214111 }, +] + +[[package]] +name = "rsa" +version = "4.9" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyasn1", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/aa/65/7d973b89c4d2351d7fb232c2e452547ddfa243e93131e7cfa766da627b52/rsa-4.9.tar.gz", hash = "sha256:e38464a49c6c85d7f1351b0126661487a7e0a14a50f1675ec50eb34d4f20ef21", size = 29711 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/49/97/fa78e3d2f65c02c8e1268b9aba606569fe97f6c8f7c2d74394553347c145/rsa-4.9-py3-none-any.whl", hash = "sha256:90260d9058e514786967344d0ef75fa8727eed8a7d2e43ce9f4bcf1b536174f7", size = 34315 }, +] + +[[package]] +name = "s3transfer" +version = "0.10.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "botocore", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cb/67/94c6730ee4c34505b14d94040e2f31edf144c230b6b49e971b4f25ff8fab/s3transfer-0.10.2.tar.gz", hash = "sha256:0711534e9356d3cc692fdde846b4a1e4b0cb6519971860796e6bc4c7aea00ef6", size = 144095 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3c/4a/b221409913760d26cf4498b7b1741d510c82d3ad38381984a3ddc135ec66/s3transfer-0.10.2-py3-none-any.whl", hash = "sha256:eca1c20de70a39daee580aef4986996620f365c4e0fda6a86100231d62f1bf69", size = 82716 }, +] + +[[package]] +name = "securesystemslib" +version = "1.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/81/ad/d01a19c754c512f35ed3b955db08bd3d077a322038bc8544e15c7b016b76/securesystemslib-1.1.0.tar.gz", hash = "sha256:27143a8e04b5573636f260f21d7e26b48bcedcf394e6f74ec31e9a5287e0c38b", size = 934688 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4d/5b/579ebe370ea35d933b0de37426dd8582dc79fca7b4bc1a7595fdf0de1662/securesystemslib-1.1.0-py3-none-any.whl", hash = "sha256:100bf04e60b260e1c7c51e3232647697fde2c5ca5772fda4932d841d3fb6dd0e", size = 870964 }, +] + +[package.optional-dependencies] +crypto = [ + { name = "cryptography", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] + +[[package]] +name = "sentry-sdk" +version = "2.12.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "urllib3", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/2e/39/eb97e463e372b38d0b9c7ae705822d1df717940c04cb6d998ae15bf3eb02/sentry_sdk-2.12.0.tar.gz", hash = "sha256:8763840497b817d44c49b3fe3f5f7388d083f2337ffedf008b2cdb63b5c86dc6", size = 274179 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/71/29/744921222eb1bfef7a7e16e71fc122f518b315fc57624828b90028dfa02e/sentry_sdk-2.12.0-py2.py3-none-any.whl", hash = "sha256:7a8d5163d2ba5c5f4464628c6b68f85e86972f7c636acc78aed45c61b98b7a5e", size = 301807 }, +] + +[[package]] +name = "setuptools" +version = "72.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/5e/11/487b18cc768e2ae25a919f230417983c8d5afa1b6ee0abd8b6db0b89fa1d/setuptools-72.1.0.tar.gz", hash = "sha256:8d243eff56d095e5817f796ede6ae32941278f542e0f941867cc05ae52b162ec", size = 2419487 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e1/58/e0ef3b9974a04ce9cde2a7a33881ddcb2d68450803745804545cdd8d258f/setuptools-72.1.0-py3-none-any.whl", hash = "sha256:5a03e1860cf56bb6ef48ce186b0e557fdba433237481a9a625176c2831be15d1", size = 2337965 }, +] + +[[package]] +name = "sigstore" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "appdirs", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "cryptography", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pydantic", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pyjwt", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pyopenssl", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "requests", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "securesystemslib", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "tuf", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/be/cb/581f9dda4635fce04cd7db9e3ca20c08c6bff83f58e1a901460b1f710233/sigstore-1.0.0.tar.gz", hash = "sha256:0803f44914d6d12dcd53a112ae7f63714c61f31fd91b07197b3703c28366eea8", size = 59359 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/87/2c/629925f43ef5f531b309ac6456fdb0fa62cec6593d432fd95cb501eb4a28/sigstore-1.0.0-py3-none-any.whl", hash = "sha256:19e96ca2049fd25233f289d3651bc2be41bb8b0a61bb053fc486be6b851875a7", size = 72236 }, +] + +[[package]] +name = "six" +version = "1.16.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/71/39/171f1c67cd00715f190ba0b100d606d440a28c93c7714febeca8b79af85e/six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926", size = 34041 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d9/5a/e7c31adbe875f2abbb91bd84cf2dc52d792b5a01506781dbcf25c91daf11/six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254", size = 11053 }, +] + +[[package]] +name = "smmap" +version = "5.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/88/04/b5bf6d21dc4041000ccba7eb17dd3055feb237e7ffc2c20d3fae3af62baa/smmap-5.0.1.tar.gz", hash = "sha256:dceeb6c0028fdb6734471eb07c0cd2aae706ccaecab45965ee83f11c8d3b1f62", size = 22291 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/a5/10f97f73544edcdef54409f1d839f6049a0d79df68adbc1ceb24d1aaca42/smmap-5.0.1-py3-none-any.whl", hash = "sha256:e6d8668fa5f93e706934a62d7b4db19c8d9eb8cf2adbb75ef1b675aa332b69da", size = 24282 }, +] + +[[package]] +name = "sniffio" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a2/87/a6771e1546d97e7e041b6ae58d80074f81b7d5121207425c964ddf5cfdbd/sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc", size = 20372 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2", size = 10235 }, +] + +[[package]] +name = "snowballstemmer" +version = "2.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/44/7b/af302bebf22c749c56c9c3e8ae13190b5b5db37a33d9068652e8f73b7089/snowballstemmer-2.2.0.tar.gz", hash = "sha256:09b16deb8547d3412ad7b590689584cd0fe25ec8db3be37788be3810cbf19cb1", size = 86699 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ed/dc/c02e01294f7265e63a7315fe086dd1df7dacb9f840a804da846b96d01b96/snowballstemmer-2.2.0-py2.py3-none-any.whl", hash = "sha256:c8e1716e83cc398ae16824e5572ae04e0d9fc2c6b985fb0f900f5f0c96ecba1a", size = 93002 }, +] + +[[package]] +name = "soupsieve" +version = "2.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ce/21/952a240de1c196c7e3fbcd4e559681f0419b1280c617db21157a0390717b/soupsieve-2.5.tar.gz", hash = "sha256:5663d5a7b3bfaeee0bc4372e7fc48f9cff4940b3eec54a6451cc5299f1097690", size = 100943 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4c/f3/038b302fdfbe3be7da016777069f26ceefe11a681055ea1f7817546508e3/soupsieve-2.5-py3-none-any.whl", hash = "sha256:eaa337ff55a1579b6549dc679565eac1e3d000563bcb1c8ab0d0fefbc0c2cdc7", size = 36131 }, +] + +[[package]] +name = "sphinx" +version = "8.0.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "alabaster", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "babel", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "docutils", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "imagesize", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "jinja2", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "packaging", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pygments", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "requests", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "snowballstemmer", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "sphinxcontrib-applehelp", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "sphinxcontrib-devhelp", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "sphinxcontrib-htmlhelp", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "sphinxcontrib-jsmath", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "sphinxcontrib-qthelp", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "sphinxcontrib-serializinghtml", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/25/a7/3cc3d6dcad70aba2e32a3ae8de5a90026a0a2fdaaa0756925e3a120249b6/sphinx-8.0.2.tar.gz", hash = "sha256:0cce1ddcc4fd3532cf1dd283bc7d886758362c5c1de6598696579ce96d8ffa5b", size = 8189041 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4d/61/2ad169c6ff1226b46e50da0e44671592dbc6d840a52034a0193a99b28579/sphinx-8.0.2-py3-none-any.whl", hash = "sha256:56173572ae6c1b9a38911786e206a110c9749116745873feae4f9ce88e59391d", size = 3498950 }, +] + +[[package]] +name = "sphinx-autobuild" +version = "2024.4.16" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "sphinx", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "starlette", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "uvicorn", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "watchfiles", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "websockets", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d2/bc/8016eee9ffb86069ae7e658c136bad31a9854b476a212492b5aab4d4d5f6/sphinx_autobuild-2024.4.16.tar.gz", hash = "sha256:1c0ed37a1970eed197f9c5a66d65759e7c4e4cba7b5a5d77940752bf1a59f2c7", size = 12892 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/53/de/1d005ba60b4b754d6e05079a479f16a8f6e08c1ec4f8d80288238502b4b6/sphinx_autobuild-2024.4.16-py3-none-any.whl", hash = "sha256:f2522779d30fcbf0253e09714f274ce8c608cb6ebcd67922b1c54de59faba702", size = 11222 }, +] + +[[package]] +name = "sphinx-basic-ng" +version = "1.0.0b2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "sphinx", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/98/0b/a866924ded68efec7a1759587a4e478aec7559d8165fac8b2ad1c0e774d6/sphinx_basic_ng-1.0.0b2.tar.gz", hash = "sha256:9ec55a47c90c8c002b5960c57492ec3021f5193cb26cebc2dc4ea226848651c9", size = 20736 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3c/dd/018ce05c532a22007ac58d4f45232514cd9d6dd0ee1dc374e309db830983/sphinx_basic_ng-1.0.0b2-py3-none-any.whl", hash = "sha256:eb09aedbabfb650607e9b4b68c9d240b90b1e1be221d6ad71d61c52e29f7932b", size = 22496 }, +] + +[[package]] +name = "sphinxcontrib-applehelp" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ba/6e/b837e84a1a704953c62ef8776d45c3e8d759876b4a84fe14eba2859106fe/sphinxcontrib_applehelp-2.0.0.tar.gz", hash = "sha256:2f29ef331735ce958efa4734873f084941970894c6090408b079c61b2e1c06d1", size = 20053 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5d/85/9ebeae2f76e9e77b952f4b274c27238156eae7979c5421fba91a28f4970d/sphinxcontrib_applehelp-2.0.0-py3-none-any.whl", hash = "sha256:4cd3f0ec4ac5dd9c17ec65e9ab272c9b867ea77425228e68ecf08d6b28ddbdb5", size = 119300 }, +] + +[[package]] +name = "sphinxcontrib-devhelp" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f6/d2/5beee64d3e4e747f316bae86b55943f51e82bb86ecd325883ef65741e7da/sphinxcontrib_devhelp-2.0.0.tar.gz", hash = "sha256:411f5d96d445d1d73bb5d52133377b4248ec79db5c793ce7dbe59e074b4dd1ad", size = 12967 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/35/7a/987e583882f985fe4d7323774889ec58049171828b58c2217e7f79cdf44e/sphinxcontrib_devhelp-2.0.0-py3-none-any.whl", hash = "sha256:aefb8b83854e4b0998877524d1029fd3e6879210422ee3780459e28a1f03a8a2", size = 82530 }, +] + +[[package]] +name = "sphinxcontrib-htmlhelp" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/43/93/983afd9aa001e5201eab16b5a444ed5b9b0a7a010541e0ddfbbfd0b2470c/sphinxcontrib_htmlhelp-2.1.0.tar.gz", hash = "sha256:c9e2916ace8aad64cc13a0d233ee22317f2b9025b9cf3295249fa985cc7082e9", size = 22617 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0a/7b/18a8c0bcec9182c05a0b3ec2a776bba4ead82750a55ff798e8d406dae604/sphinxcontrib_htmlhelp-2.1.0-py3-none-any.whl", hash = "sha256:166759820b47002d22914d64a075ce08f4c46818e17cfc9470a9786b759b19f8", size = 98705 }, +] + +[[package]] +name = "sphinxcontrib-httpdomain" +version = "1.8.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "sphinx", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/be/ef/82d3cfafb7febce4f7df8dcf3cde9d072350b41066e05a4f559b4e9105d0/sphinxcontrib-httpdomain-1.8.1.tar.gz", hash = "sha256:6c2dfe6ca282d75f66df333869bb0ce7331c01b475db6809ff9d107b7cdfe04b", size = 19266 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/02/49/aad47b8cf27a0d7703f1311aad8c368bb22866ddee1a2d2cd3f69bc45e0c/sphinxcontrib_httpdomain-1.8.1-py2.py3-none-any.whl", hash = "sha256:21eefe1270e4d9de8d717cc89ee92cc4871b8736774393bafc5e38a6bb77b1d5", size = 25513 }, +] + +[[package]] +name = "sphinxcontrib-jsmath" +version = "1.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b2/e8/9ed3830aeed71f17c026a07a5097edcf44b692850ef215b161b8ad875729/sphinxcontrib-jsmath-1.0.1.tar.gz", hash = "sha256:a9925e4a4587247ed2191a22df5f6970656cb8ca2bd6284309578f2153e0c4b8", size = 5787 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c2/42/4c8646762ee83602e3fb3fbe774c2fac12f317deb0b5dbeeedd2d3ba4b77/sphinxcontrib_jsmath-1.0.1-py2.py3-none-any.whl", hash = "sha256:2ec2eaebfb78f3f2078e73666b1415417a116cc848b72e5172e596c871103178", size = 5071 }, +] + +[[package]] +name = "sphinxcontrib-mermaid" +version = "0.9.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8f/70/3d5664a7260a57b68f0b3ddcb29934b7888cbaf1577163e1db81bb9e42e2/sphinxcontrib-mermaid-0.9.2.tar.gz", hash = "sha256:252ef13dd23164b28f16d8b0205cf184b9d8e2b714a302274d9f59eb708e77af", size = 17909 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/71/1e/e8b5c7536deba39eac1444c83d404374ed00c3a567445ba122249648a9fc/sphinxcontrib_mermaid-0.9.2-py3-none-any.whl", hash = "sha256:6795a72037ca55e65663d2a2c1a043d636dc3d30d418e56dd6087d1459d98a5d", size = 13453 }, +] + +[[package]] +name = "sphinxcontrib-qthelp" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/68/bc/9104308fc285eb3e0b31b67688235db556cd5b0ef31d96f30e45f2e51cae/sphinxcontrib_qthelp-2.0.0.tar.gz", hash = "sha256:4fe7d0ac8fc171045be623aba3e2a8f613f8682731f9153bb2e40ece16b9bbab", size = 17165 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/27/83/859ecdd180cacc13b1f7e857abf8582a64552ea7a061057a6c716e790fce/sphinxcontrib_qthelp-2.0.0-py3-none-any.whl", hash = "sha256:b18a828cdba941ccd6ee8445dbe72ffa3ef8cbe7505d8cd1fa0d42d3f2d5f3eb", size = 88743 }, +] + +[[package]] +name = "sphinxcontrib-serializinghtml" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3b/44/6716b257b0aa6bfd51a1b31665d1c205fb12cb5ad56de752dfa15657de2f/sphinxcontrib_serializinghtml-2.0.0.tar.gz", hash = "sha256:e9d912827f872c029017a53f0ef2180b327c3f7fd23c87229f7a8e8b70031d4d", size = 16080 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/52/a7/d2782e4e3f77c8450f727ba74a8f12756d5ba823d81b941f1b04da9d033a/sphinxcontrib_serializinghtml-2.0.0-py3-none-any.whl", hash = "sha256:6e2cb0eef194e10c27ec0023bfeb25badbbb5868244cf5bc5bdc04e4464bf331", size = 92072 }, +] + +[[package]] +name = "sqlalchemy" +version = "2.0.32" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "greenlet", marker = "python_version < '3.13' and (platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64')" }, + { name = "typing-extensions", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/af/6f/967e987683908af816aa3072c1a6997ac9933cf38d66b0474fb03f253323/SQLAlchemy-2.0.32.tar.gz", hash = "sha256:c1b88cc8b02b6a5f0efb0345a03672d4c897dc7d92585176f88c67346f565ea8", size = 9546691 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fc/a9/e3bd92004095ed6796ea4ac5fdd9606b1e53117ef5b90ae79ac3fc6e225e/SQLAlchemy-2.0.32-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:21b053be28a8a414f2ddd401f1be8361e41032d2ef5884b2f31d31cb723e559f", size = 2088752 }, + { url = "https://files.pythonhosted.org/packages/a9/34/b97f4458eefbdead7ee5ce69cbf3591574c5ba44162dbe52c4386818623f/SQLAlchemy-2.0.32-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b178e875a7a25b5938b53b006598ee7645172fccafe1c291a706e93f48499ff5", size = 2079150 }, + { url = "https://files.pythonhosted.org/packages/6b/b5/95ff12f5d4eb7813dd5a59ccc8e3c68d4683fedf59801b40704593c3b757/SQLAlchemy-2.0.32-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:723a40ee2cc7ea653645bd4cf024326dea2076673fc9d3d33f20f6c81db83e1d", size = 3197551 }, + { url = "https://files.pythonhosted.org/packages/ca/af/379f8695ab751acf61868b0098c8d66e2b2ad8b11d9939d5144c82d05bc5/SQLAlchemy-2.0.32-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:295ff8689544f7ee7e819529633d058bd458c1fd7f7e3eebd0f9268ebc56c2a0", size = 3197551 }, + { url = "https://files.pythonhosted.org/packages/ff/0c/5feaea51f23b5f008f16f9dbf7eec18ee5b9b8eb2875d6e367f52daf633e/SQLAlchemy-2.0.32-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:49496b68cd190a147118af585173ee624114dfb2e0297558c460ad7495f9dfe2", size = 3134583 }, + { url = "https://files.pythonhosted.org/packages/cc/83/4eca3604f9049a2b92a9ffb818ea1cc8186f722e539a6feee58f931bad34/SQLAlchemy-2.0.32-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:acd9b73c5c15f0ec5ce18128b1fe9157ddd0044abc373e6ecd5ba376a7e5d961", size = 3154911 }, + { url = "https://files.pythonhosted.org/packages/3d/56/485ad322f148a8b70060e03b5f130e714f95d839b5e50315e5c5efd1fc05/SQLAlchemy-2.0.32-cp311-cp311-win32.whl", hash = "sha256:9365a3da32dabd3e69e06b972b1ffb0c89668994c7e8e75ce21d3e5e69ddef28", size = 2059047 }, + { url = "https://files.pythonhosted.org/packages/bb/8c/4548ae42b4ab7f3fe9f1aeb4b1f28ea795485ca44840cb0f3f57aa8ecfcc/SQLAlchemy-2.0.32-cp311-cp311-win_amd64.whl", hash = "sha256:8bd63d051f4f313b102a2af1cbc8b80f061bf78f3d5bd0843ff70b5859e27924", size = 2084480 }, + { url = "https://files.pythonhosted.org/packages/06/95/88beb07aa61c611829c9ce950f349adcf00065c1bb313090c20d80a520ca/SQLAlchemy-2.0.32-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:6bab3db192a0c35e3c9d1560eb8332463e29e5507dbd822e29a0a3c48c0a8d92", size = 2087267 }, + { url = "https://files.pythonhosted.org/packages/11/93/0b28f9d261af927eef3df472e5bbf144fb33e062de770b2c312bb516702b/SQLAlchemy-2.0.32-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:19d98f4f58b13900d8dec4ed09dd09ef292208ee44cc9c2fe01c1f0a2fe440e9", size = 2077732 }, + { url = "https://files.pythonhosted.org/packages/84/50/1ce1dec4b1cce8f1163c2c58bb1588ac5076c3dbc4bb1d3eab70e798fdd4/SQLAlchemy-2.0.32-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3cd33c61513cb1b7371fd40cf221256456d26a56284e7d19d1f0b9f1eb7dd7e8", size = 3227230 }, + { url = "https://files.pythonhosted.org/packages/9d/b8/aa822988d390cf06afa3c69d86a3a38bba79b51385207cd7cd99d0be17bb/SQLAlchemy-2.0.32-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7d6ba0497c1d066dd004e0f02a92426ca2df20fac08728d03f67f6960271feec", size = 3238118 }, + { url = "https://files.pythonhosted.org/packages/c3/d7/7a65172ed2713acf0262a65392dfcf05ca2b7a67c988ebad425eba9b3843/SQLAlchemy-2.0.32-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2b6be53e4fde0065524f1a0a7929b10e9280987b320716c1509478b712a7688c", size = 3173610 }, + { url = "https://files.pythonhosted.org/packages/a9/0f/8da0613e3f0b095ef423802943ed4b98242370736034ed5043a43c46c3d4/SQLAlchemy-2.0.32-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:916a798f62f410c0b80b63683c8061f5ebe237b0f4ad778739304253353bc1cb", size = 3200224 }, + { url = "https://files.pythonhosted.org/packages/50/ef/973e0bbf2be5c12e34dca92139ca100f51ba078e36c3c06fd1dc8480c209/SQLAlchemy-2.0.32-cp312-cp312-win32.whl", hash = "sha256:31983018b74908ebc6c996a16ad3690301a23befb643093fcfe85efd292e384d", size = 2057626 }, + { url = "https://files.pythonhosted.org/packages/db/5f/440c324aae82a2ce892ac0fe1d114b9dc9f04e934e8f0762574876a168b5/SQLAlchemy-2.0.32-cp312-cp312-win_amd64.whl", hash = "sha256:4363ed245a6231f2e2957cccdda3c776265a75851f4753c60f3004b90e69bfeb", size = 2083167 }, + { url = "https://files.pythonhosted.org/packages/99/1b/045185a9f6481d926a451aafaa0d07c98f19ac7abe730dff9630c9ead4fa/SQLAlchemy-2.0.32-py3-none-any.whl", hash = "sha256:e567a8793a692451f706b363ccf3c45e056b67d90ead58c3bc9471af5d212202", size = 1878765 }, +] + +[package.optional-dependencies] +asyncio = [ + { name = "greenlet", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] + +[[package]] +name = "sqlparse" +version = "0.5.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/73/82/dfa23ec2cbed08a801deab02fe7c904bfb00765256b155941d789a338c68/sqlparse-0.5.1.tar.gz", hash = "sha256:bb6b4df465655ef332548e24f08e205afc81b9ab86cb1c45657a7ff173a3a00e", size = 84502 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5d/a5/b2860373aa8de1e626b2bdfdd6df4355f0565b47e51f7d0c54fe70faf8fe/sqlparse-0.5.1-py3-none-any.whl", hash = "sha256:773dcbf9a5ab44a090f3441e2180efe2560220203dc2f8c0b0fa141e18b505e4", size = 44156 }, +] + +[[package]] +name = "starlette" +version = "0.38.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/43/e2/d49a94ecb665b3a1c34b40c78165a737abc384fcabc843ccb14a3bd3dc37/starlette-0.38.2.tar.gz", hash = "sha256:c7c0441065252160993a1a37cf2a73bb64d271b17303e0b0c1eb7191cfb12d75", size = 2844770 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c1/60/d976da9998e4f4a99e297cda09d61ce305919ea94cbeeb476dba4fece098/starlette-0.38.2-py3-none-any.whl", hash = "sha256:4ec6a59df6bbafdab5f567754481657f7ed90dc9d69b0c9ff017907dd54faeff", size = 72020 }, +] + +[[package]] +name = "stdlib-list" +version = "0.10.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/39/bb/1cdbc326a5ab0026602e0489cbf02357e78140253c4b57cd866d380eb355/stdlib_list-0.10.0.tar.gz", hash = "sha256:6519c50d645513ed287657bfe856d527f277331540691ddeaf77b25459964a14", size = 59447 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/13/d9/9085375f0d23a4896b307bf14dcc61b49ec8cc67cb33e06cf95bf3af3966/stdlib_list-0.10.0-py3-none-any.whl", hash = "sha256:b3a911bc441d03e0332dd1a9e7d0870ba3bb0a542a74d7524f54fb431256e214", size = 79814 }, +] + +[[package]] +name = "stevedore" +version = "5.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pbr", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e7/c1/b210bf1071c96ecfcd24c2eeb4c828a2a24bf74b38af13896d02203b1eec/stevedore-5.2.0.tar.gz", hash = "sha256:46b93ca40e1114cea93d738a6c1e365396981bb6bb78c27045b7587c9473544d", size = 513817 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/eb/f1/c7c6205c367c764ee173537f7eaf070bba4dd0fa11bf081813c2f75285a3/stevedore-5.2.0-py3-none-any.whl", hash = "sha256:1c15d95766ca0569cad14cb6272d4d31dae66b011a929d7c18219c176ea1b5c9", size = 49667 }, +] + +[[package]] +name = "stripe" +version = "10.6.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "requests" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d7/ba/c59be54b8b449dbb6f06846a358744d1ff13d300f7819c1ca31f036200a5/stripe-10.6.0.tar.gz", hash = "sha256:41ccb0ada5928d89530ed06d17a71bfbf5f4ea4f2324e30d8d636a2ab7180a74", size = 1306235 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b5/e3/e0c521aa80c42819889321bc3381edae8817550e723fa9934cb9eed51b67/stripe-10.6.0-py2.py3-none-any.whl", hash = "sha256:97290ba8b57b32b3782adf654e080011f9ff331f81d7c3fa182cb1c0270b9467", size = 1547662 }, +] + +[[package]] +name = "structlog" +version = "24.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/78/a3/e811a94ac3853826805253c906faa99219b79951c7d58605e89c79e65768/structlog-24.4.0.tar.gz", hash = "sha256:b27bfecede327a6d2da5fbc96bd859f114ecc398a6389d664f62085ee7ae6fc4", size = 1348634 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bf/65/813fc133609ebcb1299be6a42e5aea99d6344afb35ccb43f67e7daaa3b92/structlog-24.4.0-py3-none-any.whl", hash = "sha256:597f61e80a91cc0749a9fd2a098ed76715a1c8a01f73e336b746504d1aad7610", size = 67180 }, +] + +[[package]] +name = "tenacity" +version = "9.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cd/94/91fccdb4b8110642462e653d5dcb27e7b674742ad68efd146367da7bdb10/tenacity-9.0.0.tar.gz", hash = "sha256:807f37ca97d62aa361264d497b0e31e92b8027044942bfa756160d908320d73b", size = 47421 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/cb/b86984bed139586d01532a587464b5805f12e397594f19f931c4c2fbfa61/tenacity-9.0.0-py3-none-any.whl", hash = "sha256:93de0c98785b27fcf659856aa9f54bfbd399e29969b0621bc7f762bd441b4539", size = 28169 }, +] + +[[package]] +name = "termcolor" +version = "2.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/10/56/d7d66a84f96d804155f6ff2873d065368b25a07222a6fd51c4f24ef6d764/termcolor-2.4.0.tar.gz", hash = "sha256:aab9e56047c8ac41ed798fa36d892a37aca6b3e9159f3e0c24bc64a9b3ac7b7a", size = 12664 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d9/5f/8c716e47b3a50cbd7c146f45881e11d9414def768b7cd9c5e6650ec2a80a/termcolor-2.4.0-py3-none-any.whl", hash = "sha256:9297c0df9c99445c2412e832e882a7884038a25617c60cea2ad69488d4040d63", size = 7719 }, +] + +[[package]] +name = "text-unidecode" +version = "1.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ab/e2/e9a00f0ccb71718418230718b3d900e71a5d16e701a3dae079a21e9cd8f8/text-unidecode-1.3.tar.gz", hash = "sha256:bad6603bb14d279193107714b288be206cac565dfa49aa5b105294dd5c4aab93", size = 76885 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a6/a5/c0b6468d3824fe3fde30dbb5e1f687b291608f9473681bbf7dabbf5a87d7/text_unidecode-1.3-py2.py3-none-any.whl", hash = "sha256:1311f10e8b895935241623731c2ba64f4c455287888b18189350b67134a822e8", size = 78154 }, +] + +[[package]] +name = "tinycss2" +version = "1.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "webencodings", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/44/6f/38d2335a2b70b9982d112bb177e3dbe169746423e33f718bf5e9c7b3ddd3/tinycss2-1.3.0.tar.gz", hash = "sha256:152f9acabd296a8375fbca5b84c961ff95971fcfc32e79550c8df8e29118c54d", size = 67360 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2c/4d/0db5b8a613d2a59bbc29bc5bb44a2f8070eb9ceab11c50d477502a8a0092/tinycss2-1.3.0-py3-none-any.whl", hash = "sha256:54a8dbdffb334d536851be0226030e9505965bb2f30f21a4a82c55fb2a80fae7", size = 22532 }, +] + +[[package]] +name = "tokenize-rt" +version = "6.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7d/09/6257dabdeab5097d72c5d874f29b33cd667ec411af6667922d84f85b79b5/tokenize_rt-6.0.0.tar.gz", hash = "sha256:b9711bdfc51210211137499b5e355d3de5ec88a85d2025c520cbb921b5194367", size = 5360 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5c/c2/44486862562c6902778ccf88001ad5ea3f8da5c030c638cac8be72f65b40/tokenize_rt-6.0.0-py2.py3-none-any.whl", hash = "sha256:d4ff7ded2873512938b4f8cbb98c9b07118f01d30ac585a30d7a88353ca36d22", size = 5869 }, +] + +[[package]] +name = "toml" +version = "0.10.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/be/ba/1f744cdc819428fc6b5084ec34d9b30660f6f9daaf70eead706e3203ec3c/toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f", size = 22253 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/44/6f/7120676b6d73228c96e17f1f794d8ab046fc910d781c8d151120c3f1569e/toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b", size = 16588 }, +] + +[[package]] +name = "transaction" +version = "4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "zope-interface", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0f/b0/03d196e1d6e37056cca040d9694220641e8a78c4a85d7d80e6feb03be7f5/transaction-4.0.tar.gz", hash = "sha256:68035db913f60d1be12f6563d201daab36c83e763de15899ff8338f26e5e62f2", size = 69641 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fa/42/0c8b2fdf178bfa0a4d79eddafa1cf2d8ff0686d266347efbfd65edf63708/transaction-4.0-py3-none-any.whl", hash = "sha256:e2519a316a05b14b3d483ac777df311087daaffeeafd3e9f7de62fc087ce3209", size = 46618 }, +] + +[[package]] +name = "translationstring" +version = "1.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/14/39/32325add93da9439775d7fe4b4887eb7986dbc1d5675b0431f4531f560e5/translationstring-1.4.tar.gz", hash = "sha256:bf947538d76e69ba12ab17283b10355a9ecfbc078e6123443f43f2107f6376f3", size = 24199 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3b/98/36187601a15e3d37e9bfcf0e0e1055532b39d044353b06861c3a519737a9/translationstring-1.4-py2.py3-none-any.whl", hash = "sha256:5f4dc4d939573db851c8d840551e1a0fb27b946afe3b95aafc22577eed2d6262", size = 15028 }, +] + +[[package]] +name = "trove-classifiers" +version = "2024.7.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/78/c9/83f915c3f6f94f4c862c7470284fd714f312cce8e3cf98361312bc02493d/trove_classifiers-2024.7.2.tar.gz", hash = "sha256:8328f2ac2ce3fd773cbb37c765a0ed7a83f89dc564c7d452f039b69249d0ac35", size = 16071 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0f/b0/09794439a62a7dc18bffdbf145aaf50297fd994890b11da27a13e376b947/trove_classifiers-2024.7.2-py3-none-any.whl", hash = "sha256:ccc57a33717644df4daca018e7ec3ef57a835c48e96a1e71fc07eb7edac67af6", size = 13468 }, +] + +[[package]] +name = "tuf" +version = "5.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "requests", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "securesystemslib", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/db/ea/5a89820ae36f8717ca3f12bfe369e92b51a5bd43efb3f2afec6cdd8e15ad/tuf-5.0.0.tar.gz", hash = "sha256:9c5d87d3822ae2f83c756d5a208c6942a2829ae1ea63c18c363124497d04da4f", size = 266998 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/72/f6/e673bde952f3b7a3ca8d76c38b2bcd9d04650b7e7d6d8f877310348e896f/tuf-5.0.0-py3-none-any.whl", hash = "sha256:91a4ca279c33222ac1451a5b0bcdcbbf12c965e0d22278bead5bf8d3ab95117a", size = 50653 }, +] + +[[package]] +name = "types-awscrt" +version = "0.21.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/61/db/7b9248e4c69f57cfa89336638a3d4b7dc04adfdc9c541b52aef24e4162aa/types_awscrt-0.21.2.tar.gz", hash = "sha256:84a9f4f422ec525c314fdf54c23a1e73edfbcec968560943ca2d41cfae623b38", size = 13225 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6c/71/8c4fcdbc5f41c3567098e05dc28dd0723e945bf441a9d182877f96a94ff9/types_awscrt-0.21.2-py3-none-any.whl", hash = "sha256:0839fe12f0f914d8f7d63ed777c728cb4eccc2d5d79a26e377d12b0604e7bf0e", size = 17550 }, +] + +[[package]] +name = "types-babel" +version = "2.11.0.15" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "types-pytz", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "types-setuptools", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/64/b5/b18d2dd9375515126069616096470fd9efd27434abac9e8d601e71f61b12/types-babel-2.11.0.15.tar.gz", hash = "sha256:282c184c8c9d81e8269212c1b8fa0d39ee88fb8bc43be47980412781c9c85f7e", size = 14392 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d7/6a/56538e54ca538552a1b83e5f3f05ba23668870276a9342df1252e4e07f73/types_babel-2.11.0.15-py3-none-any.whl", hash = "sha256:d0579f2e8adeaef3fbe2eb63e5a2ecf01767fc018e5f3f36a3c9d8b723bd62c7", size = 18442 }, +] + +[[package]] +name = "types-boto3" +version = "1.0.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "boto3-stubs", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/49/0a/0d160bd310f86bfcf47eedfdc31b6078428c1e964981ec107ef38a1a3e06/types-boto3-1.0.2.tar.gz", hash = "sha256:15f3ffad0314e40a0708fec25f94891414f93260202422bf8b19b6913853c983", size = 5039 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/be/8c/02cfe4a1684d7bb645135238436f56fed4604a7595f1c74e8156cd6e5bec/types_boto3-1.0.2-py3-none-any.whl", hash = "sha256:a6a88e94d59d887839863a64095493956efc148e747206880a7eb47d90ae8398", size = 5090 }, +] + +[[package]] +name = "types-certifi" +version = "2021.10.8.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/52/68/943c3aeaf14624712a0357c4a67814dba5cea36d194f5c764dad7959a00c/types-certifi-2021.10.8.3.tar.gz", hash = "sha256:72cf7798d165bc0b76e1c10dd1ea3097c7063c42c21d664523b928e88b554a4f", size = 2095 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b5/63/2463d89481e811f007b0e1cd0a91e52e141b47f9de724d20db7b861dcfec/types_certifi-2021.10.8.3-py3-none-any.whl", hash = "sha256:b2d1e325e69f71f7c78e5943d410e650b4707bb0ef32e4ddf3da37f54176e88a", size = 2136 }, +] + +[[package]] +name = "types-cffi" +version = "1.16.0.20240331" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "types-setuptools", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/91/c8/81e5699160b91f0f91eea852d84035c412bfb4b3a29389701044400ab379/types-cffi-1.16.0.20240331.tar.gz", hash = "sha256:b8b20d23a2b89cfed5f8c5bc53b0cb8677c3aac6d970dbc771e28b9c698f5dee", size = 11318 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/69/7a/98f5d2493a652cec05d3b09be59202d202004a41fca9c70d224782611365/types_cffi-1.16.0.20240331-py3-none-any.whl", hash = "sha256:a363e5ea54a4eb6a4a105d800685fde596bc318089b025b27dee09849fe41ff0", size = 14550 }, +] + +[[package]] +name = "types-first" +version = "2.0.5.20240806" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/fb/f1/ef146f43205377120fec58169465b964e699aef609d64398b07b3a15561f/types-first-2.0.5.20240806.tar.gz", hash = "sha256:d630f9e7f4816731ec05389ccea80d7668cbf879a9c3fade9e5ad3aa6cece27c", size = 2616 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3a/dc/812ac3259121ac02110584f1fdb32daff71888533f8cdc5d253420280578/types_first-2.0.5.20240806-py3-none-any.whl", hash = "sha256:11e3eba5bfc294be7afc6cea00be69cb20244674df117aa67648dcbd26c96766", size = 2573 }, +] + +[[package]] +name = "types-html5lib" +version = "1.1.11.20240806" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/21/ac/a2ca5366f0337ae9c947d611c19116bd56e845976782aaa35247e2a699e8/types-html5lib-1.1.11.20240806.tar.gz", hash = "sha256:8060dc98baf63d6796a765bbbc809fff9f7a383f6e3a9add526f814c086545ef", size = 11269 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d9/df/ee52df5c2cb7f40f6b9d45fc11cc9256d3e237e04d57e2d797b448815fc7/types_html5lib-1.1.11.20240806-py3-none-any.whl", hash = "sha256:575c4fd84ba8eeeaa8520c7e4c7042b7791f5ec3e9c0a5d5c418124c42d9e7e4", size = 17260 }, +] + +[[package]] +name = "types-itsdangerous" +version = "1.1.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b4/50/9a5dbcd227496c5f784d632f39cc91120c2efae7a909573792bc60777221/types-itsdangerous-1.1.6.tar.gz", hash = "sha256:21c6966c10e353a5d35d36c82aaa2c5598d3bc32ddc8e0591276da5ad2e3c638", size = 3094 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/55/88/51732cae3f281af4db869bc039c3320048dcbb26cb57222e3f8073bf09f8/types_itsdangerous-1.1.6-py3-none-any.whl", hash = "sha256:aef2535c2fa0527dcce244ece0792b20ec02ee46533800735275f82a45a0244d", size = 3353 }, +] + +[[package]] +name = "types-passlib" +version = "1.7.7.20240327" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2f/3a/cb59d03f50f7b985a0dc0921832d7c5fc3b632d026404f0cc2c89e2c3d02/types-passlib-1.7.7.20240327.tar.gz", hash = "sha256:4cce6a1a3a6afee9fc4728b4d9784300764ac2be747f5bcc01646d904b85f4bb", size = 18305 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/45/67/fceaa9ee659f14d1db096937cd81bdadb0767e49b6405fae0fd4b29b1c9c/types_passlib-1.7.7.20240327-py3-none-any.whl", hash = "sha256:3a3b7f4258b71034d2e2f4f307d6810f9904f906cdf375514c8bdbdb28a4ad23", size = 33223 }, +] + +[[package]] +name = "types-pyopenssl" +version = "24.1.0.20240722" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cryptography", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "types-cffi", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/93/29/47a346550fd2020dac9a7a6d033ea03fccb92fa47c726056618cc889745e/types-pyOpenSSL-24.1.0.20240722.tar.gz", hash = "sha256:47913b4678a01d879f503a12044468221ed8576263c1540dcb0484ca21b08c39", size = 8458 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/98/05/c868a850b6fbb79c26f5f299b768ee0adc1f9816d3461dcf4287916f655b/types_pyOpenSSL-24.1.0.20240722-py3-none-any.whl", hash = "sha256:6a7a5d2ec042537934cfb4c9d4deb0e16c4c6250b09358df1f083682fe6fda54", size = 7499 }, +] + +[[package]] +name = "types-python-slugify" +version = "8.0.2.20240310" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d2/cb/7fdc1982b117d216a9ebbe4ecc6619690991c48f994d93dee7888f459976/types-python-slugify-8.0.2.20240310.tar.gz", hash = "sha256:5157b508c7fed587520c70d77f62aea0fafdc6620893c2ec8972f13a1faf5560", size = 3661 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ce/6d/873300a60133e51b284a5287a618d3d948a65160e3954b90b3dc5e562667/types_python_slugify-8.0.2.20240310-py3-none-any.whl", hash = "sha256:0efec18b802c69ebd22dcee55c91afaeaa80e1e40ddd66ccabf69fd42ce87b74", size = 3566 }, +] + +[[package]] +name = "types-pytz" +version = "2024.1.0.20240417" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9b/b0/079f6f340c0051fbe03ac3a6d9fce323c9797b85380d455e1566eaf2716b/types-pytz-2024.1.0.20240417.tar.gz", hash = "sha256:6810c8a1f68f21fdf0f4f374a432487c77645a0ac0b31de4bf4690cf21ad3981", size = 5459 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e8/8d/f5dc5239d59bb4a7b58e2b6d0dc6f2c2ba797b110f83cdda8479508c63dd/types_pytz-2024.1.0.20240417-py3-none-any.whl", hash = "sha256:8335d443310e2db7b74e007414e74c4f53b67452c0cb0d228ca359ccfba59659", size = 5246 }, +] + +[[package]] +name = "types-redis" +version = "4.6.0.20240806" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cryptography", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "types-pyopenssl", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/06/a1/31d26b4fa5a46d8532df3406ce1dcb7d3236ffaa1e306b294f452a8c853d/types-redis-4.6.0.20240806.tar.gz", hash = "sha256:60dd02c2b91ea2d42ad079ac58dedc31d71d6eedb1c21d3796811b02baac655d", size = 49517 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/97/93/e416c37e63c89913140480472fb23354d0d1fa44fcc2c1de5ae9e0c6c1ed/types_redis-4.6.0.20240806-py3-none-any.whl", hash = "sha256:9d8fbe0ce37e3660c0a06982db7812384295d10a93d637c7f8604a2f3c88b0e6", size = 58706 }, +] + +[[package]] +name = "types-requests" +version = "2.31.0.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "types-urllib3", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f9/b8/c1e8d39996b4929b918aba10dba5de07a8b3f4c8487bb61bb79882544e69/types-requests-2.31.0.6.tar.gz", hash = "sha256:cd74ce3b53c461f1228a9b783929ac73a666658f223e28ed29753771477b3bd0", size = 15535 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5c/a1/6f8dc74d9069e790d604ddae70cb46dcbac668f1bb08136e7b0f2f5cd3bf/types_requests-2.31.0.6-py3-none-any.whl", hash = "sha256:a2db9cb228a81da8348b49ad6db3f5519452dd20a9c1e1a868c83c5fe88fd1a9", size = 14516 }, +] + +[[package]] +name = "types-s3transfer" +version = "0.10.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6b/27/f0c0bc936cf9213e3acb485aff7cdf93b78d946036c5e0d6c878cdd65525/types_s3transfer-0.10.1.tar.gz", hash = "sha256:02154cce46528287ad76ad1a0153840e0492239a0887e8833466eccf84b98da0", size = 11997 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ed/b4/c945ffb9681cf16903293b660ccec5363b6d3b5b00200e5796221673e230/types_s3transfer-0.10.1-py3-none-any.whl", hash = "sha256:49a7c81fa609ac1532f8de3756e64b58afcecad8767933310228002ec7adff74", size = 17842 }, +] + +[[package]] +name = "types-setuptools" +version = "71.1.0.20240806" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ec/1b/7f0a5ca380dc4743e00460bac8dd4f3fd921826cc1654bd75303561e54e8/types-setuptools-71.1.0.20240806.tar.gz", hash = "sha256:ae5e7b4d643ab9e99fc00ac00041804118cabe72a56183c30d524fb064897ad6", size = 39681 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/17/91/69c62223c0d6659414e9e126eee77902b83ac0444f92f475b84409953612/types_setuptools-71.1.0.20240806-py3-none-any.whl", hash = "sha256:3bd8dd02039be0bb79ad880d8893b8eefcb022fabbeeb61245c61b20c9ab1ed0", size = 64513 }, +] + +[[package]] +name = "types-stripe" +version = "3.5.2.20240106" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/be/20/3f23987c2e4ee93e6d9a9ffd3058530d1e8373f5e134fd88b3f0ec5487eb/types-stripe-3.5.2.20240106.tar.gz", hash = "sha256:63a36958f0dc4a71685b027f0b6d807ff197ee337135ac19a0f8b6132365ca52", size = 19075 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/17/73/a21fd4712675a4a0076f9260cdb193a339efbc4bf76fbe0d9a60dadd2b3f/types_stripe-3.5.2.20240106-py3-none-any.whl", hash = "sha256:9ea7bc9b9889a3d8606114c52dcc70a8fc62d44a46da4bc5ee19f0d463674bb8", size = 53986 }, +] + +[[package]] +name = "types-urllib3" +version = "1.26.25.14" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/73/de/b9d7a68ad39092368fb21dd6194b362b98a1daeea5dcfef5e1adb5031c7e/types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f", size = 11239 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/11/7b/3fc711b2efea5e85a7a0bbfe269ea944aa767bbba5ec52f9ee45d362ccf3/types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e", size = 15377 }, +] + +[[package]] +name = "types-webob" +version = "1.8.0.20240520" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/67/7c/771a8982ade4e3b17fb3b8e15d4e28962163ee892b1d494c39a09ab525b0/types-WebOb-1.8.0.20240520.tar.gz", hash = "sha256:c2716015920f0862d251ca73d0977dd0784af286840aa2eb1ccce43619b87a3d", size = 15522 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/23/63/fa8caee1d474fe0c96c41a912a924b032307eed32158b9e95b6dc1c9d685/types_WebOb-1.8.0.20240520-py3-none-any.whl", hash = "sha256:48c71677c4c1cb80136f7fac0cd7dfb62a34228f3d05d0ded56fd0fa2c0df20f", size = 20903 }, +] + +[[package]] +name = "types-wtforms" +version = "3.1.0.20240425" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cc/d1/2025a77c29cd007c3cf810db8b5eb61da269f4093e2d4f758400fef544dc/types-WTForms-3.1.0.20240425.tar.gz", hash = "sha256:49ffc1fe5576ea0735b763fff77e7060dd39ecc661276cbd0b47099921b3a6f2", size = 11007 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/47/1c/9daeb29f3e3e924f5d09312336aa4a0ed2ce11eb8389fd1625c8f877a4f0/types_WTForms-3.1.0.20240425-py3-none-any.whl", hash = "sha256:449b6e3756b2bc70657e98d989bdbf572a25466428774be96facf9debcbf6c4e", size = 17729 }, +] + +[[package]] +name = "types-zxcvbn" +version = "4.4.1.20240106" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/92/c9/f8bd12d8be112835ecb1d1e33d8f3a8ea73b925ea8a2390d0fb866b44fcb/types-zxcvbn-4.4.1.20240106.tar.gz", hash = "sha256:188315a87501b31ca3bf0ecf323a1376f611bd1969a69a06df86a5f92d05d64c", size = 4557 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/10/a6/7422f932cdf084ded9900d7114d2a1e47cff3e242e57583e6935b68b4f3e/types_zxcvbn-4.4.1.20240106-py3-none-any.whl", hash = "sha256:ca9e6cda8c0eec045f8b38d1183c4a2e29daeb240ddcddc5087fa11af66213e4", size = 5838 }, +] + +[[package]] +name = "typing-extensions" +version = "4.12.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/df/db/f35a00659bc03fec321ba8bce9420de607a1d37f8342eee1863174c69557/typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8", size = 85321 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/26/9f/ad63fc0248c5379346306f8668cda6e2e2e9c95e01216d2b8ffd9ff037d0/typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d", size = 37438 }, +] + +[[package]] +name = "tzdata" +version = "2024.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/74/5b/e025d02cb3b66b7b76093404392d4b44343c69101cc85f4d180dd5784717/tzdata-2024.1.tar.gz", hash = "sha256:2674120f8d891909751c38abcdfd386ac0a5a1127954fbc332af6b5ceae07efd", size = 190559 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/65/58/f9c9e6be752e9fcb8b6a0ee9fb87e6e7a1f6bcab2cdc73f02bb7ba91ada0/tzdata-2024.1-py2.py3-none-any.whl", hash = "sha256:9068bc196136463f5245e51efda838afa15aaeca9903f49050dfa2679db4d252", size = 345370 }, +] + +[[package]] +name = "ua-parser" +version = "0.18.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/72/c3/5e715a16a9f8117a9ed92f5112911e07d40cfdf0f81cd4139f0c6307c57c/ua-parser-0.18.0.tar.gz", hash = "sha256:db51f1b59bfaa82ed9e2a1d99a54d3e4153dddf99ac1435d51828165422e624e", size = 40659 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/db/d5/3cf1bdc3401dda1c45894deac836aaab571c26858f83e1b6d6a7c249d444/ua_parser-0.18.0-py2.py3-none-any.whl", hash = "sha256:9d94ac3a80bcb0166823956a779186c746b50ea4c9fd9bf30fdb758553c38950", size = 38314 }, +] + +[[package]] +name = "urllib3" +version = "1.26.19" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c8/93/65e479b023bbc46dab3e092bda6b0005424ea3217d711964ccdede3f9b1b/urllib3-1.26.19.tar.gz", hash = "sha256:3e3d753a8618b86d7de333b4223005f68720bcd6a7d2bcb9fbd2229ec7c1e429", size = 306068 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ae/6a/99eaaeae8becaa17a29aeb334a18e5d582d873b6f084c11f02581b8d7f7f/urllib3-1.26.19-py2.py3-none-any.whl", hash = "sha256:37a0344459b199fce0e80b0d3569837ec6b6937435c5244e7fd73fa6006830f3", size = 143933 }, +] + +[[package]] +name = "uvicorn" +version = "0.30.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "h11", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c3/ad/02b1b412e43605aa6aac8d0392c383ff3f6ae8267b7864e48e3b5f3f601e/uvicorn-0.30.5.tar.gz", hash = "sha256:ac6fdbd4425c5fd17a9fe39daf4d4d075da6fdc80f653e5894cdc2fd98752bee", size = 42835 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/67/d8/1bcb5e6508d14c6c9912cd964b286f04392298ffb3e4218f4a1292d64e76/uvicorn-0.30.5-py3-none-any.whl", hash = "sha256:b2d86de274726e9878188fa07576c9ceeff90a839e2b6e25c917fe05f5a6c835", size = 62805 }, +] + +[[package]] +name = "venusian" +version = "3.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f8/39/7c0d9011ec465951aaf71c252effc7c031a04404887422c6f66ba26500e1/venusian-3.1.0.tar.gz", hash = "sha256:eb72cdca6f3139a15dc80f9c95d3c10f8a54a0ba881eeef8e2ec5b42d3ee3a95", size = 37960 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2c/d7/36860f68eb977ad685d0f0fda733eca913dbda1bb29bbc5f1c5ba460201a/venusian-3.1.0-py3-none-any.whl", hash = "sha256:d1fb1e49927f42573f6c9b7c4fcf61c892af8fdcaa2314daa01d9a560b23488d", size = 13987 }, +] + +[[package]] +name = "vine" +version = "5.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bd/e4/d07b5f29d283596b9727dd5275ccbceb63c44a1a82aa9e4bfd20426762ac/vine-5.1.0.tar.gz", hash = "sha256:8b62e981d35c41049211cf62a0a1242d8c1ee9bd15bb196ce38aefd6799e61e0", size = 48980 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/03/ff/7c0c86c43b3cbb927e0ccc0255cb4057ceba4799cd44ae95174ce8e8b5b2/vine-5.1.0-py3-none-any.whl", hash = "sha256:40fdf3c48b2cfe1c38a49e9ae2da6fda88e4794c810050a728bd7413811fb1dc", size = 9636 }, +] + +[[package]] +name = "waitress" +version = "3.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/70/34/cb77e5249c433eb177a11ab7425056b32d3b57855377fa1e38b397412859/waitress-3.0.0.tar.gz", hash = "sha256:005da479b04134cdd9dd602d1ee7c49d79de0537610d653674cc6cbde222b8a1", size = 179393 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5b/a9/485c953a1ac4cb98c28e41fd2c7184072df36bbf99734a51d44d04176878/waitress-3.0.0-py3-none-any.whl", hash = "sha256:2a06f242f4ba0cc563444ca3d1998959447477363a2d7e9b8b4d75d35cfd1669", size = 56698 }, +] + +[[package]] +name = "warehouse" +version = "1.0.0" +source = { editable = "." } +dependencies = [ + { name = "alembic", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "alembic-postgresql-enum", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "argon2-cffi", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "automat", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "b2sdk", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "babel", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "bcrypt", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "boto3", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "celery", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "celery", extra = ["sqs"] }, + { name = "celery-redbeat", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "certifi", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "click", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "cryptography", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "datadog", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "disposable-email-domains", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "elasticsearch", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "elasticsearch-dsl", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "first", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "forcediphttpsadapter", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "github-reserved-names", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "google-cloud-bigquery", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "google-cloud-storage", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "hiredis", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "html5lib", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "humanize", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "itsdangerous", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "jinja2", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "kombu", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "kombu", extra = ["sqs"] }, + { name = "limits", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "linehaul", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "lxml", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "mistune", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "msgpack", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "natsort", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "orjson", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "packaging", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "packaging-legacy", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "paginate", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "paginate-sqlalchemy", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "passlib", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "premailer", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "psycopg", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "psycopg", extra = ["c"] }, + { name = "pycurl", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pydantic", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pyjwt", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pyjwt", extra = ["crypto"] }, + { name = "pymacaroons", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pyqrcode", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pyramid", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pyramid-jinja2", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pyramid-mailer", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pyramid-openapi3", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pyramid-retry", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pyramid-rpc", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pyramid-services", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pyramid-tm", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "python-slugify", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pytz", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "readme-renderer", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "readme-renderer", extra = ["md"] }, + { name = "redis", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "requests", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "requests-aws4auth", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "rfc3986", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "sentry-sdk", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "setuptools", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "sqlalchemy", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "sqlalchemy", extra = ["asyncio"] }, + { name = "stdlib-list", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "stripe", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "structlog", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "transaction", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "trove-classifiers", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "ua-parser", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "urllib3", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "webauthn", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "whitenoise", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "wtforms", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "wtforms", extra = ["email"] }, + { name = "zope-sqlalchemy", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "zxcvbn", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] + +[package.optional-dependencies] +deploy = [ + { name = "ddtrace", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "gunicorn", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] + +[package.dev-dependencies] +dev = [ + { name = "asyncudp", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "black", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "cairosvg", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "celery-types", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "coverage", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "curlylint", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "doc8", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "factory-boy", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "flake8", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "freezegun", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "furo", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "hupper", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "isort", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "mkdocs", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "mkdocs-macros-plugin", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "mkdocs-material", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "mkdocs-rss-plugin", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "msgpack-types", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "mypy", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "mypy-zope", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "myst-parser", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pep8-naming", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pillow", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pip-api", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pip-tools", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pretend", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pyramid-debugtoolbar", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pytest", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pytest-icdiff", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pytest-postgresql", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pytest-randomly", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pytest-socket", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pytz", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pyupgrade", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "repository-service-tuf", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "responses", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "sphinx", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "sphinx-autobuild", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "sphinxcontrib-httpdomain", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "sphinxcontrib-mermaid", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "types-babel", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "types-boto3", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "types-certifi", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "types-first", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "types-html5lib", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "types-itsdangerous", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "types-passlib", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "types-python-slugify", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "types-pytz", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "types-redis", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "types-requests", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "types-setuptools", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "types-stripe", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "types-webob", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "types-wtforms", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "types-zxcvbn", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "webtest", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] + +[[package]] +name = "watchdog" +version = "4.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1b/f9/b01e4632aed9a6ecc2b3e501feffd3af5aa0eb4e3b0283fc9525bf503c38/watchdog-4.0.1.tar.gz", hash = "sha256:eebaacf674fa25511e8867028d281e602ee6500045b57f43b08778082f7f8b44", size = 126583 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1c/bc/a1ce8b77eede5a2f4fbcdc923079eb85b7c6e0f5e366ad06661b4dd807e1/watchdog-4.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:17e32f147d8bf9657e0922c0940bcde863b894cd871dbb694beb6704cfbd2fb5", size = 101627 }, + { url = "https://files.pythonhosted.org/packages/c2/84/9c66fb603bb683fe559ceeba8f3d5dbea3293b631b2eba319d7d47a2d7fb/watchdog-4.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:03e70d2df2258fb6cb0e95bbdbe06c16e608af94a3ffbd2b90c3f1e83eb10767", size = 92464 }, + { url = "https://files.pythonhosted.org/packages/5a/a5/72b9557e77ac3e6c41816fb16f643069b17cf21f745d26e2931cb1bf136c/watchdog-4.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:123587af84260c991dc5f62a6e7ef3d1c57dfddc99faacee508c71d287248459", size = 92953 }, + { url = "https://files.pythonhosted.org/packages/f3/d1/85c1f5841190ee1e39f4a8a01df6eb13b44bd366060fc735505a38613484/watchdog-4.0.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:093b23e6906a8b97051191a4a0c73a77ecc958121d42346274c6af6520dec175", size = 101708 }, + { url = "https://files.pythonhosted.org/packages/a9/eb/8d1f9150dd5e86082913ab15d4fd4bea436186845be1b1752efd19b020d1/watchdog-4.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:611be3904f9843f0529c35a3ff3fd617449463cb4b73b1633950b3d97fa4bfb7", size = 92508 }, + { url = "https://files.pythonhosted.org/packages/52/67/62eea67ef31214ea4867b97351ea4f6b3a52dd1c4c93360ff8ad6e4ad72f/watchdog-4.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:62c613ad689ddcb11707f030e722fa929f322ef7e4f18f5335d2b73c61a85c28", size = 92977 }, + { url = "https://files.pythonhosted.org/packages/3a/36/28ce38b960f2bf1e1be573d85e8127c9ac66b4de63a7bef3f61b3f77ce57/watchdog-4.0.1-py3-none-manylinux2014_aarch64.whl", hash = "sha256:dddba7ca1c807045323b6af4ff80f5ddc4d654c8bce8317dde1bd96b128ed253", size = 83011 }, + { url = "https://files.pythonhosted.org/packages/05/7b/efc5b4134c97f08b161faa703327cde3fe647c5c48c156fde0c343471095/watchdog-4.0.1-py3-none-manylinux2014_armv7l.whl", hash = "sha256:4513ec234c68b14d4161440e07f995f231be21a09329051e67a2118a7a612d2d", size = 83009 }, + { url = "https://files.pythonhosted.org/packages/c3/bb/1fac328ba90ea091ef04e7bdefe638a933076530d802c1b1cf1f03fe7e89/watchdog-4.0.1-py3-none-manylinux2014_i686.whl", hash = "sha256:4107ac5ab936a63952dea2a46a734a23230aa2f6f9db1291bf171dac3ebd53c6", size = 83011 }, + { url = "https://files.pythonhosted.org/packages/ce/df/c8719022af772d9f75f1c49af453a48a785a45295bca1ce4f3f55b9923af/watchdog-4.0.1-py3-none-manylinux2014_ppc64.whl", hash = "sha256:6e8c70d2cd745daec2a08734d9f63092b793ad97612470a0ee4cbb8f5f705c57", size = 83012 }, + { url = "https://files.pythonhosted.org/packages/b0/d5/7285d52e7a7ffce2ae0b21a98dbbed345bcb227672a4268eb26d046d8d41/watchdog-4.0.1-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:f27279d060e2ab24c0aa98363ff906d2386aa6c4dc2f1a374655d4e02a6c5e5e", size = 83011 }, + { url = "https://files.pythonhosted.org/packages/2a/09/4b07dc8dd1a9f67a7acfbc084f26fc35ee8a2e4feeb0a2c98fe9a1ef196c/watchdog-4.0.1-py3-none-manylinux2014_s390x.whl", hash = "sha256:f8affdf3c0f0466e69f5b3917cdd042f89c8c63aebdb9f7c078996f607cdb0f5", size = 83009 }, + { url = "https://files.pythonhosted.org/packages/24/01/a4034a94a5f1828eb050230e7cf13af3ac23cf763512b6afe008d3def97c/watchdog-4.0.1-py3-none-manylinux2014_x86_64.whl", hash = "sha256:ac7041b385f04c047fcc2951dc001671dee1b7e0615cde772e84b01fbf68ee84", size = 83012 }, + { url = "https://files.pythonhosted.org/packages/8f/5e/c0d7dad506adedd584188578901871fe923abf6c0c5dc9e79d9be5c7c24e/watchdog-4.0.1-py3-none-win32.whl", hash = "sha256:206afc3d964f9a233e6ad34618ec60b9837d0582b500b63687e34011e15bb429", size = 82996 }, + { url = "https://files.pythonhosted.org/packages/85/e0/2a9f43008902427b5f074c497705d6ef8f815c85d4bc25fbf83f720a6159/watchdog-4.0.1-py3-none-win_amd64.whl", hash = "sha256:7577b3c43e5909623149f76b099ac49a1a01ca4e167d1785c76eb52fa585745a", size = 83002 }, + { url = "https://files.pythonhosted.org/packages/db/54/23e5845ef68e1817b3792b2a11fb2088d7422814d41af8186d9058c4ff07/watchdog-4.0.1-py3-none-win_ia64.whl", hash = "sha256:d7b9f5f3299e8dd230880b6c55504a1f69cf1e4316275d1b215ebdd8187ec88d", size = 83002 }, +] + +[[package]] +name = "watchfiles" +version = "0.23.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/9e/1a/b06613ef620d7f5ca712a3d4928ec1c07182159a64277fcdf7738edb0b32/watchfiles-0.23.0.tar.gz", hash = "sha256:9338ade39ff24f8086bb005d16c29f8e9f19e55b18dcb04dfa26fcbc09da497b", size = 37384 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/14/5f/787386438d895145099e1415d1fbd3ff047a4f5e329134fd30677fe83f1f/watchfiles-0.23.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:e397b64f7aaf26915bf2ad0f1190f75c855d11eb111cc00f12f97430153c2eab", size = 374801 }, + { url = "https://files.pythonhosted.org/packages/76/6f/3075cd9c69fdce2544fb13cb9e3c8ad51424cb2c552b019514799a14966e/watchfiles-0.23.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b4ac73b02ca1824ec0a7351588241fd3953748d3774694aa7ddb5e8e46aef3e3", size = 368210 }, + { url = "https://files.pythonhosted.org/packages/ab/6b/cd4faa27088a8b612ffdfa25e3d413e676a6173b8b02a33e7fec152d75ca/watchfiles-0.23.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:130a896d53b48a1cecccfa903f37a1d87dbb74295305f865a3e816452f6e49e4", size = 441356 }, + { url = "https://files.pythonhosted.org/packages/39/ba/d361135dac6cd0fb4449f4f058c053eb9b42f70ff4d9a13767808e18851c/watchfiles-0.23.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c5e7803a65eb2d563c73230e9d693c6539e3c975ccfe62526cadde69f3fda0cf", size = 437615 }, + { url = "https://files.pythonhosted.org/packages/34/2c/c279de01628f467d16b444bdcedf9c4ce3bc5242cb23f9bfb8fbff8522ee/watchfiles-0.23.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d1aa4cc85202956d1a65c88d18c7b687b8319dbe6b1aec8969784ef7a10e7d1a", size = 456227 }, + { url = "https://files.pythonhosted.org/packages/a4/9f/a3c9f1fbcd1099554e4f707e14473ff23f0e05013d553755b98c2d86716d/watchfiles-0.23.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:87f889f6e58849ddb7c5d2cb19e2e074917ed1c6e3ceca50405775166492cca8", size = 472219 }, + { url = "https://files.pythonhosted.org/packages/22/ee/06a0a6cbde8ac6fff57c33da9e428f42dd0989e60a6ad72ca6534f650a47/watchfiles-0.23.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:37fd826dac84c6441615aa3f04077adcc5cac7194a021c9f0d69af20fb9fa788", size = 479948 }, + { url = "https://files.pythonhosted.org/packages/b9/f0/76ad5227da9461b1190de2f9dd21fece09660a9a44607de9c728f3d3e93f/watchfiles-0.23.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee7db6e36e7a2c15923072e41ea24d9a0cf39658cb0637ecc9307b09d28827e1", size = 427559 }, + { url = "https://files.pythonhosted.org/packages/e1/15/daf4361e0a6e6b27f516aaaacbb16baa8d1a266657b2314862fc73f2deaf/watchfiles-0.23.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:2368c5371c17fdcb5a2ea71c5c9d49f9b128821bfee69503cc38eae00feb3220", size = 616447 }, + { url = "https://files.pythonhosted.org/packages/b3/e4/2647ca9aaa072e139a4cc6c83c8a15d2f8fa6740913903ab998917a5ed97/watchfiles-0.23.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:857af85d445b9ba9178db95658c219dbd77b71b8264e66836a6eba4fbf49c320", size = 598031 }, + { url = "https://files.pythonhosted.org/packages/3d/02/f223537cd0e3c22df45629710b27b7f89fdf4114be2f3399b83faedf1446/watchfiles-0.23.0-cp311-none-win32.whl", hash = "sha256:1d636c8aeb28cdd04a4aa89030c4b48f8b2954d8483e5f989774fa441c0ed57b", size = 264354 }, + { url = "https://files.pythonhosted.org/packages/03/31/c1b5ea92100d9774f5a8a89115a43ef1c4fb169b643b6cc930e0cd2c5728/watchfiles-0.23.0-cp311-none-win_amd64.whl", hash = "sha256:46f1d8069a95885ca529645cdbb05aea5837d799965676e1b2b1f95a4206313e", size = 275821 }, + { url = "https://files.pythonhosted.org/packages/23/9c/810ede8d4dff7e65393b50cbb1a3ef10b6cdb1312a97d8106712175355c8/watchfiles-0.23.0-cp311-none-win_arm64.whl", hash = "sha256:e495ed2a7943503766c5d1ff05ae9212dc2ce1c0e30a80d4f0d84889298fa304", size = 266906 }, + { url = "https://files.pythonhosted.org/packages/61/52/85cdf326a53f1ae3fbe5dcab13f5729ca91ec2d61140e095a2a4cdf6a9ca/watchfiles-0.23.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:1db691bad0243aed27c8354b12d60e8e266b75216ae99d33e927ff5238d270b5", size = 373314 }, + { url = "https://files.pythonhosted.org/packages/20/5e/a97417a6544615b21c7960a45aeea13e3b42779e0ed3ebdd2d76ad62ab50/watchfiles-0.23.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:62d2b18cb1edaba311fbbfe83fb5e53a858ba37cacb01e69bc20553bb70911b8", size = 368915 }, + { url = "https://files.pythonhosted.org/packages/bc/82/537945ed624af6248c9820a99cbfd5902bb5e6a71a01a5b3de0c00f1872e/watchfiles-0.23.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e087e8fdf1270d000913c12e6eca44edd02aad3559b3e6b8ef00f0ce76e0636f", size = 441495 }, + { url = "https://files.pythonhosted.org/packages/28/24/060b064f28083866d916052fcced5c3547c5081a8e27b0702434666aa9a0/watchfiles-0.23.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd41d5c72417b87c00b1b635738f3c283e737d75c5fa5c3e1c60cd03eac3af77", size = 437357 }, + { url = "https://files.pythonhosted.org/packages/b6/00/ac760f3fa8d8975dbeaef9af99b21077e7c38898ac5051c8601649d86d99/watchfiles-0.23.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e5f3ca0ff47940ce0a389457b35d6df601c317c1e1a9615981c474452f98de1", size = 456584 }, + { url = "https://files.pythonhosted.org/packages/f7/52/2f7bbedc5f524d2ba0e9d792dab01ef4418d0f5045a9f5f4e5aca142a30d/watchfiles-0.23.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6991e3a78f642368b8b1b669327eb6751439f9f7eaaa625fae67dd6070ecfa0b", size = 471863 }, + { url = "https://files.pythonhosted.org/packages/b1/64/a80f51cb55c967629930682bf120d5ca9d1c65077c38328be635ed0d567c/watchfiles-0.23.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7f7252f52a09f8fa5435dc82b6af79483118ce6bd51eb74e6269f05ee22a7b9f", size = 478307 }, + { url = "https://files.pythonhosted.org/packages/03/f1/fdacfdbffb0635a7d0140ecca6ef7b5bce6566a085f76a65eb796ee54ddd/watchfiles-0.23.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e01bcb8d767c58865207a6c2f2792ad763a0fe1119fb0a430f444f5b02a5ea0", size = 427117 }, + { url = "https://files.pythonhosted.org/packages/d1/23/89b2bef692c350de8a4c2bde501fdf6087889a55f52a3201f0c53b616087/watchfiles-0.23.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:8e56fbcdd27fce061854ddec99e015dd779cae186eb36b14471fc9ae713b118c", size = 616352 }, + { url = "https://files.pythonhosted.org/packages/2c/35/a683945181a527083a1146620997b5d6ffe06d716c4497d388bfea813f0c/watchfiles-0.23.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:bd3e2d64500a6cad28bcd710ee6269fbeb2e5320525acd0cfab5f269ade68581", size = 597165 }, + { url = "https://files.pythonhosted.org/packages/9e/9b/ec2eabc996e5332fc89c633fbe762e08a58a7df6b5e595dd458c5f7778a4/watchfiles-0.23.0-cp312-none-win32.whl", hash = "sha256:eb99c954291b2fad0eff98b490aa641e128fbc4a03b11c8a0086de8b7077fb75", size = 264293 }, + { url = "https://files.pythonhosted.org/packages/e0/3a/62add8d90070f4b17f8bbfd66c9eaa9e08af3bc4020c07a9400d1b959aaf/watchfiles-0.23.0-cp312-none-win_amd64.whl", hash = "sha256:dccc858372a56080332ea89b78cfb18efb945da858fabeb67f5a44fa0bcb4ebb", size = 275514 }, + { url = "https://files.pythonhosted.org/packages/e8/9a/2792d4c24105104bfaf959bffefb09e02d14050913a83242ce4eb1e3f2ff/watchfiles-0.23.0-cp312-none-win_arm64.whl", hash = "sha256:6c21a5467f35c61eafb4e394303720893066897fca937bade5b4f5877d350ff8", size = 266607 }, + { url = "https://files.pythonhosted.org/packages/f6/5b/1a1d9bca4eae8cf191e74b62cd970f4a010f56f897c11dd2e6caef3ce7e3/watchfiles-0.23.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:ba31c32f6b4dceeb2be04f717811565159617e28d61a60bb616b6442027fd4b9", size = 372999 }, + { url = "https://files.pythonhosted.org/packages/98/e1/76ad010c0a2bb6efbb80383c0bba56db065238f12b0da6e6026b4e69f6aa/watchfiles-0.23.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:85042ab91814fca99cec4678fc063fb46df4cbb57b4835a1cc2cb7a51e10250e", size = 368511 }, + { url = "https://files.pythonhosted.org/packages/a1/13/d2d59d545b84fd3cf4f08b69da358209b4276c2c932d060d94a421015074/watchfiles-0.23.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:24655e8c1c9c114005c3868a3d432c8aa595a786b8493500071e6a52f3d09217", size = 441063 }, + { url = "https://files.pythonhosted.org/packages/4b/d1/dab28bed3bc9172d44100e5fae8107bd01ef85fc6bddb80d223d0d9f709f/watchfiles-0.23.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6b1a950ab299a4a78fd6369a97b8763732bfb154fdb433356ec55a5bce9515c1", size = 436805 }, + { url = "https://files.pythonhosted.org/packages/06/9c/46e0d17853b62b5d4bf8095e7b9bb0b0ad4babb6c6133138929473f161f3/watchfiles-0.23.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b8d3c5cd327dd6ce0edfc94374fb5883d254fe78a5e9d9dfc237a1897dc73cd1", size = 456411 }, + { url = "https://files.pythonhosted.org/packages/2c/ff/e891b230bcf3a648352a00b920d4a1142a938f0b97c9e8e27c2eaaeda221/watchfiles-0.23.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9ff785af8bacdf0be863ec0c428e3288b817e82f3d0c1d652cd9c6d509020dd0", size = 471563 }, + { url = "https://files.pythonhosted.org/packages/0b/07/f5b54afa8b7c33386c5778d92e681562939900f4ee1c6de9bffc49e7221f/watchfiles-0.23.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:02b7ba9d4557149410747353e7325010d48edcfe9d609a85cb450f17fd50dc3d", size = 478385 }, + { url = "https://files.pythonhosted.org/packages/a3/b6/243c1dd351ac9b8258a3ea99c33d04ecdc9766e6c7f13a43452883e92a7a/watchfiles-0.23.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48a1b05c0afb2cd2f48c1ed2ae5487b116e34b93b13074ed3c22ad5c743109f0", size = 427485 }, + { url = "https://files.pythonhosted.org/packages/28/8a/6d00aa4aa9a9938de645c1d411e3af82e74db8d25a0c05427b7a88b4d8d3/watchfiles-0.23.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:109a61763e7318d9f821b878589e71229f97366fa6a5c7720687d367f3ab9eef", size = 615839 }, + { url = "https://files.pythonhosted.org/packages/5a/d9/120d212d2952342e2c9673096f5c17cd48e90a7c9ff203ab1ad2f974befe/watchfiles-0.23.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:9f8e6bb5ac007d4a4027b25f09827ed78cbbd5b9700fd6c54429278dacce05d1", size = 596603 }, + { url = "https://files.pythonhosted.org/packages/3b/25/ec3676b140a93ac256d058a6f82810cf5e0e42fd444b948c62bc56f57f52/watchfiles-0.23.0-cp313-none-win32.whl", hash = "sha256:f46c6f0aec8d02a52d97a583782d9af38c19a29900747eb048af358a9c1d8e5b", size = 263898 }, + { url = "https://files.pythonhosted.org/packages/1a/c6/bf3b8cbe6944499fbe0d400175560a200cdecadccbacc8ace74486565d74/watchfiles-0.23.0-cp313-none-win_amd64.whl", hash = "sha256:f449afbb971df5c6faeb0a27bca0427d7b600dd8f4a068492faec18023f0dcff", size = 275220 }, +] + +[[package]] +name = "wcwidth" +version = "0.2.13" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6c/63/53559446a878410fc5a5974feb13d31d78d752eb18aeba59c7fef1af7598/wcwidth-0.2.13.tar.gz", hash = "sha256:72ea0c06399eb286d978fdedb6923a9eb47e1c486ce63e9b4e64fc18303972b5", size = 101301 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fd/84/fd2ba7aafacbad3c4201d395674fc6348826569da3c0937e75505ead3528/wcwidth-0.2.13-py2.py3-none-any.whl", hash = "sha256:3da69048e4540d84af32131829ff948f1e022c1c6bdb8d6102117aac784f6859", size = 34166 }, +] + +[[package]] +name = "webauthn" +version = "2.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "asn1crypto", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "cbor2", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "cryptography", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "pyopenssl", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/8b/51/c3262e0a361b4f21b5f562f5705e74352e1c64dd9dc69d0cb3a232a50b5a/webauthn-2.2.0.tar.gz", hash = "sha256:70e4f318d293125e3a8609838be0561119f4f8846bc430d524f8da4052ee18cc", size = 113978 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/53/97/2d37cdf3f88a81a84340862b94eb9e9f76b07bd1a460fa1ce28485ba6fe5/webauthn-2.2.0-py3-none-any.whl", hash = "sha256:e8e2daace85dde8f6fb436c1bca9aa72d5931dac8829ecc1562cc4e7cc169f6c", size = 67738 }, +] + +[[package]] +name = "webencodings" +version = "0.5.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0b/02/ae6ceac1baeda530866a85075641cec12989bd8d31af6d5ab4a3e8c92f47/webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923", size = 9721 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/24/2a3e3df732393fed8b3ebf2ec078f05546de641fe1b667ee316ec1dcf3b7/webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78", size = 11774 }, +] + +[[package]] +name = "webob" +version = "1.8.7" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c7/45/ee5f034fb4ebe3236fa49e5a4fcbc54444dd22ecf33079cf56f9606d479d/WebOb-1.8.7.tar.gz", hash = "sha256:b64ef5141be559cfade448f044fa45c2260351edcb6a8ef6b7e00c7dcef0c323", size = 278544 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/62/9c/e94a9982e9f31fc35cf46cdc543a6c2c26cb7174635b5fd25b0bbc6a7bc0/WebOb-1.8.7-py2.py3-none-any.whl", hash = "sha256:73aae30359291c14fa3b956f8b5ca31960e420c28c1bec002547fb04928cf89b", size = 114985 }, +] + +[[package]] +name = "websockets" +version = "12.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2e/62/7a7874b7285413c954a4cca3c11fd851f11b2fe5b4ae2d9bee4f6d9bdb10/websockets-12.0.tar.gz", hash = "sha256:81df9cbcbb6c260de1e007e58c011bfebe2dafc8435107b0537f393dd38c8b1b", size = 104994 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/02/73/9c1e168a2e7fdf26841dc98f5f5502e91dea47428da7690a08101f616169/websockets-12.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:5d873c7de42dea355d73f170be0f23788cf3fa9f7bed718fd2830eefedce01b4", size = 124047 }, + { url = "https://files.pythonhosted.org/packages/e4/2d/9a683359ad2ed11b2303a7a94800db19c61d33fa3bde271df09e99936022/websockets-12.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3f61726cae9f65b872502ff3c1496abc93ffbe31b278455c418492016e2afc8f", size = 121282 }, + { url = "https://files.pythonhosted.org/packages/95/aa/75fa3b893142d6d98a48cb461169bd268141f2da8bfca97392d6462a02eb/websockets-12.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ed2fcf7a07334c77fc8a230755c2209223a7cc44fc27597729b8ef5425aa61a3", size = 121325 }, + { url = "https://files.pythonhosted.org/packages/6e/a4/51a25e591d645df71ee0dc3a2c880b28e5514c00ce752f98a40a87abcd1e/websockets-12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e332c210b14b57904869ca9f9bf4ca32f5427a03eeb625da9b616c85a3a506c", size = 131502 }, + { url = "https://files.pythonhosted.org/packages/cd/ea/0ceeea4f5b87398fe2d9f5bcecfa00a1bcd542e2bfcac2f2e5dd612c4e9e/websockets-12.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5693ef74233122f8ebab026817b1b37fe25c411ecfca084b29bc7d6efc548f45", size = 130491 }, + { url = "https://files.pythonhosted.org/packages/e3/05/f52a60b66d9faf07a4f7d71dc056bffafe36a7e98c4eb5b78f04fe6e4e85/websockets-12.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e9e7db18b4539a29cc5ad8c8b252738a30e2b13f033c2d6e9d0549b45841c04", size = 130872 }, + { url = "https://files.pythonhosted.org/packages/ac/4e/c7361b2d7b964c40fea924d64881145164961fcd6c90b88b7e3ab2c4f431/websockets-12.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:6e2df67b8014767d0f785baa98393725739287684b9f8d8a1001eb2839031447", size = 136318 }, + { url = "https://files.pythonhosted.org/packages/0a/31/337bf35ae5faeaf364c9cddec66681cdf51dc4414ee7a20f92a18e57880f/websockets-12.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:bea88d71630c5900690fcb03161ab18f8f244805c59e2e0dc4ffadae0a7ee0ca", size = 135594 }, + { url = "https://files.pythonhosted.org/packages/95/aa/1ac767825c96f9d7e43c4c95683757d4ef28cf11fa47a69aca42428d3e3a/websockets-12.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:dff6cdf35e31d1315790149fee351f9e52978130cef6c87c4b6c9b3baf78bc53", size = 136191 }, + { url = "https://files.pythonhosted.org/packages/28/4b/344ec5cfeb6bc417da097f8253607c3aed11d9a305fb58346f506bf556d8/websockets-12.0-cp311-cp311-win32.whl", hash = "sha256:3e3aa8c468af01d70332a382350ee95f6986db479ce7af14d5e81ec52aa2b402", size = 124453 }, + { url = "https://files.pythonhosted.org/packages/d1/40/6b169cd1957476374f51f4486a3e85003149e62a14e6b78a958c2222337a/websockets-12.0-cp311-cp311-win_amd64.whl", hash = "sha256:25eb766c8ad27da0f79420b2af4b85d29914ba0edf69f547cc4f06ca6f1d403b", size = 124971 }, + { url = "https://files.pythonhosted.org/packages/a9/6d/23cc898647c8a614a0d9ca703695dd04322fb5135096a20c2684b7c852b6/websockets-12.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0e6e2711d5a8e6e482cacb927a49a3d432345dfe7dea8ace7b5790df5932e4df", size = 124061 }, + { url = "https://files.pythonhosted.org/packages/39/34/364f30fdf1a375e4002a26ee3061138d1571dfda6421126127d379d13930/websockets-12.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:dbcf72a37f0b3316e993e13ecf32f10c0e1259c28ffd0a85cee26e8549595fbc", size = 121296 }, + { url = "https://files.pythonhosted.org/packages/2e/00/96ae1c9dcb3bc316ef683f2febd8c97dde9f254dc36c3afc65c7645f734c/websockets-12.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:12743ab88ab2af1d17dd4acb4645677cb7063ef4db93abffbf164218a5d54c6b", size = 121326 }, + { url = "https://files.pythonhosted.org/packages/af/f1/bba1e64430685dd456c1a1fd6b0c791ae33104967b928aefeff261761e8d/websockets-12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7b645f491f3c48d3f8a00d1fce07445fab7347fec54a3e65f0725d730d5b99cb", size = 131807 }, + { url = "https://files.pythonhosted.org/packages/62/3b/98ee269712f37d892b93852ce07b3e6d7653160ca4c0d4f8c8663f8021f8/websockets-12.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9893d1aa45a7f8b3bc4510f6ccf8db8c3b62120917af15e3de247f0780294b92", size = 130751 }, + { url = "https://files.pythonhosted.org/packages/f1/00/d6f01ca2b191f8b0808e4132ccd2e7691f0453cbd7d0f72330eb97453c3a/websockets-12.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1f38a7b376117ef7aff996e737583172bdf535932c9ca021746573bce40165ed", size = 131176 }, + { url = "https://files.pythonhosted.org/packages/af/9c/703ff3cd8109dcdee6152bae055d852ebaa7750117760ded697ab836cbcf/websockets-12.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:f764ba54e33daf20e167915edc443b6f88956f37fb606449b4a5b10ba42235a5", size = 136246 }, + { url = "https://files.pythonhosted.org/packages/0b/a5/1a38fb85a456b9dc874ec984f3ff34f6550eafd17a3da28753cd3c1628e8/websockets-12.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:1e4b3f8ea6a9cfa8be8484c9221ec0257508e3a1ec43c36acdefb2a9c3b00aa2", size = 135466 }, + { url = "https://files.pythonhosted.org/packages/3c/98/1261f289dff7e65a38d59d2f591de6ed0a2580b729aebddec033c4d10881/websockets-12.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:9fdf06fd06c32205a07e47328ab49c40fc1407cdec801d698a7c41167ea45113", size = 136083 }, + { url = "https://files.pythonhosted.org/packages/a9/1c/f68769fba63ccb9c13fe0a25b616bd5aebeef1c7ddebc2ccc32462fb784d/websockets-12.0-cp312-cp312-win32.whl", hash = "sha256:baa386875b70cbd81798fa9f71be689c1bf484f65fd6fb08d051a0ee4e79924d", size = 124460 }, + { url = "https://files.pythonhosted.org/packages/20/52/8915f51f9aaef4e4361c89dd6cf69f72a0159f14e0d25026c81b6ad22525/websockets-12.0-cp312-cp312-win_amd64.whl", hash = "sha256:ae0a5da8f35a5be197f328d4727dbcfafa53d1824fac3d96cdd3a642fe09394f", size = 124985 }, + { url = "https://files.pythonhosted.org/packages/79/4d/9cc401e7b07e80532ebc8c8e993f42541534da9e9249c59ee0139dcb0352/websockets-12.0-py3-none-any.whl", hash = "sha256:dc284bbc8d7c78a6c69e0c7325ab46ee5e40bb4d50e494d8131a07ef47500e9e", size = 118370 }, +] + +[[package]] +name = "webtest" +version = "3.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "beautifulsoup4", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "waitress", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "webob", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/26/c8/8ffba1782700eb06e9b9169156698c6ba95c05b66cda3fc9e025b6b3b649/WebTest-3.0.0.tar.gz", hash = "sha256:54bd969725838d9861a9fa27f8d971f79d275d94ae255f5c501f53bb6d9929eb", size = 75871 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/41/c7/3897bd62366cb4a50bfb411d37efca9fa33bf07a7c1c22fce8f6ad2664ff/WebTest-3.0.0-py3-none-any.whl", hash = "sha256:2a001a9efa40d2a7e5d9cd8d1527c75f41814eb6afce2c3d207402547b1e5ead", size = 31858 }, +] + +[[package]] +name = "werkzeug" +version = "3.0.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/02/51/2e0fc149e7a810d300422ab543f87f2bcf64d985eb6f1228c4efd6e4f8d4/werkzeug-3.0.3.tar.gz", hash = "sha256:097e5bfda9f0aba8da6b8545146def481d06aa7d3266e7448e2cccf67dd8bd18", size = 803342 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9d/6e/e792999e816d19d7fcbfa94c730936750036d65656a76a5a688b57a656c4/werkzeug-3.0.3-py3-none-any.whl", hash = "sha256:fc9645dc43e03e4d630d23143a04a7f947a9a3b5727cd535fdfe155a17cc48c8", size = 227274 }, +] + +[[package]] +name = "wheel" +version = "0.44.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b7/a0/95e9e962c5fd9da11c1e28aa4c0d8210ab277b1ada951d2aee336b505813/wheel-0.44.0.tar.gz", hash = "sha256:a29c3f2817e95ab89aa4660681ad547c0e9547f20e75b0562fe7723c9a2a9d49", size = 100733 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1b/d1/9babe2ccaecff775992753d8686970b1e2755d21c8a63be73aba7a4e7d77/wheel-0.44.0-py3-none-any.whl", hash = "sha256:2376a90c98cc337d18623527a97c31797bd02bad0033d41547043a1cbfbe448f", size = 67059 }, +] + +[[package]] +name = "whitenoise" +version = "6.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/64/b8/86451d63ef5e1a9c480b52759d9db25ba85c3420ebdaf039057ed152a4c1/whitenoise-6.7.0.tar.gz", hash = "sha256:58c7a6cd811e275a6c91af22e96e87da0b1109e9a53bb7464116ef4c963bf636", size = 24973 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b8/42/68400d8ad59f67a1f7e12c2f39089ce005f08f73333f3e215f3d5ed6453c/whitenoise-6.7.0-py3-none-any.whl", hash = "sha256:a1ae85e01fdc9815d12fa33f17765bc132ed2c54fa76daf9e39e879dd93566f6", size = 19905 }, +] + +[[package]] +name = "wired" +version = "0.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "zope-interface", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a4/1e/2689f71e21832c6f5ebfca70b5a5408fadd5b1e19202225dfb34b12f7da6/wired-0.4.tar.gz", hash = "sha256:2c8007863e9bfbc119da58a6d7d615a5a747986c5ce698916e44e19d88e905ff", size = 52390 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1f/bc/0532ac811c2db0a5c413897e913d144f45d94bd1caa0eacf430cba019284/wired-0.4-py3-none-any.whl", hash = "sha256:cc8d9705c0f70234a3dab41ab9e6fcd35351042699a13551e43390f281535771", size = 13188 }, +] + +[[package]] +name = "wrapt" +version = "1.16.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/95/4c/063a912e20bcef7124e0df97282a8af3ff3e4b603ce84c481d6d7346be0a/wrapt-1.16.0.tar.gz", hash = "sha256:5f370f952971e7d17c7d1ead40e49f32345a7f7a5373571ef44d800d06b1899d", size = 53972 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fd/03/c188ac517f402775b90d6f312955a5e53b866c964b32119f2ed76315697e/wrapt-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1a5db485fe2de4403f13fafdc231b0dbae5eca4359232d2efc79025527375b09", size = 37313 }, + { url = "https://files.pythonhosted.org/packages/0f/16/ea627d7817394db04518f62934a5de59874b587b792300991b3c347ff5e0/wrapt-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:75ea7d0ee2a15733684badb16de6794894ed9c55aa5e9903260922f0482e687d", size = 38164 }, + { url = "https://files.pythonhosted.org/packages/7f/a7/f1212ba098f3de0fd244e2de0f8791ad2539c03bef6c05a9fcb03e45b089/wrapt-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a452f9ca3e3267cd4d0fcf2edd0d035b1934ac2bd7e0e57ac91ad6b95c0c6389", size = 80890 }, + { url = "https://files.pythonhosted.org/packages/b7/96/bb5e08b3d6db003c9ab219c487714c13a237ee7dcc572a555eaf1ce7dc82/wrapt-1.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:43aa59eadec7890d9958748db829df269f0368521ba6dc68cc172d5d03ed8060", size = 73118 }, + { url = "https://files.pythonhosted.org/packages/6e/52/2da48b35193e39ac53cfb141467d9f259851522d0e8c87153f0ba4205fb1/wrapt-1.16.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72554a23c78a8e7aa02abbd699d129eead8b147a23c56e08d08dfc29cfdddca1", size = 80746 }, + { url = "https://files.pythonhosted.org/packages/11/fb/18ec40265ab81c0e82a934de04596b6ce972c27ba2592c8b53d5585e6bcd/wrapt-1.16.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d2efee35b4b0a347e0d99d28e884dfd82797852d62fcd7ebdeee26f3ceb72cf3", size = 85668 }, + { url = "https://files.pythonhosted.org/packages/0f/ef/0ecb1fa23145560431b970418dce575cfaec555ab08617d82eb92afc7ccf/wrapt-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:6dcfcffe73710be01d90cae08c3e548d90932d37b39ef83969ae135d36ef3956", size = 78556 }, + { url = "https://files.pythonhosted.org/packages/25/62/cd284b2b747f175b5a96cbd8092b32e7369edab0644c45784871528eb852/wrapt-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:eb6e651000a19c96f452c85132811d25e9264d836951022d6e81df2fff38337d", size = 85712 }, + { url = "https://files.pythonhosted.org/packages/e5/a7/47b7ff74fbadf81b696872d5ba504966591a3468f1bc86bca2f407baef68/wrapt-1.16.0-cp311-cp311-win32.whl", hash = "sha256:66027d667efe95cc4fa945af59f92c5a02c6f5bb6012bff9e60542c74c75c362", size = 35327 }, + { url = "https://files.pythonhosted.org/packages/cf/c3/0084351951d9579ae83a3d9e38c140371e4c6b038136909235079f2e6e78/wrapt-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:aefbc4cb0a54f91af643660a0a150ce2c090d3652cf4052a5397fb2de549cd89", size = 37523 }, + { url = "https://files.pythonhosted.org/packages/92/17/224132494c1e23521868cdd57cd1e903f3b6a7ba6996b7b8f077ff8ac7fe/wrapt-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5eb404d89131ec9b4f748fa5cfb5346802e5ee8836f57d516576e61f304f3b7b", size = 37614 }, + { url = "https://files.pythonhosted.org/packages/6a/d7/cfcd73e8f4858079ac59d9db1ec5a1349bc486ae8e9ba55698cc1f4a1dff/wrapt-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9090c9e676d5236a6948330e83cb89969f433b1943a558968f659ead07cb3b36", size = 38316 }, + { url = "https://files.pythonhosted.org/packages/7e/79/5ff0a5c54bda5aec75b36453d06be4f83d5cd4932cc84b7cb2b52cee23e2/wrapt-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94265b00870aa407bd0cbcfd536f17ecde43b94fb8d228560a1e9d3041462d73", size = 86322 }, + { url = "https://files.pythonhosted.org/packages/c4/81/e799bf5d419f422d8712108837c1d9bf6ebe3cb2a81ad94413449543a923/wrapt-1.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f2058f813d4f2b5e3a9eb2eb3faf8f1d99b81c3e51aeda4b168406443e8ba809", size = 79055 }, + { url = "https://files.pythonhosted.org/packages/62/62/30ca2405de6a20448ee557ab2cd61ab9c5900be7cbd18a2639db595f0b98/wrapt-1.16.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98b5e1f498a8ca1858a1cdbffb023bfd954da4e3fa2c0cb5853d40014557248b", size = 87291 }, + { url = "https://files.pythonhosted.org/packages/49/4e/5d2f6d7b57fc9956bf06e944eb00463551f7d52fc73ca35cfc4c2cdb7aed/wrapt-1.16.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:14d7dc606219cdd7405133c713f2c218d4252f2a469003f8c46bb92d5d095d81", size = 90374 }, + { url = "https://files.pythonhosted.org/packages/a6/9b/c2c21b44ff5b9bf14a83252a8b973fb84923764ff63db3e6dfc3895cf2e0/wrapt-1.16.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:49aac49dc4782cb04f58986e81ea0b4768e4ff197b57324dcbd7699c5dfb40b9", size = 83896 }, + { url = "https://files.pythonhosted.org/packages/14/26/93a9fa02c6f257df54d7570dfe8011995138118d11939a4ecd82cb849613/wrapt-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:418abb18146475c310d7a6dc71143d6f7adec5b004ac9ce08dc7a34e2babdc5c", size = 91738 }, + { url = "https://files.pythonhosted.org/packages/a2/5b/4660897233eb2c8c4de3dc7cefed114c61bacb3c28327e64150dc44ee2f6/wrapt-1.16.0-cp312-cp312-win32.whl", hash = "sha256:685f568fa5e627e93f3b52fda002c7ed2fa1800b50ce51f6ed1d572d8ab3e7fc", size = 35568 }, + { url = "https://files.pythonhosted.org/packages/5c/cc/8297f9658506b224aa4bd71906447dea6bb0ba629861a758c28f67428b91/wrapt-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:dcdba5c86e368442528f7060039eda390cc4091bfd1dca41e8046af7c910dda8", size = 37653 }, + { url = "https://files.pythonhosted.org/packages/ff/21/abdedb4cdf6ff41ebf01a74087740a709e2edb146490e4d9beea054b0b7a/wrapt-1.16.0-py3-none-any.whl", hash = "sha256:6906c4100a8fcbf2fa735f6059214bb13b97f75b1a61777fcf6432121ef12ef1", size = 23362 }, +] + +[[package]] +name = "wtforms" +version = "3.1.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6a/c7/96d10183c3470f1836846f7b9527d6cb0b6c2226ebca40f36fa29f23de60/wtforms-3.1.2.tar.gz", hash = "sha256:f8d76180d7239c94c6322f7990ae1216dae3659b7aa1cee94b6318bdffb474b9", size = 134705 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/18/19/c3232f35e24dccfad372e9f341c4f3a1166ae7c66e4e1351a9467c921cc1/wtforms-3.1.2-py3-none-any.whl", hash = "sha256:bf831c042829c8cdbad74c27575098d541d039b1faa74c771545ecac916f2c07", size = 145961 }, +] + +[package.optional-dependencies] +email = [ + { name = "email-validator", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] + +[[package]] +name = "xmltodict" +version = "0.13.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/39/0d/40df5be1e684bbaecdb9d1e0e40d5d482465de6b00cbb92b84ee5d243c7f/xmltodict-0.13.0.tar.gz", hash = "sha256:341595a488e3e01a85a9d8911d8912fd922ede5fecc4dce437eb4b6c8d037e56", size = 33813 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/94/db/fd0326e331726f07ff7f40675cd86aa804bfd2e5016c727fa761c934990e/xmltodict-0.13.0-py2.py3-none-any.whl", hash = "sha256:aa89e8fd76320154a40d19a0df04a4695fb9dc5ba977cbb68ab3e4eb225e7852", size = 9971 }, +] + +[[package]] +name = "zipp" +version = "3.19.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d3/20/b48f58857d98dcb78f9e30ed2cfe533025e2e9827bbd36ea0a64cc00cbc1/zipp-3.19.2.tar.gz", hash = "sha256:bf1dcf6450f873a13e952a29504887c89e6de7506209e5b1bcc3460135d4de19", size = 22922 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/20/38/f5c473fe9b90c8debdd29ea68d5add0289f1936d6f923b6b9cc0b931194c/zipp-3.19.2-py3-none-any.whl", hash = "sha256:f091755f667055f2d02b32c53771a7a6c8b47e1fdbc4b72a8b9072b3eef8015c", size = 9039 }, +] + +[[package]] +name = "zope-deprecation" +version = "5.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "setuptools", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ba/de/a47e434ed1804d82f3fd7561aee5c55914c72d87f54cac6b99c15cbe7f89/zope.deprecation-5.0.tar.gz", hash = "sha256:b7c32d3392036b2145c40b3103e7322db68662ab09b7267afe1532a9d93f640f", size = 23353 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c8/7d/24a23d4d6d93744babfb99266eeb97a25ceae58c0f841a872b51c45ee214/zope.deprecation-5.0-py3-none-any.whl", hash = "sha256:28c2ee983812efb4676d33c7a8c6ade0df191c1c6d652bbbfe6e2eeee067b2d4", size = 10030 }, +] + +[[package]] +name = "zope-event" +version = "5.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "setuptools", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/46/c2/427f1867bb96555d1d34342f1dd97f8c420966ab564d58d18469a1db8736/zope.event-5.0.tar.gz", hash = "sha256:bac440d8d9891b4068e2b5a2c5e2c9765a9df762944bda6955f96bb9b91e67cd", size = 17350 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fe/42/f8dbc2b9ad59e927940325a22d6d3931d630c3644dae7e2369ef5d9ba230/zope.event-5.0-py3-none-any.whl", hash = "sha256:2832e95014f4db26c47a13fdaef84cef2f4df37e66b59d8f1f4a8f319a632c26", size = 6824 }, +] + +[[package]] +name = "zope-interface" +version = "7.0.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "setuptools", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ab/45/70929649a48b49a71a470bdd84e078110fb5a91e5d74bfe07d65e02b4f03/zope.interface-7.0.1.tar.gz", hash = "sha256:f0f5fda7cbf890371a59ab1d06512da4f2c89a6ea194e595808123c863c38eff", size = 298400 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0d/2b/5c47c2807d230dbf1e89cbabb945f5746f98d3080094c7ec14e71d50f399/zope.interface-7.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:03bd5c0db82237bbc47833a8b25f1cc090646e212f86b601903d79d7e6b37031", size = 208312 }, + { url = "https://files.pythonhosted.org/packages/47/07/ec534b441c37c590565a76d08913aa22b1126c2148f3c84e8a31861504b7/zope.interface-7.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3f52050c6a10d4a039ec6f2c58e5b3ade5cc570d16cf9d102711e6b8413c90e6", size = 208831 }, + { url = "https://files.pythonhosted.org/packages/d5/75/5f7bf6d62e1eee465624065646682c490a6ce507790b18d0683e30f0ac8a/zope.interface-7.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:af0b33f04677b57843d529b9257a475d2865403300b48c67654c40abac2f9f24", size = 260754 }, + { url = "https://files.pythonhosted.org/packages/1a/55/c25f8e5dd9738134781320c56a847fd870e5a6e1ac925a6e1df81d5879c6/zope.interface-7.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:696c2a381fc7876b3056711717dba5eddd07c2c9e5ccd50da54029a1293b6e43", size = 254993 }, + { url = "https://files.pythonhosted.org/packages/a8/54/ffaf6a90f086e7c89746aaa28a060f7fba39f39050a9ecab562bb307139e/zope.interface-7.0.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f89a420cf5a6f2aa7849dd59e1ff0e477f562d97cf8d6a1ee03461e1eec39887", size = 259791 }, + { url = "https://files.pythonhosted.org/packages/de/ca/9963cf7630276cdf62dd075d45a24a3c688f6c4528876134889150e0adbd/zope.interface-7.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:b59deb0ddc7b431e41d720c00f99d68b52cb9bd1d5605a085dc18f502fe9c47f", size = 211838 }, + { url = "https://files.pythonhosted.org/packages/22/f3/cb29effbe86fca5f727967b39c271e2cd9dba74c04b94024f33793eb81a4/zope.interface-7.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:52f5253cca1b35eaeefa51abd366b87f48f8714097c99b131ba61f3fdbbb58e7", size = 208428 }, + { url = "https://files.pythonhosted.org/packages/92/61/2de99cd1943e9cd0a660a3374fb1e0c3a063c4da2ad97aa2cebd0071b624/zope.interface-7.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:88d108d004e0df25224de77ce349a7e73494ea2cb194031f7c9687e68a88ec9b", size = 208841 }, + { url = "https://files.pythonhosted.org/packages/ea/ac/3936b2db9d2f60ecaf2499c85584333e669aee68705b5495aeb026d64d6f/zope.interface-7.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c203d82069ba31e1f3bc7ba530b2461ec86366cd4bfc9b95ec6ce58b1b559c34", size = 265807 }, + { url = "https://files.pythonhosted.org/packages/be/0d/8a98c5a30536b6c4d24e894a9266c4a69e4860d15cc547bbe2603f1b0492/zope.interface-7.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3f3495462bc0438b76536a0e10d765b168ae636092082531b88340dc40dcd118", size = 260805 }, + { url = "https://files.pythonhosted.org/packages/fc/6a/bf22916e7a89dd4f000745139fa52008a698a52360459e98a3b4dc515c35/zope.interface-7.0.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:192b7a792e3145ed880ff6b1a206fdb783697cfdb4915083bfca7065ec845e60", size = 266455 }, + { url = "https://files.pythonhosted.org/packages/72/3f/ae686d053f5c5be55efd8fa6f11f15ec640d55c66f1cfd3a953f18cdd1d4/zope.interface-7.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:400d06c9ec8dbcc96f56e79376297e7be07a315605c9a2208720da263d44d76f", size = 211917 }, + { url = "https://files.pythonhosted.org/packages/d7/20/6b0301ae7cc3e3d1745a2f7fadc845f9a94dd77feb7e18be74e5ea1177c1/zope.interface-7.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8c1dff87b30fd150c61367d0e2cdc49bb55f8b9fd2a303560bbc24b951573ae1", size = 265791 }, + { url = "https://files.pythonhosted.org/packages/1b/36/c43c872c45d4eccbc7977c2a8714a922ad894224aca68c900e41763a2dde/zope.interface-7.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f749ca804648d00eda62fe1098f229b082dfca930d8bad8386e572a6eafa7525", size = 260824 }, + { url = "https://files.pythonhosted.org/packages/3c/ed/47a8a00925125213df880eb19b66e7a611695c51d635a36c5406b5db6f50/zope.interface-7.0.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4ec212037becf6d2f705b7ed4538d56980b1e7bba237df0d8995cbbed29961dc", size = 266438 }, +] + +[[package]] +name = "zope-schema" +version = "7.0.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "setuptools", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "zope-event", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "zope-interface", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/82/67/91585500260386df145b78532de588b41470d416bc6fa1cdc1b0f7a34e68/zope.schema-7.0.1.tar.gz", hash = "sha256:ead4dbcb03354d4e410c9a3b904451eb44d90254751b1cbdedf4a61aede9fbb9", size = 108737 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1d/97/517e3f5f4258bcc6491c806474a26e1a799bb99ec44ed95d22010caabc25/zope.schema-7.0.1-py3-none-any.whl", hash = "sha256:cf006c678793b00e0075ad54d55281c8785ea21e5bc1f5ec0584787719c2aab2", size = 85870 }, +] + +[[package]] +name = "zope-sqlalchemy" +version = "3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "setuptools", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "sqlalchemy", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "transaction", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, + { name = "zope-interface", marker = "python_version < '3.12' and (python_version < '3.11' or python_version >= '3.12')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/98/6f/f76bfaba0cab7362dad44c9af94913a8bee938a49d7e664a7195c822b916/zope.sqlalchemy-3.1.tar.gz", hash = "sha256:d9c2c3be695c213c5e22b7f7c6a4a214fa8eb5940b033465ba1c10a9d8b346db", size = 32407 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/86/36/875db361ce975a226456388f3bc0f060db95191b7b011025c8c97d3888c5/zope.sqlalchemy-3.1-py3-none-any.whl", hash = "sha256:fdc7d65d8da335a34b90fb993e8217ef12808bad3025d2e3a6720db4138e4985", size = 23373 }, +] + +[[package]] +name = "zxcvbn" +version = "4.4.28" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/54/67/c6712608c99e7720598e769b8fb09ebd202119785adad0bbce25d330243c/zxcvbn-4.4.28.tar.gz", hash = "sha256:151bd816817e645e9064c354b13544f85137ea3320ca3be1fb6873ea75ef7dc1", size = 407871 } diff --git a/crates/uv/tests/snapshots/ecosystem__warehouse-uv-lock-output.snap b/crates/uv/tests/snapshots/ecosystem__warehouse-uv-lock-output.snap new file mode 100644 index 000000000000..61859cdb7578 --- /dev/null +++ b/crates/uv/tests/snapshots/ecosystem__warehouse-uv-lock-output.snap @@ -0,0 +1,11 @@ +--- +source: crates/uv/tests/ecosystem.rs +expression: snapshot +--- +success: true +exit_code: 0 +----- stdout ----- + +----- stderr ----- +warning: `uv lock` is experimental and may change without warning +Resolved 323 packages in [TIME] diff --git a/ecosystem/.gitignore b/ecosystem/.gitignore new file mode 100644 index 000000000000..95543473948c --- /dev/null +++ b/ecosystem/.gitignore @@ -0,0 +1,5 @@ +# We don't want to commit these to source +# control, but it's sometimes useful to +# manually run `uv` in these ecosystem +# directories for experimentation. +*/uv.lock diff --git a/ecosystem/airflow/pyproject.toml b/ecosystem/airflow/pyproject.toml new file mode 100644 index 000000000000..621a9e48b8e7 --- /dev/null +++ b/ecosystem/airflow/pyproject.toml @@ -0,0 +1,635 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +[build-system] +# build dependencies should be fixed - including all transitive dependencies. This way we can ensure +# reproducibility of the build and make sure that any future releases of any dependencies will not +# break the build of released airflow sources in the future. +# The dependencies can be automatically upgraded by running: +# pre-commit run --hook-stage manual update-build-dependencies --all-files +requires = [ + "GitPython==3.1.43", + "gitdb==4.0.11", + "hatchling==1.25.0", + "packaging==24.1", + "pathspec==0.12.1", + "pluggy==1.5.0", + "smmap==5.0.1", + "tomli==2.0.1; python_version < '3.11'", + "trove-classifiers==2024.7.2", +] +build-backend = "hatchling.build" + +[project] +name = "apache-airflow" +description = "Programmatically author, schedule and monitor data pipelines" +readme = { file = "generated/PYPI_README.md", content-type = "text/markdown" } +license-files.globs = ["LICENSE", "3rd-party-licenses/*.txt"] +requires-python = "~=3.8,<3.13" +authors = [ + { name = "Apache Software Foundation", email = "dev@airflow.apache.org" }, +] +maintainers = [ + { name = "Apache Software Foundation", email="dev@airflow.apache.org" }, +] +keywords = [ "airflow", "orchestration", "workflow", "dag", "pipelines", "automation", "data" ] +classifiers = [ + "Development Status :: 5 - Production/Stable", + "Environment :: Console", + "Environment :: Web Environment", + "Framework :: Apache Airflow", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Topic :: System :: Monitoring", +] + +dynamic = ["version", "optional-dependencies", "dependencies"] + +# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +# !!! YOU MIGHT BE SURPRISED NOT SEEING THE DEPENDENCIES AS `project.dependencies` !!!!!!!!! +# !!! AND EXTRAS AS `project.optional-dependencies` !!!!!!!!! +# !!! THEY ARE marked as `dynamic` GENERATED by `hatch_build.py` !!!!!!!!! +# !!! SEE COMMENTS BELOW TO FIND WHERE DEPENDENCIES ARE MAINTAINED !!!!!!!!! +# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +# +# !!!!!! Those providers are defined in `hatch_build.py` and should be maintained there !!!!!!! +# +# Those extras are available as regular core airflow extras - they install optional features of Airflow. +# +# START CORE EXTRAS HERE +# +# aiobotocore, apache-atlas, apache-webhdfs, async, cgroups, cloudpickle, deprecated-api, github- +# enterprise, google-auth, graphviz, kerberos, ldap, leveldb, otel, pandas, password, pydantic, +# rabbitmq, s3fs, saml, sentry, statsd, uv, virtualenv +# +# END CORE EXTRAS HERE +# +# The ``devel`` extras are not available in the released packages. They are only available when you install +# Airflow from sources in ``editable`` installation - i.e. one that you are usually using to contribute to +# Airflow. They provide tools such as ``pytest`` and ``mypy`` for general purpose development and testing. +# +# START DEVEL EXTRAS HERE +# +# devel, devel-all-dbs, devel-ci, devel-debuggers, devel-devscripts, devel-duckdb, devel-hadoop, +# devel-mypy, devel-sentry, devel-static-checks, devel-tests +# +# END DEVEL EXTRAS HERE +# +# Those extras are bundles dynamically generated from other extras. +# +# START BUNDLE EXTRAS HERE +# +# all, all-core, all-dbs, devel-all, devel-ci +# +# END BUNDLE EXTRAS HERE +# +# The ``doc`` extras are not available in the released packages. They are only available when you install +# Airflow from sources in ``editable`` installation - i.e. one that you are usually using to contribute to +# Airflow. They provide tools needed when you want to build Airflow documentation (note that you also need +# ``devel`` extras installed for airflow and providers in order to build documentation for airflow and +# provider packages respectively). The ``doc`` package is enough to build regular documentation, where +# ``doc_gen`` is needed to generate ER diagram we have describing our database. +# +# START DOC EXTRAS HERE +# +# doc, doc-gen +# +# END DOC EXTRAS HERE +# +# The `deprecated` extras are deprecated extras from Airflow 1 that will be removed in future versions. +# +# START DEPRECATED EXTRAS HERE +# +# atlas, aws, azure, cassandra, crypto, druid, gcp, gcp-api, hdfs, hive, kubernetes, mssql, pinot, s3, +# spark, webhdfs, winrm +# +# END DEPRECATED EXTRAS HERE +# +# !!!!!! Those providers are defined in the `airflow/providers//provider.yaml` files !!!!!!! +# +# Those extras are available as regular Airflow extras, they install provider packages in standard builds +# or dependencies that are necessary to enable the feature in editable build. +# START PROVIDER EXTRAS HERE +# +# airbyte, alibaba, amazon, apache.beam, apache.cassandra, apache.drill, apache.druid, apache.flink, +# apache.hdfs, apache.hive, apache.iceberg, apache.impala, apache.kafka, apache.kylin, apache.livy, +# apache.pig, apache.pinot, apache.spark, apprise, arangodb, asana, atlassian.jira, celery, cloudant, +# cncf.kubernetes, cohere, common.compat, common.io, common.sql, databricks, datadog, dbt.cloud, +# dingding, discord, docker, elasticsearch, exasol, fab, facebook, ftp, github, google, grpc, +# hashicorp, http, imap, influxdb, jdbc, jenkins, microsoft.azure, microsoft.mssql, microsoft.psrp, +# microsoft.winrm, mongo, mysql, neo4j, odbc, openai, openfaas, openlineage, opensearch, opsgenie, +# oracle, pagerduty, papermill, pgvector, pinecone, postgres, presto, qdrant, redis, salesforce, +# samba, segment, sendgrid, sftp, singularity, slack, smtp, snowflake, sqlite, ssh, tableau, tabular, +# telegram, teradata, trino, vertica, weaviate, yandex, ydb, zendesk +# +# END PROVIDER EXTRAS HERE + +[project.scripts] +airflow = "airflow.__main__:main" +[project.urls] +"Bug Tracker" = "https://github.com/apache/airflow/issues" +Documentation = "https://airflow.apache.org/docs/" +Downloads = "https://archive.apache.org/dist/airflow/" +Homepage = "https://airflow.apache.org/" +"Release Notes" = "https://airflow.apache.org/docs/apache-airflow/stable/release_notes.html" +"Slack Chat" = "https://s.apache.org/airflow-slack" +"Source Code" = "https://github.com/apache/airflow" +Twitter = "https://twitter.com/ApacheAirflow" +YouTube = "https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/" + +[tool.hatch.envs.default] +python = "3.8" +platforms = ["linux", "macos"] +description = "Default environment with Python 3.8 for maximum compatibility" +features = [] + +[tool.hatch.envs.airflow-38] +python = "3.8" +platforms = ["linux", "macos"] +description = "Environment with Python 3.8. No devel installed." +features = [] + +[tool.hatch.envs.airflow-39] +python = "3.9" +platforms = ["linux", "macos"] +description = "Environment with Python 3.9. No devel installed." +features = [] + +[tool.hatch.envs.airflow-310] +python = "3.10" +platforms = ["linux", "macos"] +description = "Environment with Python 3.10. No devel installed." +features = [] + +[tool.hatch.envs.airflow-311] +python = "3.11" +platforms = ["linux", "macos"] +description = "Environment with Python 3.11. No devel installed" +features = [] + +[tool.hatch.envs.airflow-312] +python = "3.12" +platforms = ["linux", "macos"] +description = "Environment with Python 3.12. No devel installed" +features = [] + + +[tool.hatch.version] +path = "airflow/__init__.py" + +[tool.hatch.build.targets.wheel.hooks.custom] +path = "./hatch_build.py" + +[tool.hatch.build.hooks.custom] +path = "./hatch_build.py" + +[tool.hatch.build.targets.custom] +path = "./hatch_build.py" + +[tool.hatch.build.targets.sdist] +include = [ + "/airflow", + "/airflow/git_version" +] +exclude = [ + "/airflow/providers/", + "/airflow/www/node_modules/" +] +artifacts = [ + "/airflow/www/static/dist/", + "/airflow/git_version", + "/generated/", +] + + +[tool.hatch.build.targets.wheel] +include = [ + "/airflow", +] +exclude = [ + "/airflow/providers/", +] +artifacts = [ + "/airflow/www/static/dist/", + "/airflow/git_version" +] + +## black settings ## +[tool.black] +line-length = 110 +target-version = ['py38', 'py39', 'py310', 'py311', 'py312'] + + +## ruff settings ## +[tool.ruff] +target-version = "py38" +line-length = 110 +extend-exclude = [ + ".eggs", + "*/_vendor/*", + # The files generated by stubgen aren't 100% valid syntax it turns out, and we don't ship them, so we can + # ignore them in ruff + "airflow/providers/common/sql/*/*.pyi", + "tests/dags/test_imports.py", +] + +namespace-packages = ["airflow/providers"] + +[tool.ruff.lint] +typing-modules = ["airflow.typing_compat"] +extend-select = [ + # Enable entire ruff rule section + "I", # Missing required import (auto-fixable) + "UP", # Pyupgrade + "ASYNC", # subset of flake8-async rules + "ISC", # Checks for implicit literal string concatenation (auto-fixable) + "TCH", # Rules around TYPE_CHECKING blocks + "G", # flake8-logging-format rules + "LOG", # flake8-logging rules, most of them autofixable + "PT", # flake8-pytest-style rules + "TID25", # flake8-tidy-imports rules + "E", # pycodestyle rules + "W", # pycodestyle rules + # Per rule enables + "RUF006", # Checks for asyncio dangling task + "RUF015", # Checks for unnecessary iterable allocation for first element + "RUF019", # Checks for unnecessary key check + "RUF100", # Unused noqa (auto-fixable) + # We ignore more pydocstyle than we enable, so be more selective at what we enable + "D1", + "D2", + "D213", # Conflicts with D212. Both can not be enabled. + "D3", + "D400", + "D401", + "D402", + "D403", + "D412", + "D419", + "PGH004", # Use specific rule codes when using noqa + "PGH005", # Invalid unittest.mock.Mock methods/attributes/properties + "S101", # Checks use `assert` outside the test cases, test cases should be added into the exclusions + "B004", # Checks for use of hasattr(x, "__call__") and replaces it with callable(x) + "B006", # Checks for uses of mutable objects as function argument defaults. + "B007", # Checks for unused variables in the loop + "B017", # Checks for pytest.raises context managers that catch Exception or BaseException. + "B019", # Use of functools.lru_cache or functools.cache on methods can lead to memory leaks + "B028", # No explicit stacklevel keyword argument found + "TRY002", # Prohibit use of `raise Exception`, use specific exceptions instead. +] +ignore = [ + "D100", # Unwanted; Docstring at the top of every file. + "D102", # TODO: Missing docstring in public method + "D103", # TODO: Missing docstring in public function + "D104", # Unwanted; Docstring at the top of every `__init__.py` file. + "D105", # Unwanted; See https://lists.apache.org/thread/8jbg1dd2lr2cfydtqbjxsd6pb6q2wkc3 + "D107", # Unwanted; Docstring in every constructor is unnecessary if the class has a docstring. + "D203", + "D212", # Conflicts with D213. Both can not be enabled. + "D214", + "D215", + "E731", # Do not assign a lambda expression, use a def + "TCH003", # Do not move imports from stdlib to TYPE_CHECKING block + "PT004", # Fixture does not return anything, add leading underscore + "PT005", # Fixture returns a value, remove leading underscore + "PT006", # Wrong type of names in @pytest.mark.parametrize + "PT007", # Wrong type of values in @pytest.mark.parametrize + "PT011", # pytest.raises() is too broad, set the match parameter + "PT019", # fixture without value is injected as parameter, use @pytest.mark.usefixtures instead + # Rules below explicitly set off which could overlap with Ruff's formatter + # as it recommended by https://docs.astral.sh/ruff/formatter/#conflicting-lint-rules + # Except ISC rules + "W191", + "E111", + "E114", + "E117", + "D206", + "D300", + "Q000", + "Q001", + "Q002", + "Q003", + "COM812", + "COM819", + "E501", # Formatted code may exceed the line length, leading to line-too-long (E501) errors. +] +unfixable = [ + # PT022 replace empty `yield` to empty `return`. Might be fixed with a combination of PLR1711 + # In addition, it can't do anything with invalid typing annotations, protected by mypy. + "PT022", +] + +[tool.ruff.format] +docstring-code-format = true + +[tool.ruff.lint.isort] +required-imports = ["from __future__ import annotations"] +combine-as-imports = true + +[tool.ruff.lint.per-file-ignores] +"airflow/__init__.py" = ["F401", "TCH004"] +"airflow/models/__init__.py" = ["F401", "TCH004"] +"airflow/models/sqla_models.py" = ["F401"] + +# The test_python.py is needed because adding __future__.annotations breaks runtime checks that are +# needed for the test to work +"tests/decorators/test_python.py" = ["I002"] + +# The Pydantic representations of SqlAlchemy Models are not parsed well with Pydantic +# when __future__.annotations is used so we need to skip them from upgrading +# Pydantic also require models to be imported during execution +"airflow/serialization/pydantic/*.py" = ["I002", "UP007", "TCH001"] + +# Ignore pydoc style from these +"*.pyi" = ["D"] +"scripts/*" = ["D", "PT"] # In addition ignore pytest specific rules +"docs/*" = ["D"] +"provider_packages/*" = ["D"] +"*/example_dags/*" = ["D"] +"chart/*" = ["D"] +"dev/*" = ["D"] +# In addition, ignore in tests +# TID253: Banned top level imports, e.g. pandas, numpy +# S101: Use `assert` +# TRY002: Use `raise Exception` +"dev/perf/*" = ["TID253"] +"dev/check_files.py" = ["S101"] +"dev/breeze/tests/*" = ["TID253", "S101", "TRY002"] +"tests/*" = ["D", "TID253", "S101", "TRY002"] +"docker_tests/*" = ["D", "TID253", "S101", "TRY002"] +"kubernetes_tests/*" = ["D", "TID253", "S101", "TRY002"] +"helm_tests/*" = ["D", "TID253", "S101", "TRY002"] + +# All of the modules which have an extra license header (i.e. that we copy from another project) need to +# ignore E402 -- module level import not at top level +"scripts/ci/pre_commit/*.py" = ["E402"] +"airflow/api/auth/backend/kerberos_auth.py" = ["E402"] +"airflow/security/kerberos.py" = ["E402"] +"airflow/security/utils.py" = ["E402"] +"tests/providers/common/io/xcom/test_backend.py" = ["E402"] +"tests/providers/elasticsearch/log/elasticmock/__init__.py" = ["E402"] +"tests/providers/elasticsearch/log/elasticmock/utilities/__init__.py" = ["E402"] +"tests/providers/google/cloud/hooks/vertex_ai/test_batch_prediction_job.py" = ["E402"] +"tests/providers/google/cloud/hooks/vertex_ai/test_hyperparameter_tuning_job.py" = ["E402"] +"tests/providers/google/cloud/hooks/vertex_ai/test_auto_ml.py" = ["E402"] +"tests/providers/google/cloud/hooks/vertex_ai/test_custom_job.py" = ["E402"] +"tests/providers/google/cloud/hooks/vertex_ai/test_dataset.py" = ["E402"] +"tests/providers/google/cloud/hooks/vertex_ai/test_endpoint_service.py" = ["E402"] +"tests/providers/google/cloud/hooks/vertex_ai/test_generative_model.py" = ["E402"] +"tests/providers/google/cloud/hooks/vertex_ai/test_model_service.py" = ["E402"] +"tests/providers/google/cloud/hooks/vertex_ai/test_pipeline_job.py" = ["E402"] +"tests/providers/google/cloud/hooks/vertex_ai/test_prediction_service.py" = ["E402"] +"tests/providers/google/cloud/links/test_translate.py" = ["E402"] +"tests/providers/google/cloud/operators/test_automl.py"= ["E402"] +"tests/providers/google/cloud/operators/test_vertex_ai.py" = ["E402"] +"tests/providers/google/cloud/operators/vertex_ai/test_generative_model.py" = ["E402"] +"tests/providers/google/cloud/triggers/test_vertex_ai.py" = ["E402"] +"tests/providers/openai/hooks/test_openai.py" = ["E402"] +"tests/providers/openai/operators/test_openai.py" = ["E402"] +"tests/providers/qdrant/hooks/test_qdrant.py" = ["E402"] +"tests/providers/qdrant/operators/test_qdrant.py" = ["E402"] +"tests/providers/snowflake/operators/test_snowflake_sql.py" = ["E402"] +"tests/providers/yandex/*/*.py" = ["E402"] + +# All the modules which do not follow B028 yet: https://docs.astral.sh/ruff/rules/no-explicit-stacklevel/ +"helm_tests/airflow_aux/test_basic_helm_chart.py" = ["B028"] + +# https://github.com/apache/airflow/issues/39252 +"airflow/providers/amazon/aws/hooks/eks.py" = ["W605"] + +# Test compat imports banned imports to allow testing against older airflow versions +"tests/test_utils/compat.py" = ["TID251", "F401"] + +[tool.ruff.lint.flake8-tidy-imports] +# Disallow all relative imports. +ban-relative-imports = "all" +# Ban certain modules from being imported at module level, instead requiring +# that they're imported lazily (e.g., within a function definition). +banned-module-level-imports = ["numpy", "pandas"] + +[tool.ruff.lint.flake8-tidy-imports.banned-api] +# Direct import from the airflow package modules and constraints +"airflow.AirflowException".msg = "Use airflow.exceptions.AirflowException instead." +"airflow.Dataset".msg = "Use airflow.datasets.Dataset instead." +"airflow.PY36".msg = "Use sys.version_info >= (3, 6) instead." +"airflow.PY37".msg = "Use sys.version_info >= (3, 7) instead." +"airflow.PY38".msg = "Use sys.version_info >= (3, 8) instead." +"airflow.PY39".msg = "Use sys.version_info >= (3, 9) instead." +"airflow.PY310".msg = "Use sys.version_info >= (3, 10) instead." +"airflow.PY311".msg = "Use sys.version_info >= (3, 11) instead." +"airflow.PY312".msg = "Use sys.version_info >= (3, 12) instead." +# Deprecated imports +"airflow.models.baseoperator.BaseOperatorLink".msg = "Use airflow.models.baseoperatorlink.BaseOperatorLink" +"airflow.models.errors.ImportError".msg = "Use airflow.models.errors.ParseImportError" +"airflow.models.ImportError".msg = "Use airflow.models.errors.ParseImportError" +# Deprecated in Python 3.11, Pending Removal in Python 3.15: https://github.com/python/cpython/issues/90817 +# Deprecation warning in Python 3.11 also recommends using locale.getencoding but it available in Python 3.11 +"locale.getdefaultlocale".msg = "Use locale.setlocale() and locale.getlocale() instead." +# Deprecated in Python 3.12: https://github.com/python/cpython/issues/103857 +"datetime.datetime.utcnow".msg = "Use airflow.utils.timezone.utcnow or datetime.datetime.now(tz=datetime.timezone.utc)" +"datetime.datetime.utcfromtimestamp".msg = "Use airflow.utils.timezone.from_timestamp or datetime.datetime.fromtimestamp(tz=datetime.timezone.utc)" +# Deprecated in Python 3.12: https://github.com/python/cpython/issues/94309 +"typing.Hashable".msg = "Use collections.abc.Hashable" +"typing.Sized".msg = "Use collections.abc.Sized" +# Uses deprecated in Python 3.12 `datetime.datetime.utcfromtimestamp` +"pendulum.from_timestamp".msg = "Use airflow.utils.timezone.from_timestamp" +# Flask deprecations, worthwhile to keep it until we migrate to Flask 3.0+ +"flask._app_ctx_stack".msg = "Deprecated in Flask 2.2, removed in Flask 3.0" +"flask._request_ctx_stack".msg = "Deprecated in Flask 2.2, removed in Flask 3.0" +"flask.escape".msg = "Use markupsafe.escape instead. Deprecated in Flask 2.3, removed in Flask 3.0" +"flask.Markup".msg = "Use markupsafe.Markup instead. Deprecated in Flask 2.3, removed in Flask 3.0" +"flask.signals_available".msg = "Signals are always available. Deprecated in Flask 2.3, removed in Flask 3.0" +# Use root logger by a mistake / IDE autosuggestion +# If for some reason root logger required it could obtained by logging.getLogger("root") +"logging.debug".msg = "Instantiate new `logger = logging.getLogger(__name__)` and use it instead of root logger" +"logging.info".msg = "Instantiate new `logger = logging.getLogger(__name__)` and use it instead of root logger" +"logging.warning".msg = "Instantiate new `logger = logging.getLogger(__name__)` and use it instead of root logger" +"logging.error".msg = "Instantiate new `logger = logging.getLogger(__name__)` and use it instead of root logger" +"logging.exception".msg = "Instantiate new `logger = logging.getLogger(__name__)` and use it instead of root logger" +"logging.fatal".msg = "Instantiate new `logger = logging.getLogger(__name__)` and use it instead of root logger" +"logging.critical".msg = "Instantiate new `logger = logging.getLogger(__name__)` and use it instead of root logger" +"logging.log".msg = "Instantiate new `logger = logging.getLogger(__name__)` and use it instead of root logger" +# unittest related restrictions +"unittest.TestCase".msg = "Use pytest compatible classes: https://docs.pytest.org/en/stable/getting-started.html#group-multiple-tests-in-a-class" +"unittest.skip".msg = "Use `pytest.mark.skip` instead: https://docs.pytest.org/en/stable/reference/reference.html#marks" +"unittest.skipIf".msg = "Use `pytest.mark.skipif` instead: https://docs.pytest.org/en/stable/reference/reference.html#marks" +"unittest.skipUnless".msg = "Use `pytest.mark.skipif` instead: https://docs.pytest.org/en/stable/reference/reference.html#marks" +"unittest.expectedFailure".msg = "Use `pytest.mark.xfail` instead: https://docs.pytest.org/en/stable/reference/reference.html#marks" +# Moved in SQLAlchemy 2.0 +"sqlalchemy.ext.declarative.declarative_base".msg = "Use `sqlalchemy.orm.declarative_base`. Moved in SQLAlchemy 2.0" +"sqlalchemy.ext.declarative.as_declarative".msg = "Use `sqlalchemy.orm.as_declarative`. Moved in SQLAlchemy 2.0" +"sqlalchemy.ext.declarative.has_inherited_table".msg = "Use `sqlalchemy.orm.has_inherited_table`. Moved in SQLAlchemy 2.0" +"sqlalchemy.ext.declarative.synonym_for".msg = "Use `sqlalchemy.orm.synonym_for`. Moved in SQLAlchemy 2.0" + +[tool.ruff.lint.flake8-type-checking] +exempt-modules = ["typing", "typing_extensions"] + +[tool.ruff.lint.flake8-pytest-style] +mark-parentheses = false +fixture-parentheses = false + +## pytest settings ## +[tool.pytest.ini_options] +addopts = [ + "-rasl", + "--verbosity=2", + # Disable `flaky` plugin for pytest. This plugin conflicts with `rerunfailures` because provide the same marker. + "-p", "no:flaky", + # Disable `nose` builtin plugin for pytest. This feature is deprecated in 7.2 and will be removed in pytest>=8 + "-p", "no:nose", + # Disable support of a legacy `LocalPath` in favor of stdlib `pathlib.Path`. + "-p", "no:legacypath", + # Disable warnings summary, because we use our warning summary. + "--disable-warnings", + "--asyncio-mode=strict", +] +norecursedirs = [ + ".eggs", + "airflow", + "tests/_internals", + "tests/dags_with_system_exit", + "tests/test_utils", + "tests/dags_corrupted", + "tests/dags", + "tests/system/providers/google/cloud/dataproc/resources", + "tests/system/providers/google/cloud/gcs/resources", +] +log_level = "INFO" +filterwarnings = [ + "error::pytest.PytestCollectionWarning", + "error::pytest.PytestReturnNotNoneWarning", + # Avoid building cartesian product which might impact performance + "error:SELECT statement has a cartesian product between FROM:sqlalchemy.exc.SAWarning:airflow", + 'error:Coercing Subquery object into a select\(\) for use in IN\(\):sqlalchemy.exc.SAWarning:airflow', + 'error:Class.*will not make use of SQL compilation caching', + "ignore::DeprecationWarning:flask_appbuilder.filemanager", + "ignore::DeprecationWarning:flask_appbuilder.widgets", + # FAB do not support SQLAclhemy 2 + "ignore::sqlalchemy.exc.MovedIn20Warning:flask_appbuilder", + # https://github.com/dpgaspar/Flask-AppBuilder/issues/2194 + "ignore::DeprecationWarning:marshmallow_sqlalchemy.convert", + # https://github.com/dpgaspar/Flask-AppBuilder/pull/1940 + "ignore::DeprecationWarning:flask_sqlalchemy", + # https://github.com/dpgaspar/Flask-AppBuilder/pull/1903 + "ignore::DeprecationWarning:apispec.utils", + # Connexion 2 use different deprecated objects, this should be resolved into Connexion 3 + # https://github.com/spec-first/connexion/pull/1536 + 'ignore::DeprecationWarning:connexion.spec', + 'ignore:jsonschema\.RefResolver:DeprecationWarning:connexion.json_schema', + 'ignore:jsonschema\.exceptions\.RefResolutionError:DeprecationWarning:connexion.json_schema', + 'ignore:Accessing jsonschema\.draft4_format_checker:DeprecationWarning:connexion.decorators.validation', +] +# We cannot add warnings from the airflow package into `filterwarnings`, +# because it invokes import airflow before we set up test environment which breaks the tests. +# Instead of that, we use a separate parameter and dynamically add it into `filterwarnings` marker. +forbidden_warnings = [ + "airflow.exceptions.RemovedInAirflow3Warning", + "airflow.utils.context.AirflowContextDeprecationWarning", + "airflow.exceptions.AirflowProviderDeprecationWarning", +] +python_files = [ + "test_*.py", + "example_*.py", +] +testpaths = [ + "tests", +] +# Keep temporary directories (created by `tmp_path`) for 2 recent runs only failed tests. +tmp_path_retention_count = "2" +tmp_path_retention_policy = "failed" + + +## coverage.py settings ## +[tool.coverage.run] +branch = true +relative_files = true +source = ["airflow"] +omit = [ + "airflow/_vendor/**", + "airflow/contrib/**", + "airflow/example_dags/**", + "airflow/migrations/**", + "airflow/providers/**/example_dags/**", + "airflow/www/node_modules/**", + "airflow/providers/google/ads/_vendor/**", +] + +[tool.coverage.report] +skip_empty = true +exclude_also = [ + "def __repr__", + "raise AssertionError", + "raise NotImplementedError", + "if __name__ == .__main__.:", + "@(abc\\.)?abstractmethod", + "@(typing(_extensions)?\\.)?overload", + "if (typing(_extensions)?\\.)?TYPE_CHECKING:" +] + + +## mypy settings ## +[tool.mypy] +ignore_missing_imports = true +no_implicit_optional = true +warn_redundant_casts = true +warn_unused_ignores = false +plugins = [ + "dev/mypy/plugin/decorators.py", + "dev/mypy/plugin/outputs.py", +] +pretty = true +show_error_codes = true +disable_error_code = [ + "annotation-unchecked", +] + +[[tool.mypy.overrides]] +module="airflow.config_templates.default_webserver_config" +disable_error_code = [ + "var-annotated", +] + +[[tool.mypy.overrides]] +module="airflow.migrations.*" +ignore_errors = true + +[[tool.mypy.overrides]] +module="airflow.*._vendor.*" +ignore_errors = true + +[[tool.mypy.overrides]] +module= [ + "google.cloud.*", + "azure.*", +] +no_implicit_optional = false + +[[tool.mypy.overrides]] +module=[ + "referencing.*", + # Beam has some old type annotations, and they introduced an error recently with bad signature of + # a function. This is captured in https://github.com/apache/beam/issues/29927 + # and we should remove this exclusion when it is fixed. + "apache_beam.*" +] +ignore_errors = true diff --git a/ecosystem/black/PKG-INFO b/ecosystem/black/PKG-INFO new file mode 100644 index 000000000000..c0424b0d6143 --- /dev/null +++ b/ecosystem/black/PKG-INFO @@ -0,0 +1,2115 @@ +Metadata-Version: 2.3 +Name: black +Version: 24.8.0 +Summary: The uncompromising code formatter. +Project-URL: Documentation, https://black.readthedocs.io/ +Project-URL: Changelog, https://github.com/psf/black/blob/main/CHANGES.md +Project-URL: Repository, https://github.com/psf/black +Project-URL: Issues, https://github.com/psf/black/issues +Author-email: Łukasz Langa +License: MIT +License-File: AUTHORS.md +License-File: LICENSE +Keywords: automation,autopep8,formatter,gofmt,pyfmt,rustfmt,yapf +Classifier: Development Status :: 5 - Production/Stable +Classifier: Environment :: Console +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: MIT License +Classifier: Operating System :: OS Independent +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 3 :: Only +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 +Classifier: Programming Language :: Python :: 3.12 +Classifier: Topic :: Software Development :: Libraries :: Python Modules +Classifier: Topic :: Software Development :: Quality Assurance +Requires-Python: >=3.8 +Requires-Dist: click>=8.0.0 +Requires-Dist: mypy-extensions>=0.4.3 +Requires-Dist: packaging>=22.0 +Requires-Dist: pathspec>=0.9.0 +Requires-Dist: platformdirs>=2 +Requires-Dist: tomli>=1.1.0; python_version < '3.11' +Requires-Dist: typing-extensions>=4.0.1; python_version < '3.11' +Provides-Extra: colorama +Requires-Dist: colorama>=0.4.3; extra == 'colorama' +Provides-Extra: d +Requires-Dist: aiohttp!=3.9.0,>=3.7.4; (sys_platform == 'win32' and implementation_name == 'pypy') and extra == 'd' +Requires-Dist: aiohttp>=3.7.4; (sys_platform != 'win32' or implementation_name != 'pypy') and extra == 'd' +Provides-Extra: jupyter +Requires-Dist: ipython>=7.8.0; extra == 'jupyter' +Requires-Dist: tokenize-rt>=3.2.0; extra == 'jupyter' +Provides-Extra: uvloop +Requires-Dist: uvloop>=0.15.2; extra == 'uvloop' +Description-Content-Type: text/markdown + +[![Black Logo](https://raw.githubusercontent.com/psf/black/main/docs/_static/logo2-readme.png)](https://black.readthedocs.io/en/stable/) + +

The Uncompromising Code Formatter

+ +

+Actions Status +Documentation Status +Coverage Status +License: MIT +PyPI +Downloads +conda-forge +Code style: black +

+ +> “Any color you like.” + +_Black_ is the uncompromising Python code formatter. By using it, you agree to cede +control over minutiae of hand-formatting. In return, _Black_ gives you speed, +determinism, and freedom from `pycodestyle` nagging about formatting. You will save time +and mental energy for more important matters. + +Blackened code looks the same regardless of the project you're reading. Formatting +becomes transparent after a while and you can focus on the content instead. + +_Black_ makes code review faster by producing the smallest diffs possible. + +Try it out now using the [Black Playground](https://black.vercel.app). Watch the +[PyCon 2019 talk](https://youtu.be/esZLCuWs_2Y) to learn more. + +--- + +**[Read the documentation on ReadTheDocs!](https://black.readthedocs.io/en/stable)** + +--- + +## Installation and usage + +### Installation + +_Black_ can be installed by running `pip install black`. It requires Python 3.8+ to run. +If you want to format Jupyter Notebooks, install with `pip install "black[jupyter]"`. + +If you can't wait for the latest _hotness_ and want to install from GitHub, use: + +`pip install git+https://github.com/psf/black` + +### Usage + +To get started right away with sensible defaults: + +```sh +black {source_file_or_directory} +``` + +You can run _Black_ as a package if running it as a script doesn't work: + +```sh +python -m black {source_file_or_directory} +``` + +Further information can be found in our docs: + +- [Usage and Configuration](https://black.readthedocs.io/en/stable/usage_and_configuration/index.html) + +_Black_ is already [successfully used](https://github.com/psf/black#used-by) by many +projects, small and big. _Black_ has a comprehensive test suite, with efficient parallel +tests, and our own auto formatting and parallel Continuous Integration runner. Now that +we have become stable, you should not expect large formatting changes in the future. +Stylistic changes will mostly be responses to bug reports and support for new Python +syntax. For more information please refer to +[The Black Code Style](https://black.readthedocs.io/en/stable/the_black_code_style/index.html). + +Also, as a safety measure which slows down processing, _Black_ will check that the +reformatted code still produces a valid AST that is effectively equivalent to the +original (see the +[Pragmatism](https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html#ast-before-and-after-formatting) +section for details). If you're feeling confident, use `--fast`. + +## The _Black_ code style + +_Black_ is a PEP 8 compliant opinionated formatter. _Black_ reformats entire files in +place. Style configuration options are deliberately limited and rarely added. It doesn't +take previous formatting into account (see +[Pragmatism](https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html#pragmatism) +for exceptions). + +Our documentation covers the current _Black_ code style, but planned changes to it are +also documented. They're both worth taking a look at: + +- [The _Black_ Code Style: Current style](https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html) +- [The _Black_ Code Style: Future style](https://black.readthedocs.io/en/stable/the_black_code_style/future_style.html) + +Changes to the _Black_ code style are bound by the Stability Policy: + +- [The _Black_ Code Style: Stability Policy](https://black.readthedocs.io/en/stable/the_black_code_style/index.html#stability-policy) + +Please refer to this document before submitting an issue. What seems like a bug might be +intended behaviour. + +### Pragmatism + +Early versions of _Black_ used to be absolutist in some respects. They took after its +initial author. This was fine at the time as it made the implementation simpler and +there were not many users anyway. Not many edge cases were reported. As a mature tool, +_Black_ does make some exceptions to rules it otherwise holds. + +- [The _Black_ code style: Pragmatism](https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html#pragmatism) + +Please refer to this document before submitting an issue just like with the document +above. What seems like a bug might be intended behaviour. + +## Configuration + +_Black_ is able to read project-specific default values for its command line options +from a `pyproject.toml` file. This is especially useful for specifying custom +`--include` and `--exclude`/`--force-exclude`/`--extend-exclude` patterns for your +project. + +You can find more details in our documentation: + +- [The basics: Configuration via a file](https://black.readthedocs.io/en/stable/usage_and_configuration/the_basics.html#configuration-via-a-file) + +And if you're looking for more general configuration documentation: + +- [Usage and Configuration](https://black.readthedocs.io/en/stable/usage_and_configuration/index.html) + +**Pro-tip**: If you're asking yourself "Do I need to configure anything?" the answer is +"No". _Black_ is all about sensible defaults. Applying those defaults will have your +code in compliance with many other _Black_ formatted projects. + +## Used by + +The following notable open-source projects trust _Black_ with enforcing a consistent +code style: pytest, tox, Pyramid, Django, Django Channels, Hypothesis, attrs, +SQLAlchemy, Poetry, PyPA applications (Warehouse, Bandersnatch, Pipenv, virtualenv), +pandas, Pillow, Twisted, LocalStack, every Datadog Agent Integration, Home Assistant, +Zulip, Kedro, OpenOA, FLORIS, ORBIT, WOMBAT, and many more. + +The following organizations use _Black_: Facebook, Dropbox, KeepTruckin, Lyft, Mozilla, +Quora, Duolingo, QuantumBlack, Tesla, Archer Aviation. + +Are we missing anyone? Let us know. + +## Testimonials + +**Mike Bayer**, [author of `SQLAlchemy`](https://www.sqlalchemy.org/): + +> I can't think of any single tool in my entire programming career that has given me a +> bigger productivity increase by its introduction. I can now do refactorings in about +> 1% of the keystrokes that it would have taken me previously when we had no way for +> code to format itself. + +**Dusty Phillips**, +[writer](https://smile.amazon.com/s/ref=nb_sb_noss?url=search-alias%3Daps&field-keywords=dusty+phillips): + +> _Black_ is opinionated so you don't have to be. + +**Hynek Schlawack**, [creator of `attrs`](https://www.attrs.org/), core developer of +Twisted and CPython: + +> An auto-formatter that doesn't suck is all I want for Xmas! + +**Carl Meyer**, [Django](https://www.djangoproject.com/) core developer: + +> At least the name is good. + +**Kenneth Reitz**, creator of [`requests`](https://requests.readthedocs.io/en/latest/) +and [`pipenv`](https://readthedocs.org/projects/pipenv/): + +> This vastly improves the formatting of our code. Thanks a ton! + +## Show your style + +Use the badge in your project's README.md: + +```md +[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) +``` + +Using the badge in README.rst: + +``` +.. image:: https://img.shields.io/badge/code%20style-black-000000.svg + :target: https://github.com/psf/black +``` + +Looks like this: +[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) + +## License + +MIT + +## Contributing + +Welcome! Happy to see you willing to make the project better. You can get started by +reading this: + +- [Contributing: The basics](https://black.readthedocs.io/en/latest/contributing/the_basics.html) + +You can also take a look at the rest of the contributing docs or talk with the +developers: + +- [Contributing documentation](https://black.readthedocs.io/en/latest/contributing/index.html) +- [Chat on Discord](https://discord.gg/RtVdv86PrH) + +## Change log + +The log has become rather long. It moved to its own file. + +See [CHANGES](https://black.readthedocs.io/en/latest/change_log.html). + +## Authors + +The author list is quite long nowadays, so it lives in its own file. + +See [AUTHORS.md](./AUTHORS.md) + +## Code of Conduct + +Everyone participating in the _Black_ project, and in particular in the issue tracker, +pull requests, and social media activity, is expected to treat other people with respect +and more generally to follow the guidelines articulated in the +[Python Community Code of Conduct](https://www.python.org/psf/codeofconduct/). + +At the same time, humor is encouraged. In fact, basic familiarity with Monty Python's +Flying Circus is expected. We are not savages. + +And if you _really_ need to slap somebody, do it with a fish while dancing. +# Change Log + +## 24.8.0 + +### Stable style + +- Fix crash when `# fmt: off` is used before a closing parenthesis or bracket. (#4363) + +### Packaging + +- Packaging metadata updated: docs are explictly linked, the issue tracker is now also + linked. This improves the PyPI listing for Black. (#4345) + +### Parser + +- Fix regression where Black failed to parse a multiline f-string containing another + multiline string (#4339) +- Fix regression where Black failed to parse an escaped single quote inside an f-string + (#4401) +- Fix bug with Black incorrectly parsing empty lines with a backslash (#4343) +- Fix bugs with Black's tokenizer not handling `\{` inside f-strings very well (#4422) +- Fix incorrect line numbers in the tokenizer for certain tokens within f-strings + (#4423) + +### Performance + +- Improve performance when a large directory is listed in `.gitignore` (#4415) + +### _Blackd_ + +- Fix blackd (and all extras installs) for docker container (#4357) + +## 24.4.2 + +This is a bugfix release to fix two regressions in the new f-string parser introduced in +24.4.1. + +### Parser + +- Fix regression where certain complex f-strings failed to parse (#4332) + +### Performance + +- Fix bad performance on certain complex string literals (#4331) + +## 24.4.1 + +### Highlights + +- Add support for the new Python 3.12 f-string syntax introduced by PEP 701 (#3822) + +### Stable style + +- Fix crash involving indented dummy functions containing newlines (#4318) + +### Parser + +- Add support for type parameter defaults, a new syntactic feature added to Python 3.13 + by PEP 696 (#4327) + +### Integrations + +- Github Action now works even when `git archive` is skipped (#4313) + +## 24.4.0 + +### Stable style + +- Fix unwanted crashes caused by AST equivalency check (#4290) + +### Preview style + +- `if` guards in `case` blocks are now wrapped in parentheses when the line is too long. + (#4269) +- Stop moving multiline strings to a new line unless inside brackets (#4289) + +### Integrations + +- Add a new option `use_pyproject` to the GitHub Action `psf/black`. This will read the + Black version from `pyproject.toml`. (#4294) + +## 24.3.0 + +### Highlights + +This release is a milestone: it fixes Black's first CVE security vulnerability. If you +run Black on untrusted input, or if you habitually put thousands of leading tab +characters in your docstrings, you are strongly encouraged to upgrade immediately to fix +[CVE-2024-21503](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-21503). + +This release also fixes a bug in Black's AST safety check that allowed Black to make +incorrect changes to certain f-strings that are valid in Python 3.12 and higher. + +### Stable style + +- Don't move comments along with delimiters, which could cause crashes (#4248) +- Strengthen AST safety check to catch more unsafe changes to strings. Previous versions + of Black would incorrectly format the contents of certain unusual f-strings containing + nested strings with the same quote type. Now, Black will crash on such strings until + support for the new f-string syntax is implemented. (#4270) +- Fix a bug where line-ranges exceeding the last code line would not work as expected + (#4273) + +### Performance + +- Fix catastrophic performance on docstrings that contain large numbers of leading tab + characters. This fixes + [CVE-2024-21503](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-21503). + (#4278) + +### Documentation + +- Note what happens when `--check` is used with `--quiet` (#4236) + +## 24.2.0 + +### Stable style + +- Fixed a bug where comments where mistakenly removed along with redundant parentheses + (#4218) + +### Preview style + +- Move the `hug_parens_with_braces_and_square_brackets` feature to the unstable style + due to an outstanding crash and proposed formatting tweaks (#4198) +- Fixed a bug where base expressions caused inconsistent formatting of \*\* in tenary + expression (#4154) +- Checking for newline before adding one on docstring that is almost at the line limit + (#4185) +- Remove redundant parentheses in `case` statement `if` guards (#4214). + +### Configuration + +- Fix issue where _Black_ would ignore input files in the presence of symlinks (#4222) +- _Black_ now ignores `pyproject.toml` that is missing a `tool.black` section when + discovering project root and configuration. Since _Black_ continues to use version + control as an indicator of project root, this is expected to primarily change behavior + for users in a monorepo setup (desirably). If you wish to preserve previous behavior, + simply add an empty `[tool.black]` to the previously discovered `pyproject.toml` + (#4204) + +### Output + +- Black will swallow any `SyntaxWarning`s or `DeprecationWarning`s produced by the `ast` + module when performing equivalence checks (#4189) + +### Integrations + +- Add a JSONSchema and provide a validate-pyproject entry-point (#4181) + +## 24.1.1 + +Bugfix release to fix a bug that made Black unusable on certain file systems with strict +limits on path length. + +### Preview style + +- Consistently add trailing comma on typed parameters (#4164) + +### Configuration + +- Shorten the length of the name of the cache file to fix crashes on file systems that + do not support long paths (#4176) + +## 24.1.0 + +### Highlights + +This release introduces the new 2024 stable style (#4106), stabilizing the following +changes: + +- Add parentheses around `if`-`else` expressions (#2278) +- Dummy class and function implementations consisting only of `...` are formatted more + compactly (#3796) +- If an assignment statement is too long, we now prefer splitting on the right-hand side + (#3368) +- Hex codes in Unicode escape sequences are now standardized to lowercase (#2916) +- Allow empty first lines at the beginning of most blocks (#3967, #4061) +- Add parentheses around long type annotations (#3899) +- Enforce newline after module docstrings (#3932, #4028) +- Fix incorrect magic trailing comma handling in return types (#3916) +- Remove blank lines before class docstrings (#3692) +- Wrap multiple context managers in parentheses if combined in a single `with` statement + (#3489) +- Fix bug in line length calculations for power operations (#3942) +- Add trailing commas to collection literals even if there's a comment after the last + entry (#3393) +- When using `--skip-magic-trailing-comma` or `-C`, trailing commas are stripped from + subscript expressions with more than 1 element (#3209) +- Add extra blank lines in stubs in a few cases (#3564, #3862) +- Accept raw strings as docstrings (#3947) +- Split long lines in case blocks (#4024) +- Stop removing spaces from walrus operators within subscripts (#3823) +- Fix incorrect formatting of certain async statements (#3609) +- Allow combining `# fmt: skip` with other comments (#3959) + +There are already a few improvements in the `--preview` style, which are slated for the +2025 stable style. Try them out and +[share your feedback](https://github.com/psf/black/issues). In the past, the preview +style has included some features that we were not able to stabilize. This year, we're +adding a separate `--unstable` style for features with known problems. Now, the +`--preview` style only includes features that we actually expect to make it into next +year's stable style. + +### Stable style + +Several bug fixes were made in features that are moved to the stable style in this +release: + +- Fix comment handling when parenthesising conditional expressions (#4134) +- Fix bug where spaces were not added around parenthesized walruses in subscripts, + unlike other binary operators (#4109) +- Remove empty lines before docstrings in async functions (#4132) +- Address a missing case in the change to allow empty lines at the beginning of all + blocks, except immediately before a docstring (#4130) +- For stubs, fix logic to enforce empty line after nested classes with bodies (#4141) + +### Preview style + +- Add `--unstable` style, covering preview features that have known problems that would + block them from going into the stable style. Also add the `--enable-unstable-feature` + flag; for example, use + `--enable-unstable-feature hug_parens_with_braces_and_square_brackets` to apply this + preview feature throughout 2024, even if a later Black release downgrades the feature + to unstable (#4096) +- Format module docstrings the same as class and function docstrings (#4095) +- Fix crash when using a walrus in a dictionary (#4155) +- Fix unnecessary parentheses when wrapping long dicts (#4135) +- Stop normalizing spaces before `# fmt: skip` comments (#4146) + +### Configuration + +- Print warning when configuration in `pyproject.toml` contains an invalid key (#4165) +- Fix symlink handling, properly ignoring symlinks that point outside of root (#4161) +- Fix cache mtime logic that resulted in false positive cache hits (#4128) +- Remove the long-deprecated `--experimental-string-processing` flag. This feature can + currently be enabled with `--preview --enable-unstable-feature string_processing`. + (#4096) + +### Integrations + +- Revert the change to run Black's pre-commit integration only on specific git hooks + (#3940) for better compatibility with older versions of pre-commit (#4137) + +## 23.12.1 + +### Packaging + +- Fixed a bug that included dependencies from the `d` extra by default (#4108) + +## 23.12.0 + +### Highlights + +It's almost 2024, which means it's time for a new edition of _Black_'s stable style! +Together with this release, we'll put out an alpha release 24.1a1 showcasing the draft +2024 stable style, which we'll finalize in the January release. Please try it out and +[share your feedback](https://github.com/psf/black/issues/4042). + +This release (23.12.0) will still produce the 2023 style. Most but not all of the +changes in `--preview` mode will be in the 2024 stable style. + +### Stable style + +- Fix bug where `# fmt: off` automatically dedents when used with the `--line-ranges` + option, even when it is not within the specified line range. (#4084) +- Fix feature detection for parenthesized context managers (#4104) + +### Preview style + +- Prefer more equal signs before a break when splitting chained assignments (#4010) +- Standalone form feed characters at the module level are no longer removed (#4021) +- Additional cases of immediately nested tuples, lists, and dictionaries are now + indented less (#4012) +- Allow empty lines at the beginning of all blocks, except immediately before a + docstring (#4060) +- Fix crash in preview mode when using a short `--line-length` (#4086) +- Keep suites consisting of only an ellipsis on their own lines if they are not + functions or class definitions (#4066) (#4103) + +### Configuration + +- `--line-ranges` now skips _Black_'s internal stability check in `--safe` mode. This + avoids a crash on rare inputs that have many unformatted same-content lines. (#4034) + +### Packaging + +- Upgrade to mypy 1.7.1 (#4049) (#4069) +- Faster compiled wheels are now available for CPython 3.12 (#4070) + +### Integrations + +- Enable 3.12 CI (#4035) +- Build docker images in parallel (#4054) +- Build docker images with 3.12 (#4055) + +## 23.11.0 + +### Highlights + +- Support formatting ranges of lines with the new `--line-ranges` command-line option + (#4020) + +### Stable style + +- Fix crash on formatting bytes strings that look like docstrings (#4003) +- Fix crash when whitespace followed a backslash before newline in a docstring (#4008) +- Fix standalone comments inside complex blocks crashing Black (#4016) +- Fix crash on formatting code like `await (a ** b)` (#3994) +- No longer treat leading f-strings as docstrings. This matches Python's behaviour and + fixes a crash (#4019) + +### Preview style + +- Multiline dicts and lists that are the sole argument to a function are now indented + less (#3964) +- Multiline unpacked dicts and lists as the sole argument to a function are now also + indented less (#3992) +- In f-string debug expressions, quote types that are visible in the final string are + now preserved (#4005) +- Fix a bug where long `case` blocks were not split into multiple lines. Also enable + general trailing comma rules on `case` blocks (#4024) +- Keep requiring two empty lines between module-level docstring and first function or + class definition (#4028) +- Add support for single-line format skip with other comments on the same line (#3959) + +### Configuration + +- Consistently apply force exclusion logic before resolving symlinks (#4015) +- Fix a bug in the matching of absolute path names in `--include` (#3976) + +### Performance + +- Fix mypyc builds on arm64 on macOS (#4017) + +### Integrations + +- Black's pre-commit integration will now run only on git hooks appropriate for a code + formatter (#3940) + +## 23.10.1 + +### Highlights + +- Maintenance release to get a fix out for GitHub Action edge case (#3957) + +### Preview style + +- Fix merging implicit multiline strings that have inline comments (#3956) +- Allow empty first line after block open before a comment or compound statement (#3967) + +### Packaging + +- Change Dockerfile to hatch + compile black (#3965) + +### Integrations + +- The summary output for GitHub workflows is now suppressible using the `summary` + parameter. (#3958) +- Fix the action failing when Black check doesn't pass (#3957) + +### Documentation + +- It is known Windows documentation CI is broken + https://github.com/psf/black/issues/3968 + +## 23.10.0 + +### Stable style + +- Fix comments getting removed from inside parenthesized strings (#3909) + +### Preview style + +- Fix long lines with power operators getting split before the line length (#3942) +- Long type hints are now wrapped in parentheses and properly indented when split across + multiple lines (#3899) +- Magic trailing commas are now respected in return types. (#3916) +- Require one empty line after module-level docstrings. (#3932) +- Treat raw triple-quoted strings as docstrings (#3947) + +### Configuration + +- Fix cache versioning logic when `BLACK_CACHE_DIR` is set (#3937) + +### Parser + +- Fix bug where attributes named `type` were not accepted inside `match` statements + (#3950) +- Add support for PEP 695 type aliases containing lambdas and other unusual expressions + (#3949) + +### Output + +- Black no longer attempts to provide special errors for attempting to format Python 2 + code (#3933) +- Black will more consistently print stacktraces on internal errors in verbose mode + (#3938) + +### Integrations + +- The action output displayed in the job summary is now wrapped in Markdown (#3914) + +## 23.9.1 + +Due to various issues, the previous release (23.9.0) did not include compiled mypyc +wheels, which make Black significantly faster. These issues have now been fixed, and +this release should come with compiled wheels once again. + +There will be no wheels for Python 3.12 due to a bug in mypyc. We will provide 3.12 +wheels in a future release as soon as the mypyc bug is fixed. + +### Packaging + +- Upgrade to mypy 1.5.1 (#3864) + +### Performance + +- Store raw tuples instead of NamedTuples in Black's cache, improving performance and + decreasing the size of the cache (#3877) + +## 23.9.0 + +### Preview style + +- More concise formatting for dummy implementations (#3796) +- In stub files, add a blank line between a statement with a body (e.g an + `if sys.version_info > (3, x):`) and a function definition on the same level (#3862) +- Fix a bug whereby spaces were removed from walrus operators within subscript(#3823) + +### Configuration + +- Black now applies exclusion and ignore logic before resolving symlinks (#3846) + +### Performance + +- Avoid importing `IPython` if notebook cells do not contain magics (#3782) +- Improve caching by comparing file hashes as fallback for mtime and size (#3821) + +### _Blackd_ + +- Fix an issue in `blackd` with single character input (#3558) + +### Integrations + +- Black now has an + [official pre-commit mirror](https://github.com/psf/black-pre-commit-mirror). Swapping + `https://github.com/psf/black` to `https://github.com/psf/black-pre-commit-mirror` in + your `.pre-commit-config.yaml` will make Black about 2x faster (#3828) +- The `.black.env` folder specified by `ENV_PATH` will now be removed on the completion + of the GitHub Action (#3759) + +## 23.7.0 + +### Highlights + +- Runtime support for Python 3.7 has been removed. Formatting 3.7 code will still be + supported until further notice (#3765) + +### Stable style + +- Fix a bug where an illegal trailing comma was added to return type annotations using + PEP 604 unions (#3735) +- Fix several bugs and crashes where comments in stub files were removed or mishandled + under some circumstances (#3745) +- Fix a crash with multi-line magic comments like `type: ignore` within parentheses + (#3740) +- Fix error in AST validation when _Black_ removes trailing whitespace in a type comment + (#3773) + +### Preview style + +- Implicitly concatenated strings used as function args are no longer wrapped inside + parentheses (#3640) +- Remove blank lines between a class definition and its docstring (#3692) + +### Configuration + +- The `--workers` argument to _Black_ can now be specified via the `BLACK_NUM_WORKERS` + environment variable (#3743) +- `.pytest_cache`, `.ruff_cache` and `.vscode` are now excluded by default (#3691) +- Fix _Black_ not honouring `pyproject.toml` settings when running `--stdin-filename` + and the `pyproject.toml` found isn't in the current working directory (#3719) +- _Black_ will now error if `exclude` and `extend-exclude` have invalid data types in + `pyproject.toml`, instead of silently doing the wrong thing (#3764) + +### Packaging + +- Upgrade mypyc from 0.991 to 1.3 (#3697) +- Remove patching of Click that mitigated errors on Python 3.6 with `LANG=C` (#3768) + +### Parser + +- Add support for the new PEP 695 syntax in Python 3.12 (#3703) + +### Performance + +- Speed up _Black_ significantly when the cache is full (#3751) +- Avoid importing `IPython` in a case where we wouldn't need it (#3748) + +### Output + +- Use aware UTC datetimes internally, avoids deprecation warning on Python 3.12 (#3728) +- Change verbose logging to exactly mirror _Black_'s logic for source discovery (#3749) + +### _Blackd_ + +- The `blackd` argument parser now shows the default values for options in their help + text (#3712) + +### Integrations + +- Black is now tested with + [`PYTHONWARNDEFAULTENCODING = 1`](https://docs.python.org/3/library/io.html#io-encoding-warning) + (#3763) +- Update GitHub Action to display black output in the job summary (#3688) + +### Documentation + +- Add a CITATION.cff file to the root of the repository, containing metadata on how to + cite this software (#3723) +- Update the _classes_ and _exceptions_ documentation in Developer reference to match + the latest code base (#3755) + +## 23.3.0 + +### Highlights + +This release fixes a longstanding confusing behavior in Black's GitHub action, where the +version of the action did not determine the version of Black being run (issue #3382). In +addition, there is a small bug fix around imports and a number of improvements to the +preview style. + +Please try out the +[preview style](https://black.readthedocs.io/en/stable/the_black_code_style/future_style.html#preview-style) +with `black --preview` and tell us your feedback. All changes in the preview style are +expected to become part of Black's stable style in January 2024. + +### Stable style + +- Import lines with `# fmt: skip` and `# fmt: off` no longer have an extra blank line + added when they are right after another import line (#3610) + +### Preview style + +- Add trailing commas to collection literals even if there's a comment after the last + entry (#3393) +- `async def`, `async for`, and `async with` statements are now formatted consistently + compared to their non-async version. (#3609) +- `with` statements that contain two context managers will be consistently wrapped in + parentheses (#3589) +- Let string splitters respect [East Asian Width](https://www.unicode.org/reports/tr11/) + (#3445) +- Now long string literals can be split after East Asian commas and periods (`、` U+3001 + IDEOGRAPHIC COMMA, `。` U+3002 IDEOGRAPHIC FULL STOP, & `,` U+FF0C FULLWIDTH COMMA) + besides before spaces (#3445) +- For stubs, enforce one blank line after a nested class with a body other than just + `...` (#3564) +- Improve handling of multiline strings by changing line split behavior (#1879) + +### Parser + +- Added support for formatting files with invalid type comments (#3594) + +### Integrations + +- Update GitHub Action to use the version of Black equivalent to action's version if + version input is not specified (#3543) +- Fix missing Python binary path in autoload script for vim (#3508) + +### Documentation + +- Document that only the most recent release is supported for security issues; + vulnerabilities should be reported through Tidelift (#3612) + +## 23.1.0 + +### Highlights + +This is the first release of 2023, and following our +[stability policy](https://black.readthedocs.io/en/stable/the_black_code_style/index.html#stability-policy), +it comes with a number of improvements to our stable style, including improvements to +empty line handling, removal of redundant parentheses in several contexts, and output +that highlights implicitly concatenated strings better. + +There are also many changes to the preview style; try out `black --preview` and give us +feedback to help us set the stable style for next year. + +In addition to style changes, Black now automatically infers the supported Python +versions from your `pyproject.toml` file, removing the need to set Black's target +versions separately. + +### Stable style + +- Introduce the 2023 stable style, which incorporates most aspects of last year's + preview style (#3418). Specific changes: + - Enforce empty lines before classes and functions with sticky leading comments + (#3302) (22.12.0) + - Reformat empty and whitespace-only files as either an empty file (if no newline is + present) or as a single newline character (if a newline is present) (#3348) + (22.12.0) + - Implicitly concatenated strings used as function args are now wrapped inside + parentheses (#3307) (22.12.0) + - Correctly handle trailing commas that are inside a line's leading non-nested parens + (#3370) (22.12.0) + - `--skip-string-normalization` / `-S` now prevents docstring prefixes from being + normalized as expected (#3168) (since 22.8.0) + - When using `--skip-magic-trailing-comma` or `-C`, trailing commas are stripped from + subscript expressions with more than 1 element (#3209) (22.8.0) + - Implicitly concatenated strings inside a list, set, or tuple are now wrapped inside + parentheses (#3162) (22.8.0) + - Fix a string merging/split issue when a comment is present in the middle of + implicitly concatenated strings on its own line (#3227) (22.8.0) + - Docstring quotes are no longer moved if it would violate the line length limit + (#3044, #3430) (22.6.0) + - Parentheses around return annotations are now managed (#2990) (22.6.0) + - Remove unnecessary parentheses around awaited objects (#2991) (22.6.0) + - Remove unnecessary parentheses in `with` statements (#2926) (22.6.0) + - Remove trailing newlines after code block open (#3035) (22.6.0) + - Code cell separators `#%%` are now standardised to `# %%` (#2919) (22.3.0) + - Remove unnecessary parentheses from `except` statements (#2939) (22.3.0) + - Remove unnecessary parentheses from tuple unpacking in `for` loops (#2945) (22.3.0) + - Avoid magic-trailing-comma in single-element subscripts (#2942) (22.3.0) +- Fix a crash when a colon line is marked between `# fmt: off` and `# fmt: on` (#3439) + +### Preview style + +- Format hex codes in unicode escape sequences in string literals (#2916) +- Add parentheses around `if`-`else` expressions (#2278) +- Improve performance on large expressions that contain many strings (#3467) +- Fix a crash in preview style with assert + parenthesized string (#3415) +- Fix crashes in preview style with walrus operators used in function return annotations + and except clauses (#3423) +- Fix a crash in preview advanced string processing where mixed implicitly concatenated + regular and f-strings start with an empty span (#3463) +- Fix a crash in preview advanced string processing where a standalone comment is placed + before a dict's value (#3469) +- Fix an issue where extra empty lines are added when a decorator has `# fmt: skip` + applied or there is a standalone comment between decorators (#3470) +- Do not put the closing quotes in a docstring on a separate line, even if the line is + too long (#3430) +- Long values in dict literals are now wrapped in parentheses; correspondingly + unnecessary parentheses around short values in dict literals are now removed; long + string lambda values are now wrapped in parentheses (#3440) +- Fix two crashes in preview style involving edge cases with docstrings (#3451) +- Exclude string type annotations from improved string processing; fix crash when the + return type annotation is stringified and spans across multiple lines (#3462) +- Wrap multiple context managers in parentheses when targeting Python 3.9+ (#3489) +- Fix several crashes in preview style with walrus operators used in `with` statements + or tuples (#3473) +- Fix an invalid quote escaping bug in f-string expressions where it produced invalid + code. Implicitly concatenated f-strings with different quotes can now be merged or + quote-normalized by changing the quotes used in expressions. (#3509) +- Fix crash on `await (yield)` when Black is compiled with mypyc (#3533) + +### Configuration + +- Black now tries to infer its `--target-version` from the project metadata specified in + `pyproject.toml` (#3219) + +### Packaging + +- Upgrade mypyc from `0.971` to `0.991` so mypycified _Black_ can be built on armv7 + (#3380) + - This also fixes some crashes while using compiled Black with a debug build of + CPython +- Drop specific support for the `tomli` requirement on 3.11 alpha releases, working + around a bug that would cause the requirement not to be installed on any non-final + Python releases (#3448) +- Black now depends on `packaging` version `22.0` or later. This is required for new + functionality that needs to parse part of the project metadata (#3219) + +### Output + +- Calling `black --help` multiple times will return the same help contents each time + (#3516) +- Verbose logging now shows the values of `pyproject.toml` configuration variables + (#3392) +- Fix false symlink detection messages in verbose output due to using an incorrect + relative path to the project root (#3385) + +### Integrations + +- Move 3.11 CI to normal flow now that all dependencies support 3.11 (#3446) +- Docker: Add new `latest_prerelease` tag automation to follow latest black alpha + release on docker images (#3465) + +### Documentation + +- Expand `vim-plug` installation instructions to offer more explicit options (#3468) + +## 22.12.0 + +### Preview style + +- Enforce empty lines before classes and functions with sticky leading comments (#3302) +- Reformat empty and whitespace-only files as either an empty file (if no newline is + present) or as a single newline character (if a newline is present) (#3348) +- Implicitly concatenated strings used as function args are now wrapped inside + parentheses (#3307) +- For assignment statements, prefer splitting the right hand side if the left hand side + fits on a single line (#3368) +- Correctly handle trailing commas that are inside a line's leading non-nested parens + (#3370) + +### Configuration + +- Fix incorrectly applied `.gitignore` rules by considering the `.gitignore` location + and the relative path to the target file (#3338) +- Fix incorrectly ignoring `.gitignore` presence when more than one source directory is + specified (#3336) + +### Parser + +- Parsing support has been added for walruses inside generator expression that are + passed as function args (for example, + `any(match := my_re.match(text) for text in texts)`) (#3327). + +### Integrations + +- Vim plugin: Optionally allow using the system installation of Black via + `let g:black_use_virtualenv = 0`(#3309) + +## 22.10.0 + +### Highlights + +- Runtime support for Python 3.6 has been removed. Formatting 3.6 code will still be + supported until further notice. + +### Stable style + +- Fix a crash when `# fmt: on` is used on a different block level than `# fmt: off` + (#3281) + +### Preview style + +- Fix a crash when formatting some dicts with parenthesis-wrapped long string keys + (#3262) + +### Configuration + +- `.ipynb_checkpoints` directories are now excluded by default (#3293) +- Add `--skip-source-first-line` / `-x` option to ignore the first line of source code + while formatting (#3299) + +### Packaging + +- Executables made with PyInstaller will no longer crash when formatting several files + at once on macOS. Native x86-64 executables for macOS are available once again. + (#3275) +- Hatchling is now used as the build backend. This will not have any effect for users + who install Black with its wheels from PyPI. (#3233) +- Faster compiled wheels are now available for CPython 3.11 (#3276) + +### _Blackd_ + +- Windows style (CRLF) newlines will be preserved (#3257). + +### Integrations + +- Vim plugin: add flag (`g:black_preview`) to enable/disable the preview style (#3246) +- Update GitHub Action to support formatting of Jupyter Notebook files via a `jupyter` + option (#3282) +- Update GitHub Action to support use of version specifiers (e.g. `<23`) for Black + version (#3265) + +## 22.8.0 + +### Highlights + +- Python 3.11 is now supported, except for _blackd_ as aiohttp does not support 3.11 as + of publishing (#3234) +- This is the last release that supports running _Black_ on Python 3.6 (formatting 3.6 + code will continue to be supported until further notice) +- Reword the stability policy to say that we may, in rare cases, make changes that + affect code that was not previously formatted by _Black_ (#3155) + +### Stable style + +- Fix an infinite loop when using `# fmt: on/off` in the middle of an expression or code + block (#3158) +- Fix incorrect handling of `# fmt: skip` on colon (`:`) lines (#3148) +- Comments are no longer deleted when a line had spaces removed around power operators + (#2874) + +### Preview style + +- Single-character closing docstring quotes are no longer moved to their own line as + this is invalid. This was a bug introduced in version 22.6.0. (#3166) +- `--skip-string-normalization` / `-S` now prevents docstring prefixes from being + normalized as expected (#3168) +- When using `--skip-magic-trailing-comma` or `-C`, trailing commas are stripped from + subscript expressions with more than 1 element (#3209) +- Implicitly concatenated strings inside a list, set, or tuple are now wrapped inside + parentheses (#3162) +- Fix a string merging/split issue when a comment is present in the middle of implicitly + concatenated strings on its own line (#3227) + +### _Blackd_ + +- `blackd` now supports enabling the preview style via the `X-Preview` header (#3217) + +### Configuration + +- Black now uses the presence of debug f-strings to detect target version (#3215) +- Fix misdetection of project root and verbose logging of sources in cases involving + `--stdin-filename` (#3216) +- Immediate `.gitignore` files in source directories given on the command line are now + also respected, previously only `.gitignore` files in the project root and + automatically discovered directories were respected (#3237) + +### Documentation + +- Recommend using BlackConnect in IntelliJ IDEs (#3150) + +### Integrations + +- Vim plugin: prefix messages with `Black: ` so it's clear they come from Black (#3194) +- Docker: changed to a /opt/venv installation + added to PATH to be available to + non-root users (#3202) + +### Output + +- Change from deprecated `asyncio.get_event_loop()` to create our event loop which + removes DeprecationWarning (#3164) +- Remove logging from internal `blib2to3` library since it regularly emits error logs + about failed caching that can and should be ignored (#3193) + +### Parser + +- Type comments are now included in the AST equivalence check consistently so accidental + deletion raises an error. Though type comments can't be tracked when running on PyPy + 3.7 due to standard library limitations. (#2874) + +### Performance + +- Reduce Black's startup time when formatting a single file by 15-30% (#3211) + +## 22.6.0 + +### Style + +- Fix unstable formatting involving `#fmt: skip` and `# fmt:skip` comments (notice the + lack of spaces) (#2970) + +### Preview style + +- Docstring quotes are no longer moved if it would violate the line length limit (#3044) +- Parentheses around return annotations are now managed (#2990) +- Remove unnecessary parentheses around awaited objects (#2991) +- Remove unnecessary parentheses in `with` statements (#2926) +- Remove trailing newlines after code block open (#3035) + +### Integrations + +- Add `scripts/migrate-black.py` script to ease introduction of Black to a Git project + (#3038) + +### Output + +- Output Python version and implementation as part of `--version` flag (#2997) + +### Packaging + +- Use `tomli` instead of `tomllib` on Python 3.11 builds where `tomllib` is not + available (#2987) + +### Parser + +- [PEP 654](https://peps.python.org/pep-0654/#except) syntax (for example, + `except *ExceptionGroup:`) is now supported (#3016) +- [PEP 646](https://peps.python.org/pep-0646) syntax (for example, + `Array[Batch, *Shape]` or `def fn(*args: *T) -> None`) is now supported (#3071) + +### Vim Plugin + +- Fix `strtobool` function. It didn't parse true/on/false/off. (#3025) + +## 22.3.0 + +### Preview style + +- Code cell separators `#%%` are now standardised to `# %%` (#2919) +- Remove unnecessary parentheses from `except` statements (#2939) +- Remove unnecessary parentheses from tuple unpacking in `for` loops (#2945) +- Avoid magic-trailing-comma in single-element subscripts (#2942) + +### Configuration + +- Do not format `__pypackages__` directories by default (#2836) +- Add support for specifying stable version with `--required-version` (#2832). +- Avoid crashing when the user has no homedir (#2814) +- Avoid crashing when md5 is not available (#2905) +- Fix handling of directory junctions on Windows (#2904) + +### Documentation + +- Update pylint config documentation (#2931) + +### Integrations + +- Move test to disable plugin in Vim/Neovim, which speeds up loading (#2896) + +### Output + +- In verbose mode, log when _Black_ is using user-level config (#2861) + +### Packaging + +- Fix Black to work with Click 8.1.0 (#2966) +- On Python 3.11 and newer, use the standard library's `tomllib` instead of `tomli` + (#2903) +- `black-primer`, the deprecated internal devtool, has been removed and copied to a + [separate repository](https://github.com/cooperlees/black-primer) (#2924) + +### Parser + +- Black can now parse starred expressions in the target of `for` and `async for` + statements, e.g `for item in *items_1, *items_2: pass` (#2879). + +## 22.1.0 + +At long last, _Black_ is no longer a beta product! This is the first non-beta release +and the first release covered by our new +[stability policy](https://black.readthedocs.io/en/stable/the_black_code_style/index.html#stability-policy). + +### Highlights + +- **Remove Python 2 support** (#2740) +- Introduce the `--preview` flag (#2752) + +### Style + +- Deprecate `--experimental-string-processing` and move the functionality under + `--preview` (#2789) +- For stubs, one blank line between class attributes and methods is now kept if there's + at least one pre-existing blank line (#2736) +- Black now normalizes string prefix order (#2297) +- Remove spaces around power operators if both operands are simple (#2726) +- Work around bug that causes unstable formatting in some cases in the presence of the + magic trailing comma (#2807) +- Use parentheses for attribute access on decimal float and int literals (#2799) +- Don't add whitespace for attribute access on hexadecimal, binary, octal, and complex + literals (#2799) +- Treat blank lines in stubs the same inside top-level `if` statements (#2820) +- Fix unstable formatting with semicolons and arithmetic expressions (#2817) +- Fix unstable formatting around magic trailing comma (#2572) + +### Parser + +- Fix mapping cases that contain as-expressions, like `case {"key": 1 | 2 as password}` + (#2686) +- Fix cases that contain multiple top-level as-expressions, like `case 1 as a, 2 as b` + (#2716) +- Fix call patterns that contain as-expressions with keyword arguments, like + `case Foo(bar=baz as quux)` (#2749) +- Tuple unpacking on `return` and `yield` constructs now implies 3.8+ (#2700) +- Unparenthesized tuples on annotated assignments (e.g + `values: Tuple[int, ...] = 1, 2, 3`) now implies 3.8+ (#2708) +- Fix handling of standalone `match()` or `case()` when there is a trailing newline or a + comment inside of the parentheses. (#2760) +- `from __future__ import annotations` statement now implies Python 3.7+ (#2690) + +### Performance + +- Speed-up the new backtracking parser about 4X in general (enabled when + `--target-version` is set to 3.10 and higher). (#2728) +- _Black_ is now compiled with [mypyc](https://github.com/mypyc/mypyc) for an overall 2x + speed-up. 64-bit Windows, MacOS, and Linux (not including musl) are supported. (#1009, + #2431) + +### Configuration + +- Do not accept bare carriage return line endings in pyproject.toml (#2408) +- Add configuration option (`python-cell-magics`) to format cells with custom magics in + Jupyter Notebooks (#2744) +- Allow setting custom cache directory on all platforms with environment variable + `BLACK_CACHE_DIR` (#2739). +- Enable Python 3.10+ by default, without any extra need to specify + `--target-version=py310`. (#2758) +- Make passing `SRC` or `--code` mandatory and mutually exclusive (#2804) + +### Output + +- Improve error message for invalid regular expression (#2678) +- Improve error message when parsing fails during AST safety check by embedding the + underlying SyntaxError (#2693) +- No longer color diff headers white as it's unreadable in light themed terminals + (#2691) +- Text coloring added in the final statistics (#2712) +- Verbose mode also now describes how a project root was discovered and which paths will + be formatted. (#2526) + +### Packaging + +- All upper version bounds on dependencies have been removed (#2718) +- `typing-extensions` is no longer a required dependency in Python 3.10+ (#2772) +- Set `click` lower bound to `8.0.0` (#2791) + +### Integrations + +- Update GitHub action to support containerized runs (#2748) + +### Documentation + +- Change protocol in pip installation instructions to `https://` (#2761) +- Change HTML theme to Furo primarily for its responsive design and mobile support + (#2793) +- Deprecate the `black-primer` tool (#2809) +- Document Python support policy (#2819) + +## 21.12b0 + +### _Black_ + +- Fix determination of f-string expression spans (#2654) +- Fix bad formatting of error messages about EOF in multi-line statements (#2343) +- Functions and classes in blocks now have more consistent surrounding spacing (#2472) + +#### Jupyter Notebook support + +- Cell magics are now only processed if they are known Python cell magics. Earlier, all + cell magics were tokenized, leading to possible indentation errors e.g. with + `%%writefile`. (#2630) +- Fix assignment to environment variables in Jupyter Notebooks (#2642) + +#### Python 3.10 support + +- Point users to using `--target-version py310` if we detect 3.10-only syntax (#2668) +- Fix `match` statements with open sequence subjects, like `match a, b:` or + `match a, *b:` (#2639) (#2659) +- Fix `match`/`case` statements that contain `match`/`case` soft keywords multiple + times, like `match re.match()` (#2661) +- Fix `case` statements with an inline body (#2665) +- Fix styling of starred expressions inside `match` subject (#2667) +- Fix parser error location on invalid syntax in a `match` statement (#2649) +- Fix Python 3.10 support on platforms without ProcessPoolExecutor (#2631) +- Improve parsing performance on code that uses `match` under `--target-version py310` + up to ~50% (#2670) + +### Packaging + +- Remove dependency on `regex` (#2644) (#2663) + +## 21.11b1 + +### _Black_ + +- Bumped regex version minimum to 2021.4.4 to fix Pattern class usage (#2621) + +## 21.11b0 + +### _Black_ + +- Warn about Python 2 deprecation in more cases by improving Python 2 only syntax + detection (#2592) +- Add experimental PyPy support (#2559) +- Add partial support for the match statement. As it's experimental, it's only enabled + when `--target-version py310` is explicitly specified (#2586) +- Add support for parenthesized with (#2586) +- Declare support for Python 3.10 for running Black (#2562) + +### Integrations + +- Fixed vim plugin with Python 3.10 by removing deprecated distutils import (#2610) +- The vim plugin now parses `skip_magic_trailing_comma` from pyproject.toml (#2613) + +## 21.10b0 + +### _Black_ + +- Document stability policy, that will apply for non-beta releases (#2529) +- Add new `--workers` parameter (#2514) +- Fixed feature detection for positional-only arguments in lambdas (#2532) +- Bumped typed-ast version minimum to 1.4.3 for 3.10 compatibility (#2519) +- Fixed a Python 3.10 compatibility issue where the loop argument was still being passed + even though it has been removed (#2580) +- Deprecate Python 2 formatting support (#2523) + +### _Blackd_ + +- Remove dependency on aiohttp-cors (#2500) +- Bump required aiohttp version to 3.7.4 (#2509) + +### _Black-Primer_ + +- Add primer support for --projects (#2555) +- Print primer summary after individual failures (#2570) + +### Integrations + +- Allow to pass `target_version` in the vim plugin (#1319) +- Install build tools in docker file and use multi-stage build to keep the image size + down (#2582) + +## 21.9b0 + +### Packaging + +- Fix missing modules in self-contained binaries (#2466) +- Fix missing toml extra used during installation (#2475) + +## 21.8b0 + +### _Black_ + +- Add support for formatting Jupyter Notebook files (#2357) +- Move from `appdirs` dependency to `platformdirs` (#2375) +- Present a more user-friendly error if .gitignore is invalid (#2414) +- The failsafe for accidentally added backslashes in f-string expressions has been + hardened to handle more edge cases during quote normalization (#2437) +- Avoid changing a function return type annotation's type to a tuple by adding a + trailing comma (#2384) +- Parsing support has been added for unparenthesized walruses in set literals, set + comprehensions, and indices (#2447). +- Pin `setuptools-scm` build-time dependency version (#2457) +- Exclude typing-extensions version 3.10.0.1 due to it being broken on Python 3.10 + (#2460) + +### _Blackd_ + +- Replace sys.exit(-1) with raise ImportError as it plays more nicely with tools that + scan installed packages (#2440) + +### Integrations + +- The provided pre-commit hooks no longer specify `language_version` to avoid overriding + `default_language_version` (#2430) + +## 21.7b0 + +### _Black_ + +- Configuration files using TOML features higher than spec v0.5.0 are now supported + (#2301) +- Add primer support and test for code piped into black via STDIN (#2315) +- Fix internal error when `FORCE_OPTIONAL_PARENTHESES` feature is enabled (#2332) +- Accept empty stdin (#2346) +- Provide a more useful error when parsing fails during AST safety checks (#2304) + +### Docker + +- Add new `latest_release` tag automation to follow latest black release on docker + images (#2374) + +### Integrations + +- The vim plugin now searches upwards from the directory containing the current buffer + instead of the current working directory for pyproject.toml. (#1871) +- The vim plugin now reads the correct string normalization option in pyproject.toml + (#1869) +- The vim plugin no longer crashes Black when there's boolean values in pyproject.toml + (#1869) + +## 21.6b0 + +### _Black_ + +- Fix failure caused by `fmt: skip` and indentation (#2281) +- Account for += assignment when deciding whether to split string (#2312) +- Correct max string length calculation when there are string operators (#2292) +- Fixed option usage when using the `--code` flag (#2259) +- Do not call `uvloop.install()` when _Black_ is used as a library (#2303) +- Added `--required-version` option to require a specific version to be running (#2300) +- Fix incorrect custom breakpoint indices when string group contains fake f-strings + (#2311) +- Fix regression where `R` prefixes would be lowercased for docstrings (#2285) +- Fix handling of named escapes (`\N{...}`) when `--experimental-string-processing` is + used (#2319) + +### Integrations + +- The official Black action now supports choosing what version to use, and supports the + major 3 OSes. (#1940) + +## 21.5b2 + +### _Black_ + +- A space is no longer inserted into empty docstrings (#2249) +- Fix handling of .gitignore files containing non-ASCII characters on Windows (#2229) +- Respect `.gitignore` files in all levels, not only `root/.gitignore` file (apply + `.gitignore` rules like `git` does) (#2225) +- Restored compatibility with Click 8.0 on Python 3.6 when LANG=C used (#2227) +- Add extra uvloop install + import support if in python env (#2258) +- Fix --experimental-string-processing crash when matching parens are not found (#2283) +- Make sure to split lines that start with a string operator (#2286) +- Fix regular expression that black uses to identify f-expressions (#2287) + +### _Blackd_ + +- Add a lower bound for the `aiohttp-cors` dependency. Only 0.4.0 or higher is + supported. (#2231) + +### Packaging + +- Release self-contained x86_64 MacOS binaries as part of the GitHub release pipeline + (#2198) +- Always build binaries with the latest available Python (#2260) + +### Documentation + +- Add discussion of magic comments to FAQ page (#2272) +- `--experimental-string-processing` will be enabled by default in the future (#2273) +- Fix typos discovered by codespell (#2228) +- Fix Vim plugin installation instructions. (#2235) +- Add new Frequently Asked Questions page (#2247) +- Fix encoding + symlink issues preventing proper build on Windows (#2262) + +## 21.5b1 + +### _Black_ + +- Refactor `src/black/__init__.py` into many files (#2206) + +### Documentation + +- Replaced all remaining references to the + [`master`](https://github.com/psf/black/tree/main) branch with the + [`main`](https://github.com/psf/black/tree/main) branch. Some additional changes in + the source code were also made. (#2210) +- Significantly reorganized the documentation to make much more sense. Check them out by + heading over to [the stable docs on RTD](https://black.readthedocs.io/en/stable/). + (#2174) + +## 21.5b0 + +### _Black_ + +- Set `--pyi` mode if `--stdin-filename` ends in `.pyi` (#2169) +- Stop detecting target version as Python 3.9+ with pre-PEP-614 decorators that are + being called but with no arguments (#2182) + +### _Black-Primer_ + +- Add `--no-diff` to black-primer to suppress formatting changes (#2187) + +## 21.4b2 + +### _Black_ + +- Fix crash if the user configuration directory is inaccessible. (#2158) + +- Clarify + [circumstances](https://github.com/psf/black/blob/master/docs/the_black_code_style.md#pragmatism) + in which _Black_ may change the AST (#2159) + +- Allow `.gitignore` rules to be overridden by specifying `exclude` in `pyproject.toml` + or on the command line. (#2170) + +### _Packaging_ + +- Install `primer.json` (used by `black-primer` by default) with black. (#2154) + +## 21.4b1 + +### _Black_ + +- Fix crash on docstrings ending with "\\ ". (#2142) + +- Fix crash when atypical whitespace is cleaned out of dostrings (#2120) + +- Reflect the `--skip-magic-trailing-comma` and `--experimental-string-processing` flags + in the name of the cache file. Without this fix, changes in these flags would not take + effect if the cache had already been populated. (#2131) + +- Don't remove necessary parentheses from assignment expression containing assert / + return statements. (#2143) + +### _Packaging_ + +- Bump pathspec to >= 0.8.1 to solve invalid .gitignore exclusion handling + +## 21.4b0 + +### _Black_ + +- Fixed a rare but annoying formatting instability created by the combination of + optional trailing commas inserted by `Black` and optional parentheses looking at + pre-existing "magic" trailing commas. This fixes issue #1629 and all of its many many + duplicates. (#2126) + +- `Black` now processes one-line docstrings by stripping leading and trailing spaces, + and adding a padding space when needed to break up """". (#1740) + +- `Black` now cleans up leading non-breaking spaces in comments (#2092) + +- `Black` now respects `--skip-string-normalization` when normalizing multiline + docstring quotes (#1637) + +- `Black` no longer removes all empty lines between non-function code and decorators + when formatting typing stubs. Now `Black` enforces a single empty line. (#1646) + +- `Black` no longer adds an incorrect space after a parenthesized assignment expression + in if/while statements (#1655) + +- Added `--skip-magic-trailing-comma` / `-C` to avoid using trailing commas as a reason + to split lines (#1824) + +- fixed a crash when PWD=/ on POSIX (#1631) + +- fixed "I/O operation on closed file" when using --diff (#1664) + +- Prevent coloured diff output being interleaved with multiple files (#1673) + +- Added support for PEP 614 relaxed decorator syntax on python 3.9 (#1711) + +- Added parsing support for unparenthesized tuples and yield expressions in annotated + assignments (#1835) + +- added `--extend-exclude` argument (PR #2005) + +- speed up caching by avoiding pathlib (#1950) + +- `--diff` correctly indicates when a file doesn't end in a newline (#1662) + +- Added `--stdin-filename` argument to allow stdin to respect `--force-exclude` rules + (#1780) + +- Lines ending with `fmt: skip` will now be not formatted (#1800) + +- PR #2053: Black no longer relies on typed-ast for Python 3.8 and higher + +- PR #2053: Python 2 support is now optional, install with + `python3 -m pip install black[python2]` to maintain support. + +- Exclude `venv` directory by default (#1683) + +- Fixed "Black produced code that is not equivalent to the source" when formatting + Python 2 docstrings (#2037) + +### _Packaging_ + +- Self-contained native _Black_ binaries are now provided for releases via GitHub + Releases (#1743) + +## 20.8b1 + +### _Packaging_ + +- explicitly depend on Click 7.1.2 or newer as `Black` no longer works with versions + older than 7.0 + +## 20.8b0 + +### _Black_ + +- re-implemented support for explicit trailing commas: now it works consistently within + any bracket pair, including nested structures (#1288 and duplicates) + +- `Black` now reindents docstrings when reindenting code around it (#1053) + +- `Black` now shows colored diffs (#1266) + +- `Black` is now packaged using 'py3' tagged wheels (#1388) + +- `Black` now supports Python 3.8 code, e.g. star expressions in return statements + (#1121) + +- `Black` no longer normalizes capital R-string prefixes as those have a + community-accepted meaning (#1244) + +- `Black` now uses exit code 2 when specified configuration file doesn't exit (#1361) + +- `Black` now works on AWS Lambda (#1141) + +- added `--force-exclude` argument (#1032) + +- removed deprecated `--py36` option (#1236) + +- fixed `--diff` output when EOF is encountered (#526) + +- fixed `# fmt: off` handling around decorators (#560) + +- fixed unstable formatting with some `# type: ignore` comments (#1113) + +- fixed invalid removal on organizing brackets followed by indexing (#1575) + +- introduced `black-primer`, a CI tool that allows us to run regression tests against + existing open source users of Black (#1402) + +- introduced property-based fuzzing to our test suite based on Hypothesis and + Hypothersmith (#1566) + +- implemented experimental and disabled by default long string rewrapping (#1132), + hidden under a `--experimental-string-processing` flag while it's being worked on; + this is an undocumented and unsupported feature, you lose Internet points for + depending on it (#1609) + +### Vim plugin + +- prefer virtualenv packages over global packages (#1383) + +## 19.10b0 + +- added support for PEP 572 assignment expressions (#711) + +- added support for PEP 570 positional-only arguments (#943) + +- added support for async generators (#593) + +- added support for pre-splitting collections by putting an explicit trailing comma + inside (#826) + +- added `black -c` as a way to format code passed from the command line (#761) + +- --safe now works with Python 2 code (#840) + +- fixed grammar selection for Python 2-specific code (#765) + +- fixed feature detection for trailing commas in function definitions and call sites + (#763) + +- `# fmt: off`/`# fmt: on` comment pairs placed multiple times within the same block of + code now behave correctly (#1005) + +- _Black_ no longer crashes on Windows machines with more than 61 cores (#838) + +- _Black_ no longer crashes on standalone comments prepended with a backslash (#767) + +- _Black_ no longer crashes on `from` ... `import` blocks with comments (#829) + +- _Black_ no longer crashes on Python 3.7 on some platform configurations (#494) + +- _Black_ no longer fails on comments in from-imports (#671) + +- _Black_ no longer fails when the file starts with a backslash (#922) + +- _Black_ no longer merges regular comments with type comments (#1027) + +- _Black_ no longer splits long lines that contain type comments (#997) + +- removed unnecessary parentheses around `yield` expressions (#834) + +- added parentheses around long tuples in unpacking assignments (#832) + +- added parentheses around complex powers when they are prefixed by a unary operator + (#646) + +- fixed bug that led _Black_ format some code with a line length target of 1 (#762) + +- _Black_ no longer introduces quotes in f-string subexpressions on string boundaries + (#863) + +- if _Black_ puts parenthesis around a single expression, it moves comments to the + wrapped expression instead of after the brackets (#872) + +- `blackd` now returns the version of _Black_ in the response headers (#1013) + +- `blackd` can now output the diff of formats on source code when the `X-Diff` header is + provided (#969) + +## 19.3b0 + +- new option `--target-version` to control which Python versions _Black_-formatted code + should target (#618) + +- deprecated `--py36` (use `--target-version=py36` instead) (#724) + +- _Black_ no longer normalizes numeric literals to include `_` separators (#696) + +- long `del` statements are now split into multiple lines (#698) + +- type comments are no longer mangled in function signatures + +- improved performance of formatting deeply nested data structures (#509) + +- _Black_ now properly formats multiple files in parallel on Windows (#632) + +- _Black_ now creates cache files atomically which allows it to be used in parallel + pipelines (like `xargs -P8`) (#673) + +- _Black_ now correctly indents comments in files that were previously formatted with + tabs (#262) + +- `blackd` now supports CORS (#622) + +## 18.9b0 + +- numeric literals are now formatted by _Black_ (#452, #461, #464, #469): + + - numeric literals are normalized to include `_` separators on Python 3.6+ code + + - added `--skip-numeric-underscore-normalization` to disable the above behavior and + leave numeric underscores as they were in the input + + - code with `_` in numeric literals is recognized as Python 3.6+ + + - most letters in numeric literals are lowercased (e.g., in `1e10`, `0x01`) + + - hexadecimal digits are always uppercased (e.g. `0xBADC0DE`) + +- added `blackd`, see + [its documentation](https://github.com/psf/black/blob/18.9b0/README.md#blackd) for + more info (#349) + +- adjacent string literals are now correctly split into multiple lines (#463) + +- trailing comma is now added to single imports that don't fit on a line (#250) + +- cache is now populated when `--check` is successful for a file which speeds up + consecutive checks of properly formatted unmodified files (#448) + +- whitespace at the beginning of the file is now removed (#399) + +- fixed mangling [pweave](http://mpastell.com/pweave/) and + [Spyder IDE](https://www.spyder-ide.org/) special comments (#532) + +- fixed unstable formatting when unpacking big tuples (#267) + +- fixed parsing of `__future__` imports with renames (#389) + +- fixed scope of `# fmt: off` when directly preceding `yield` and other nodes (#385) + +- fixed formatting of lambda expressions with default arguments (#468) + +- fixed `async for` statements: _Black_ no longer breaks them into separate lines (#372) + +- note: the Vim plugin stopped registering `,=` as a default chord as it turned out to + be a bad idea (#415) + +## 18.6b4 + +- hotfix: don't freeze when multiple comments directly precede `# fmt: off` (#371) + +## 18.6b3 + +- typing stub files (`.pyi`) now have blank lines added after constants (#340) + +- `# fmt: off` and `# fmt: on` are now much more dependable: + + - they now work also within bracket pairs (#329) + + - they now correctly work across function/class boundaries (#335) + + - they now work when an indentation block starts with empty lines or misaligned + comments (#334) + +- made Click not fail on invalid environments; note that Click is right but the + likelihood we'll need to access non-ASCII file paths when dealing with Python source + code is low (#277) + +- fixed improper formatting of f-strings with quotes inside interpolated expressions + (#322) + +- fixed unnecessary slowdown when long list literals where found in a file + +- fixed unnecessary slowdown on AST nodes with very many siblings + +- fixed cannibalizing backslashes during string normalization + +- fixed a crash due to symbolic links pointing outside of the project directory (#338) + +## 18.6b2 + +- added `--config` (#65) + +- added `-h` equivalent to `--help` (#316) + +- fixed improper unmodified file caching when `-S` was used + +- fixed extra space in string unpacking (#305) + +- fixed formatting of empty triple quoted strings (#313) + +- fixed unnecessary slowdown in comment placement calculation on lines without comments + +## 18.6b1 + +- hotfix: don't output human-facing information on stdout (#299) + +- hotfix: don't output cake emoji on non-zero return code (#300) + +## 18.6b0 + +- added `--include` and `--exclude` (#270) + +- added `--skip-string-normalization` (#118) + +- added `--verbose` (#283) + +- the header output in `--diff` now actually conforms to the unified diff spec + +- fixed long trivial assignments being wrapped in unnecessary parentheses (#273) + +- fixed unnecessary parentheses when a line contained multiline strings (#232) + +- fixed stdin handling not working correctly if an old version of Click was used (#276) + +- _Black_ now preserves line endings when formatting a file in place (#258) + +## 18.5b1 + +- added `--pyi` (#249) + +- added `--py36` (#249) + +- Python grammar pickle caches are stored with the formatting caches, making _Black_ + work in environments where site-packages is not user-writable (#192) + +- _Black_ now enforces a PEP 257 empty line after a class-level docstring (and/or + fields) and the first method + +- fixed invalid code produced when standalone comments were present in a trailer that + was omitted from line splitting on a large expression (#237) + +- fixed optional parentheses being removed within `# fmt: off` sections (#224) + +- fixed invalid code produced when stars in very long imports were incorrectly wrapped + in optional parentheses (#234) + +- fixed unstable formatting when inline comments were moved around in a trailer that was + omitted from line splitting on a large expression (#238) + +- fixed extra empty line between a class declaration and the first method if no class + docstring or fields are present (#219) + +- fixed extra empty line between a function signature and an inner function or inner + class (#196) + +## 18.5b0 + +- call chains are now formatted according to the + [fluent interfaces](https://en.wikipedia.org/wiki/Fluent_interface) style (#67) + +- data structure literals (tuples, lists, dictionaries, and sets) are now also always + exploded like imports when they don't fit in a single line (#152) + +- slices are now formatted according to PEP 8 (#178) + +- parentheses are now also managed automatically on the right-hand side of assignments + and return statements (#140) + +- math operators now use their respective priorities for delimiting multiline + expressions (#148) + +- optional parentheses are now omitted on expressions that start or end with a bracket + and only contain a single operator (#177) + +- empty parentheses in a class definition are now removed (#145, #180) + +- string prefixes are now standardized to lowercase and `u` is removed on Python 3.6+ + only code and Python 2.7+ code with the `unicode_literals` future import (#188, #198, + #199) + +- typing stub files (`.pyi`) are now formatted in a style that is consistent with PEP + 484 (#207, #210) + +- progress when reformatting many files is now reported incrementally + +- fixed trailers (content with brackets) being unnecessarily exploded into their own + lines after a dedented closing bracket (#119) + +- fixed an invalid trailing comma sometimes left in imports (#185) + +- fixed non-deterministic formatting when multiple pairs of removable parentheses were + used (#183) + +- fixed multiline strings being unnecessarily wrapped in optional parentheses in long + assignments (#215) + +- fixed not splitting long from-imports with only a single name + +- fixed Python 3.6+ file discovery by also looking at function calls with unpacking. + This fixed non-deterministic formatting if trailing commas where used both in function + signatures with stars and function calls with stars but the former would be + reformatted to a single line. + +- fixed crash on dealing with optional parentheses (#193) + +- fixed "is", "is not", "in", and "not in" not considered operators for splitting + purposes + +- fixed crash when dead symlinks where encountered + +## 18.4a4 + +- don't populate the cache on `--check` (#175) + +## 18.4a3 + +- added a "cache"; files already reformatted that haven't changed on disk won't be + reformatted again (#109) + +- `--check` and `--diff` are no longer mutually exclusive (#149) + +- generalized star expression handling, including double stars; this fixes + multiplication making expressions "unsafe" for trailing commas (#132) + +- _Black_ no longer enforces putting empty lines behind control flow statements (#90) + +- _Black_ now splits imports like "Mode 3 + trailing comma" of isort (#127) + +- fixed comment indentation when a standalone comment closes a block (#16, #32) + +- fixed standalone comments receiving extra empty lines if immediately preceding a + class, def, or decorator (#56, #154) + +- fixed `--diff` not showing entire path (#130) + +- fixed parsing of complex expressions after star and double stars in function calls + (#2) + +- fixed invalid splitting on comma in lambda arguments (#133) + +- fixed missing splits of ternary expressions (#141) + +## 18.4a2 + +- fixed parsing of unaligned standalone comments (#99, #112) + +- fixed placement of dictionary unpacking inside dictionary literals (#111) + +- Vim plugin now works on Windows, too + +- fixed unstable formatting when encountering unnecessarily escaped quotes in a string + (#120) + +## 18.4a1 + +- added `--quiet` (#78) + +- added automatic parentheses management (#4) + +- added [pre-commit](https://pre-commit.com) integration (#103, #104) + +- fixed reporting on `--check` with multiple files (#101, #102) + +- fixed removing backslash escapes from raw strings (#100, #105) + +## 18.4a0 + +- added `--diff` (#87) + +- add line breaks before all delimiters, except in cases like commas, to better comply + with PEP 8 (#73) + +- standardize string literals to use double quotes (almost) everywhere (#75) + +- fixed handling of standalone comments within nested bracketed expressions; _Black_ + will no longer produce super long lines or put all standalone comments at the end of + the expression (#22) + +- fixed 18.3a4 regression: don't crash and burn on empty lines with trailing whitespace + (#80) + +- fixed 18.3a4 regression: `# yapf: disable` usage as trailing comment would cause + _Black_ to not emit the rest of the file (#95) + +- when CTRL+C is pressed while formatting many files, _Black_ no longer freaks out with + a flurry of asyncio-related exceptions + +- only allow up to two empty lines on module level and only single empty lines within + functions (#74) + +## 18.3a4 + +- `# fmt: off` and `# fmt: on` are implemented (#5) + +- automatic detection of deprecated Python 2 forms of print statements and exec + statements in the formatted file (#49) + +- use proper spaces for complex expressions in default values of typed function + arguments (#60) + +- only return exit code 1 when --check is used (#50) + +- don't remove single trailing commas from square bracket indexing (#59) + +- don't omit whitespace if the previous factor leaf wasn't a math operator (#55) + +- omit extra space in kwarg unpacking if it's the first argument (#46) + +- omit extra space in + [Sphinx auto-attribute comments](http://www.sphinx-doc.org/en/stable/ext/autodoc.html#directive-autoattribute) + (#68) + +## 18.3a3 + +- don't remove single empty lines outside of bracketed expressions (#19) + +- added ability to pipe formatting from stdin to stdin (#25) + +- restored ability to format code with legacy usage of `async` as a name (#20, #42) + +- even better handling of numpy-style array indexing (#33, again) + +## 18.3a2 + +- changed positioning of binary operators to occur at beginning of lines instead of at + the end, following + [a recent change to PEP 8](https://github.com/python/peps/commit/c59c4376ad233a62ca4b3a6060c81368bd21e85b) + (#21) + +- ignore empty bracket pairs while splitting. This avoids very weirdly looking + formattings (#34, #35) + +- remove a trailing comma if there is a single argument to a call + +- if top level functions were separated by a comment, don't put four empty lines after + the upper function + +- fixed unstable formatting of newlines with imports + +- fixed unintentional folding of post scriptum standalone comments into last statement + if it was a simple statement (#18, #28) + +- fixed missing space in numpy-style array indexing (#33) + +- fixed spurious space after star-based unary expressions (#31) + +## 18.3a1 + +- added `--check` + +- only put trailing commas in function signatures and calls if it's safe to do so. If + the file is Python 3.6+ it's always safe, otherwise only safe if there are no `*args` + or `**kwargs` used in the signature or call. (#8) + +- fixed invalid spacing of dots in relative imports (#6, #13) + +- fixed invalid splitting after comma on unpacked variables in for-loops (#23) + +- fixed spurious space in parenthesized set expressions (#7) + +- fixed spurious space after opening parentheses and in default arguments (#14, #17) + +- fixed spurious space after unary operators when the operand was a complex expression + (#15) + +## 18.3a0 + +- first published version, Happy 🍰 Day 2018! + +- alpha quality + +- date-versioned (see: ) diff --git a/ecosystem/black/pyproject.toml b/ecosystem/black/pyproject.toml new file mode 100644 index 000000000000..30e59e107b79 --- /dev/null +++ b/ecosystem/black/pyproject.toml @@ -0,0 +1,268 @@ +# Example configuration for Black. + +# NOTE: you have to use single-quoted strings in TOML for regular expressions. +# It's the equivalent of r-strings in Python. Multiline strings are treated as +# verbose regular expressions by Black. Use [ ] to denote a significant space +# character. + +[tool.black] +line-length = 88 +target-version = ['py38'] +include = '\.pyi?$' +extend-exclude = ''' +/( + # The following are specific to Black, you probably don't want those. + tests/data/ + | profiling/ + | scripts/generate_schema.py # Uses match syntax +) +''' +# We use the unstable style for formatting Black itself. If you +# want bug-free formatting, you should keep this off. If you want +# stable formatting across releases, you should also keep `preview = true` +# (which is implied by this flag) off. +unstable = true + +# Build system information and other project-specific configuration below. +# NOTE: You don't need this in your own Black configuration. + +[build-system] +requires = ["hatchling>=1.20.0", "hatch-vcs", "hatch-fancy-pypi-readme"] +build-backend = "hatchling.build" + +[project] +name = "black" +description = "The uncompromising code formatter." +license = { text = "MIT" } +requires-python = ">=3.8" +authors = [ + { name = "Łukasz Langa", email = "lukasz@langa.pl" }, +] +keywords = [ + "automation", + "autopep8", + "formatter", + "gofmt", + "pyfmt", + "rustfmt", + "yapf", +] +classifiers = [ + "Development Status :: 5 - Production/Stable", + "Environment :: Console", + "Intended Audience :: Developers", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Topic :: Software Development :: Libraries :: Python Modules", + "Topic :: Software Development :: Quality Assurance", +] +dependencies = [ + "click>=8.0.0", + "mypy_extensions>=0.4.3", + "packaging>=22.0", + "pathspec>=0.9.0", + "platformdirs>=2", + "tomli>=1.1.0; python_version < '3.11'", + "typing_extensions>=4.0.1; python_version < '3.11'", +] +dynamic = ["readme", "version"] + +[project.optional-dependencies] +colorama = ["colorama>=0.4.3"] +uvloop = ["uvloop>=0.15.2"] +d = [ + "aiohttp>=3.7.4; sys_platform != 'win32' or implementation_name != 'pypy'", + "aiohttp>=3.7.4, !=3.9.0; sys_platform == 'win32' and implementation_name == 'pypy'", +] +jupyter = [ + "ipython>=7.8.0", + "tokenize-rt>=3.2.0", +] + +[project.scripts] +black = "black:patched_main" +blackd = "blackd:patched_main [d]" + +[project.entry-points."validate_pyproject.tool_schema"] +black = "black.schema:get_schema" + +[project.urls] +Documentation = "https://black.readthedocs.io/" +Changelog = "https://github.com/psf/black/blob/main/CHANGES.md" +Repository = "https://github.com/psf/black" +Issues = "https://github.com/psf/black/issues" + +[tool.hatch.metadata.hooks.fancy-pypi-readme] +content-type = "text/markdown" +fragments = [ + { path = "README.md" }, + { path = "CHANGES.md" }, +] + +[tool.hatch.version] +source = "vcs" + +[tool.hatch.build.hooks.vcs] +version-file = "src/_black_version.py" +template = ''' +version = "{version}" +''' + +[tool.hatch.build.targets.sdist] +exclude = ["/profiling"] + +[tool.hatch.build.targets.wheel] +only-include = ["src"] +sources = ["src"] +# Note that we change the behaviour of this flag below +macos-max-compat = true + +[tool.hatch.build.targets.wheel.hooks.mypyc] +enable-by-default = false +dependencies = [ + "hatch-mypyc>=0.16.0", + "mypy==1.7.1", + "click==8.1.3", # avoid https://github.com/pallets/click/issues/2558 +] +require-runtime-dependencies = true +exclude = [ + # There's no good reason for blackd to be compiled. + "/src/blackd", + # Not performance sensitive, so save bytes + compilation time: + "/src/blib2to3/__init__.py", + "/src/blib2to3/pgen2/__init__.py", + "/src/black/output.py", + "/src/black/concurrency.py", + "/src/black/files.py", + "/src/black/report.py", + # Breaks the test suite when compiled (and is also useless): + "/src/black/debug.py", + # Compiled modules can't be run directly and that's a problem here: + "/src/black/__main__.py", +] +mypy-args = ["--ignore-missing-imports"] +options = { debug_level = "0" } + +[tool.cibuildwheel] +build-verbosity = 1 + +# So these are the environments we target: +# - Python: CPython 3.8+ only +# - Architecture (64-bit only): amd64 / x86_64, universal2, and arm64 +# - OS: Linux (no musl), Windows, and macOS +build = "cp3*" +skip = ["*-manylinux_i686", "*-musllinux_*", "*-win32", "pp*"] + +# This is the bare minimum needed to run the test suite. Pulling in the full +# test_requirements.txt would download a bunch of other packages not necessary +# here and would slow down the testing step a fair bit. +test-requires = ["pytest>=6.1.1"] +test-command = 'pytest {project} -k "not incompatible_with_mypyc"' +test-extras = ["d"," jupyter"] +# Skip trying to test arm64 builds on Intel Macs. (so cross-compilation doesn't +# straight up crash) +test-skip = ["*-macosx_arm64", "*-macosx_universal2:arm64"] + +[tool.cibuildwheel.environment] +HATCH_BUILD_HOOKS_ENABLE = "1" +MYPYC_OPT_LEVEL = "3" +MYPYC_DEBUG_LEVEL = "0" + +[tool.cibuildwheel.linux] +manylinux-x86_64-image = "manylinux_2_28" +before-build = [ + "yum install -y clang gcc", +] + +[tool.cibuildwheel.linux.environment] +HATCH_BUILD_HOOKS_ENABLE = "1" +MYPYC_OPT_LEVEL = "3" +MYPYC_DEBUG_LEVEL = "0" + +# Black needs Clang to compile successfully on Linux. +CC = "clang" + +[tool.cibuildwheel.macos] +build-frontend = { name = "build", args = ["--no-isolation"] } +# Unfortunately, hatch doesn't respect MACOSX_DEPLOYMENT_TARGET +before-build = [ + "python -m pip install 'hatchling==1.20.0' hatch-vcs hatch-fancy-pypi-readme 'hatch-mypyc>=0.16.0' 'mypy==1.7.1' 'click==8.1.3'", + """sed -i '' -e "600,700s/'10_16'/os.environ['MACOSX_DEPLOYMENT_TARGET'].replace('.', '_')/" $(python -c 'import hatchling.builders.wheel as h; print(h.__file__)') """, +] + +[tool.isort] +atomic = true +profile = "black" +line_length = 88 +skip_gitignore = true +skip_glob = ["tests/data", "profiling"] +known_first_party = ["black", "blib2to3", "blackd", "_black_version"] + +[tool.pytest.ini_options] +# Option below requires `tests/optional.py` +addopts = "--strict-config --strict-markers" +optional-tests = [ + "no_blackd: run when `d` extra NOT installed", + "no_jupyter: run when `jupyter` extra NOT installed", +] +markers = [ + "incompatible_with_mypyc: run when testing mypyc compiled black" +] +xfail_strict = true +filterwarnings = [ + "error", + # this is mitigated by a try/catch in https://github.com/psf/black/pull/2974/ + # this ignore can be removed when support for aiohttp 3.7 is dropped. + '''ignore:Decorator `@unittest_run_loop` is no longer needed in aiohttp 3\.8\+:DeprecationWarning''', + # this is mitigated by a try/catch in https://github.com/psf/black/pull/3198/ + # this ignore can be removed when support for aiohttp 3.x is dropped. + '''ignore:Middleware decorator is deprecated since 4\.0 and its behaviour is default, you can simply remove this decorator:DeprecationWarning''', + # aiohttp is using deprecated cgi modules - Safe to remove when fixed: + # https://github.com/aio-libs/aiohttp/issues/6905 + '''ignore:'cgi' is deprecated and slated for removal in Python 3.13:DeprecationWarning''', + # Work around https://github.com/pytest-dev/pytest/issues/10977 for Python 3.12 + '''ignore:(Attribute s|Attribute n|ast.Str|ast.Bytes|ast.NameConstant|ast.Num) is deprecated and will be removed in Python 3.14:DeprecationWarning''', + # Will be fixed with aiohttp 3.9.0 + # https://github.com/aio-libs/aiohttp/pull/7302 + "ignore:datetime.*utcfromtimestamp\\(\\) is deprecated and scheduled for removal:DeprecationWarning", +] +[tool.coverage.report] +omit = [ + "src/blib2to3/*", + "tests/data/*", + "*/site-packages/*", + ".tox/*" +] +[tool.coverage.run] +relative_files = true +branch = true + +[tool.mypy] +# Specify the target platform details in config, so your developers are +# free to run mypy on Windows, Linux, or macOS and get consistent +# results. +python_version = "3.8" +mypy_path = "src" +strict = true +# Unreachable blocks have been an issue when compiling mypyc, let's try to avoid 'em in the first place. +warn_unreachable = true +implicit_reexport = true +show_error_codes = true +show_column_numbers = true + +[[tool.mypy.overrides]] +module = ["pathspec.*", "IPython.*", "colorama.*", "tokenize_rt.*", "uvloop.*", "_black_version.*"] +ignore_missing_imports = true + +# CI only checks src/, but in case users are running LSP or similar we explicitly ignore +# errors in test data files. +[[tool.mypy.overrides]] +module = ["tests.data.*"] +ignore_errors = true diff --git a/ecosystem/github-wikidata-bot/pyproject.toml b/ecosystem/github-wikidata-bot/pyproject.toml new file mode 100644 index 000000000000..eb430f513a0b --- /dev/null +++ b/ecosystem/github-wikidata-bot/pyproject.toml @@ -0,0 +1,37 @@ +[project] +name = "github-wikidata-bot" +version = "0.4.0" +requires-python = ">=3.12" +license = { text = "BSD-2-Clause-Patent" } +description = "Updates Wikidata entries using metadata from github" +authors = [ + { name = "konstin", email = "konstin@mailbox.org" }, + { name = "Michael Schönitzer", email = "michael@schoenitzer.de" }, +] +dependencies = [ + "CacheControl[filecache]>=0.14,<0.15", + "mwparserfromhell >=0.6.4,<0.7", + "pydantic >=2.7.1", + "pywikibot >=9.1.2,<10", + "sentry-sdk >=2.0.1,<3", + "yarl >=1.9,<2", +] + +[tool.uv] +dev-dependencies = [ + "httpx >=0.27.0,<0.28", + "pytest >=8.0.0,<9", + "ruff >=0.5.0,<0.6", + "tqdm >=4.66.4,<4.67", + "types-requests >=2.31.0.20240406,<3", +] + +[tool.ruff.lint] +extend-select = ["B", "PT", "PTH", "TRY", "UP"] + +[tool.mypy] +ignore_missing_imports = true + +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" diff --git a/ecosystem/home-assistant-core/pyproject.toml b/ecosystem/home-assistant-core/pyproject.toml new file mode 100644 index 000000000000..971f321d3bbd --- /dev/null +++ b/ecosystem/home-assistant-core/pyproject.toml @@ -0,0 +1,845 @@ +[build-system] +requires = ["setuptools==69.2.0", "wheel~=0.43.0"] +build-backend = "setuptools.build_meta" + +[project] +name = "homeassistant" +version = "2024.7.0.dev0" +license = {text = "Apache-2.0"} +description = "Open-source home automation platform running on Python 3." +readme = "README.rst" +authors = [ + {name = "The Home Assistant Authors", email = "hello@home-assistant.io"} +] +keywords = ["home", "automation"] +classifiers = [ + "Development Status :: 5 - Production/Stable", + "Intended Audience :: End Users/Desktop", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Operating System :: OS Independent", + "Programming Language :: Python :: 3.12", + "Topic :: Home Automation", +] +requires-python = ">=3.12.0" +dependencies = [ + "aiodns==3.2.0", + "aiohttp==3.9.5", + "aiohttp_cors==0.7.0", + "aiohttp-fast-url-dispatcher==0.3.0", + "aiohttp-fast-zlib==0.1.0", + "aiozoneinfo==0.2.0", + "astral==2.2", + "async-interrupt==1.1.1", + "attrs==23.2.0", + "atomicwrites-homeassistant==1.4.1", + "awesomeversion==24.2.0", + "bcrypt==4.1.2", + "certifi>=2021.5.30", + "ciso8601==2.3.1", + "fnv-hash-fast==0.5.0", + # hass-nabucasa is imported by helpers which don't depend on the cloud + # integration + "hass-nabucasa==0.81.1", + # When bumping httpx, please check the version pins of + # httpcore, anyio, and h11 in gen_requirements_all + "httpx==0.27.0", + "home-assistant-bluetooth==1.12.1", + "ifaddr==0.2.0", + "Jinja2==3.1.4", + "lru-dict==1.3.0", + "PyJWT==2.8.0", + # PyJWT has loose dependency. We want the latest one. + "cryptography==42.0.8", + "Pillow==10.3.0", + "pyOpenSSL==24.1.0", + "orjson==3.9.15", + "packaging>=23.1", + "pip>=21.3.1", + "psutil-home-assistant==0.0.1", + "python-slugify==8.0.4", + "PyYAML==6.0.1", + "requests==2.32.3", + "SQLAlchemy==2.0.31", + "typing-extensions>=4.12.2,<5.0", + "ulid-transform==0.9.0", + # Constrain urllib3 to ensure we deal with CVE-2020-26137 and CVE-2021-33503 + # Temporary setting an upper bound, to prevent compat issues with urllib3>=2 + # https://github.com/home-assistant/core/issues/97248 + "urllib3>=1.26.5,<2", + "voluptuous==0.13.1", + "voluptuous-serialize==2.6.0", + "yarl==1.9.4", +] + +[project.urls] +"Homepage" = "https://www.home-assistant.io/" +"Source Code" = "https://github.com/home-assistant/core" +"Bug Reports" = "https://github.com/home-assistant/core/issues" +"Docs: Dev" = "https://developers.home-assistant.io/" +"Discord" = "https://www.home-assistant.io/join-chat/" +"Forum" = "https://community.home-assistant.io/" + +[project.scripts] +hass = "homeassistant.__main__:main" + +[tool.setuptools] +platforms = ["any"] +zip-safe = false +include-package-data = true + +[tool.setuptools.packages.find] +include = ["homeassistant*"] + +[tool.pylint.MAIN] +py-version = "3.12" +ignore = [ + "tests", +] +# Use a conservative default here; 2 should speed up most setups and not hurt +# any too bad. Override on command line as appropriate. +jobs = 2 +init-hook = """\ + from pathlib import Path; \ + import sys; \ + + from pylint.config import find_default_config_files; \ + + sys.path.append( \ + str(Path(next(find_default_config_files())).parent.joinpath('pylint/plugins')) + ) \ + """ +load-plugins = [ + "pylint.extensions.code_style", + "pylint.extensions.typing", + "hass_enforce_coordinator_module", + "hass_enforce_sorted_platforms", + "hass_enforce_super_call", + "hass_enforce_type_hints", + "hass_inheritance", + "hass_imports", + "hass_logger", + "pylint_per_file_ignores", +] +persistent = false +extension-pkg-allow-list = [ + "av.audio.stream", + "av.logging", + "av.stream", + "ciso8601", + "orjson", + "cv2", +] +fail-on = [ + "I", +] + +[tool.pylint.BASIC] +class-const-naming-style = "any" + +[tool.pylint."MESSAGES CONTROL"] +# Reasons disabled: +# format - handled by ruff +# locally-disabled - it spams too much +# duplicate-code - unavoidable +# cyclic-import - doesn't test if both import on load +# abstract-class-little-used - prevents from setting right foundation +# unused-argument - generic callbacks and setup methods create a lot of warnings +# too-many-* - are not enforced for the sake of readability +# too-few-* - same as too-many-* +# abstract-method - with intro of async there are always methods missing +# inconsistent-return-statements - doesn't handle raise +# too-many-ancestors - it's too strict. +# wrong-import-order - isort guards this +# consider-using-f-string - str.format sometimes more readable +# possibly-used-before-assignment - too many errors / not necessarily issues +# --- +# Pylint CodeStyle plugin +# consider-using-namedtuple-or-dataclass - too opinionated +# consider-using-assignment-expr - decision to use := better left to devs +disable = [ + "format", + "abstract-method", + "cyclic-import", + "duplicate-code", + "inconsistent-return-statements", + "locally-disabled", + "not-context-manager", + "too-few-public-methods", + "too-many-ancestors", + "too-many-arguments", + "too-many-instance-attributes", + "too-many-lines", + "too-many-locals", + "too-many-public-methods", + "too-many-boolean-expressions", + "wrong-import-order", + "consider-using-f-string", + "consider-using-namedtuple-or-dataclass", + "consider-using-assignment-expr", + "possibly-used-before-assignment", + + # Handled by ruff + # Ref: + "await-outside-async", # PLE1142 + "bad-str-strip-call", # PLE1310 + "bad-string-format-type", # PLE1307 + "bidirectional-unicode", # PLE2502 + "continue-in-finally", # PLE0116 + "duplicate-bases", # PLE0241 + "format-needs-mapping", # F502 + "function-redefined", # F811 + # Needed because ruff does not understand type of __all__ generated by a function + # "invalid-all-format", # PLE0605 + "invalid-all-object", # PLE0604 + "invalid-character-backspace", # PLE2510 + "invalid-character-esc", # PLE2513 + "invalid-character-nul", # PLE2514 + "invalid-character-sub", # PLE2512 + "invalid-character-zero-width-space", # PLE2515 + "logging-too-few-args", # PLE1206 + "logging-too-many-args", # PLE1205 + "missing-format-string-key", # F524 + "mixed-format-string", # F506 + "no-method-argument", # N805 + "no-self-argument", # N805 + "nonexistent-operator", # B002 + "nonlocal-without-binding", # PLE0117 + "not-in-loop", # F701, F702 + "notimplemented-raised", # F901 + "return-in-init", # PLE0101 + "return-outside-function", # F706 + "syntax-error", # E999 + "too-few-format-args", # F524 + "too-many-format-args", # F522 + "too-many-star-expressions", # F622 + "truncated-format-string", # F501 + "undefined-all-variable", # F822 + "undefined-variable", # F821 + "used-prior-global-declaration", # PLE0118 + "yield-inside-async-function", # PLE1700 + "yield-outside-function", # F704 + "anomalous-backslash-in-string", # W605 + "assert-on-string-literal", # PLW0129 + "assert-on-tuple", # F631 + "bad-format-string", # W1302, F + "bad-format-string-key", # W1300, F + "bare-except", # E722 + "binary-op-exception", # PLW0711 + "cell-var-from-loop", # B023 + # "dangerous-default-value", # B006, ruff catches new occurrences, needs more work + "duplicate-except", # B014 + "duplicate-key", # F601 + "duplicate-string-formatting-argument", # F + "duplicate-value", # F + "eval-used", # S307 + "exec-used", # S102 + "expression-not-assigned", # B018 + "f-string-without-interpolation", # F541 + "forgotten-debug-statement", # T100 + "format-string-without-interpolation", # F + # "global-statement", # PLW0603, ruff catches new occurrences, needs more work + "global-variable-not-assigned", # PLW0602 + "implicit-str-concat", # ISC001 + "import-self", # PLW0406 + "inconsistent-quotes", # Q000 + "invalid-envvar-default", # PLW1508 + "keyword-arg-before-vararg", # B026 + "logging-format-interpolation", # G + "logging-fstring-interpolation", # G + "logging-not-lazy", # G + "misplaced-future", # F404 + "named-expr-without-context", # PLW0131 + "nested-min-max", # PLW3301 + "pointless-statement", # B018 + "raise-missing-from", # B904 + "redefined-builtin", # A001 + "try-except-raise", # TRY302 + "unused-argument", # ARG001, we don't use it + "unused-format-string-argument", #F507 + "unused-format-string-key", # F504 + "unused-import", # F401 + "unused-variable", # F841 + "useless-else-on-loop", # PLW0120 + "wildcard-import", # F403 + "bad-classmethod-argument", # N804 + "consider-iterating-dictionary", # SIM118 + "empty-docstring", # D419 + "invalid-name", # N815 + "line-too-long", # E501, disabled globally + "missing-class-docstring", # D101 + "missing-final-newline", # W292 + "missing-function-docstring", # D103 + "missing-module-docstring", # D100 + "multiple-imports", #E401 + "singleton-comparison", # E711, E712 + "subprocess-run-check", # PLW1510 + "superfluous-parens", # UP034 + "ungrouped-imports", # I001 + "unidiomatic-typecheck", # E721 + "unnecessary-direct-lambda-call", # PLC3002 + "unnecessary-lambda-assignment", # PLC3001 + "unnecessary-pass", # PIE790 + "unneeded-not", # SIM208 + "useless-import-alias", # PLC0414 + "wrong-import-order", # I001 + "wrong-import-position", # E402 + "comparison-of-constants", # PLR0133 + "comparison-with-itself", # PLR0124 + "consider-alternative-union-syntax", # UP007 + "consider-merging-isinstance", # PLR1701 + "consider-using-alias", # UP006 + "consider-using-dict-comprehension", # C402 + "consider-using-generator", # C417 + "consider-using-get", # SIM401 + "consider-using-set-comprehension", # C401 + "consider-using-sys-exit", # PLR1722 + "consider-using-ternary", # SIM108 + "literal-comparison", # F632 + "property-with-parameters", # PLR0206 + "super-with-arguments", # UP008 + "too-many-branches", # PLR0912 + "too-many-return-statements", # PLR0911 + "too-many-statements", # PLR0915 + "trailing-comma-tuple", # COM818 + "unnecessary-comprehension", # C416 + "use-a-generator", # C417 + "use-dict-literal", # C406 + "use-list-literal", # C405 + "useless-object-inheritance", # UP004 + "useless-return", # PLR1711 + "no-else-break", # RET508 + "no-else-continue", # RET507 + "no-else-raise", # RET506 + "no-else-return", # RET505 + "broad-except", # BLE001 + "protected-access", # SLF001 + # "no-self-use", # PLR6301 # Optional plugin, not enabled + + # Handled by mypy + # Ref: + "abstract-class-instantiated", + "arguments-differ", + "assigning-non-slot", + "assignment-from-no-return", + "assignment-from-none", + "bad-exception-cause", + "bad-format-character", + "bad-reversed-sequence", + "bad-super-call", + "bad-thread-instantiation", + "catching-non-exception", + "comparison-with-callable", + "deprecated-class", + "dict-iter-missing-items", + "format-combined-specification", + "global-variable-undefined", + "import-error", + "inconsistent-mro", + "inherit-non-class", + "init-is-generator", + "invalid-class-object", + "invalid-enum-extension", + "invalid-envvar-value", + "invalid-format-returned", + "invalid-hash-returned", + "invalid-metaclass", + "invalid-overridden-method", + "invalid-repr-returned", + "invalid-sequence-index", + "invalid-slice-index", + "invalid-slots-object", + "invalid-slots", + "invalid-star-assignment-target", + "invalid-str-returned", + "invalid-unary-operand-type", + "invalid-unicode-codec", + "isinstance-second-argument-not-valid-type", + "method-hidden", + "misplaced-format-function", + "missing-format-argument-key", + "missing-format-attribute", + "missing-kwoa", + "no-member", + "no-value-for-parameter", + "non-iterator-returned", + "non-str-assignment-to-dunder-name", + "nonlocal-and-global", + "not-a-mapping", + "not-an-iterable", + "not-async-context-manager", + "not-callable", + "not-context-manager", + "overridden-final-method", + "raising-bad-type", + "raising-non-exception", + "redundant-keyword-arg", + "relative-beyond-top-level", + "self-cls-assignment", + "signature-differs", + "star-needs-assignment-target", + "subclassed-final-class", + "super-without-brackets", + "too-many-function-args", + "typevar-double-variance", + "typevar-name-mismatch", + "unbalanced-dict-unpacking", + "unbalanced-tuple-unpacking", + "unexpected-keyword-arg", + "unhashable-member", + "unpacking-non-sequence", + "unsubscriptable-object", + "unsupported-assignment-operation", + "unsupported-binary-operation", + "unsupported-delete-operation", + "unsupported-membership-test", + "used-before-assignment", + "using-final-decorator-in-unsupported-version", + "wrong-exception-operation", +] +enable = [ + #"useless-suppression", # temporarily every now and then to clean them up + "use-symbolic-message-instead", +] +per-file-ignores = [ + # redefined-outer-name: Tests reference fixtures in the test function + # use-implicit-booleaness-not-comparison: Tests need to validate that a list + # or a dict is returned + "/tests/:redefined-outer-name,use-implicit-booleaness-not-comparison", +] + +[tool.pylint.REPORTS] +score = false + +[tool.pylint.TYPECHECK] +ignored-classes = [ + "_CountingAttr", # for attrs +] +mixin-class-rgx = ".*[Mm]ix[Ii]n" + +[tool.pylint.FORMAT] +expected-line-ending-format = "LF" + +[tool.pylint.EXCEPTIONS] +overgeneral-exceptions = [ + "builtins.BaseException", + "builtins.Exception", + # "homeassistant.exceptions.HomeAssistantError", # too many issues +] + +[tool.pylint.TYPING] +runtime-typing = false + +[tool.pylint.CODE_STYLE] +max-line-length-suggestions = 72 + +[tool.pytest.ini_options] +testpaths = [ + "tests", +] +norecursedirs = [ + ".git", + "testing_config", +] +log_format = "%(asctime)s.%(msecs)03d %(levelname)-8s %(threadName)s %(name)s:%(filename)s:%(lineno)s %(message)s" +log_date_format = "%Y-%m-%d %H:%M:%S" +asyncio_mode = "auto" +filterwarnings = [ + "error::sqlalchemy.exc.SAWarning", + + # -- HomeAssistant - aiohttp + # Overwrite web.Application to pass a custom default argument to _make_request + "ignore:Inheritance class HomeAssistantApplication from web.Application is discouraged:DeprecationWarning", + # Hass wraps `ClientSession.close` to emit a warning if the session is closed accidentally + "ignore:Setting custom ClientSession.close attribute is discouraged:DeprecationWarning:homeassistant.helpers.aiohttp_client", + # Modify app state for testing + "ignore:Changing state of started or joined application is deprecated:DeprecationWarning:tests.components.http.test_ban", + + # -- Tests + # Ignore custom pytest marks + "ignore:Unknown pytest.mark.disable_autouse_fixture:pytest.PytestUnknownMarkWarning:tests.components.met", + "ignore:Unknown pytest.mark.dataset:pytest.PytestUnknownMarkWarning:tests.components.screenlogic", + + # -- design choice 3rd party + # https://github.com/gwww/elkm1/blob/2.2.7/elkm1_lib/util.py#L8-L19 + "ignore:ssl.TLSVersion.TLSv1 is deprecated:DeprecationWarning:elkm1_lib.util", + # https://github.com/michaeldavie/env_canada/blob/v0.6.2/env_canada/ec_cache.py + "ignore:Inheritance class CacheClientSession from ClientSession is discouraged:DeprecationWarning:env_canada.ec_cache", + # https://github.com/allenporter/ical/pull/215 + # https://github.com/allenporter/ical/blob/8.0.0/ical/util.py#L20-L22 + "ignore:datetime.*utcnow\\(\\) is deprecated and scheduled for removal:DeprecationWarning:ical.util", + # https://github.com/bachya/regenmaschine/blob/2024.03.0/regenmaschine/client.py#L52 + "ignore:ssl.TLSVersion.SSLv3 is deprecated:DeprecationWarning:regenmaschine.client", + + # -- Setuptools DeprecationWarnings + # https://github.com/googleapis/google-cloud-python/issues/11184 + # https://github.com/zopefoundation/meta/issues/194 + "ignore:Deprecated call to `pkg_resources.declare_namespace\\(('google.*'|'pywinusb'|'repoze'|'xbox'|'zope')\\)`:DeprecationWarning:pkg_resources", + + # -- tracked upstream / open PRs + # https://github.com/certbot/certbot/issues/9828 - v2.10.0 + "ignore:X509Extension support in pyOpenSSL is deprecated. You should use the APIs in cryptography:DeprecationWarning:acme.crypto_util", + # https://github.com/influxdata/influxdb-client-python/issues/603 - v1.42.0 + # https://github.com/influxdata/influxdb-client-python/pull/652 + "ignore:datetime.*utcfromtimestamp\\(\\) is deprecated and scheduled for removal:DeprecationWarning:influxdb_client.client.write.point", + # https://github.com/beetbox/mediafile/issues/67 - v0.12.0 + "ignore:'imghdr' is deprecated and slated for removal in Python 3.13:DeprecationWarning:mediafile", + # https://github.com/foxel/python_ndms2_client/issues/6 - v0.1.3 + # https://github.com/foxel/python_ndms2_client/pull/8 + "ignore:'telnetlib' is deprecated and slated for removal in Python 3.13:DeprecationWarning:ndms2_client.connection", + + # -- fixed, waiting for release / update + # https://github.com/mkmer/AIOAladdinConnect/commit/8851fff4473d80d70ac518db2533f0fbef63b69c - >=0.2.0 + "ignore:module 'sre_constants' is deprecated:DeprecationWarning:AIOAladdinConnect", + # https://github.com/bachya/aiopurpleair/pull/200 - >=2023.10.0 + "ignore:datetime.*utcfromtimestamp\\(\\) is deprecated and scheduled for removal:DeprecationWarning:aiopurpleair.helpers.validators", + # https://github.com/DataDog/datadogpy/pull/290 - >=0.23.0 + "ignore:invalid escape sequence:SyntaxWarning:.*datadog.dogstatsd.base", + # https://github.com/DataDog/datadogpy/pull/566/files - >=0.37.0 + "ignore:pkg_resources is deprecated as an API:DeprecationWarning:datadog.util.compat", + # https://github.com/fwestenberg/devialet/pull/6 - >1.4.5 + "ignore:datetime.*utcnow\\(\\) is deprecated and scheduled for removal:DeprecationWarning:devialet.devialet_api", + # https://github.com/httplib2/httplib2/pull/226 - >=0.21.0 + "ignore:ssl.PROTOCOL_TLS is deprecated:DeprecationWarning:httplib2", + # https://github.com/jaraco/jaraco.abode/commit/9e3e789efc96cddcaa15f920686bbeb79a7469e0 - update jaraco.abode to >=5.1.0 + "ignore:`jaraco.functools.call_aside` is deprecated, use `jaraco.functools.invoke` instead:DeprecationWarning:jaraco.abode.helpers.timeline", + # https://github.com/majuss/lupupy/pull/15 - >0.3.2 + "ignore:\"is not\" with 'str' literal. Did you mean \"!=\"?:SyntaxWarning:.*lupupy.devices.alarm", + # https://github.com/nextcord/nextcord/pull/1095 - >2.6.1 + "ignore:pkg_resources is deprecated as an API:DeprecationWarning:nextcord.health_check", + # https://github.com/eclipse/paho.mqtt.python/issues/653 - >=2.0.0 + # https://github.com/eclipse/paho.mqtt.python/pull/665 + "ignore:ssl.PROTOCOL_TLS is deprecated:DeprecationWarning:paho.mqtt.client", + # https://github.com/rytilahti/python-miio/pull/1809 - >=0.6.0.dev0 + "ignore:datetime.*utcnow\\(\\) is deprecated and scheduled for removal:DeprecationWarning:miio.protocol", + "ignore:datetime.*utcnow\\(\\) is deprecated and scheduled for removal:DeprecationWarning:miio.miioprotocol", + # https://github.com/hunterjm/python-onvif-zeep-async/pull/51 - >3.1.12 + "ignore:datetime.*utcnow\\(\\) is deprecated and scheduled for removal:DeprecationWarning:onvif.client", + # https://github.com/pkkid/python-plexapi/pull/1404 - >4.15.13 + "ignore:invalid escape sequence:SyntaxWarning:.*plexapi.base", + # https://github.com/googleapis/python-pubsub/commit/060f00bcea5cd129be3a2d37078535cc97b4f5e8 - >=2.13.12 + "ignore:pkg_resources is deprecated as an API:DeprecationWarning:google.pubsub_v1.services.publisher.client", + # https://github.com/okunishinishi/python-stringcase/commit/6a5c5bbd3fe5337862abc7fd0853a0f36e18b2e1 - >1.2.0 + "ignore:invalid escape sequence:SyntaxWarning:.*stringcase", + # https://github.com/timmo001/system-bridge-connector/pull/27 - >=4.1.0 + "ignore:pkg_resources is deprecated as an API:DeprecationWarning:systembridgeconnector.version", + # https://github.com/jschlyter/ttls/commit/d64f1251397b8238cf6a35bea64784de25e3386c - >=1.8.1 + "ignore:pkg_resources is deprecated as an API:DeprecationWarning:ttls", + # https://github.com/mvantellingen/python-zeep/pull/1364 - >4.2.1 + "ignore:'cgi' is deprecated and slated for removal in Python 3.13:DeprecationWarning:zeep.utils", + # https://github.com/vacanza/python-holidays/discussions/1800 + "ignore::DeprecationWarning:holidays", + + # -- fixed for Python 3.13 + # https://github.com/rhasspy/wyoming/commit/e34af30d455b6f2bb9e5cfb25fad8d276914bc54 - >=1.4.2 + "ignore:'audioop' is deprecated and slated for removal in Python 3.13:DeprecationWarning:wyoming.audio", + + # -- other + # Locale changes might take some time to resolve upstream + "ignore:'locale.getdefaultlocale' is deprecated and slated for removal in Python 3.15:DeprecationWarning:micloud.micloud", + # https://github.com/protocolbuffers/protobuf - v4.25.1 + "ignore:Type google._upb._message.(Message|Scalar)MapContainer uses PyType_Spec with a metaclass that has custom tp_new. .* Python 3.14:DeprecationWarning", + # https://github.com/MatsNl/pyatag/issues/11 - v0.3.7.1 + "ignore:datetime.*utcnow\\(\\) is deprecated and scheduled for removal:DeprecationWarning:pyatag.gateway", + # https://github.com/lidatong/dataclasses-json/issues/328 + # https://github.com/lidatong/dataclasses-json/pull/351 + "ignore:The 'default' argument to fields is deprecated. Use 'dump_default' instead:DeprecationWarning:dataclasses_json.mm", + # https://pypi.org/project/emulated-roku/ - v0.3.0 - 2023-12-19 + # https://github.com/martonperei/emulated_roku + "ignore:loop argument is deprecated:DeprecationWarning:emulated_roku", + # https://github.com/thecynic/pylutron - v0.2.13 + "ignore:setDaemon\\(\\) is deprecated, set the daemon attribute instead:DeprecationWarning:pylutron", + # Wrong stacklevel + # https://bugs.launchpad.net/beautifulsoup/+bug/2034451 + "ignore:It looks like you're parsing an XML document using an HTML parser:UserWarning:html.parser", + # New in aiohttp - v3.9.0 + "ignore:It is recommended to use web.AppKey instances for keys:UserWarning:(homeassistant|tests|aiohttp_cors)", + # - SyntaxWarnings + # https://pypi.org/project/aprslib/ - v0.7.2 - 2022-07-10 + "ignore:invalid escape sequence:SyntaxWarning:.*aprslib.parsing.common", + # https://pypi.org/project/pyblackbird/ - v0.6 - 2023-03-15 + # https://github.com/koolsb/pyblackbird/pull/9 -> closed + "ignore:invalid escape sequence:SyntaxWarning:.*pyblackbird", + # https://pypi.org/project/pyws66i/ - v1.1 - 2022-04-05 + "ignore:invalid escape sequence:SyntaxWarning:.*pyws66i", + # https://pypi.org/project/sanix/ - v1.0.6 - 2024-05-01 + # https://github.com/tomaszsluszniak/sanix_py/blob/v1.0.6/sanix/__init__.py#L42 + "ignore:invalid escape sequence:SyntaxWarning:.*sanix", + # https://pypi.org/project/sleekxmppfs/ - v1.4.1 - 2022-08-18 + "ignore:invalid escape sequence:SyntaxWarning:.*sleekxmppfs.thirdparty.mini_dateutil", # codespell:ignore thirdparty + # https://pypi.org/project/vobject/ - v0.9.7 - 2024-03-25 + # https://github.com/py-vobject/vobject + "ignore:invalid escape sequence:SyntaxWarning:.*vobject.base", + # - pkg_resources + # https://pypi.org/project/aiomusiccast/ - v0.14.8 - 2023-03-20 + "ignore:pkg_resources is deprecated as an API:DeprecationWarning:aiomusiccast", + # https://pypi.org/project/habitipy/ - v0.3.1 - 2019-01-14 / 2024-04-28 + "ignore:pkg_resources is deprecated as an API:DeprecationWarning:habitipy.api", + # https://github.com/eavanvalkenburg/pysiaalarm/blob/v3.1.1/src/pysiaalarm/data/data.py#L7 - v3.1.1 - 2023-04-17 + "ignore:pkg_resources is deprecated as an API:DeprecationWarning:pysiaalarm.data.data", + # https://pypi.org/project/pybotvac/ - v0.0.25 - 2024-04-11 + "ignore:pkg_resources is deprecated as an API:DeprecationWarning:pybotvac.version", + # https://github.com/home-assistant-ecosystem/python-mystrom/blob/2.2.0/pymystrom/__init__.py#L10 - v2.2.0 - 2023-05-21 + "ignore:pkg_resources is deprecated as an API:DeprecationWarning:pymystrom", + # https://pypi.org/project/velbus-aio/ - v2024.4.1 + # https://github.com/Cereal2nd/velbus-aio/blob/2024.4.1/velbusaio/handler.py#L12 + "ignore:pkg_resources is deprecated as an API:DeprecationWarning:velbusaio.handler", + + # -- Python 3.13 + # HomeAssistant + "ignore:'audioop' is deprecated and slated for removal in Python 3.13:DeprecationWarning:homeassistant.components.assist_pipeline.websocket_api", + # https://pypi.org/project/nextcord/ - v2.6.0 - 2023-09-23 + # https://github.com/nextcord/nextcord/issues/1174 + # https://github.com/nextcord/nextcord/blob/v2.6.1/nextcord/player.py#L5 + "ignore:'audioop' is deprecated and slated for removal in Python 3.13:DeprecationWarning:nextcord.player", + # https://pypi.org/project/pylutron/ - v0.2.12 - 2024-02-12 + # https://github.com/thecynic/pylutron/issues/89 + "ignore:'telnetlib' is deprecated and slated for removal in Python 3.13:DeprecationWarning:pylutron", + # https://pypi.org/project/SpeechRecognition/ - v3.10.4 - 2024-05-05 + # https://github.com/Uberi/speech_recognition/blob/3.10.4/speech_recognition/__init__.py#L7 + "ignore:'aifc' is deprecated and slated for removal in Python 3.13:DeprecationWarning:speech_recognition", + # https://pypi.org/project/voip-utils/ - v0.1.0 - 2023-06-28 + # https://github.com/home-assistant-libs/voip-utils/blob/v0.1.0/voip_utils/rtp_audio.py#L2 + "ignore:'audioop' is deprecated and slated for removal in Python 3.13:DeprecationWarning:voip_utils.rtp_audio", + + # -- Python 3.13 - unmaintained projects, last release about 2+ years + # https://pypi.org/project/pydub/ - v0.25.1 - 2021-03-10 + "ignore:'audioop' is deprecated and slated for removal in Python 3.13:DeprecationWarning:pydub.utils", + # https://github.com/heathbar/plum-lightpad-python/issues/7 - v0.0.11 - 2018-10-16 + "ignore:'telnetlib' is deprecated and slated for removal in Python 3.13:DeprecationWarning:plumlightpad.lightpad", + # https://pypi.org/project/pyws66i/ - v1.1 - 2022-04-05 + # https://github.com/ssaenger/pyws66i/blob/v1.1/pyws66i/__init__.py#L2 + "ignore:'telnetlib' is deprecated and slated for removal in Python 3.13:DeprecationWarning:pyws66i", + + # -- unmaintained projects, last release about 2+ years + # https://pypi.org/project/agent-py/ - v0.0.23 - 2020-06-04 + "ignore:with timeout\\(\\) is deprecated:DeprecationWarning:agent.a", + # https://pypi.org/project/aiomodernforms/ - v0.1.8 - 2021-06-27 + "ignore:with timeout\\(\\) is deprecated:DeprecationWarning:aiomodernforms.modernforms", + # https://pypi.org/project/alarmdecoder/ - v1.13.11 - 2021-06-01 + "ignore:invalid escape sequence:SyntaxWarning:.*alarmdecoder", + # https://pypi.org/project/directv/ - v0.4.0 - 2020-09-12 + "ignore:with timeout\\(\\) is deprecated:DeprecationWarning:directv.directv", + "ignore:datetime.*utcnow\\(\\) is deprecated and scheduled for removal:DeprecationWarning:directv.models", + # https://pypi.org/project/foobot_async/ - v1.0.0 - 2020-11-24 + "ignore:with timeout\\(\\) is deprecated:DeprecationWarning:foobot_async", + # https://pypi.org/project/httpsig/ - v1.3.0 - 2018-11-28 + "ignore:pkg_resources is deprecated as an API:DeprecationWarning:httpsig", + # https://pypi.org/project/influxdb/ - v5.3.2 - 2024-04-18 (archived) + "ignore:datetime.*utcfromtimestamp\\(\\) is deprecated and scheduled for removal:DeprecationWarning:influxdb.line_protocol", + # https://pypi.org/project/lark-parser/ - v0.12.0 - 2021-08-30 -> moved to `lark` + # https://pypi.org/project/commentjson/ - v0.9.0 - 2020-10-05 + # https://github.com/vaidik/commentjson/issues/51 + # https://github.com/vaidik/commentjson/pull/52 + # Fixed upstream, commentjson depends on old version and seems to be unmaintained + "ignore:module '(sre_parse|sre_constants)' is deprecate:DeprecationWarning:lark.utils", + # https://pypi.org/project/lomond/ - v0.3.3 - 2018-09-21 + "ignore:ssl.PROTOCOL_TLS is deprecated:DeprecationWarning:lomond.session", + # https://pypi.org/project/oauth2client/ - v4.1.3 - 2018-09-07 (archived) + "ignore:datetime.*utcnow\\(\\) is deprecated and scheduled for removal:DeprecationWarning:oauth2client.client", + # https://pypi.org/project/opuslib/ - v3.0.1 - 2018-01-16 + "ignore:\"is not\" with 'int' literal. Did you mean \"!=\"?:SyntaxWarning:.*opuslib.api.decoder", + # https://pypi.org/project/passlib/ - v1.7.4 - 2020-10-08 + "ignore:'crypt' is deprecated and slated for removal in Python 3.13:DeprecationWarning:passlib.utils", + # https://pypi.org/project/pilight/ - v0.1.1 - 2016-10-19 + "ignore:pkg_resources is deprecated as an API:DeprecationWarning:pilight", + # https://pypi.org/project/plumlightpad/ - v0.0.11 - 2018-10-16 + "ignore:invalid escape sequence:SyntaxWarning:.*plumlightpad.plumdiscovery", + "ignore:\"is\" with 'int' literal. Did you mean \"==\"?:SyntaxWarning:.*plumlightpad.(lightpad|logicalload)", + # https://pypi.org/project/pure-python-adb/ - v0.3.0.dev0 - 2020-08-05 + "ignore:invalid escape sequence:SyntaxWarning:.*ppadb", + # https://pypi.org/project/pydub/ - v0.25.1 - 2021-03-10 + "ignore:invalid escape sequence:SyntaxWarning:.*pydub.utils", + # https://pypi.org/project/pyiss/ - v1.0.1 - 2016-12-19 + "ignore:\"is\" with 'int' literal. Did you mean \"==\"?:SyntaxWarning:.*pyiss", + # https://pypi.org/project/PyMetEireann/ - v2021.8.0 - 2021-08-16 + "ignore:datetime.*utcnow\\(\\) is deprecated and scheduled for removal:DeprecationWarning:meteireann", + # https://pypi.org/project/pyowm/ - v3.3.0 - 2022-02-14 + # https://github.com/csparpa/pyowm/issues/435 + # https://github.com/csparpa/pyowm/blob/3.3.0/pyowm/commons/cityidregistry.py#L7 + "ignore:pkg_resources is deprecated as an API:DeprecationWarning:pyowm.commons.cityidregistry", + # https://pypi.org/project/PyPasser/ - v0.0.5 - 2021-10-21 + "ignore:invalid escape sequence:SyntaxWarning:.*pypasser.utils", + # https://pypi.org/project/pyqwikswitch/ - v0.94 - 2019-08-19 + "ignore:client.loop property is deprecated:DeprecationWarning:pyqwikswitch.async_", + "ignore:with timeout\\(\\) is deprecated:DeprecationWarning:pyqwikswitch.async_", + # https://pypi.org/project/Rx/ - v3.2.0 - 2021-04-25 + "ignore:datetime.*utcfromtimestamp\\(\\) is deprecated and scheduled for removal:DeprecationWarning:rx.internal.constants", + # https://pypi.org/project/rxv/ - v0.7.0 - 2021-10-10 + "ignore:defusedxml.cElementTree is deprecated, import from defusedxml.ElementTree instead:DeprecationWarning:rxv.ssdp", + # https://pypi.org/project/webrtcvad/ - v2.0.10 - 2017-01-08 + "ignore:pkg_resources is deprecated as an API:DeprecationWarning:webrtcvad", +] + +[tool.ruff] +required-version = ">=0.4.8" + +[tool.ruff.lint] +select = [ + "A001", # Variable {name} is shadowing a Python builtin + "B002", # Python does not support the unary prefix increment + "B005", # Using .strip() with multi-character strings is misleading + "B007", # Loop control variable {name} not used within loop body + "B014", # Exception handler with duplicate exception + "B015", # Pointless comparison. Did you mean to assign a value? Otherwise, prepend assert or remove it. + "B017", # pytest.raises(BaseException) should be considered evil + "B018", # Found useless attribute access. Either assign it to a variable or remove it. + "B023", # Function definition does not bind loop variable {name} + "B026", # Star-arg unpacking after a keyword argument is strongly discouraged + "B032", # Possible unintentional type annotation (using :). Did you mean to assign (using =)? + "B904", # Use raise from to specify exception cause + "B905", # zip() without an explicit strict= parameter + "BLE", + "C", # complexity + "COM818", # Trailing comma on bare tuple prohibited + "D", # docstrings + "DTZ003", # Use datetime.now(tz=) instead of datetime.utcnow() + "DTZ004", # Use datetime.fromtimestamp(ts, tz=) instead of datetime.utcfromtimestamp(ts) + "E", # pycodestyle + "F", # pyflakes/autoflake + "FLY", # flynt + "G", # flake8-logging-format + "I", # isort + "INP", # flake8-no-pep420 + "ISC", # flake8-implicit-str-concat + "ICN001", # import concentions; {name} should be imported as {asname} + "LOG", # flake8-logging + "N804", # First argument of a class method should be named cls + "N805", # First argument of a method should be named self + "N815", # Variable {name} in class scope should not be mixedCase + "PERF", # Perflint + "PGH", # pygrep-hooks + "PIE", # flake8-pie + "PL", # pylint + "PT", # flake8-pytest-style + "PYI", # flake8-pyi + "RET", # flake8-return + "RSE", # flake8-raise + "RUF005", # Consider iterable unpacking instead of concatenation + "RUF006", # Store a reference to the return value of asyncio.create_task + "RUF010", # Use explicit conversion flag + "RUF013", # PEP 484 prohibits implicit Optional + "RUF018", # Avoid assignment expressions in assert statements + "RUF019", # Unnecessary key check before dictionary access + # "RUF100", # Unused `noqa` directive; temporarily every now and then to clean them up + "S102", # Use of exec detected + "S103", # bad-file-permissions + "S108", # hardcoded-temp-file + "S306", # suspicious-mktemp-usage + "S307", # suspicious-eval-usage + "S313", # suspicious-xmlc-element-tree-usage + "S314", # suspicious-xml-element-tree-usage + "S315", # suspicious-xml-expat-reader-usage + "S316", # suspicious-xml-expat-builder-usage + "S317", # suspicious-xml-sax-usage + "S318", # suspicious-xml-mini-dom-usage + "S319", # suspicious-xml-pull-dom-usage + "S320", # suspicious-xmle-tree-usage + "S601", # paramiko-call + "S602", # subprocess-popen-with-shell-equals-true + "S604", # call-with-shell-equals-true + "S608", # hardcoded-sql-expression + "S609", # unix-command-wildcard-injection + "SIM", # flake8-simplify + "SLF", # flake8-self + "SLOT", # flake8-slots + "T100", # Trace found: {name} used + "T20", # flake8-print + "TID251", # Banned imports + "TRY", # tryceratops + "UP", # pyupgrade + "W", # pycodestyle +] + +ignore = [ + "D202", # No blank lines allowed after function docstring + "D203", # 1 blank line required before class docstring + "D213", # Multi-line docstring summary should start at the second line + "D406", # Section name should end with a newline + "D407", # Section name underlining + "E501", # line too long + + "PLC1901", # {existing} can be simplified to {replacement} as an empty string is falsey; too many false positives + "PLR0911", # Too many return statements ({returns} > {max_returns}) + "PLR0912", # Too many branches ({branches} > {max_branches}) + "PLR0913", # Too many arguments to function call ({c_args} > {max_args}) + "PLR0915", # Too many statements ({statements} > {max_statements}) + "PLR2004", # Magic value used in comparison, consider replacing {value} with a constant variable + "PLW2901", # Outer {outer_kind} variable {name} overwritten by inner {inner_kind} target + "PT004", # Fixture {fixture} does not return anything, add leading underscore + "PT011", # pytest.raises({exception}) is too broad, set the `match` parameter or use a more specific exception + "PT018", # Assertion should be broken down into multiple parts + "RUF001", # String contains ambiguous unicode character. + "RUF002", # Docstring contains ambiguous unicode character. + "RUF003", # Comment contains ambiguous unicode character. + "RUF015", # Prefer next(...) over single element slice + "SIM102", # Use a single if statement instead of nested if statements + "SIM103", # Return the condition {condition} directly + "SIM108", # Use ternary operator {contents} instead of if-else-block + "SIM115", # Use context handler for opening files + "TRY003", # Avoid specifying long messages outside the exception class + "TRY400", # Use `logging.exception` instead of `logging.error` + # Ignored due to performance: https://github.com/charliermarsh/ruff/issues/2923 + "UP038", # Use `X | Y` in `isinstance` call instead of `(X, Y)` + + # May conflict with the formatter, https://docs.astral.sh/ruff/formatter/#conflicting-lint-rules + "W191", + "E111", + "E114", + "E117", + "D206", + "D300", + "Q", + "COM812", + "COM819", + "ISC001", + + # Disabled because ruff does not understand type of __all__ generated by a function + "PLE0605", + + # temporarily disabled + "PT019", + "PYI024", # Use typing.NamedTuple instead of collections.namedtuple + "RET503", + "RET501", + "TRY002", + "TRY301" +] + +[tool.ruff.lint.flake8-import-conventions.extend-aliases] +voluptuous = "vol" +"homeassistant.helpers.area_registry" = "ar" +"homeassistant.helpers.category_registry" = "cr" +"homeassistant.helpers.config_validation" = "cv" +"homeassistant.helpers.device_registry" = "dr" +"homeassistant.helpers.entity_registry" = "er" +"homeassistant.helpers.floor_registry" = "fr" +"homeassistant.helpers.issue_registry" = "ir" +"homeassistant.helpers.label_registry" = "lr" +"homeassistant.util.dt" = "dt_util" + +[tool.ruff.lint.flake8-pytest-style] +fixture-parentheses = false +mark-parentheses = false + +[tool.ruff.lint.flake8-tidy-imports.banned-api] +"async_timeout".msg = "use asyncio.timeout instead" +"pytz".msg = "use zoneinfo instead" + +[tool.ruff.lint.isort] +force-sort-within-sections = true +known-first-party = [ + "homeassistant", +] +combine-as-imports = true +split-on-trailing-comma = false + +[tool.ruff.lint.per-file-ignores] + +# Allow for main entry & scripts to write to stdout +"homeassistant/__main__.py" = ["T201"] +"homeassistant/scripts/*" = ["T201"] +"script/*" = ["T20"] + +[tool.ruff.lint.mccabe] +max-complexity = 25 diff --git a/ecosystem/packse/pyproject.toml b/ecosystem/packse/pyproject.toml new file mode 100644 index 000000000000..4794e8a3ff06 --- /dev/null +++ b/ecosystem/packse/pyproject.toml @@ -0,0 +1,55 @@ +[project] +name = "packse" +version = "0.0.0" +description = "" +authors = [{ name = "Astral Software Inc.", email = "hey@astral.sh" }] +readme = "README.md" +keywords = [ + "uv", "packse", "requirements", "packaging", "testing" +] +classifiers = [ + "Development Status :: 4 - Beta", + "Environment :: Console", + "Intended Audience :: Developers", + "Operating System :: OS Independent", + "License :: OSI Approved :: MIT License", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3 :: Only", + "Topic :: Software Development :: Quality Assurance", + "Topic :: Software Development :: Testing", + "Topic :: Software Development :: Libraries", +] +requires-python = ">=3.12" +dependencies = [ + "msgspec>=0.18.4", + "twine>=4.0.2", + "hatchling>=1.20.0", + "chevron-blue>=0.2.1", + "setuptools>=69.1.1", + "pyyaml>=6.0.1" +] + +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[project.scripts] +packse = "packse.cli:entrypoint" + +[project.optional-dependencies] +index = ["pypiserver>=2.0.1"] +serve = ["packse[index]", "watchfiles>=0.21.0"] + +[tool.uv] +dev-dependencies = [ + "syrupy>=4.6.0", + "pytest>=7.4.3", + "psutil>=5.9.7", +] + +[tool.ruff.lint] +extend-select = ["I", "W292"] +preview = true +exclude = ["src/packse/templates/**/*", "build/**/*", "dist/**/*"] diff --git a/ecosystem/pretix/_build/backend.py b/ecosystem/pretix/_build/backend.py new file mode 100644 index 000000000000..d827280a2632 --- /dev/null +++ b/ecosystem/pretix/_build/backend.py @@ -0,0 +1,12 @@ +import tomli +from setuptools import build_meta as _orig +from setuptools.build_meta import * + + +def get_requires_for_build_wheel(config_settings=None): + with open("pyproject.toml", "rb") as f: + p = tomli.load(f) + return [ + *_orig.get_requires_for_build_wheel(config_settings), + *p['project']['dependencies'] + ] diff --git a/ecosystem/pretix/pyproject.toml b/ecosystem/pretix/pyproject.toml new file mode 100644 index 000000000000..83178160647d --- /dev/null +++ b/ecosystem/pretix/pyproject.toml @@ -0,0 +1,162 @@ +[project] +name = "pretix" +dynamic = ["version"] +description = "Reinventing presales, one ticket at a time" +readme = "README.rst" +requires-python = ">=3.9" +license = {file = "LICENSE"} +keywords = ["tickets", "web", "shop", "ecommerce"] +authors = [ + {name = "pretix team", email = "support@pretix.eu"}, +] +maintainers = [ + {name = "pretix team", email = "support@pretix.eu"}, +] +classifiers = [ + "Development Status :: 5 - Production/Stable", + "Intended Audience :: Developers", + "Intended Audience :: Other Audience", + "Topic :: Internet :: WWW/HTTP :: Dynamic Content", + "Environment :: Web Environment", + "License :: OSI Approved :: GNU Affero General Public License v3", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Framework :: Django :: 4.2", +] + +dependencies = [ + "arabic-reshaper==3.0.0", # Support for Arabic in reportlab + "babel", + "BeautifulSoup4==4.12.*", + "bleach==5.0.*", + "celery==5.4.*", + "chardet==5.2.*", + "cryptography>=3.4.2", + "css-inline==0.14.*", + "defusedcsv>=1.1.0", + "Django[argon2]==4.2.*,>=4.2.15", + "django-bootstrap3==24.2", + "django-compressor==4.5.1", + "django-countries==7.6.*", + "django-filter==24.3", + "django-formset-js-improved==0.5.0.3", + "django-formtools==2.5.1", + "django-hierarkey==1.2.*", + "django-hijack==3.6.*", + "django-i18nfield==1.9.*,>=1.9.4", + "django-libsass==0.9", + "django-localflavor==4.0", + "django-markup", + "django-oauth-toolkit==2.3.*", + "django-otp==1.5.*", + "django-phonenumber-field==7.3.*", + "django-redis==5.4.*", + "django-scopes==2.0.*", + "django-statici18n==2.5.*", + "djangorestframework==3.15.*", + "dnspython==2.6.*", + "drf_ujson2==1.7.*", + "geoip2==4.*", + "importlib_metadata==8.*", # Polyfill, we can probably drop this once we require Python 3.10+ + "isoweek", + "jsonschema", + "kombu==5.4.*", + "libsass==0.23.*", + "lxml", + "markdown==3.6", # 3.3.5 requires importlib-metadata>=4.4, but django-bootstrap3 requires importlib-metadata<3. + # We can upgrade markdown again once django-bootstrap3 upgrades or once we drop Python 3.6 and 3.7 + "mt-940==4.30.*", + "oauthlib==3.2.*", + "openpyxl==3.1.*", + "packaging", + "paypalrestsdk==1.13.*", + "paypal-checkout-serversdk==1.0.*", + "PyJWT==2.9.*", + "phonenumberslite==8.13.*", + "Pillow==10.4.*", + "pretix-plugin-build", + "protobuf==5.27.*", + "psycopg2-binary", + "pycountry", + "pycparser==2.22", + "pycryptodome==3.20.*", + "pypdf==4.3.*", + "python-bidi==0.6.*", # Support for Arabic in reportlab + "python-dateutil==2.9.*", + "pytz", + "pytz-deprecation-shim==0.1.*", + "pyuca", + "qrcode==7.4.*", + "redis==5.0.*", + "reportlab==4.2.*", + "requests==2.31.*", + "sentry-sdk==2.12.*", + "sepaxml==2.6.*", + "slimit", + "stripe==7.9.*", + "text-unidecode==1.*", + "tlds>=2020041600", + "tqdm==4.*", + "ua-parser==0.18.*", + "vat_moss_forked==2020.3.20.0.11.0", + "vobject==0.9.*", + "webauthn==2.2.*", + "zeep==4.2.*" +] + +[project.optional-dependencies] +memcached = ["pylibmc"] +dev = [ + "aiohttp==3.10.*", + "coverage", + "coveralls", + "fakeredis==2.23.*", + "flake8==7.1.*", + "freezegun", + "isort==5.13.*", + "pep8-naming==0.14.*", + "potypo", + "pytest-asyncio", + "pytest-cache", + "pytest-cov", + "pytest-django==4.*", + "pytest-mock==3.14.*", + "pytest-rerunfailures==14.*", + "pytest-sugar", + "pytest-xdist==3.6.*", + "pytest==8.3.*", + "responses", +] + +[project.entry-points."distutils.commands"] +build = "pretix._build:CustomBuild" +build_ext = "pretix._build:CustomBuildExt" + +[build-system] +build-backend = "backend" +backend-path = ["_build"] +requires = [ + "setuptools", + "setuptools-rust", + "wheel", + "importlib_metadata", + "tomli", +] + +[project.urls] +homepage = "https://pretix.eu" +documentation = "https://docs.pretix.eu" +repository = "https://github.com/pretix/pretix.git" +changelog = "https://pretix.eu/about/en/blog/" + +[tool.setuptools] +include-package-data = true + +[tool.setuptools.dynamic] +version = {attr = "pretix.__version__"} + +[tool.setuptools.packages.find] +where = ["src"] +include = ["pretix*"] +namespaces = false diff --git a/ecosystem/transformers/old.lock b/ecosystem/transformers/old.lock new file mode 100644 index 000000000000..76e47ffc727d --- /dev/null +++ b/ecosystem/transformers/old.lock @@ -0,0 +1,5703 @@ +version = 1 +requires-python = ">=3.9.0" +environment-markers = [ + "python_version >= '3.13'", + "python_version == '3.11' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version == '3.11' and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", + "python_version < '3.7' and python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')", + "python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')", + "python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')", + "python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", + "python_version < '3.10' and python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'", + "python_version < '3.10' and python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.10' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.10' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin')) and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", + "python_version < '3.11' and python_version >= '3.10'", + "python_version < '3.11' and python_version >= '3.10' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", + "python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", +] + +[[package]] +name = "absl-py" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7a/8f/fc001b92ecc467cc32ab38398bd0bfb45df46e7523bf33c2ad22a505f06e/absl-py-2.1.0.tar.gz", hash = "sha256:7820790efbb316739cde8b4e19357243fc3608a152024288513dd968d7d959ff", size = 118055 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a2/ad/e0d3c824784ff121c03cc031f944bc7e139a8f1870ffd2845cc2dd76f6c4/absl_py-2.1.0-py3-none-any.whl", hash = "sha256:526a04eadab8b4ee719ce68f204172ead1027549089702d99b9059f129ff1308", size = 133706 }, +] + +[[package]] +name = "accelerate" +version = "0.33.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "huggingface-hub", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "psutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "safetensors", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d4/24/5e813a41495ec7fdbc6a0f08e38c099caccf49147b8cd84053f4c3007c35/accelerate-0.33.0.tar.gz", hash = "sha256:11ba481ed6ea09191775df55ce464aeeba67a024bd0261a44b77b30fb439e26a", size = 314567 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/15/33/b6b4ad5efa8b9f4275d4ed17ff8a44c97276171341ba565fdffb0e3dc5e8/accelerate-0.33.0-py3-none-any.whl", hash = "sha256:0a7f33d60ba09afabd028d4f0856dd19c5a734b7a596d637d9dd6e3d0eadbaf3", size = 315131 }, +] + +[[package]] +name = "aiohappyeyeballs" +version = "2.3.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b7/c3/112f2f992aeb321de483754c1c5acab08c8ac3388c9c7e6f3e4f45ec1c42/aiohappyeyeballs-2.3.5.tar.gz", hash = "sha256:6fa48b9f1317254f122a07a131a86b71ca6946ca989ce6326fff54a99a920105", size = 16791 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8b/b4/0983e94060405eb51f23be493e3f5c28003f7ebc5efcd0803c1cb23ea407/aiohappyeyeballs-2.3.5-py3-none-any.whl", hash = "sha256:4d6dea59215537dbc746e93e779caea8178c866856a721c9c660d7a5a7b8be03", size = 12139 }, +] + +[[package]] +name = "aiohttp" +version = "3.10.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "aiohappyeyeballs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "aiosignal", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "async-timeout", marker = "python_version < '3.11'" }, + { name = "attrs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "frozenlist", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "multidict", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "yarl", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/45/11/36ba898823ab19e49e6bd791d75b9185eadef45a46fc00d3c669824df8a0/aiohttp-3.10.2.tar.gz", hash = "sha256:4d1f694b5d6e459352e5e925a42e05bac66655bfde44d81c59992463d2897014", size = 7520621 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/b2/2790e4029f228c833a422741319fd512f82543a43d69791e1a4e7c6d367f/aiohttp-3.10.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:95213b3d79c7e387144e9cb7b9d2809092d6ff2c044cb59033aedc612f38fb6d", size = 585899 }, + { url = "https://files.pythonhosted.org/packages/69/66/bc0a181b409485122f9c50be2777f9276a4be670947c0b771e214a42d4ea/aiohttp-3.10.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1aa005f060aff7124cfadaa2493f00a4e28ed41b232add5869e129a2e395935a", size = 396584 }, + { url = "https://files.pythonhosted.org/packages/a3/0d/aa4bb80d59e6ebb63715334c83c8cdcb9081503fd75fd798635712b3c723/aiohttp-3.10.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:eabe6bf4c199687592f5de4ccd383945f485779c7ffb62a9b9f1f8a3f9756df8", size = 387935 }, + { url = "https://files.pythonhosted.org/packages/1e/91/f5bee0f9d016deac9deb8ae6338d89fb14b456d4aad79820e1a8bf0467cc/aiohttp-3.10.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:96e010736fc16d21125c7e2dc5c350cd43c528b85085c04bf73a77be328fe944", size = 1247508 }, + { url = "https://files.pythonhosted.org/packages/0c/23/f9b9bb0d7ec1befac8c033e9c794b2bc4b1adf539c23644336f382dc6709/aiohttp-3.10.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99f81f9c1529fd8e03be4a7bd7df32d14b4f856e90ef6e9cbad3415dbfa9166c", size = 1281824 }, + { url = "https://files.pythonhosted.org/packages/9e/4e/85809d2f4c995856bc30dc516f8a83355c9154cee7e8f049b0a1b6419acd/aiohttp-3.10.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d611d1a01c25277bcdea06879afbc11472e33ce842322496b211319aa95441bb", size = 1316141 }, + { url = "https://files.pythonhosted.org/packages/12/3e/e31c68fd01f53657f10854a8595aa6739d70d1062246fd4bc8f0b8a0a0a1/aiohttp-3.10.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e00191d38156e09e8c81ef3d75c0d70d4f209b8381e71622165f22ef7da6f101", size = 1242103 }, + { url = "https://files.pythonhosted.org/packages/e5/48/274173516dee14fdc2a20a65f4f18047e747dd6b52a5955cc22efa66954c/aiohttp-3.10.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:74c091a5ded6cb81785de2d7a8ab703731f26de910dbe0f3934eabef4ae417cc", size = 1212294 }, + { url = "https://files.pythonhosted.org/packages/73/cd/539698dd7d26f80aa2ee76e1dce9a792dba057b9cd873ec929accd9fb7ce/aiohttp-3.10.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:18186a80ec5a701816adbf1d779926e1069392cf18504528d6e52e14b5920525", size = 1211343 }, + { url = "https://files.pythonhosted.org/packages/78/7a/43d0fdac260aae46984f7f253f7f0e8c0f0e0130ca5cfc8a69132e58bbe9/aiohttp-3.10.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:5a7ceb2a0d2280f23a02c64cd0afdc922079bb950400c3dd13a1ab2988428aac", size = 1210216 }, + { url = "https://files.pythonhosted.org/packages/ef/20/dc0d72c5c4f8d0c2003bdce9b240138bf9a8b72b2002f3e5f5a1d91b4f8f/aiohttp-3.10.2-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8bd7be6ff6c162a60cb8fce65ee879a684fbb63d5466aba3fa5b9288eb04aefa", size = 1265730 }, + { url = "https://files.pythonhosted.org/packages/37/04/5f00ef79b56170323e693f35f0c4d5714aea3fdbff84206fc7a84618f315/aiohttp-3.10.2-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:fae962b62944eaebff4f4fddcf1a69de919e7b967136a318533d82d93c3c6bd1", size = 1284196 }, + { url = "https://files.pythonhosted.org/packages/42/89/ed4282addb9af968a49ead85de82a8fe31b8ed5adf4832a2bfcc460e7c36/aiohttp-3.10.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:a0fde16d284efcacbe15fb0c1013f0967b6c3e379649239d783868230bf1db42", size = 1234700 }, + { url = "https://files.pythonhosted.org/packages/c2/a5/bbac491a29aabdd9c4998c4d6f163980525502ee2fc4bf528bd029ed3eaa/aiohttp-3.10.2-cp310-cp310-win32.whl", hash = "sha256:f81cd85a0e76ec7b8e2b6636fe02952d35befda4196b8c88f3cec5b4fb512839", size = 359031 }, + { url = "https://files.pythonhosted.org/packages/b2/c7/d7a34b074a7c601b515de717b0df44b948dd177480d5607ae447e4dfa98e/aiohttp-3.10.2-cp310-cp310-win_amd64.whl", hash = "sha256:54ba10eb5a3481c28282eb6afb5f709aedf53cf9c3a31875ffbdc9fc719ffd67", size = 378044 }, + { url = "https://files.pythonhosted.org/packages/07/ef/5414e99122e15e750b1f62bca15251e277449eb1c3f9ba05965d95529c99/aiohttp-3.10.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:87fab7f948e407444c2f57088286e00e2ed0003ceaf3d8f8cc0f60544ba61d91", size = 585345 }, + { url = "https://files.pythonhosted.org/packages/52/6c/570be295a63a47f7819a820d6f208fa7c7295fa17f5a3f601262a47b2721/aiohttp-3.10.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ec6ad66ed660d46503243cbec7b2b3d8ddfa020f984209b3b8ef7d98ce69c3f2", size = 396134 }, + { url = "https://files.pythonhosted.org/packages/08/67/c3b44042e80c979bb49280dd567fb59a62b8f99cc0991b255ca1feca215d/aiohttp-3.10.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a4be88807283bd96ae7b8e401abde4ca0bab597ba73b5e9a2d98f36d451e9aac", size = 387857 }, + { url = "https://files.pythonhosted.org/packages/27/f8/1a0d0c17e9aeeaa63b7d45643c4c4f05585268089abe711c475bc5e21db8/aiohttp-3.10.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:01c98041f90927c2cbd72c22a164bb816fa3010a047d264969cf82e1d4bcf8d1", size = 1325021 }, + { url = "https://files.pythonhosted.org/packages/9d/a9/e3fa5e5f6723b19f17ea68be21eee518ebfbe30444c7fc08993fc2a25ab2/aiohttp-3.10.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:54e36c67e1a9273ecafab18d6693da0fb5ac48fd48417e4548ac24a918c20998", size = 1363434 }, + { url = "https://files.pythonhosted.org/packages/8b/92/9df276fcc101e08378f706a4a58e6b6a346756a94198d6ec68329a2b8d02/aiohttp-3.10.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7de3ddb6f424af54535424082a1b5d1ae8caf8256ebd445be68c31c662354720", size = 1398791 }, + { url = "https://files.pythonhosted.org/packages/df/fe/7b4e77cd83d4e865430e9b6f923f070f66da7effe791348b56e78358b21b/aiohttp-3.10.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7dd9c7db94b4692b827ce51dcee597d61a0e4f4661162424faf65106775b40e7", size = 1311807 }, + { url = "https://files.pythonhosted.org/packages/b4/de/571f56bad7449519ede3d0e4a0a05a056ca2db309da0bae0094a91c9a92b/aiohttp-3.10.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e57e21e1167705f8482ca29cc5d02702208d8bf4aff58f766d94bcd6ead838cd", size = 1270198 }, + { url = "https://files.pythonhosted.org/packages/c4/3a/a8a8f4e47248952d691d4265ed40f85ebf345c103b95f66022cdef10f58e/aiohttp-3.10.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:a1a50e59b720060c29e2951fd9f13c01e1ea9492e5a527b92cfe04dd64453c16", size = 1290544 }, + { url = "https://files.pythonhosted.org/packages/d4/fa/c70c250c0cd8dcf96aecf783e0926db463cdcf946915406727cc3071d780/aiohttp-3.10.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:686c87782481fda5ee6ba572d912a5c26d9f98cc5c243ebd03f95222af3f1b0f", size = 1285178 }, + { url = "https://files.pythonhosted.org/packages/89/4f/f4005be64a97c532c7d5ab2304bbeda22ba9b506cebbb6eb09834796d088/aiohttp-3.10.2-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:dafb4abb257c0ed56dc36f4e928a7341b34b1379bd87e5a15ce5d883c2c90574", size = 1340738 }, + { url = "https://files.pythonhosted.org/packages/79/f2/9f3901c4c94f9218ab3fe2231294f58cb695a3404554489c102db8376dd3/aiohttp-3.10.2-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:494a6f77560e02bd7d1ab579fdf8192390567fc96a603f21370f6e63690b7f3d", size = 1360510 }, + { url = "https://files.pythonhosted.org/packages/54/5f/956909f87d2ede49e1fc422e811c8243d5b487d423583301a14788292d89/aiohttp-3.10.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6fe8503b1b917508cc68bf44dae28823ac05e9f091021e0c41f806ebbb23f92f", size = 1319760 }, + { url = "https://files.pythonhosted.org/packages/ba/cc/560d80417a8d144d5ed7b5ce92420973b68462e99245d4e2c85f68fdd8d6/aiohttp-3.10.2-cp311-cp311-win32.whl", hash = "sha256:4ddb43d06ce786221c0dfd3c91b4892c318eaa36b903f7c4278e7e2fa0dd5102", size = 358145 }, + { url = "https://files.pythonhosted.org/packages/c1/0f/b4fa4717a7c9307e246b4d886c47cc79650fadd1c4debb0086fefd85b25c/aiohttp-3.10.2-cp311-cp311-win_amd64.whl", hash = "sha256:ca2f5abcb0a9a47e56bac173c01e9f6c6e7f27534d91451c5f22e6a35a5a2093", size = 378023 }, + { url = "https://files.pythonhosted.org/packages/ef/c3/4c11c493c69e7cc802e6aa95271b145ff17a427026b7b5cc8af091f1ce9d/aiohttp-3.10.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:14eb6b17f6246959fb0b035d4f4ae52caa870c4edfb6170aad14c0de5bfbf478", size = 582359 }, + { url = "https://files.pythonhosted.org/packages/2d/41/b0aefa65f9ed474ea1c9146109be67b11eca7a45b7f39b3ea059cf7428a2/aiohttp-3.10.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:465e445ec348d4e4bd349edd8b22db75f025da9d7b6dc1369c48e7935b85581e", size = 392955 }, + { url = "https://files.pythonhosted.org/packages/ed/f6/a605abb080c136291306e2253622eef25b5da140e03d9637f5a91f413a8f/aiohttp-3.10.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:341f8ece0276a828d95b70cd265d20e257f5132b46bf77d759d7f4e0443f2906", size = 387994 }, + { url = "https://files.pythonhosted.org/packages/c7/a4/44dfa668b7292868db9840b2c9d171576553a874ff65bd2386c04ba8b694/aiohttp-3.10.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c01fbb87b5426381cd9418b3ddcf4fc107e296fa2d3446c18ce6c76642f340a3", size = 1331633 }, + { url = "https://files.pythonhosted.org/packages/07/ce/4187db914f041492069917fc21c0bffa9264b77003b58e91400369834e6b/aiohttp-3.10.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2c474af073e1a6763e1c5522bbb2d85ff8318197e4c6c919b8d7886e16213345", size = 1371028 }, + { url = "https://files.pythonhosted.org/packages/dc/0e/9686ffc6fc9145cfe9483e7d518b7f1d867d65437dbf0615f28c43fbb20d/aiohttp-3.10.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d9076810a5621236e29b2204e67a68e1fe317c8727ee4c9abbfbb1083b442c38", size = 1413303 }, + { url = "https://files.pythonhosted.org/packages/0b/07/2b68b23ed85f4c73f12025c446127f6f55e5d9ad848bb501d6cf333cfd6c/aiohttp-3.10.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e8f515d6859e673940e08de3922b9c4a2249653b0ac181169313bd6e4b1978ac", size = 1326993 }, + { url = "https://files.pythonhosted.org/packages/99/a6/099a861d52b22a49b22e7106d750bcbade5e12fcda2e69170f6d5fd624c4/aiohttp-3.10.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:655e583afc639bef06f3b2446972c1726007a21003cd0ef57116a123e44601bc", size = 1279018 }, + { url = "https://files.pythonhosted.org/packages/ed/f3/a5203c907dc48345d9124c3e2149a322aeb3960184bf7d65dc58dfd55ca7/aiohttp-3.10.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8da9449a575133828cc99985536552ea2dcd690e848f9d41b48d8853a149a959", size = 1291552 }, + { url = "https://files.pythonhosted.org/packages/1e/ca/200cd6984acf9d4293c7b2588dc59d92c2a1b5055b3b3d55a015e215ead0/aiohttp-3.10.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:19073d57d0feb1865d12361e2a1f5a49cb764bf81a4024a3b608ab521568093a", size = 1299884 }, + { url = "https://files.pythonhosted.org/packages/f5/25/770b29e1522a71bc4a50f6268a4abc699529c88e442a593061028750cdff/aiohttp-3.10.2-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:c8e98e1845805f184d91fda6f9ab93d7c7b0dddf1c07e0255924bfdb151a8d05", size = 1338160 }, + { url = "https://files.pythonhosted.org/packages/21/79/a3f13982c363ba67f2693088717fce94a24a9c0c5d56e42df28a5ce9e3da/aiohttp-3.10.2-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:377220a5efde6f9497c5b74649b8c261d3cce8a84cb661be2ed8099a2196400a", size = 1365885 }, + { url = "https://files.pythonhosted.org/packages/7b/e8/da4dcf56429f9b29faf615378a4d7550140208cf755eb6f755f24113af59/aiohttp-3.10.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:92f7f4a4dc9cdb5980973a74d43cdbb16286dacf8d1896b6c3023b8ba8436f8e", size = 1328351 }, + { url = "https://files.pythonhosted.org/packages/bd/00/11eaebbcb406eb19dbf64e6683db53b495ee15206b4b9bc58587797b9ef4/aiohttp-3.10.2-cp312-cp312-win32.whl", hash = "sha256:9bb2834a6f11d65374ce97d366d6311a9155ef92c4f0cee543b2155d06dc921f", size = 355846 }, + { url = "https://files.pythonhosted.org/packages/77/e2/aaacbc16809ee50f71e1f2856a78f64307d9b799d36878eaf77aa053053d/aiohttp-3.10.2-cp312-cp312-win_amd64.whl", hash = "sha256:518dc3cb37365255708283d1c1c54485bbacccd84f0a0fb87ed8917ba45eda5b", size = 376527 }, + { url = "https://files.pythonhosted.org/packages/2d/1c/8f1be7e71eb5196111e7f6fa6a7595e62386b26331dd1054384744f0094e/aiohttp-3.10.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:9dfc906d656e14004c5bc672399c1cccc10db38df2b62a13fb2b6e165a81c316", size = 587596 }, + { url = "https://files.pythonhosted.org/packages/7a/a5/6f7ed32cce8ed886c747e0e3376bfc0d5ede1637b22d557d9449846d8df7/aiohttp-3.10.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:91b10208b222ddf655c3a3d5b727879d7163db12b634492df41a9182a76edaae", size = 397456 }, + { url = "https://files.pythonhosted.org/packages/87/6a/9874a7a782f18818864e9d5849629608117eb43b3a36d03a5baef546114c/aiohttp-3.10.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9fd16b5e1a7bdd14668cd6bde60a2a29b49147a535c74f50d8177d11b38433a7", size = 388746 }, + { url = "https://files.pythonhosted.org/packages/e3/bb/c559899cc8c32db8aa5b5fbf78a26693326f2a40f26d46086f30d6a5d3a8/aiohttp-3.10.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b2bfdda4971bd79201f59adbad24ec2728875237e1c83bba5221284dbbf57bda", size = 1252747 }, + { url = "https://files.pythonhosted.org/packages/fd/f2/037fc4254f0f7db223903cf04f3ba2a2368ecc4496cca873a2dbd4b1526b/aiohttp-3.10.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:69d73f869cf29e8a373127fc378014e2b17bcfbe8d89134bc6fb06a2f67f3cb3", size = 1288819 }, + { url = "https://files.pythonhosted.org/packages/61/82/0ad6c41db2c57b3a090fdb2a3c7e2f4c18762f1312cfdf580ddf080cdb8b/aiohttp-3.10.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:df59f8486507c421c0620a2c3dce81fbf1d54018dc20ff4fecdb2c106d6e6abc", size = 1323910 }, + { url = "https://files.pythonhosted.org/packages/85/40/28ec1238a6a72c0dc5882c5c2d3521e1aa7510220b418438cc8b0eac74c3/aiohttp-3.10.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0df930015db36b460aa9badbf35eccbc383f00d52d4b6f3de2ccb57d064a6ade", size = 1245241 }, + { url = "https://files.pythonhosted.org/packages/89/ab/f72aee8a1193f0ee2f51bb27c7e003769801e09b1aec0495f224f05a34fb/aiohttp-3.10.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:562b1153ab7f766ee6b8b357ec777a302770ad017cf18505d34f1c088fccc448", size = 1215200 }, + { url = "https://files.pythonhosted.org/packages/c1/73/2001b2f8a7392f3889abae8df2d1ae0956c21d2542e4e7c942b1e18f1c6d/aiohttp-3.10.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d984db6d855de58e0fde1ef908d48fe9a634cadb3cf715962722b4da1c40619d", size = 1215657 }, + { url = "https://files.pythonhosted.org/packages/e4/2e/ca2f5954637e37e6ab434db655a35c60ec673f39f37511dda270c51235aa/aiohttp-3.10.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:14dc3fcb0d877911d775d511eb617a486a8c48afca0a887276e63db04d3ee920", size = 1215079 }, + { url = "https://files.pythonhosted.org/packages/ed/a5/6b01d5f34e640a53d0a777a2f5a0b9e9e87bdab17c24c7a7fd7d5bbfd87c/aiohttp-3.10.2-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:b52a27a5c97275e254704e1049f4b96a81e67d6205f52fa37a4777d55b0e98ef", size = 1270209 }, + { url = "https://files.pythonhosted.org/packages/2d/7d/97a692de7670adb03d24cccabbf28ae83ad173a10e54e6010d146d41671a/aiohttp-3.10.2-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:cd33d9de8cfd006a0d0fe85f49b4183c57e91d18ffb7e9004ce855e81928f704", size = 1286899 }, + { url = "https://files.pythonhosted.org/packages/1f/bb/96aa4f044fc080c56f92000f39816511b6fe2ec1071be5acba8e781452fc/aiohttp-3.10.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1238fc979160bc03a92fff9ad021375ff1c8799c6aacb0d8ea1b357ea40932bb", size = 1237200 }, + { url = "https://files.pythonhosted.org/packages/26/15/d6c340ad979224dc6ad9ca7881888738e1781ae75c8116f4f6ae8fe579e4/aiohttp-3.10.2-cp39-cp39-win32.whl", hash = "sha256:e2f43d238eae4f0b04f58d4c0df4615697d4ca3e9f9b1963d49555a94f0f5a04", size = 359634 }, + { url = "https://files.pythonhosted.org/packages/62/9c/5587dbb5250ebecbe3a6258c72910f731058a7058672803c40b28286b119/aiohttp-3.10.2-cp39-cp39-win_amd64.whl", hash = "sha256:947847f07a8f81d7b39b2d0202fd73e61962ebe17ac2d8566f260679e467da7b", size = 378656 }, +] + +[[package]] +name = "aiosignal" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "frozenlist", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ae/67/0952ed97a9793b4958e5736f6d2b346b414a2cd63e82d05940032f45b32f/aiosignal-1.3.1.tar.gz", hash = "sha256:54cd96e15e1649b75d6c87526a6ff0b6c1b0dd3459f43d9ca11d48c339b68cfc", size = 19422 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/76/ac/a7305707cb852b7e16ff80eaf5692309bde30e2b1100a1fcacdc8f731d97/aiosignal-1.3.1-py3-none-any.whl", hash = "sha256:f8376fb07dd1e86a584e4fcdec80b36b7f81aac666ebc724e2c090300dd83b17", size = 7617 }, +] + +[[package]] +name = "alembic" +version = "1.13.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mako", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sqlalchemy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/66/e2/efa88e86029cada2da5941ec664d50d9a3b2a91f5066405c6f90e5016c16/alembic-1.13.2.tar.gz", hash = "sha256:1ff0ae32975f4fd96028c39ed9bb3c867fe3af956bd7bb37343b54c9fe7445ef", size = 1206463 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/df/ed/c884465c33c25451e4a5cd4acad154c29e5341e3214e220e7f3478aa4b0d/alembic-1.13.2-py3-none-any.whl", hash = "sha256:6b8733129a6224a9a711e17c99b08462dbf7cc9670ba8f2e2ae9af860ceb1953", size = 232990 }, +] + +[[package]] +name = "annotated-types" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ee/67/531ea369ba64dcff5ec9c3402f9f51bf748cec26dde048a2f973a4eea7f5/annotated_types-0.7.0.tar.gz", hash = "sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89", size = 16081 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl", hash = "sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53", size = 13643 }, +] + +[[package]] +name = "anyio" +version = "4.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "exceptiongroup", marker = "python_version < '3.11'" }, + { name = "idna", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sniffio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version < '3.11'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e6/e3/c4c8d473d6780ef1853d630d581f70d655b4f8d7553c6997958c283039a2/anyio-4.4.0.tar.gz", hash = "sha256:5aadc6a1bbb7cdb0bede386cac5e2940f5e2ff3aa20277e991cf028e0585ce94", size = 163930 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/a2/10639a79341f6c019dedc95bd48a4928eed9f1d1197f4c04f546fc7ae0ff/anyio-4.4.0-py3-none-any.whl", hash = "sha256:c1b2d8f46a8a812513012e1107cb0e68c17159a7a594208005a57dc776e1bdc7", size = 86780 }, +] + +[[package]] +name = "apscheduler" +version = "3.10.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pytz", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tzlocal", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5e/34/5dcb368cf89f93132d9a31bd3747962a9dc874480e54333b0c09fa7d56ac/APScheduler-3.10.4.tar.gz", hash = "sha256:e6df071b27d9be898e486bc7940a7be50b4af2e9da7c08f0744a96d4bd4cef4a", size = 100832 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/13/b5/7af0cb920a476dccd612fbc9a21a3745fb29b1fcd74636078db8f7ba294c/APScheduler-3.10.4-py3-none-any.whl", hash = "sha256:fb91e8a768632a4756a585f79ec834e0e27aad5860bac7eaa523d9ccefd87661", size = 59303 }, +] + +[[package]] +name = "arrow" +version = "1.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "python-dateutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "types-python-dateutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/2e/00/0f6e8fcdb23ea632c866620cc872729ff43ed91d284c866b515c6342b173/arrow-1.3.0.tar.gz", hash = "sha256:d4540617648cb5f895730f1ad8c82a65f2dad0166f57b75f3ca54759c4d67a85", size = 131960 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f8/ed/e97229a566617f2ae958a6b13e7cc0f585470eac730a73e9e82c32a3cdd2/arrow-1.3.0-py3-none-any.whl", hash = "sha256:c728b120ebc00eb84e01882a6f5e7927a53960aa990ce7dd2b10f39005a67f80", size = 66419 }, +] + +[[package]] +name = "astunparse" +version = "1.6.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "wheel", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f3/af/4182184d3c338792894f34a62672919db7ca008c89abee9b564dd34d8029/astunparse-1.6.3.tar.gz", hash = "sha256:5ad93a8456f0d084c3456d059fd9a92cce667963232cbf763eac3bc5b7940872", size = 18290 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2b/03/13dde6512ad7b4557eb792fbcf0c653af6076b81e5941d36ec61f7ce6028/astunparse-1.6.3-py2.py3-none-any.whl", hash = "sha256:c2652417f2c8b5bb325c885ae329bdf3f86424075c4fd1a128674bc6fba4b8e8", size = 12732 }, +] + +[[package]] +name = "async-timeout" +version = "4.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/87/d6/21b30a550dafea84b1b8eee21b5e23fa16d010ae006011221f33dcd8d7f8/async-timeout-4.0.3.tar.gz", hash = "sha256:4640d96be84d82d02ed59ea2b7105a0f7b33abe8703703cd0ab0bf87c427522f", size = 8345 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/fa/e01228c2938de91d47b307831c62ab9e4001e747789d0b05baf779a6488c/async_timeout-4.0.3-py3-none-any.whl", hash = "sha256:7405140ff1230c310e51dc27b3145b9092d659ce68ff733fb0cefe3ee42be028", size = 5721 }, +] + +[[package]] +name = "attrs" +version = "23.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e3/fc/f800d51204003fa8ae392c4e8278f256206e7a919b708eef054f5f4b650d/attrs-23.2.0.tar.gz", hash = "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30", size = 780820 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e0/44/827b2a91a5816512fcaf3cc4ebc465ccd5d598c45cefa6703fcf4a79018f/attrs-23.2.0-py3-none-any.whl", hash = "sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1", size = 60752 }, +] + +[[package]] +name = "audioread" +version = "3.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/db/d2/87016ca9f083acadffb2d8da59bfa3253e4da7eeb9f71fb8e7708dc97ecd/audioread-3.0.1.tar.gz", hash = "sha256:ac5460a5498c48bdf2e8e767402583a4dcd13f4414d286f42ce4379e8b35066d", size = 116513 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/57/8d/30aa32745af16af0a9a650115fbe81bde7c610ed5c21b381fca0196f3a7f/audioread-3.0.1-py3-none-any.whl", hash = "sha256:4cdce70b8adc0da0a3c9e0d85fb10b3ace30fbdf8d1670fd443929b61d117c33", size = 23492 }, +] + +[[package]] +name = "av" +version = "9.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/56/e9/8928607b46177d907deeb8a10f40156afab401b7120e63662f392074475b/av-9.2.0.tar.gz", hash = "sha256:f2a7c226724d7f7745b376b459c500d9d17bd8d0473b7ea6bf8ddb4f7957c69d", size = 2391613 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3c/44/b73cfa0e13c4cf9f8cc2ec55012417e62023e9076c8261c588fbface11fc/av-9.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:29373aa86a055a07eebb14d253cb202033f63ba98c5a4b0233d6d4c07fc7a292", size = 24333176 }, + { url = "https://files.pythonhosted.org/packages/3c/18/7653aa99623e27c78b3d52b9b34b08555eccc4b30bdea728eeca4a4ce9ff/av-9.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:343b11d9b03e71da29f3ce56bc0a6c2d40aba448225dcf8296ab53c10527fff0", size = 20087989 }, + { url = "https://files.pythonhosted.org/packages/21/e5/724ac61e407b88d289d9a1dd4a53e229b8ae147147b882556cb9a833521a/av-9.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ea180bfd89bc0a9e392c32de204cf4e51648aefe2f375d430ce39c04e3ed625", size = 27521265 }, + { url = "https://files.pythonhosted.org/packages/4f/69/1ef57d9e33764f3686c2fe1f8ce03fa9b72ecb38807946500880bd0bcec2/av-9.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b07b91f534ee7a096068149404c67c3c0e5b4c373580b016151de0fcb440cd3f", size = 27493874 }, + { url = "https://files.pythonhosted.org/packages/a8/98/07775747e406eaad457328fe38ddf8a9d169e171e08eb4dace2b6874a299/av-9.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9983bc45dab65d2416d2f8a63785caa076a751590823fc8c199617d0dbad390", size = 28762961 }, + { url = "https://files.pythonhosted.org/packages/79/43/ef9c554e3cf9ec007ee15bd0f547c74705f8400d239f2006a21487e58b53/av-9.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:0340cc68f3d222bc9438b4fde12e3d68f949eeb5de9e090db182f2cb06e23d53", size = 24396821 }, + { url = "https://files.pythonhosted.org/packages/7d/63/22b40835cd8044d67e939094339b8036d7247f84cb88726a086182488e80/av-9.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:ba3d9e3fe23fd8a14e810f291386225acbdef1c7e5376cc10c8e85c2d4280771", size = 24331156 }, + { url = "https://files.pythonhosted.org/packages/5e/95/1ed89449948fb8afed91ce3ab416ecbdfb3866e4a7c79e73457057f6db3c/av-9.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b6be9388618af978304b56d1cf6b74c811db4f220dd320da5bd79640aa443358", size = 20086261 }, + { url = "https://files.pythonhosted.org/packages/7f/62/1bdf8d3a77128c0c333edfb521ed397e373b9f580978d0c0477f52639b18/av-9.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e59e4ab0e8832bf87707e5024283b3a24cc01784604f0b0e96fbfbadbd8d9fc0", size = 27457899 }, + { url = "https://files.pythonhosted.org/packages/d6/ea/9341315ce3cfe07f1dd5e7591f08d6ffacbab7c3692c154a704f6b2fdc37/av-9.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9b0f124e335561cf4de6b7cdc461283c5eba5f05cccb1a5e1b8ceb1cd15393d8", size = 27430190 }, + { url = "https://files.pythonhosted.org/packages/ac/45/887aec42446923081693a292f1bf22879e3a02d7083e3fb0cd2e47e4538d/av-9.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:49481c2d5bc296f451ccd3f93b1cb692d7f58a804b794b99c8b7743e058cae71", size = 28701235 }, + { url = "https://files.pythonhosted.org/packages/21/18/43633a745ade96c45fa59e689c960476d12d7027ae3e9f6dd389e46b2438/av-9.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:1cbf031f650f89943023eef80e8b2c99588bf9ba26ffef8b3b54bef7102ea3dc", size = 24395186 }, + { url = "https://files.pythonhosted.org/packages/08/0f/e5ed45543d788a3c5c6cab1ee4bd452baf66be42bd929c4b705437589208/av-9.2.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:ab90aa3ac2cbdf1f22087fc0fa439f643e96979f169ecfa1d496e114c3c3a8b3", size = 23948181 }, + { url = "https://files.pythonhosted.org/packages/f6/86/3c83412ed7fbdbd613ba19f9b2c85b025692dbd160eb280abd8a0ed0dea0/av-9.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:24dac414eafcc20423f2ec7e873706489433648f0e9af08a537996880aa55979", size = 21254363 }, + { url = "https://files.pythonhosted.org/packages/7f/8a/b5cb01b68bb7c09747015b02c5243b71f5d4454d1f25053a6e8800954f6a/av-9.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:17a7b6617d4201214f3dd5f628041b4fe56f4244dcd48399ed8d0cf324ca24d1", size = 21545764 }, + { url = "https://files.pythonhosted.org/packages/a1/e1/16f4a84419bbcb57860adc54c8885a3ab5af33d19be6f43d92182e5c8478/av-9.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8671fa01648ce7aac76e71816c2421ddb1939bf706e2e14684608ab1ce9dbbbb", size = 22486864 }, + { url = "https://files.pythonhosted.org/packages/94/2d/8daf20cc6238ca4fe7f31dab473fbe1b5619dea94fc5a12ebbcb14a8dab9/av-9.2.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7a5dc26b9df656bed5e1bdeaf8bcc4ff4a2e009ee90b3b3024a86cf8476b2cbf", size = 35786899 }, +] + +[[package]] +name = "babel" +version = "2.16.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2a/74/f1bc80f23eeba13393b7222b11d95ca3af2c1e28edca18af487137eefed9/babel-2.16.0.tar.gz", hash = "sha256:d1f3554ca26605fe173f3de0c65f750f5a42f924499bf134de6423582298e316", size = 9348104 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ed/20/bc79bc575ba2e2a7f70e8a1155618bb1301eaa5132a8271373a6903f73f8/babel-2.16.0-py3-none-any.whl", hash = "sha256:368b5b98b37c06b7daf6696391c3240c938b37767d4584413e8438c5c435fa8b", size = 9587599 }, +] + +[[package]] +name = "backoff" +version = "1.11.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/27/d2/9d2d0f0d6bbe17628b031040b1dadaee616286267e660ad5286a5ed657da/backoff-1.11.1.tar.gz", hash = "sha256:ccb962a2378418c667b3c979b504fdeb7d9e0d29c0579e3b13b86467177728cb", size = 14883 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d7/dd/88df7d5b2077825d6757a674123062c6e7545cc61556b42739e8757b7b65/backoff-1.11.1-py2.py3-none-any.whl", hash = "sha256:61928f8fa48d52e4faa81875eecf308eccfb1016b018bb6bd21e05b5d90a96c5", size = 13141 }, +] + +[[package]] +name = "beautifulsoup4" +version = "4.12.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "soupsieve", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b3/ca/824b1195773ce6166d388573fc106ce56d4a805bd7427b624e063596ec58/beautifulsoup4-4.12.3.tar.gz", hash = "sha256:74e3d1928edc070d21748185c46e3fb33490f22f52a3addee9aee0f4f7781051", size = 581181 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b1/fe/e8c672695b37eecc5cbf43e1d0638d88d66ba3a44c4d321c796f4e59167f/beautifulsoup4-4.12.3-py3-none-any.whl", hash = "sha256:b80878c9f40111313e55da8ba20bdba06d8fa3969fc68304167741bbf9e082ed", size = 147925 }, +] + +[[package]] +name = "binaryornot" +version = "0.4.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "chardet", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a7/fe/7ebfec74d49f97fc55cd38240c7a7d08134002b1e14be8c3897c0dd5e49b/binaryornot-0.4.4.tar.gz", hash = "sha256:359501dfc9d40632edc9fac890e19542db1a287bbcfa58175b66658392018061", size = 371054 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/24/7e/f7b6f453e6481d1e233540262ccbfcf89adcd43606f44a028d7f5fae5eb2/binaryornot-0.4.4-py2.py3-none-any.whl", hash = "sha256:b8b71173c917bddcd2c16070412e369c3ed7f0528926f70cac18a6c97fd563e4", size = 9006 }, +] + +[[package]] +name = "black" +version = "24.8.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "mypy-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pathspec", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "platformdirs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tomli", marker = "python_version < '3.11'" }, + { name = "typing-extensions", marker = "python_version < '3.11'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/04/b0/46fb0d4e00372f4a86a6f8efa3cb193c9f64863615e39010b1477e010578/black-24.8.0.tar.gz", hash = "sha256:2500945420b6784c38b9ee885af039f5e7471ef284ab03fa35ecdde4688cd83f", size = 644810 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/47/6e/74e29edf1fba3887ed7066930a87f698ffdcd52c5dbc263eabb06061672d/black-24.8.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:09cdeb74d494ec023ded657f7092ba518e8cf78fa8386155e4a03fdcc44679e6", size = 1632092 }, + { url = "https://files.pythonhosted.org/packages/ab/49/575cb6c3faee690b05c9d11ee2e8dba8fbd6d6c134496e644c1feb1b47da/black-24.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:81c6742da39f33b08e791da38410f32e27d632260e599df7245cccee2064afeb", size = 1457529 }, + { url = "https://files.pythonhosted.org/packages/7a/b4/d34099e95c437b53d01c4aa37cf93944b233066eb034ccf7897fa4e5f286/black-24.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:707a1ca89221bc8a1a64fb5e15ef39cd755633daa672a9db7498d1c19de66a42", size = 1757443 }, + { url = "https://files.pythonhosted.org/packages/87/a0/6d2e4175ef364b8c4b64f8441ba041ed65c63ea1db2720d61494ac711c15/black-24.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:d6417535d99c37cee4091a2f24eb2b6d5ec42b144d50f1f2e436d9fe1916fe1a", size = 1418012 }, + { url = "https://files.pythonhosted.org/packages/08/a6/0a3aa89de9c283556146dc6dbda20cd63a9c94160a6fbdebaf0918e4a3e1/black-24.8.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fb6e2c0b86bbd43dee042e48059c9ad7830abd5c94b0bc518c0eeec57c3eddc1", size = 1615080 }, + { url = "https://files.pythonhosted.org/packages/db/94/b803d810e14588bb297e565821a947c108390a079e21dbdcb9ab6956cd7a/black-24.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:837fd281f1908d0076844bc2b801ad2d369c78c45cf800cad7b61686051041af", size = 1438143 }, + { url = "https://files.pythonhosted.org/packages/a5/b5/f485e1bbe31f768e2e5210f52ea3f432256201289fd1a3c0afda693776b0/black-24.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:62e8730977f0b77998029da7971fa896ceefa2c4c4933fcd593fa599ecbf97a4", size = 1738774 }, + { url = "https://files.pythonhosted.org/packages/a8/69/a000fc3736f89d1bdc7f4a879f8aaf516fb03613bb51a0154070383d95d9/black-24.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:72901b4913cbac8972ad911dc4098d5753704d1f3c56e44ae8dce99eecb0e3af", size = 1427503 }, + { url = "https://files.pythonhosted.org/packages/a2/a8/05fb14195cfef32b7c8d4585a44b7499c2a4b205e1662c427b941ed87054/black-24.8.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:7c046c1d1eeb7aea9335da62472481d3bbf3fd986e093cffd35f4385c94ae368", size = 1646132 }, + { url = "https://files.pythonhosted.org/packages/41/77/8d9ce42673e5cb9988f6df73c1c5c1d4e9e788053cccd7f5fb14ef100982/black-24.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:649f6d84ccbae73ab767e206772cc2d7a393a001070a4c814a546afd0d423aed", size = 1448665 }, + { url = "https://files.pythonhosted.org/packages/cc/94/eff1ddad2ce1d3cc26c162b3693043c6b6b575f538f602f26fe846dfdc75/black-24.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2b59b250fdba5f9a9cd9d0ece6e6d993d91ce877d121d161e4698af3eb9c1018", size = 1762458 }, + { url = "https://files.pythonhosted.org/packages/28/ea/18b8d86a9ca19a6942e4e16759b2fa5fc02bbc0eb33c1b866fcd387640ab/black-24.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:6e55d30d44bed36593c3163b9bc63bf58b3b30e4611e4d88a0c3c239930ed5b2", size = 1436109 }, + { url = "https://files.pythonhosted.org/packages/13/b2/b3f24fdbb46f0e7ef6238e131f13572ee8279b70f237f221dd168a9dba1a/black-24.8.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:eab4dd44ce80dea27dc69db40dab62d4ca96112f87996bca68cd75639aeb2e4c", size = 1631706 }, + { url = "https://files.pythonhosted.org/packages/d9/35/31010981e4a05202a84a3116423970fd1a59d2eda4ac0b3570fbb7029ddc/black-24.8.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3c4285573d4897a7610054af5a890bde7c65cb466040c5f0c8b732812d7f0e5e", size = 1457429 }, + { url = "https://files.pythonhosted.org/packages/27/25/3f706b4f044dd569a20a4835c3b733dedea38d83d2ee0beb8178a6d44945/black-24.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9e84e33b37be070ba135176c123ae52a51f82306def9f7d063ee302ecab2cf47", size = 1756488 }, + { url = "https://files.pythonhosted.org/packages/63/72/79375cd8277cbf1c5670914e6bd4c1b15dea2c8f8e906dc21c448d0535f0/black-24.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:73bbf84ed136e45d451a260c6b73ed674652f90a2b3211d6a35e78054563a9bb", size = 1417721 }, + { url = "https://files.pythonhosted.org/packages/27/1e/83fa8a787180e1632c3d831f7e58994d7aaf23a0961320d21e84f922f919/black-24.8.0-py3-none-any.whl", hash = "sha256:972085c618ee94f402da1af548a4f218c754ea7e5dc70acb168bfaca4c2542ed", size = 206504 }, +] + +[[package]] +name = "blinker" +version = "1.8.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1e/57/a6a1721eff09598fb01f3c7cda070c1b6a0f12d63c83236edf79a440abcc/blinker-1.8.2.tar.gz", hash = "sha256:8f77b09d3bf7c795e969e9486f39c2c5e9c39d4ee07424be2bc594ece9642d83", size = 23161 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bb/2a/10164ed1f31196a2f7f3799368a821765c62851ead0e630ab52b8e14b4d0/blinker-1.8.2-py3-none-any.whl", hash = "sha256:1779309f71bf239144b9399d06ae925637cf6634cf6bd131104184531bf67c01", size = 9456 }, +] + +[[package]] +name = "boto3" +version = "1.34.157" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "botocore", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jmespath", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "s3transfer", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/54/4d/ab9ef9ebda797bf162cc489756682044e293a23153eb2339aa7c7faf0ae5/boto3-1.34.157.tar.gz", hash = "sha256:7ef19ed38cba9863b58430fb4a66a72a5c250304f234bd1c16b860f9bf25677b", size = 108625 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ed/64/2083f96160b06dc565379c760b7dac4b49d827c4630828223ea81763a8a4/boto3-1.34.157-py3-none-any.whl", hash = "sha256:3cc357156df5482154a016f138d1953061a181b4c594f8b6302c9d6c024bd950", size = 139175 }, +] + +[[package]] +name = "botocore" +version = "1.34.157" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jmespath", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "python-dateutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "urllib3" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ae/d9/e04875f81b82d20ccfaa9fe7db4f794187561eb5c1c4946e999ba1590dd2/botocore-1.34.157.tar.gz", hash = "sha256:5628a36cec123cdc8c1158d05a7b06aa5e53649ad73796c50ef3fb51199785fb", size = 12666242 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9c/2d/3458eadc722bf7c9af67ff9fafe6c4bb4679314a704fe7852ebbae5f7ea9/botocore-1.34.157-py3-none-any.whl", hash = "sha256:c6cba6de8eb86ca4d2f934e009b37adbe1e7fdcfa52fbab74783f4c30676e07d", size = 12458655 }, +] + +[[package]] +name = "cachetools" +version = "5.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a7/3f/ea907ec6d15f68ea7f381546ba58adcb298417a59f01a2962cb5e486489f/cachetools-5.4.0.tar.gz", hash = "sha256:b8adc2e7c07f105ced7bc56dbb6dfbe7c4a00acce20e2227b3f355be89bc6827", size = 26975 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/e6/a1551acbaa06f3e48b311329828a34bc9c51a8cfaecdeb4d03c329a1ef85/cachetools-5.4.0-py3-none-any.whl", hash = "sha256:3ae3b49a3d5e28a77a0be2b37dbcb89005058959cb2323858c2657c4a8cab474", size = 9455 }, +] + +[[package]] +name = "certifi" +version = "2024.7.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c2/02/a95f2b11e207f68bc64d7aae9666fed2e2b3f307748d5123dffb72a1bbea/certifi-2024.7.4.tar.gz", hash = "sha256:5a1e7645bc0ec61a09e26c36f6106dd4cf40c6db3a1fb6352b0244e7fb057c7b", size = 164065 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1c/d5/c84e1a17bf61d4df64ca866a1c9a913874b4e9bdc131ec689a0ad013fb36/certifi-2024.7.4-py3-none-any.whl", hash = "sha256:c198e21b1289c2ab85ee4e67bb4b4ef3ead0892059901a8d5b622f24a1101e90", size = 162960 }, +] + +[[package]] +name = "cffi" +version = "1.17.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pycparser", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1e/bf/82c351342972702867359cfeba5693927efe0a8dd568165490144f554b18/cffi-1.17.0.tar.gz", hash = "sha256:f3157624b7558b914cb039fd1af735e5e8049a87c817cc215109ad1c8779df76", size = 516073 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/00/2a/9071bf1e20bf9f695643b6c3e0f838f340b95ee29de0d1bb7968772409be/cffi-1.17.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f9338cc05451f1942d0d8203ec2c346c830f8e86469903d5126c1f0a13a2bcbb", size = 181841 }, + { url = "https://files.pythonhosted.org/packages/4b/42/60116f10466d692b64aef32ac40fd79b11344ab6ef889ff8e3d047f2fcb2/cffi-1.17.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a0ce71725cacc9ebf839630772b07eeec220cbb5f03be1399e0457a1464f8e1a", size = 178242 }, + { url = "https://files.pythonhosted.org/packages/26/8e/a53f844454595c6e9215e56cda123db3427f8592f2c7b5ef1be782f620d6/cffi-1.17.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c815270206f983309915a6844fe994b2fa47e5d05c4c4cef267c3b30e34dbe42", size = 425676 }, + { url = "https://files.pythonhosted.org/packages/60/ac/6402563fb40b64c7ccbea87836d9c9498b374629af3449f3d8ff34df187d/cffi-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d6bdcd415ba87846fd317bee0774e412e8792832e7805938987e4ede1d13046d", size = 447842 }, + { url = "https://files.pythonhosted.org/packages/b2/e7/e2ffdb8de59f48f17b196813e9c717fbed2364e39b10bdb3836504e89486/cffi-1.17.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8a98748ed1a1df4ee1d6f927e151ed6c1a09d5ec21684de879c7ea6aa96f58f2", size = 455224 }, + { url = "https://files.pythonhosted.org/packages/59/55/3e8968e92fe35c1c368959a070a1276c10cae29cdad0fd0daa36c69e237e/cffi-1.17.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0a048d4f6630113e54bb4b77e315e1ba32a5a31512c31a273807d0027a7e69ab", size = 436341 }, + { url = "https://files.pythonhosted.org/packages/7f/df/700aaf009dfbfa04acb1ed487586c03c788c6a312f0361ad5f298c5f5a7d/cffi-1.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:24aa705a5f5bd3a8bcfa4d123f03413de5d86e497435693b638cbffb7d5d8a1b", size = 445861 }, + { url = "https://files.pythonhosted.org/packages/5a/70/637f070aae533ea11ab77708a820f3935c0edb4fbcef9393b788e6f426a5/cffi-1.17.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:856bf0924d24e7f93b8aee12a3a1095c34085600aa805693fb7f5d1962393206", size = 460982 }, + { url = "https://files.pythonhosted.org/packages/f7/1a/7d4740fa1ccc4fcc888963fc3165d69ef1a2c8d42c8911c946703ff5d4a5/cffi-1.17.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:4304d4416ff032ed50ad6bb87416d802e67139e31c0bde4628f36a47a3164bfa", size = 438434 }, + { url = "https://files.pythonhosted.org/packages/d0/d9/c48cc38aaf6f53a8b5d2dbf6fe788410fcbab33b15a69c56c01d2b08f6a2/cffi-1.17.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:331ad15c39c9fe9186ceaf87203a9ecf5ae0ba2538c9e898e3a6967e8ad3db6f", size = 461219 }, + { url = "https://files.pythonhosted.org/packages/26/ec/b6a7f660a7f27bd2bb53fe99a2ccafa279088395ec8639b25b8950985b2d/cffi-1.17.0-cp310-cp310-win32.whl", hash = "sha256:669b29a9eca6146465cc574659058ed949748f0809a2582d1f1a324eb91054dc", size = 171406 }, + { url = "https://files.pythonhosted.org/packages/08/42/8c00824787e6f5ec55194f5cd30c4ba4b9d9d5bb0d4d0007b1bb948d4ad4/cffi-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:48b389b1fd5144603d61d752afd7167dfd205973a43151ae5045b35793232aa2", size = 180809 }, + { url = "https://files.pythonhosted.org/packages/53/cc/9298fb6235522e00e47d78d6aa7f395332ef4e5f6fe124f9a03aa60600f7/cffi-1.17.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c5d97162c196ce54af6700949ddf9409e9833ef1003b4741c2b39ef46f1d9720", size = 181912 }, + { url = "https://files.pythonhosted.org/packages/e7/79/dc5334fbe60635d0846c56597a8d2af078a543ff22bc48d36551a0de62c2/cffi-1.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5ba5c243f4004c750836f81606a9fcb7841f8874ad8f3bf204ff5e56332b72b9", size = 178297 }, + { url = "https://files.pythonhosted.org/packages/39/d7/ef1b6b16b51ccbabaced90ff0d821c6c23567fc4b2e4a445aea25d3ceb92/cffi-1.17.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bb9333f58fc3a2296fb1d54576138d4cf5d496a2cc118422bd77835e6ae0b9cb", size = 444909 }, + { url = "https://files.pythonhosted.org/packages/29/b8/6e3c61885537d985c78ef7dd779b68109ba256263d74a2f615c40f44548d/cffi-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:435a22d00ec7d7ea533db494da8581b05977f9c37338c80bc86314bec2619424", size = 468854 }, + { url = "https://files.pythonhosted.org/packages/0b/49/adad1228e19b931e523c2731e6984717d5f9e33a2f9971794ab42815b29b/cffi-1.17.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d1df34588123fcc88c872f5acb6f74ae59e9d182a2707097f9e28275ec26a12d", size = 476890 }, + { url = "https://files.pythonhosted.org/packages/76/54/c00f075c3e7fd14d9011713bcdb5b4f105ad044c5ad948db7b1a0a7e4e78/cffi-1.17.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:df8bb0010fdd0a743b7542589223a2816bdde4d94bb5ad67884348fa2c1c67e8", size = 459374 }, + { url = "https://files.pythonhosted.org/packages/f3/b9/f163bb3fa4fbc636ee1f2a6a4598c096cdef279823ddfaa5734e556dd206/cffi-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8b5b9712783415695663bd463990e2f00c6750562e6ad1d28e072a611c5f2a6", size = 466891 }, + { url = "https://files.pythonhosted.org/packages/31/52/72bbc95f6d06ff2e88a6fa13786be4043e542cb24748e1351aba864cb0a7/cffi-1.17.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ffef8fd58a36fb5f1196919638f73dd3ae0db1a878982b27a9a5a176ede4ba91", size = 477658 }, + { url = "https://files.pythonhosted.org/packages/67/20/d694811457eeae0c7663fa1a7ca201ce495533b646c1180d4ac25684c69c/cffi-1.17.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:4e67d26532bfd8b7f7c05d5a766d6f437b362c1bf203a3a5ce3593a645e870b8", size = 453890 }, + { url = "https://files.pythonhosted.org/packages/dc/79/40cbf5739eb4f694833db5a27ce7f63e30a9b25b4a836c4f25fb7272aacc/cffi-1.17.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:45f7cd36186db767d803b1473b3c659d57a23b5fa491ad83c6d40f2af58e4dbb", size = 478254 }, + { url = "https://files.pythonhosted.org/packages/e9/eb/2c384c385cca5cae67ca10ac4ef685277680b8c552b99aedecf4ea23ff7e/cffi-1.17.0-cp311-cp311-win32.whl", hash = "sha256:a9015f5b8af1bb6837a3fcb0cdf3b874fe3385ff6274e8b7925d81ccaec3c5c9", size = 171285 }, + { url = "https://files.pythonhosted.org/packages/ca/42/74cb1e0f1b79cb64672f3cb46245b506239c1297a20c0d9c3aeb3929cb0c/cffi-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:b50aaac7d05c2c26dfd50c3321199f019ba76bb650e346a6ef3616306eed67b0", size = 180842 }, + { url = "https://files.pythonhosted.org/packages/1a/1f/7862231350cc959a3138889d2c8d33da7042b22e923457dfd4cd487d772a/cffi-1.17.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aec510255ce690d240f7cb23d7114f6b351c733a74c279a84def763660a2c3bc", size = 182826 }, + { url = "https://files.pythonhosted.org/packages/8b/8c/26119bf8b79e05a1c39812064e1ee7981e1f8a5372205ba5698ea4dd958d/cffi-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2770bb0d5e3cc0e31e7318db06efcbcdb7b31bcb1a70086d3177692a02256f59", size = 178494 }, + { url = "https://files.pythonhosted.org/packages/61/94/4882c47d3ad396d91f0eda6ef16d45be3d752a332663b7361933039ed66a/cffi-1.17.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:db9a30ec064129d605d0f1aedc93e00894b9334ec74ba9c6bdd08147434b33eb", size = 454459 }, + { url = "https://files.pythonhosted.org/packages/0f/7c/a6beb119ad515058c5ee1829742d96b25b2b9204ff920746f6e13bf574eb/cffi-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a47eef975d2b8b721775a0fa286f50eab535b9d56c70a6e62842134cf7841195", size = 478502 }, + { url = "https://files.pythonhosted.org/packages/61/8a/2575cd01a90e1eca96a30aec4b1ac101a6fae06c49d490ac2704fa9bc8ba/cffi-1.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f3e0992f23bbb0be00a921eae5363329253c3b86287db27092461c887b791e5e", size = 485381 }, + { url = "https://files.pythonhosted.org/packages/cd/66/85899f5a9f152db49646e0c77427173e1b77a1046de0191ab3b0b9a5e6e3/cffi-1.17.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6107e445faf057c118d5050560695e46d272e5301feffda3c41849641222a828", size = 470907 }, + { url = "https://files.pythonhosted.org/packages/00/13/150924609bf377140abe6e934ce0a57f3fc48f1fd956ec1f578ce97a4624/cffi-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eb862356ee9391dc5a0b3cbc00f416b48c1b9a52d252d898e5b7696a5f9fe150", size = 479074 }, + { url = "https://files.pythonhosted.org/packages/17/fd/7d73d7110155c036303b0a6462c56250e9bc2f4119d7591d27417329b4d1/cffi-1.17.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:c1c13185b90bbd3f8b5963cd8ce7ad4ff441924c31e23c975cb150e27c2bf67a", size = 484225 }, + { url = "https://files.pythonhosted.org/packages/fc/83/8353e5c9b01bb46332dac3dfb18e6c597a04ceb085c19c814c2f78a8c0d0/cffi-1.17.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:17c6d6d3260c7f2d94f657e6872591fe8733872a86ed1345bda872cfc8c74885", size = 488388 }, + { url = "https://files.pythonhosted.org/packages/73/0c/f9d5ca9a095b1fc88ef77d1f8b85d11151c374144e4606da33874e17b65b/cffi-1.17.0-cp312-cp312-win32.whl", hash = "sha256:c3b8bd3133cd50f6b637bb4322822c94c5ce4bf0d724ed5ae70afce62187c492", size = 172096 }, + { url = "https://files.pythonhosted.org/packages/72/21/8c5d285fe20a6e31d29325f1287bb0e55f7d93630a5a44cafdafb5922495/cffi-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:dca802c8db0720ce1c49cce1149ff7b06e91ba15fa84b1d59144fef1a1bc7ac2", size = 181478 }, + { url = "https://files.pythonhosted.org/packages/17/8f/581f2f3c3464d5f7cf87c2f7a5ba9acc6976253e02d73804240964243ec2/cffi-1.17.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:6ce01337d23884b21c03869d2f68c5523d43174d4fc405490eb0091057943118", size = 182638 }, + { url = "https://files.pythonhosted.org/packages/8d/1c/c9afa66684b7039f48018eb11b229b659dfb32b7a16b88251bac106dd1ff/cffi-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:cab2eba3830bf4f6d91e2d6718e0e1c14a2f5ad1af68a89d24ace0c6b17cced7", size = 178453 }, + { url = "https://files.pythonhosted.org/packages/cc/b6/1a134d479d3a5a1ff2fabbee551d1d3f1dd70f453e081b5f70d604aae4c0/cffi-1.17.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:14b9cbc8f7ac98a739558eb86fabc283d4d564dafed50216e7f7ee62d0d25377", size = 454441 }, + { url = "https://files.pythonhosted.org/packages/b1/b4/e1569475d63aad8042b0935dbf62ae2a54d1e9142424e2b0e924d2d4a529/cffi-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b00e7bcd71caa0282cbe3c90966f738e2db91e64092a877c3ff7f19a1628fdcb", size = 478543 }, + { url = "https://files.pythonhosted.org/packages/d2/40/a9ad03fbd64309dec5bb70bc803a9a6772602de0ee164d7b9a6ca5a89249/cffi-1.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:41f4915e09218744d8bae14759f983e466ab69b178de38066f7579892ff2a555", size = 485463 }, + { url = "https://files.pythonhosted.org/packages/a6/1a/f10be60e006dd9242a24bcc2b1cd55c34c578380100f742d8c610f7a5d26/cffi-1.17.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4760a68cab57bfaa628938e9c2971137e05ce48e762a9cb53b76c9b569f1204", size = 470854 }, + { url = "https://files.pythonhosted.org/packages/cc/b3/c035ed21aa3d39432bd749fe331ee90e4bc83ea2dbed1f71c4bc26c41084/cffi-1.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:011aff3524d578a9412c8b3cfaa50f2c0bd78e03eb7af7aa5e0df59b158efb2f", size = 479096 }, + { url = "https://files.pythonhosted.org/packages/00/cb/6f7edde01131de9382c89430b8e253b8c8754d66b63a62059663ceafeab2/cffi-1.17.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:a003ac9edc22d99ae1286b0875c460351f4e101f8c9d9d2576e78d7e048f64e0", size = 484013 }, + { url = "https://files.pythonhosted.org/packages/b9/83/8e4e8c211ea940210d293e951bf06b1bfb90f2eeee590e9778e99b4a8676/cffi-1.17.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ef9528915df81b8f4c7612b19b8628214c65c9b7f74db2e34a646a0a2a0da2d4", size = 488119 }, + { url = "https://files.pythonhosted.org/packages/5e/52/3f7cfbc4f444cb4f73ff17b28690d12436dde665f67d68f1e1687908ab6c/cffi-1.17.0-cp313-cp313-win32.whl", hash = "sha256:70d2aa9fb00cf52034feac4b913181a6e10356019b18ef89bc7c12a283bf5f5a", size = 172122 }, + { url = "https://files.pythonhosted.org/packages/94/19/cf5baa07ee0f0e55eab7382459fbddaba0fdb0ba45973dd92556ae0d02db/cffi-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:b7b6ea9e36d32582cda3465f54c4b454f62f23cb083ebc7a94e2ca6ef011c3a7", size = 181504 }, + { url = "https://files.pythonhosted.org/packages/96/22/7866bf5450d6a5b8cf4123abde25b2126fce03ac4efc1244a44367b01c65/cffi-1.17.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1a2ddbac59dc3716bc79f27906c010406155031a1c801410f1bafff17ea304d2", size = 181868 }, + { url = "https://files.pythonhosted.org/packages/0c/03/934cd50132c1637a52ab41c093ff89b93086181f6cdc40d43185083818c1/cffi-1.17.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6327b572f5770293fc062a7ec04160e89741e8552bf1c358d1a23eba68166759", size = 178261 }, + { url = "https://files.pythonhosted.org/packages/4a/1e/06c7bc7ed387e42f0ecdef2477a5b291455c2158bb7a565848ef96bba113/cffi-1.17.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dbc183e7bef690c9abe5ea67b7b60fdbca81aa8da43468287dae7b5c046107d4", size = 424564 }, + { url = "https://files.pythonhosted.org/packages/b7/9b/43f26a558d192bb0691051153add44404af0adf6e3e35d5ce83340d41a92/cffi-1.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bdc0f1f610d067c70aa3737ed06e2726fd9d6f7bfee4a351f4c40b6831f4e82", size = 446854 }, + { url = "https://files.pythonhosted.org/packages/b5/5c/7777c4b0fc212caf180b20ec51da3d9fa00910d40f042004d33679f39ec7/cffi-1.17.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6d872186c1617d143969defeadac5a904e6e374183e07977eedef9c07c8953bf", size = 454217 }, + { url = "https://files.pythonhosted.org/packages/8f/90/a40b9821755bd3dfd2dd9a341b660cd57dfa2fc3bb9d8c4499477fa27ae3/cffi-1.17.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0d46ee4764b88b91f16661a8befc6bfb24806d885e27436fdc292ed7e6f6d058", size = 435285 }, + { url = "https://files.pythonhosted.org/packages/e1/d3/36e54b85f670400ff0440ab743fa0de66bdd89b8f54b7d2370708cdcb03f/cffi-1.17.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f76a90c345796c01d85e6332e81cab6d70de83b829cf1d9762d0a3da59c7932", size = 444868 }, + { url = "https://files.pythonhosted.org/packages/15/aa/62f87ceb24b03e42061050b1139864347fd73291d2b70b3daefd0c4fdaa8/cffi-1.17.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0e60821d312f99d3e1569202518dddf10ae547e799d75aef3bca3a2d9e8ee693", size = 460136 }, + { url = "https://files.pythonhosted.org/packages/d4/b6/7abfb922035cc03d2a6c05b6e90f55d60bfea26ef97a2d10357b3f0bdbf3/cffi-1.17.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:eb09b82377233b902d4c3fbeeb7ad731cdab579c6c6fda1f763cd779139e47c3", size = 437565 }, + { url = "https://files.pythonhosted.org/packages/83/a8/306c52a4625eef30a6d7828c0c7ecaf9a11e1fc83efe506d6fcf980b68c7/cffi-1.17.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:24658baf6224d8f280e827f0a50c46ad819ec8ba380a42448e24459daf809cf4", size = 460284 }, + { url = "https://files.pythonhosted.org/packages/a8/05/4daca3a5d2af2af95828b35e65221d4f8afb6155c9d80a1ebda7a11348ab/cffi-1.17.0-cp39-cp39-win32.whl", hash = "sha256:0fdacad9e0d9fc23e519efd5ea24a70348305e8d7d85ecbb1a5fa66dc834e7fb", size = 171382 }, + { url = "https://files.pythonhosted.org/packages/89/2d/ec3ae32daf8713681ded997aa2e6d68306c11a41627fb351201111ea0d24/cffi-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:7cbc78dc018596315d4e7841c8c3a7ae31cc4d638c9b627f87d52e8abaaf2d29", size = 180820 }, +] + +[[package]] +name = "chardet" +version = "5.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f3/0d/f7b6ab21ec75897ed80c17d79b15951a719226b9fababf1e40ea74d69079/chardet-5.2.0.tar.gz", hash = "sha256:1b3b6ff479a8c414bc3fa2c0852995695c4a026dcd6d0633b2dd092ca39c1cf7", size = 2069618 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/38/6f/f5fbc992a329ee4e0f288c1fe0e2ad9485ed064cac731ed2fe47dcc38cbf/chardet-5.2.0-py3-none-any.whl", hash = "sha256:e1cf59446890a00105fe7b7912492ea04b6e6f06d4b742b2c788469e34c82970", size = 199385 }, +] + +[[package]] +name = "charset-normalizer" +version = "3.3.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/63/09/c1bc53dab74b1816a00d8d030de5bf98f724c52c1635e07681d312f20be8/charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5", size = 104809 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2b/61/095a0aa1a84d1481998b534177c8566fdc50bb1233ea9a0478cd3cc075bd/charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3", size = 194219 }, + { url = "https://files.pythonhosted.org/packages/cc/94/f7cf5e5134175de79ad2059edf2adce18e0685ebdb9227ff0139975d0e93/charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027", size = 122521 }, + { url = "https://files.pythonhosted.org/packages/46/6a/d5c26c41c49b546860cc1acabdddf48b0b3fb2685f4f5617ac59261b44ae/charset_normalizer-3.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03", size = 120383 }, + { url = "https://files.pythonhosted.org/packages/b8/60/e2f67915a51be59d4539ed189eb0a2b0d292bf79270410746becb32bc2c3/charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d", size = 138223 }, + { url = "https://files.pythonhosted.org/packages/05/8c/eb854996d5fef5e4f33ad56927ad053d04dc820e4a3d39023f35cad72617/charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e", size = 148101 }, + { url = "https://files.pythonhosted.org/packages/f6/93/bb6cbeec3bf9da9b2eba458c15966658d1daa8b982c642f81c93ad9b40e1/charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6", size = 140699 }, + { url = "https://files.pythonhosted.org/packages/da/f1/3702ba2a7470666a62fd81c58a4c40be00670e5006a67f4d626e57f013ae/charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5", size = 142065 }, + { url = "https://files.pythonhosted.org/packages/3f/ba/3f5e7be00b215fa10e13d64b1f6237eb6ebea66676a41b2bcdd09fe74323/charset_normalizer-3.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537", size = 144505 }, + { url = "https://files.pythonhosted.org/packages/33/c3/3b96a435c5109dd5b6adc8a59ba1d678b302a97938f032e3770cc84cd354/charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c", size = 139425 }, + { url = "https://files.pythonhosted.org/packages/43/05/3bf613e719efe68fb3a77f9c536a389f35b95d75424b96b426a47a45ef1d/charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12", size = 145287 }, + { url = "https://files.pythonhosted.org/packages/58/78/a0bc646900994df12e07b4ae5c713f2b3e5998f58b9d3720cce2aa45652f/charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f", size = 149929 }, + { url = "https://files.pythonhosted.org/packages/eb/5c/97d97248af4920bc68687d9c3b3c0f47c910e21a8ff80af4565a576bd2f0/charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269", size = 141605 }, + { url = "https://files.pythonhosted.org/packages/a8/31/47d018ef89f95b8aded95c589a77c072c55e94b50a41aa99c0a2008a45a4/charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519", size = 142646 }, + { url = "https://files.pythonhosted.org/packages/ae/d5/4fecf1d58bedb1340a50f165ba1c7ddc0400252d6832ff619c4568b36cc0/charset_normalizer-3.3.2-cp310-cp310-win32.whl", hash = "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73", size = 92846 }, + { url = "https://files.pythonhosted.org/packages/a2/a0/4af29e22cb5942488cf45630cbdd7cefd908768e69bdd90280842e4e8529/charset_normalizer-3.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09", size = 100343 }, + { url = "https://files.pythonhosted.org/packages/68/77/02839016f6fbbf808e8b38601df6e0e66c17bbab76dff4613f7511413597/charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db", size = 191647 }, + { url = "https://files.pythonhosted.org/packages/3e/33/21a875a61057165e92227466e54ee076b73af1e21fe1b31f1e292251aa1e/charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96", size = 121434 }, + { url = "https://files.pythonhosted.org/packages/dd/51/68b61b90b24ca35495956b718f35a9756ef7d3dd4b3c1508056fa98d1a1b/charset_normalizer-3.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e", size = 118979 }, + { url = "https://files.pythonhosted.org/packages/e4/a6/7ee57823d46331ddc37dd00749c95b0edec2c79b15fc0d6e6efb532e89ac/charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f", size = 136582 }, + { url = "https://files.pythonhosted.org/packages/74/f1/0d9fe69ac441467b737ba7f48c68241487df2f4522dd7246d9426e7c690e/charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574", size = 146645 }, + { url = "https://files.pythonhosted.org/packages/05/31/e1f51c76db7be1d4aef220d29fbfa5dbb4a99165d9833dcbf166753b6dc0/charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4", size = 139398 }, + { url = "https://files.pythonhosted.org/packages/40/26/f35951c45070edc957ba40a5b1db3cf60a9dbb1b350c2d5bef03e01e61de/charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8", size = 140273 }, + { url = "https://files.pythonhosted.org/packages/07/07/7e554f2bbce3295e191f7e653ff15d55309a9ca40d0362fcdab36f01063c/charset_normalizer-3.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc", size = 142577 }, + { url = "https://files.pythonhosted.org/packages/d8/b5/eb705c313100defa57da79277d9207dc8d8e45931035862fa64b625bfead/charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae", size = 137747 }, + { url = "https://files.pythonhosted.org/packages/19/28/573147271fd041d351b438a5665be8223f1dd92f273713cb882ddafe214c/charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887", size = 143375 }, + { url = "https://files.pythonhosted.org/packages/cf/7c/f3b682fa053cc21373c9a839e6beba7705857075686a05c72e0f8c4980ca/charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae", size = 148474 }, + { url = "https://files.pythonhosted.org/packages/1e/49/7ab74d4ac537ece3bc3334ee08645e231f39f7d6df6347b29a74b0537103/charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce", size = 140232 }, + { url = "https://files.pythonhosted.org/packages/2d/dc/9dacba68c9ac0ae781d40e1a0c0058e26302ea0660e574ddf6797a0347f7/charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f", size = 140859 }, + { url = "https://files.pythonhosted.org/packages/6c/c2/4a583f800c0708dd22096298e49f887b49d9746d0e78bfc1d7e29816614c/charset_normalizer-3.3.2-cp311-cp311-win32.whl", hash = "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab", size = 92509 }, + { url = "https://files.pythonhosted.org/packages/57/ec/80c8d48ac8b1741d5b963797b7c0c869335619e13d4744ca2f67fc11c6fc/charset_normalizer-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77", size = 99870 }, + { url = "https://files.pythonhosted.org/packages/d1/b2/fcedc8255ec42afee97f9e6f0145c734bbe104aac28300214593eb326f1d/charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8", size = 192892 }, + { url = "https://files.pythonhosted.org/packages/2e/7d/2259318c202f3d17f3fe6438149b3b9e706d1070fe3fcbb28049730bb25c/charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b", size = 122213 }, + { url = "https://files.pythonhosted.org/packages/3a/52/9f9d17c3b54dc238de384c4cb5a2ef0e27985b42a0e5cc8e8a31d918d48d/charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6", size = 119404 }, + { url = "https://files.pythonhosted.org/packages/99/b0/9c365f6d79a9f0f3c379ddb40a256a67aa69c59609608fe7feb6235896e1/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a", size = 137275 }, + { url = "https://files.pythonhosted.org/packages/91/33/749df346e93d7a30cdcb90cbfdd41a06026317bfbfb62cd68307c1a3c543/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389", size = 147518 }, + { url = "https://files.pythonhosted.org/packages/72/1a/641d5c9f59e6af4c7b53da463d07600a695b9824e20849cb6eea8a627761/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa", size = 140182 }, + { url = "https://files.pythonhosted.org/packages/ee/fb/14d30eb4956408ee3ae09ad34299131fb383c47df355ddb428a7331cfa1e/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b", size = 141869 }, + { url = "https://files.pythonhosted.org/packages/df/3e/a06b18788ca2eb6695c9b22325b6fde7dde0f1d1838b1792a0076f58fe9d/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed", size = 144042 }, + { url = "https://files.pythonhosted.org/packages/45/59/3d27019d3b447a88fe7e7d004a1e04be220227760264cc41b405e863891b/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26", size = 138275 }, + { url = "https://files.pythonhosted.org/packages/7b/ef/5eb105530b4da8ae37d506ccfa25057961b7b63d581def6f99165ea89c7e/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d", size = 144819 }, + { url = "https://files.pythonhosted.org/packages/a2/51/e5023f937d7f307c948ed3e5c29c4b7a3e42ed2ee0b8cdf8f3a706089bf0/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068", size = 149415 }, + { url = "https://files.pythonhosted.org/packages/24/9d/2e3ef673dfd5be0154b20363c5cdcc5606f35666544381bee15af3778239/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143", size = 141212 }, + { url = "https://files.pythonhosted.org/packages/5b/ae/ce2c12fcac59cb3860b2e2d76dc405253a4475436b1861d95fe75bdea520/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4", size = 142167 }, + { url = "https://files.pythonhosted.org/packages/ed/3a/a448bf035dce5da359daf9ae8a16b8a39623cc395a2ffb1620aa1bce62b0/charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7", size = 93041 }, + { url = "https://files.pythonhosted.org/packages/b6/7c/8debebb4f90174074b827c63242c23851bdf00a532489fba57fef3416e40/charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001", size = 100397 }, + { url = "https://files.pythonhosted.org/packages/f7/9d/bcf4a449a438ed6f19790eee543a86a740c77508fbc5ddab210ab3ba3a9a/charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4", size = 194198 }, + { url = "https://files.pythonhosted.org/packages/66/fe/c7d3da40a66a6bf2920cce0f436fa1f62ee28aaf92f412f0bf3b84c8ad6c/charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d", size = 122494 }, + { url = "https://files.pythonhosted.org/packages/2a/9d/a6d15bd1e3e2914af5955c8eb15f4071997e7078419328fee93dfd497eb7/charset_normalizer-3.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0", size = 120393 }, + { url = "https://files.pythonhosted.org/packages/3d/85/5b7416b349609d20611a64718bed383b9251b5a601044550f0c8983b8900/charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269", size = 138331 }, + { url = "https://files.pythonhosted.org/packages/79/66/8946baa705c588521afe10b2d7967300e49380ded089a62d38537264aece/charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c", size = 148097 }, + { url = "https://files.pythonhosted.org/packages/44/80/b339237b4ce635b4af1c73742459eee5f97201bd92b2371c53e11958392e/charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519", size = 140711 }, + { url = "https://files.pythonhosted.org/packages/98/69/5d8751b4b670d623aa7a47bef061d69c279e9f922f6705147983aa76c3ce/charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796", size = 142251 }, + { url = "https://files.pythonhosted.org/packages/1f/8d/33c860a7032da5b93382cbe2873261f81467e7b37f4ed91e25fed62fd49b/charset_normalizer-3.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185", size = 144636 }, + { url = "https://files.pythonhosted.org/packages/c2/65/52aaf47b3dd616c11a19b1052ce7fa6321250a7a0b975f48d8c366733b9f/charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c", size = 139514 }, + { url = "https://files.pythonhosted.org/packages/51/fd/0ee5b1c2860bb3c60236d05b6e4ac240cf702b67471138571dad91bcfed8/charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458", size = 145528 }, + { url = "https://files.pythonhosted.org/packages/e1/9c/60729bf15dc82e3aaf5f71e81686e42e50715a1399770bcde1a9e43d09db/charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2", size = 149804 }, + { url = "https://files.pythonhosted.org/packages/53/cd/aa4b8a4d82eeceb872f83237b2d27e43e637cac9ffaef19a1321c3bafb67/charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8", size = 141708 }, + { url = "https://files.pythonhosted.org/packages/54/7f/cad0b328759630814fcf9d804bfabaf47776816ad4ef2e9938b7e1123d04/charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561", size = 142708 }, + { url = "https://files.pythonhosted.org/packages/c1/9d/254a2f1bcb0ce9acad838e94ed05ba71a7cb1e27affaa4d9e1ca3958cdb6/charset_normalizer-3.3.2-cp39-cp39-win32.whl", hash = "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f", size = 92830 }, + { url = "https://files.pythonhosted.org/packages/2f/0e/d7303ccae9735ff8ff01e36705ad6233ad2002962e8668a970fc000c5e1b/charset_normalizer-3.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d", size = 100376 }, + { url = "https://files.pythonhosted.org/packages/28/76/e6222113b83e3622caa4bb41032d0b1bf785250607392e1b778aca0b8a7d/charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc", size = 48543 }, +] + +[[package]] +name = "chex" +version = "0.1.82" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jaxlib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "toolz", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/48/32/8986136bcda43de50b6189bd9c3b43ecbc3cd457831dfd06679ef21ca1a3/chex-0.1.82.tar.gz", hash = "sha256:a9b151ada0b5c1bc5a8ae572617eb09f2fe4ff110fe1d75045f9083eecf5b2c1", size = 86801 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/84/c9/a2182cbf8bc066de9433930c41e76b7f4e904f155c5881235dbb54f8148b/chex-0.1.82-py3-none-any.whl", hash = "sha256:4df8f087e30c3879c15d3765f9081d5996e57682fa1fbaa8a16a1eab6f6eb2d0", size = 94804 }, +] + +[[package]] +name = "click" +version = "8.1.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "platform_system == 'Windows'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/96/d3/f04c7bfcf5c1862a2a5b845c6b2b360488cf47af55dfa79c98f6a6bf98b5/click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de", size = 336121 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/00/2e/d53fa4befbf2cfa713304affc7ca780ce4fc1fd8710527771b58311a3229/click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28", size = 97941 }, +] + +[[package]] +name = "clldutils" +version = "3.21.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "colorlog", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "lxml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "markdown", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "markupsafe", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pylatexenc", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "python-dateutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tabulate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/29/a9/20fe03d6990599fe00879f0e8adb03666a790ab9b86ebccac368ae11d2c2/clldutils-3.21.0.tar.gz", hash = "sha256:a73ab7d664b90efb87a0a057718ac4389782a59b7eb046ef312d5a60d054bf95", size = 1710419 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/52/32/f8f97b5fb1d3c14ab8b0895082f4eccc280e6787d2b9a5c9d91a34f203f4/clldutils-3.21.0-py2.py3-none-any.whl", hash = "sha256:204851d8897ab590f059e272bcce222f5e15f75e7099e2e50cdc69b388a02792", size = 1723784 }, +] + +[[package]] +name = "cloudpickle" +version = "2.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/5f/51/913ecca3970a2227cf4d5e8937df52cc28f465ac442216110b8e3323262d/cloudpickle-2.2.1.tar.gz", hash = "sha256:d89684b8de9e34a2a43b3460fbca07d09d6e25ce858df4d5a44240403b6178f5", size = 60800 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/15/80/44286939ca215e88fa827b2aeb6fa3fd2b4a7af322485c7170d6f9fd96e0/cloudpickle-2.2.1-py3-none-any.whl", hash = "sha256:61f594d1f4c295fa5cd9014ceb3a1fc4a70b0de1164b94fbc2d854ccba056f9f", size = 25944 }, +] + +[[package]] +name = "codecarbon" +version = "1.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "apscheduler", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "dash", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "dash-bootstrap-components", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fire", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pandas", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "py-cpuinfo", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pynvml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ab/42/818ec7aeca4690749e86fb9787626635ca7fba6c34b0fb4bf56b8fe4b380/codecarbon-1.2.0.tar.gz", hash = "sha256:8a89a321f6ce371abc20b9e9faf2d743d9276cdcd474c1960f194043532d0412", size = 129013 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c9/48/230b30d4e87b831b96563ac199a95e0007d4dc333fe3cffff1d5a64b6fef/codecarbon-1.2.0-py3-none-any.whl", hash = "sha256:270137da70bdf6ecec9cda9bdd0920590f7d4434f31c28bd2d31fa3c7a10a9ed", size = 135030 }, +] + +[[package]] +name = "colorama" +version = "0.4.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335 }, +] + +[[package]] +name = "coloredlogs" +version = "15.0.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "humanfriendly", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cc/c7/eed8f27100517e8c0e6b923d5f0845d0cb99763da6fdee00478f91db7325/coloredlogs-15.0.1.tar.gz", hash = "sha256:7c991aa71a4577af2f82600d8f8f3a89f936baeaf9b50a9c197da014e5bf16b0", size = 278520 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/06/3d6badcf13db419e25b07041d9c7b4a2c331d3f4e7134445ec5df57714cd/coloredlogs-15.0.1-py2.py3-none-any.whl", hash = "sha256:612ee75c546f53e92e70049c9dbfcc18c935a2b9a53b66085ce9ef6a6e5c0934", size = 46018 }, +] + +[[package]] +name = "colorlog" +version = "6.8.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/db/38/2992ff192eaa7dd5a793f8b6570d6bbe887c4fbbf7e72702eb0a693a01c8/colorlog-6.8.2.tar.gz", hash = "sha256:3e3e079a41feb5a1b64f978b5ea4f46040a94f11f0e8bbb8261e3dbbeca64d44", size = 16529 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f3/18/3e867ab37a24fdf073c1617b9c7830e06ec270b1ea4694a624038fc40a03/colorlog-6.8.2-py3-none-any.whl", hash = "sha256:4dcbb62368e2800cb3c5abd348da7e53f6c362dda502ec27c560b2e58a66bd33", size = 11357 }, +] + +[[package]] +name = "cookiecutter" +version = "1.7.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "binaryornot", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "click", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jinja2", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jinja2-time", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "poyo", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "python-slugify", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/58/f5/6f41fa38e6efe4a0e85771f99a4ad8c33b4c14f03b4cc53b459aac4a629a/cookiecutter-1.7.3.tar.gz", hash = "sha256:6b9a4d72882e243be077a7397d0f1f76fe66cf3df91f3115dbb5330e214fa457", size = 133496 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a2/62/d061b19f307455506e63825586e2e1816b71d56b4a5873c278cb315b9660/cookiecutter-1.7.3-py2.py3-none-any.whl", hash = "sha256:f8671531fa96ab14339d0c59b4f662a4f12a2ecacd94a0f70a3500843da588e2", size = 34803 }, +] + +[[package]] +name = "csvw" +version = "3.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "babel", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "colorama", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "isodate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jsonschema", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "language-tags", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "python-dateutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rdflib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rfc3986", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "uritemplate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5b/29/9613d6e9913e100f0afc489c836cd86a8b0d2d6ff6c75313ce0b1579dcce/csvw-3.3.0.tar.gz", hash = "sha256:59b6c4c725fb02138b3adb5e678e7b94f3baf7f8286c958fbd6d9d9aac5540d7", size = 71403 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0d/1b/85a62fc18a098560c5f6477dc8029ae895e913fd5d14b152ecec6143b5f6/csvw-3.3.0-py2.py3-none-any.whl", hash = "sha256:a8fc72d2a6ab36f0b9a8dab1c9a49ee5bbef1e6aa4b2a82076b0a91aa3eabb2f", size = 57837 }, +] + +[[package]] +name = "dash" +version = "2.17.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "dash-core-components", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "dash-html-components", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "dash-table", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "flask", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "importlib-metadata", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "nest-asyncio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "plotly", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "retrying", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "setuptools", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "werkzeug", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6f/5c/e5a3b9a0e90e4cfbd2bb930ea01dd1df83d21908e297a8da0e94118b57fe/dash-2.17.1.tar.gz", hash = "sha256:ee2d9c319de5dcc1314085710b72cd5fa63ff994d913bf72979b7130daeea28e", size = 7152875 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/27/ad/7047095224013ec2ae37ba8ece5956773e7953c39a3af5aa20d821ed99aa/dash-2.17.1-py3-none-any.whl", hash = "sha256:3eefc9ac67003f93a06bc3e500cae0a6787c48e6c81f6f61514239ae2da414e4", size = 7486058 }, +] + +[[package]] +name = "dash-bootstrap-components" +version = "1.6.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "dash", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a6/1e/59da44351adaaa2a747eb00993c498cadbe0f642b44ced7e7aabf368eaf6/dash_bootstrap_components-1.6.0.tar.gz", hash = "sha256:960a1ec9397574792f49a8241024fa3cecde0f5930c971a3fc81f016cbeb1095", size = 146828 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cc/72/dda12d6c6a9a2901f5549cea05c7f180e89dee6fb8c5f5f037ce7101ba24/dash_bootstrap_components-1.6.0-py3-none-any.whl", hash = "sha256:97f0f47b38363f18863e1b247462229266ce12e1e171cfb34d3c9898e6e5cd1e", size = 222526 }, +] + +[[package]] +name = "dash-core-components" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/41/55/ad4a2cf9b7d4134779bd8d3a7e5b5f8cc757f421809e07c3e73bb374fdd7/dash_core_components-2.0.0.tar.gz", hash = "sha256:c6733874af975e552f95a1398a16c2ee7df14ce43fa60bb3718a3c6e0b63ffee", size = 3427 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/00/9e/a29f726e84e531a36d56cff187e61d8c96d2cc253c5bcef9a7695acb7e6a/dash_core_components-2.0.0-py3-none-any.whl", hash = "sha256:52b8e8cce13b18d0802ee3acbc5e888cb1248a04968f962d63d070400af2e346", size = 3822 }, +] + +[[package]] +name = "dash-html-components" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/14/c6/957d5e83b620473eb3c8557a253fb01c6a817b10ca43d3ff9d31796f32a6/dash_html_components-2.0.0.tar.gz", hash = "sha256:8703a601080f02619a6390998e0b3da4a5daabe97a1fd7a9cebc09d015f26e50", size = 3840 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/75/65/1b16b853844ef59b2742a7de74a598f376ac0ab581f0dcc34db294e5c90e/dash_html_components-2.0.0-py3-none-any.whl", hash = "sha256:b42cc903713c9706af03b3f2548bda4be7307a7cf89b7d6eae3da872717d1b63", size = 4092 }, +] + +[[package]] +name = "dash-table" +version = "5.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3a/81/34983fa0c67125d7fff9d55e5d1a065127bde7ca49ca32d04dedd55f9f35/dash_table-5.0.0.tar.gz", hash = "sha256:18624d693d4c8ef2ddec99a6f167593437a7ea0bf153aa20f318c170c5bc7308", size = 3391 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/da/ce/43f77dc8e7bbad02a9f88d07bf794eaf68359df756a28bb9f2f78e255bb1/dash_table-5.0.0-py3-none-any.whl", hash = "sha256:19036fa352bb1c11baf38068ec62d172f0515f73ca3276c79dee49b95ddc16c9", size = 3912 }, +] + +[[package]] +name = "datasets" +version = "2.14.4" +source = { registry = "https://pypi.org/simple" } +environment-markers = [ + "python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.10' and python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.10' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.11' and python_version >= '3.10' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", +] +dependencies = [ + { name = "aiohttp", marker = "python_version < '3.10' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "dill", marker = "python_version < '3.10' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "fsspec", version = "2024.5.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and platform_machine == 'aarch64' and platform_system == 'Linux')" }, + { name = "fsspec", version = "2024.5.0", source = { registry = "https://pypi.org/simple" }, extra = ["http"] }, + { name = "fsspec", version = "2024.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "fsspec", version = "2024.6.1", source = { registry = "https://pypi.org/simple" }, extra = ["http"] }, + { name = "huggingface-hub", marker = "python_version < '3.10' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "multiprocess", marker = "python_version < '3.10' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "numpy", marker = "python_version < '3.10' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "packaging", marker = "python_version < '3.10' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "pandas", marker = "python_version < '3.10' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "pyarrow", marker = "python_version < '3.10' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "pyyaml", marker = "python_version < '3.10' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "requests", marker = "python_version < '3.10' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "tqdm", marker = "python_version < '3.10' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "xxhash", marker = "python_version < '3.10' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1d/69/8cc725b5d38968fd118e4ce56a483b16e75b7793854c1a392ec4a34eeb31/datasets-2.14.4.tar.gz", hash = "sha256:ef29c2b5841de488cd343cfc26ab979bff77efa4d2285af51f1ad7db5c46a83b", size = 2178719 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/66/f8/38298237d18d4b6a8ee5dfe390e97bed5adb8e01ec6f9680c0ddf3066728/datasets-2.14.4-py3-none-any.whl", hash = "sha256:29336bd316a7d827ccd4da2236596279b20ca2ac78f64c04c9483da7cbc2459b", size = 519335 }, +] + +[[package]] +name = "datasets" +version = "2.20.0" +source = { registry = "https://pypi.org/simple" } +environment-markers = [ + "python_version >= '3.13'", + "python_version == '3.11' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version == '3.11' and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", + "python_version < '3.7' and python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')", + "python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')", + "python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')", + "python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", + "python_version < '3.10' and python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'", + "python_version < '3.10' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin')) and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", + "python_version < '3.11' and python_version >= '3.10'", + "python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", + "python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", +] +dependencies = [ + { name = "aiohttp", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.10' and platform_machine == 'aarch64' and platform_system == 'Linux') or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "dill", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.10' and platform_machine == 'aarch64' and platform_system == 'Linux') or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "filelock", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.10' and platform_machine == 'aarch64' and platform_system == 'Linux') or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fsspec", version = "2024.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.10' and platform_machine == 'aarch64' and platform_system == 'Linux') or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fsspec", version = "2024.5.0", source = { registry = "https://pypi.org/simple" }, extra = ["http"] }, + { name = "huggingface-hub", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.10' and platform_machine == 'aarch64' and platform_system == 'Linux') or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "multiprocess", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.10' and platform_machine == 'aarch64' and platform_system == 'Linux') or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.10' and platform_machine == 'aarch64' and platform_system == 'Linux') or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.10' and platform_machine == 'aarch64' and platform_system == 'Linux') or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pandas", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.10' and platform_machine == 'aarch64' and platform_system == 'Linux') or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyarrow", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.10' and platform_machine == 'aarch64' and platform_system == 'Linux') or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyarrow-hotfix", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.10' and platform_machine == 'aarch64' and platform_system == 'Linux') or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.10' and platform_machine == 'aarch64' and platform_system == 'Linux') or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.10' and platform_machine == 'aarch64' and platform_system == 'Linux') or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.10' and platform_machine == 'aarch64' and platform_system == 'Linux') or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "xxhash", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.10' and platform_machine == 'aarch64' and platform_system == 'Linux') or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d5/59/b94bfb5f6225c4c931cd516390b3f006e232a036a48337f72889c6c9ab27/datasets-2.20.0.tar.gz", hash = "sha256:3c4dbcd27e0f642b9d41d20ff2efa721a5e04b32b2ca4009e0fc9139e324553f", size = 2225757 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/60/2d/963b266bb8f88492d5ab4232d74292af8beb5b6fdae97902df9e284d4c32/datasets-2.20.0-py3-none-any.whl", hash = "sha256:76ac02e3bdfff824492e20678f0b6b1b6d080515957fe834b00c2ba8d6b18e5e", size = 547777 }, +] + +[[package]] +name = "decorator" +version = "5.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/66/0c/8d907af351aa16b42caae42f9d6aa37b900c67308052d10fdce809f8d952/decorator-5.1.1.tar.gz", hash = "sha256:637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253acbc330", size = 35016 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d5/50/83c593b07763e1161326b3b8c6686f0f4b0f24d5526546bee538c89837d6/decorator-5.1.1-py3-none-any.whl", hash = "sha256:b8c3f85900b9dc423225913c5aace94729fe1fa9763b38939a95226f02d37186", size = 9073 }, +] + +[[package]] +name = "decord" +version = "0.6.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/11/79/936af42edf90a7bd4e41a6cac89c913d4b47fa48a26b042d5129a9242ee3/decord-0.6.0-py3-none-manylinux2010_x86_64.whl", hash = "sha256:51997f20be8958e23b7c4061ba45d0efcd86bffd5fe81c695d0befee0d442976", size = 13602299 }, + { url = "https://files.pythonhosted.org/packages/6c/be/e15b5b866da452e62635a7b27513f31cb581fa2ea9cc9b768b535d62a955/decord-0.6.0-py3-none-win_amd64.whl", hash = "sha256:02665d7c4f1193a330205a791bc128f7e108eb6ae5b67144437a02f700943bad", size = 24733380 }, +] + +[[package]] +name = "deepspeed" +version = "0.14.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "hjson", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ninja", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "nvidia-ml-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "psutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "py-cpuinfo", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pydantic", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/2e/06/7315113506f1804b8ba4f77cb31905c62f7080452a0af2d13eaadaa83a08/deepspeed-0.14.4.tar.gz", hash = "sha256:bb2f404b4a1d06aedd40c64d661f71307c22945d04a42d397ad39bbfeef9c8b8", size = 1340883 } + +[[package]] +name = "diffusers" +version = "0.30.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "filelock", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "huggingface-hub", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "importlib-metadata", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pillow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "regex", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "safetensors", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6b/63/bba1b32402a199c580b8b8649b75bd27834cdbb82d7c9f732608bb07ad1a/diffusers-0.30.0.tar.gz", hash = "sha256:57acd59cab035f62bde1108fc4c93e76e6988a5b3f8ae9f06051146c1cecb2aa", size = 2089547 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/74/2b/69bb842f7567cd92a540f8a9a63a20e09304ad8ff84530f26762e7e19626/diffusers-0.30.0-py3-none-any.whl", hash = "sha256:114194eb61498aff06243ade750fca6fbc179ca9df68923bb175b70030bed495", size = 2630173 }, +] + +[[package]] +name = "dill" +version = "0.3.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/57/b7/c4aa04a27040e6a3b09f5a652976ead00b66504c014425a7aad887aa8d7f/dill-0.3.4.zip", hash = "sha256:9f9734205146b2b353ab3fec9af0070237b6ddae78452af83d2fca84d739e675", size = 186823 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/c3/973676ceb86b60835bb3978c6db67a5dc06be6cfdbd14ef0f5a13e3fc9fd/dill-0.3.4-py2.py3-none-any.whl", hash = "sha256:7e40e4a70304fd9ceab3535d36e58791d9c4a776b38ec7f7ec9afc8d3dca4d4f", size = 86926 }, +] + +[[package]] +name = "dlinfo" +version = "1.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/20/08/5aa1aef097360959525443f087172046ebc3843a9601b4d9f9cdc3189657/dlinfo-1.2.1.tar.gz", hash = "sha256:5f6f43b47f3aa5fe12bd347cf536dc8fca6068c61a0a260e408bec7f6eb4bd38", size = 11814 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/f9/e014eb5740dfc6ebe6105f4c38890f361e5b0e1537a9f04bb4f34432efb9/dlinfo-1.2.1-py3-none-any.whl", hash = "sha256:a97d7cc66d997b4ac491f0e8068eb324790994834951a9beb5a4619835b361d9", size = 3559 }, +] + +[[package]] +name = "docker" +version = "7.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pywin32", marker = "sys_platform == 'win32'" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "urllib3", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/91/9b/4a2ea29aeba62471211598dac5d96825bb49348fa07e906ea930394a83ce/docker-7.1.0.tar.gz", hash = "sha256:ad8c70e6e3f8926cb8a92619b832b4ea5299e2831c14284663184e200546fa6c", size = 117834 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e3/26/57c6fb270950d476074c087527a558ccb6f4436657314bfb6cdf484114c4/docker-7.1.0-py3-none-any.whl", hash = "sha256:c96b93b7f0a746f9e77d325bcfb87422a3d8bd4f03136ae8a85b37f1898d5fc0", size = 147774 }, +] + +[[package]] +name = "etils" +version = "1.5.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ad/fa/8637c95271dd9eed00e258184295dd00ba163bb8924ba3be978ec89f093f/etils-1.5.2.tar.gz", hash = "sha256:ba6a3e1aff95c769130776aa176c11540637f5dd881f3b79172a5149b6b1c446", size = 87021 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0f/6a/d2aaebacf73d5da7126c632ec0d9dc2df99cc4bbd259bad48904a034fc1b/etils-1.5.2-py3-none-any.whl", hash = "sha256:6dc882d355e1e98a5d1a148d6323679dc47c9a5792939b9de72615aa4737eb0b", size = 140603 }, +] + +[package.optional-dependencies] +epath = [ + { name = "fsspec", version = "2024.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.10' and platform_machine == 'aarch64' and platform_system == 'Linux') or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fsspec", version = "2024.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "importlib-resources", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "zipp", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +epy = [ + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] + +[[package]] +name = "evaluate" +version = "0.4.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "datasets", version = "2.14.4", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "datasets", version = "2.20.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.10' and platform_machine == 'aarch64' and platform_system == 'Linux') or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "dill", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fsspec", version = "2024.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.10' and platform_machine == 'aarch64' and platform_system == 'Linux') or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fsspec", version = "2024.5.0", source = { registry = "https://pypi.org/simple" }, extra = ["http"] }, + { name = "fsspec", version = "2024.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "fsspec", version = "2024.6.1", source = { registry = "https://pypi.org/simple" }, extra = ["http"] }, + { name = "huggingface-hub", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "multiprocess", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pandas", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "xxhash", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a5/97/5a5261a51545910ec471d3e143b74d932633320b3e3d810d838cddf440ed/evaluate-0.4.2.tar.gz", hash = "sha256:851ab767df8ec4031366c512eb88d8174adfba65d2c8c4c9bfdfe9c702212234", size = 65749 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c2/d6/ff9baefc8fc679dcd9eb21b29da3ef10c81aa36be630a7ae78e4611588e1/evaluate-0.4.2-py3-none-any.whl", hash = "sha256:5fdcaf8a086b075c2b8e2c5898f501224b020b0ac7d07be76536e47e661c0c65", size = 84135 }, +] + +[[package]] +name = "exceptiongroup" +version = "1.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/09/35/2495c4ac46b980e4ca1f6ad6db102322ef3ad2410b79fdde159a4b0f3b92/exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc", size = 28883 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/02/cc/b7e31358aac6ed1ef2bb790a9746ac2c69bcb3c8588b41616914eb106eaf/exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b", size = 16453 }, +] + +[[package]] +name = "execnet" +version = "2.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bb/ff/b4c0dc78fbe20c3e59c0c7334de0c27eb4001a2b2017999af398bf730817/execnet-2.1.1.tar.gz", hash = "sha256:5189b52c6121c24feae288166ab41b32549c7e2348652736540b9e6e7d4e72e3", size = 166524 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl", hash = "sha256:26dee51f1b80cebd6d0ca8e74dd8745419761d3bef34163928cbebbdc4749fdc", size = 40612 }, +] + +[[package]] +name = "faiss-cpu" +version = "1.8.0.post1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5e/a3/7213833216238e7dd7ef9f9a3a66bfb1ae24235e7fd32aad75afa3e78f3f/faiss_cpu-1.8.0.post1.tar.gz", hash = "sha256:5686af34414678c3d49c4fa8d774df7156e9cb48d7029071e56230e74b01cc13", size = 63668 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a3/6c/025d4b55e81c23b63ce093880afa5944f7f5cdc1a93e7a10b0f67fcc26b5/faiss_cpu-1.8.0.post1-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:fd84721eb599aa1da19b1b36345bb8705a60bb1d2887bbbc395a29e3d36a1a62", size = 7345861 }, + { url = "https://files.pythonhosted.org/packages/1f/22/231e1b30cf7d90da6a59bf6169c509ae62d3c3b1e9a88b702c267cd25e41/faiss_cpu-1.8.0.post1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b78ff9079d15fd0f156bf5dd8a2975a8abffac1854a86ece263eec1500a2e836", size = 5979513 }, + { url = "https://files.pythonhosted.org/packages/78/f1/40dc20554510728ee35d0aaa7aae1820fffd673ab04d44f76413dad55754/faiss_cpu-1.8.0.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9de25c943d1789e35fe06a20884c88cd32aedbb1a33bb8da2238cdea7bd9633f", size = 3554885 }, + { url = "https://files.pythonhosted.org/packages/87/da/d0caea09df6b6b3ef1dc6662154e095e1049c3881d841609c2438eb17e80/faiss_cpu-1.8.0.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:adae0f1b144e7216da696f14bc4991ca4300c94baaa59247c3d322588e661c95", size = 27045888 }, + { url = "https://files.pythonhosted.org/packages/42/c6/48fcc1368b3bf6a72fc4d9311d24a2d9bac2735a7de5be640b8babcd24e2/faiss_cpu-1.8.0.post1-cp310-cp310-win_amd64.whl", hash = "sha256:00345290680a444a4b4cb2d98a3844bb5c401a2160fee547c7631d759fd2ec3e", size = 14588028 }, + { url = "https://files.pythonhosted.org/packages/17/d2/c90a810b594d11f66b0162a08415029b7e056243a5023a7d5c719353a057/faiss_cpu-1.8.0.post1-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:8d4bade10cb63e9f9ff261751edd7eb097b1f4bf30be4d0d25d6f688559d795e", size = 7345873 }, + { url = "https://files.pythonhosted.org/packages/44/90/a21e37b01a302b8bcf1f30747eae1812d43f45e7f1a08bfa7da28c6647ce/faiss_cpu-1.8.0.post1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:20bd43eca3b7d77e71ea56b7a558cc28e900d8abff417eb285e2d92e95d934d4", size = 5979514 }, + { url = "https://files.pythonhosted.org/packages/c5/d2/32832d55f6ef6e4ac9316fd4169b1c62c88c4e0248b8e76499308b7d100e/faiss_cpu-1.8.0.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8542a87743a7f94ac656fd3e9592ad57e58b04d961ad2fe654a22a8ca59defdb", size = 3555039 }, + { url = "https://files.pythonhosted.org/packages/76/6c/256239bd142101cd2ce50d920622ab6d5a03742eabc462db49d7910c69c7/faiss_cpu-1.8.0.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ed46928de3dc20170b10fec89c54075a11383c2aaf4f119c63e0f6ae5a507d74", size = 27045872 }, + { url = "https://files.pythonhosted.org/packages/4c/e1/657eb537027b2d7aa0f0ccfc58aee6fe0252ea3d9e49472aecc5c7f30992/faiss_cpu-1.8.0.post1-cp311-cp311-win_amd64.whl", hash = "sha256:4fa5fc8ea210b919aa469e27d6687e50052db906e7fec3f2257178b1384fa18b", size = 14588251 }, + { url = "https://files.pythonhosted.org/packages/e5/4f/5d063231073917edfe1af57d1fcb2e281f60eca64694fb062428d80a1966/faiss_cpu-1.8.0.post1-cp312-cp312-macosx_10_14_x86_64.whl", hash = "sha256:96aec0d08a3099883af3a9b6356cfe736e8bd879318a940a27e9d1ae6f33d788", size = 7376527 }, + { url = "https://files.pythonhosted.org/packages/75/b9/eb43cbcbdc8c1177f1f275659920fb002c18e381253efb7f6431471f87df/faiss_cpu-1.8.0.post1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:92b06147fa84732ecdc965922e8ef50dc7011ef8be65821ff4abb2118cb5dce0", size = 5983954 }, + { url = "https://files.pythonhosted.org/packages/19/5e/1fd33bee1ad83c12467d2850ecb7d9a6d28afb9a2c7aa88b92dfe75f3167/faiss_cpu-1.8.0.post1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:709ef9394d1148aef70dbe890edbde8c282a4a2e06a8b69ab64f65e90f5ba572", size = 3559706 }, + { url = "https://files.pythonhosted.org/packages/ba/91/6460e628d7d1cfbce2f1a62bdd617619e2d8fb3d4428b5e4a1e2858aeb61/faiss_cpu-1.8.0.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:327a9c30971bf72cd8392b15eb4aff5d898c453212eae656dfaa3ba555b9ca0c", size = 27046631 }, + { url = "https://files.pythonhosted.org/packages/3a/0a/d18ff177cab09587918b6e67ce75b7e0a2b90ea0b4fdc7c3535cca39c5e8/faiss_cpu-1.8.0.post1-cp312-cp312-win_amd64.whl", hash = "sha256:8756f1d93faba56349883fa2f5d47fe36bb2f11f789200c6b1c691ef805485f2", size = 14591209 }, + { url = "https://files.pythonhosted.org/packages/8f/f1/e7c2e9991a4c5779742c5069fc259b7b846658c17aac7c782f997fa8363b/faiss_cpu-1.8.0.post1-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:83ef04b17b19189dd6601a941bdf4bfa9de0740dbcd80305aeba51a1b1955f80", size = 7345876 }, + { url = "https://files.pythonhosted.org/packages/c2/2a/e72ebe364754fb110cfd802aec92c2a1bb3590f55d6c1910b3c6fe3c6d18/faiss_cpu-1.8.0.post1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c50c8697077470ede7f1939ef8dc8a846ec19cf1893b543f6b67f9af03b0a122", size = 5979510 }, + { url = "https://files.pythonhosted.org/packages/f9/71/5e22c2a2e3e3edb8902c41f9d307fc989c738f45bfa120a3b92d1c71d6af/faiss_cpu-1.8.0.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:98ce428a7a67fe5c64047280e5e12a8dbdecf7002f9d127b26cf1db354e9fe76", size = 3554461 }, + { url = "https://files.pythonhosted.org/packages/9c/59/210909b9583acdc684f9a80a0882c63b2d4b0965c65a4394668b973a3c6d/faiss_cpu-1.8.0.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5f3b36b80380bae523e3198cfb4a137867055945ce7bf10d18fe9f0284f2fb47", size = 27047168 }, + { url = "https://files.pythonhosted.org/packages/c8/ad/d74139e96d50b55f280a524475e4616dcb296397764f8216d0967515626a/faiss_cpu-1.8.0.post1-cp39-cp39-win_amd64.whl", hash = "sha256:4fcc67a2353f08a20c1ab955de3cde14ef3b447761b26244a5aa849c15cbc9b3", size = 14588529 }, +] + +[[package]] +name = "fastapi" +version = "0.112.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pydantic", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "starlette", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0a/50/c535521c0cdb8b78da923bfffca7eb38429828de1770bbd8820b55f3779f/fastapi-0.112.0.tar.gz", hash = "sha256:d262bc56b7d101d1f4e8fc0ad2ac75bb9935fec504d2b7117686cec50710cf05", size = 289904 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/26/34/d0dca5f1fc0113723a425c913a886709698c4110f960c0990905804e0b2c/fastapi-0.112.0-py3-none-any.whl", hash = "sha256:3487ded9778006a45834b8c816ec4a48d522e2631ca9e75ec5a774f1b052f821", size = 93135 }, +] + +[[package]] +name = "fastjsonschema" +version = "2.20.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/03/3f/3ad5e7be13b4b8b55f4477141885ab2364f65d5f6ad5f7a9daffd634d066/fastjsonschema-2.20.0.tar.gz", hash = "sha256:3d48fc5300ee96f5d116f10fe6f28d938e6008f59a6a025c2649475b87f76a23", size = 373056 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6d/ca/086311cdfc017ec964b2436fe0c98c1f4efcb7e4c328956a22456e497655/fastjsonschema-2.20.0-py3-none-any.whl", hash = "sha256:5875f0b0fa7a0043a91e93a9b8f793bcbbba9691e7fd83dca95c28ba26d21f0a", size = 23543 }, +] + +[[package]] +name = "filelock" +version = "3.15.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/08/dd/49e06f09b6645156550fb9aee9cc1e59aba7efbc972d665a1bd6ae0435d4/filelock-3.15.4.tar.gz", hash = "sha256:2207938cbc1844345cb01a5a95524dae30f0ce089eba5b00378295a17e3e90cb", size = 18007 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ae/f0/48285f0262fe47103a4a45972ed2f9b93e4c80b8fd609fa98da78b2a5706/filelock-3.15.4-py3-none-any.whl", hash = "sha256:6ca1fffae96225dab4c6eaf1c4f4f28cd2568d3ec2a44e15a08520504de468e7", size = 16159 }, +] + +[[package]] +name = "fire" +version = "0.6.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "termcolor", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1b/1b/84c63f592ecdfbb3d77d22a8d93c9b92791e4fa35677ad71a7d6449100f8/fire-0.6.0.tar.gz", hash = "sha256:54ec5b996ecdd3c0309c800324a0703d6da512241bc73b553db959d98de0aa66", size = 88439 } + +[[package]] +name = "flask" +version = "3.0.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "blinker", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "click", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "importlib-metadata", marker = "python_version < '3.10'" }, + { name = "itsdangerous", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jinja2", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "werkzeug", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/41/e1/d104c83026f8d35dfd2c261df7d64738341067526406b40190bc063e829a/flask-3.0.3.tar.gz", hash = "sha256:ceb27b0af3823ea2737928a4d99d125a06175b8512c445cbd9a9ce200ef76842", size = 676315 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/61/80/ffe1da13ad9300f87c93af113edd0638c75138c42a0994becfacac078c06/flask-3.0.3-py3-none-any.whl", hash = "sha256:34e815dfaa43340d1d15a5c3a02b8476004037eb4840b34910c6e21679d288f3", size = 101735 }, +] + +[[package]] +name = "flatbuffers" +version = "24.3.25" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a9/74/2df95ef84b214d2bee0886d572775a6f38793f5ca6d7630c3239c91104ac/flatbuffers-24.3.25.tar.gz", hash = "sha256:de2ec5b203f21441716617f38443e0a8ebf3d25bf0d9c0bb0ce68fa00ad546a4", size = 22139 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/41/f0/7e988a019bc54b2dbd0ad4182ef2d53488bb02e58694cd79d61369e85900/flatbuffers-24.3.25-py2.py3-none-any.whl", hash = "sha256:8dbdec58f935f3765e4f7f3cf635ac3a77f83568138d6a2311f524ec96364812", size = 26784 }, +] + +[[package]] +name = "flax" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "msgpack", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "optax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "orbax-checkpoint", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rich", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorstore", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/62/fe/3a6a89c088fd055e02446a2b921d6d1f619dc7d28d578c81fc303331b587/flax-0.7.0.tar.gz", hash = "sha256:171715d7df050eb748867f14a6d42338adba060edaa1e3b4d3e978a3483db8c5", size = 2040256 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bb/1d/d9dccc3b42aab0713f72f68c0de2b3b58c8a9f81e117fa95e02e66678499/flax-0.7.0-py3-none-any.whl", hash = "sha256:c63e64124be8011b3d2f65a866d98627a5879f243e18351e85bcd0ab29228fc4", size = 225883 }, +] + +[[package]] +name = "frozenlist" +version = "1.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cf/3d/2102257e7acad73efc4a0c306ad3953f68c504c16982bbdfee3ad75d8085/frozenlist-1.4.1.tar.gz", hash = "sha256:c037a86e8513059a2613aaba4d817bb90b9d9b6b69aace3ce9c877e8c8ed402b", size = 37820 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7a/35/1328c7b0f780d34f8afc1d87ebdc2bb065a123b24766a0b475f0d67da637/frozenlist-1.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:f9aa1878d1083b276b0196f2dfbe00c9b7e752475ed3b682025ff20c1c1f51ac", size = 94315 }, + { url = "https://files.pythonhosted.org/packages/f4/d6/ca016b0adcf8327714ccef969740688808c86e0287bf3a639ff582f24e82/frozenlist-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:29acab3f66f0f24674b7dc4736477bcd4bc3ad4b896f5f45379a67bce8b96868", size = 53805 }, + { url = "https://files.pythonhosted.org/packages/ae/83/bcdaa437a9bd693ba658a0310f8cdccff26bd78e45fccf8e49897904a5cd/frozenlist-1.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:74fb4bee6880b529a0c6560885fce4dc95936920f9f20f53d99a213f7bf66776", size = 52163 }, + { url = "https://files.pythonhosted.org/packages/d4/e9/759043ab7d169b74fe05ebfbfa9ee5c881c303ebc838e308346204309cd0/frozenlist-1.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:590344787a90ae57d62511dd7c736ed56b428f04cd8c161fcc5e7232c130c69a", size = 238595 }, + { url = "https://files.pythonhosted.org/packages/f8/ce/b9de7dc61e753dc318cf0de862181b484178210c5361eae6eaf06792264d/frozenlist-1.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:068b63f23b17df8569b7fdca5517edef76171cf3897eb68beb01341131fbd2ad", size = 262428 }, + { url = "https://files.pythonhosted.org/packages/36/ce/dc6f29e0352fa34ebe45421960c8e7352ca63b31630a576e8ffb381e9c08/frozenlist-1.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c849d495bf5154cd8da18a9eb15db127d4dba2968d88831aff6f0331ea9bd4c", size = 258867 }, + { url = "https://files.pythonhosted.org/packages/51/47/159ac53faf8a11ae5ee8bb9db10327575557504e549cfd76f447b969aa91/frozenlist-1.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9750cc7fe1ae3b1611bb8cfc3f9ec11d532244235d75901fb6b8e42ce9229dfe", size = 229412 }, + { url = "https://files.pythonhosted.org/packages/ec/25/0c87df2e53c0c5d90f7517ca0ff7aca78d050a8ec4d32c4278e8c0e52e51/frozenlist-1.4.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9b2de4cf0cdd5bd2dee4c4f63a653c61d2408055ab77b151c1957f221cabf2a", size = 239539 }, + { url = "https://files.pythonhosted.org/packages/97/94/a1305fa4716726ae0abf3b1069c2d922fcfd442538cb850f1be543f58766/frozenlist-1.4.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0633c8d5337cb5c77acbccc6357ac49a1770b8c487e5b3505c57b949b4b82e98", size = 253379 }, + { url = "https://files.pythonhosted.org/packages/53/82/274e19f122e124aee6d113188615f63b0736b4242a875f482a81f91e07e2/frozenlist-1.4.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:27657df69e8801be6c3638054e202a135c7f299267f1a55ed3a598934f6c0d75", size = 245901 }, + { url = "https://files.pythonhosted.org/packages/b8/28/899931015b8cffbe155392fe9ca663f981a17e1adc69589ee0e1e7cdc9a2/frozenlist-1.4.1-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:f9a3ea26252bd92f570600098783d1371354d89d5f6b7dfd87359d669f2109b5", size = 263797 }, + { url = "https://files.pythonhosted.org/packages/6e/4f/b8a5a2f10c4a58c52a52a40cf6cf1ffcdbf3a3b64f276f41dab989bf3ab5/frozenlist-1.4.1-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:4f57dab5fe3407b6c0c1cc907ac98e8a189f9e418f3b6e54d65a718aaafe3950", size = 264415 }, + { url = "https://files.pythonhosted.org/packages/b0/2c/7be3bdc59dbae444864dbd9cde82790314390ec54636baf6b9ce212627ad/frozenlist-1.4.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:e02a0e11cf6597299b9f3bbd3f93d79217cb90cfd1411aec33848b13f5c656cc", size = 253964 }, + { url = "https://files.pythonhosted.org/packages/2e/ec/4fb5a88f6b9a352aed45ab824dd7ce4801b7bcd379adcb927c17a8f0a1a8/frozenlist-1.4.1-cp310-cp310-win32.whl", hash = "sha256:a828c57f00f729620a442881cc60e57cfcec6842ba38e1b19fd3e47ac0ff8dc1", size = 44559 }, + { url = "https://files.pythonhosted.org/packages/61/15/2b5d644d81282f00b61e54f7b00a96f9c40224107282efe4cd9d2bf1433a/frozenlist-1.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:f56e2333dda1fe0f909e7cc59f021eba0d2307bc6f012a1ccf2beca6ba362439", size = 50434 }, + { url = "https://files.pythonhosted.org/packages/01/bc/8d33f2d84b9368da83e69e42720cff01c5e199b5a868ba4486189a4d8fa9/frozenlist-1.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a0cb6f11204443f27a1628b0e460f37fb30f624be6051d490fa7d7e26d4af3d0", size = 97060 }, + { url = "https://files.pythonhosted.org/packages/af/b2/904500d6a162b98a70e510e743e7ea992241b4f9add2c8063bf666ca21df/frozenlist-1.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b46c8ae3a8f1f41a0d2ef350c0b6e65822d80772fe46b653ab6b6274f61d4a49", size = 55347 }, + { url = "https://files.pythonhosted.org/packages/5b/9c/f12b69997d3891ddc0d7895999a00b0c6a67f66f79498c0e30f27876435d/frozenlist-1.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:fde5bd59ab5357e3853313127f4d3565fc7dad314a74d7b5d43c22c6a5ed2ced", size = 53374 }, + { url = "https://files.pythonhosted.org/packages/ac/6e/e0322317b7c600ba21dec224498c0c5959b2bce3865277a7c0badae340a9/frozenlist-1.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:722e1124aec435320ae01ee3ac7bec11a5d47f25d0ed6328f2273d287bc3abb0", size = 273288 }, + { url = "https://files.pythonhosted.org/packages/a7/76/180ee1b021568dad5b35b7678616c24519af130ed3fa1e0f1ed4014e0f93/frozenlist-1.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2471c201b70d58a0f0c1f91261542a03d9a5e088ed3dc6c160d614c01649c106", size = 284737 }, + { url = "https://files.pythonhosted.org/packages/05/08/40159d706a6ed983c8aca51922a93fc69f3c27909e82c537dd4054032674/frozenlist-1.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c757a9dd70d72b076d6f68efdbb9bc943665ae954dad2801b874c8c69e185068", size = 280267 }, + { url = "https://files.pythonhosted.org/packages/e0/18/9f09f84934c2b2aa37d539a322267939770362d5495f37783440ca9c1b74/frozenlist-1.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f146e0911cb2f1da549fc58fc7bcd2b836a44b79ef871980d605ec392ff6b0d2", size = 258778 }, + { url = "https://files.pythonhosted.org/packages/b3/c9/0bc5ee7e1f5cc7358ab67da0b7dfe60fbd05c254cea5c6108e7d1ae28c63/frozenlist-1.4.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f9c515e7914626b2a2e1e311794b4c35720a0be87af52b79ff8e1429fc25f19", size = 272276 }, + { url = "https://files.pythonhosted.org/packages/12/5d/147556b73a53ad4df6da8bbb50715a66ac75c491fdedac3eca8b0b915345/frozenlist-1.4.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c302220494f5c1ebeb0912ea782bcd5e2f8308037b3c7553fad0e48ebad6ad82", size = 272424 }, + { url = "https://files.pythonhosted.org/packages/83/61/2087bbf24070b66090c0af922685f1d0596c24bb3f3b5223625bdeaf03ca/frozenlist-1.4.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:442acde1e068288a4ba7acfe05f5f343e19fac87bfc96d89eb886b0363e977ec", size = 260881 }, + { url = "https://files.pythonhosted.org/packages/a8/be/a235bc937dd803258a370fe21b5aa2dd3e7bfe0287a186a4bec30c6cccd6/frozenlist-1.4.1-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:1b280e6507ea8a4fa0c0a7150b4e526a8d113989e28eaaef946cc77ffd7efc0a", size = 282327 }, + { url = "https://files.pythonhosted.org/packages/5d/e7/b2469e71f082948066b9382c7b908c22552cc705b960363c390d2e23f587/frozenlist-1.4.1-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:fe1a06da377e3a1062ae5fe0926e12b84eceb8a50b350ddca72dc85015873f74", size = 281502 }, + { url = "https://files.pythonhosted.org/packages/db/1b/6a5b970e55dffc1a7d0bb54f57b184b2a2a2ad0b7bca16a97ca26d73c5b5/frozenlist-1.4.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:db9e724bebd621d9beca794f2a4ff1d26eed5965b004a97f1f1685a173b869c2", size = 272292 }, + { url = "https://files.pythonhosted.org/packages/1a/05/ebad68130e6b6eb9b287dacad08ea357c33849c74550c015b355b75cc714/frozenlist-1.4.1-cp311-cp311-win32.whl", hash = "sha256:e774d53b1a477a67838a904131c4b0eef6b3d8a651f8b138b04f748fccfefe17", size = 44446 }, + { url = "https://files.pythonhosted.org/packages/b3/21/c5aaffac47fd305d69df46cfbf118768cdf049a92ee6b0b5cb029d449dcf/frozenlist-1.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:fb3c2db03683b5767dedb5769b8a40ebb47d6f7f45b1b3e3b4b51ec8ad9d9825", size = 50459 }, + { url = "https://files.pythonhosted.org/packages/b4/db/4cf37556a735bcdb2582f2c3fa286aefde2322f92d3141e087b8aeb27177/frozenlist-1.4.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:1979bc0aeb89b33b588c51c54ab0161791149f2461ea7c7c946d95d5f93b56ae", size = 93937 }, + { url = "https://files.pythonhosted.org/packages/46/03/69eb64642ca8c05f30aa5931d6c55e50b43d0cd13256fdd01510a1f85221/frozenlist-1.4.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:cc7b01b3754ea68a62bd77ce6020afaffb44a590c2289089289363472d13aedb", size = 53656 }, + { url = "https://files.pythonhosted.org/packages/3f/ab/c543c13824a615955f57e082c8a5ee122d2d5368e80084f2834e6f4feced/frozenlist-1.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c9c92be9fd329ac801cc420e08452b70e7aeab94ea4233a4804f0915c14eba9b", size = 51868 }, + { url = "https://files.pythonhosted.org/packages/a9/b8/438cfd92be2a124da8259b13409224d9b19ef8f5a5b2507174fc7e7ea18f/frozenlist-1.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c3894db91f5a489fc8fa6a9991820f368f0b3cbdb9cd8849547ccfab3392d86", size = 280652 }, + { url = "https://files.pythonhosted.org/packages/54/72/716a955521b97a25d48315c6c3653f981041ce7a17ff79f701298195bca3/frozenlist-1.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ba60bb19387e13597fb059f32cd4d59445d7b18b69a745b8f8e5db0346f33480", size = 286739 }, + { url = "https://files.pythonhosted.org/packages/65/d8/934c08103637567084568e4d5b4219c1016c60b4d29353b1a5b3587827d6/frozenlist-1.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8aefbba5f69d42246543407ed2461db31006b0f76c4e32dfd6f42215a2c41d09", size = 289447 }, + { url = "https://files.pythonhosted.org/packages/70/bb/d3b98d83ec6ef88f9bd63d77104a305d68a146fd63a683569ea44c3085f6/frozenlist-1.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:780d3a35680ced9ce682fbcf4cb9c2bad3136eeff760ab33707b71db84664e3a", size = 265466 }, + { url = "https://files.pythonhosted.org/packages/0b/f2/b8158a0f06faefec33f4dff6345a575c18095a44e52d4f10c678c137d0e0/frozenlist-1.4.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9acbb16f06fe7f52f441bb6f413ebae6c37baa6ef9edd49cdd567216da8600cd", size = 281530 }, + { url = "https://files.pythonhosted.org/packages/ea/a2/20882c251e61be653764038ece62029bfb34bd5b842724fff32a5b7a2894/frozenlist-1.4.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:23b701e65c7b36e4bf15546a89279bd4d8675faabc287d06bbcfac7d3c33e1e6", size = 281295 }, + { url = "https://files.pythonhosted.org/packages/4c/f9/8894c05dc927af2a09663bdf31914d4fb5501653f240a5bbaf1e88cab1d3/frozenlist-1.4.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:3e0153a805a98f5ada7e09826255ba99fb4f7524bb81bf6b47fb702666484ae1", size = 268054 }, + { url = "https://files.pythonhosted.org/packages/37/ff/a613e58452b60166507d731812f3be253eb1229808e59980f0405d1eafbf/frozenlist-1.4.1-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:dd9b1baec094d91bf36ec729445f7769d0d0cf6b64d04d86e45baf89e2b9059b", size = 286904 }, + { url = "https://files.pythonhosted.org/packages/cc/6e/0091d785187f4c2020d5245796d04213f2261ad097e0c1cf35c44317d517/frozenlist-1.4.1-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:1a4471094e146b6790f61b98616ab8e44f72661879cc63fa1049d13ef711e71e", size = 290754 }, + { url = "https://files.pythonhosted.org/packages/a5/c2/e42ad54bae8bcffee22d1e12a8ee6c7717f7d5b5019261a8c861854f4776/frozenlist-1.4.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:5667ed53d68d91920defdf4035d1cdaa3c3121dc0b113255124bcfada1cfa1b8", size = 282602 }, + { url = "https://files.pythonhosted.org/packages/b6/61/56bad8cb94f0357c4bc134acc30822e90e203b5cb8ff82179947de90c17f/frozenlist-1.4.1-cp312-cp312-win32.whl", hash = "sha256:beee944ae828747fd7cb216a70f120767fc9f4f00bacae8543c14a6831673f89", size = 44063 }, + { url = "https://files.pythonhosted.org/packages/3e/dc/96647994a013bc72f3d453abab18340b7f5e222b7b7291e3697ca1fcfbd5/frozenlist-1.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:64536573d0a2cb6e625cf309984e2d873979709f2cf22839bf2d61790b448ad5", size = 50452 }, + { url = "https://files.pythonhosted.org/packages/d3/fb/6f2a22086065bc16797f77168728f0e59d5b89be76dd184e06b404f1e43b/frozenlist-1.4.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:bfa4a17e17ce9abf47a74ae02f32d014c5e9404b6d9ac7f729e01562bbee601e", size = 97291 }, + { url = "https://files.pythonhosted.org/packages/4d/23/7f01123d0e5adcc65cbbde5731378237dea7db467abd19e391f1ddd4130d/frozenlist-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b7e3ed87d4138356775346e6845cccbe66cd9e207f3cd11d2f0b9fd13681359d", size = 55249 }, + { url = "https://files.pythonhosted.org/packages/8b/c9/a81e9af48291954a883d35686f32308238dc968043143133b8ac9e2772af/frozenlist-1.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c99169d4ff810155ca50b4da3b075cbde79752443117d89429595c2e8e37fed8", size = 53676 }, + { url = "https://files.pythonhosted.org/packages/57/15/172af60c7e150a1d88ecc832f2590721166ae41eab582172fe1e9844eab4/frozenlist-1.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:edb678da49d9f72c9f6c609fbe41a5dfb9a9282f9e6a2253d5a91e0fc382d7c0", size = 239365 }, + { url = "https://files.pythonhosted.org/packages/8c/a4/3dc43e259960ad268ef8f2bf92912c2d2cd2e5275a4838804e03fd6f085f/frozenlist-1.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6db4667b187a6742b33afbbaf05a7bc551ffcf1ced0000a571aedbb4aa42fc7b", size = 265592 }, + { url = "https://files.pythonhosted.org/packages/a0/c1/458cf031fc8cd29a751e305b1ec773785ce486106451c93986562c62a21e/frozenlist-1.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:55fdc093b5a3cb41d420884cdaf37a1e74c3c37a31f46e66286d9145d2063bd0", size = 261274 }, + { url = "https://files.pythonhosted.org/packages/4a/32/21329084b61a119ecce0b2942d30312a34a7a0dccd01dcf7b40bda80f22c/frozenlist-1.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82e8211d69a4f4bc360ea22cd6555f8e61a1bd211d1d5d39d3d228b48c83a897", size = 230787 }, + { url = "https://files.pythonhosted.org/packages/70/b0/6f1ebdabfb604e39a0f84428986b89ab55f246b64cddaa495f2c953e1f6b/frozenlist-1.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89aa2c2eeb20957be2d950b85974b30a01a762f3308cd02bb15e1ad632e22dc7", size = 240674 }, + { url = "https://files.pythonhosted.org/packages/a3/05/50c53f1cdbfdf3d2cb9582a4ea5e12cd939ce33bd84403e6d07744563486/frozenlist-1.4.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9d3e0c25a2350080e9319724dede4f31f43a6c9779be48021a7f4ebde8b2d742", size = 255712 }, + { url = "https://files.pythonhosted.org/packages/b8/3d/cbc6f057f7d10efb7f1f410e458ac090f30526fd110ed2b29bb56ec38fe1/frozenlist-1.4.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7268252af60904bf52c26173cbadc3a071cece75f873705419c8681f24d3edea", size = 247618 }, + { url = "https://files.pythonhosted.org/packages/96/86/d5e9cd583aed98c9ee35a3aac2ce4d022ce9de93518e963aadf34a18143b/frozenlist-1.4.1-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:0c250a29735d4f15321007fb02865f0e6b6a41a6b88f1f523ca1596ab5f50bd5", size = 266868 }, + { url = "https://files.pythonhosted.org/packages/0f/6e/542af762beb9113f13614a590cafe661e0e060cddddee6107c8833605776/frozenlist-1.4.1-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:96ec70beabbd3b10e8bfe52616a13561e58fe84c0101dd031dc78f250d5128b9", size = 266439 }, + { url = "https://files.pythonhosted.org/packages/ea/db/8b611e23fda75da5311b698730a598df54cfe6236678001f449b1dedb241/frozenlist-1.4.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:23b2d7679b73fe0e5a4560b672a39f98dfc6f60df63823b0a9970525325b95f6", size = 256677 }, + { url = "https://files.pythonhosted.org/packages/eb/06/732cefc0c46c638e4426a859a372a50e4c9d62e65dbfa7ddcf0b13e6a4f2/frozenlist-1.4.1-cp39-cp39-win32.whl", hash = "sha256:a7496bfe1da7fb1a4e1cc23bb67c58fab69311cc7d32b5a99c2007b4b2a0e932", size = 44825 }, + { url = "https://files.pythonhosted.org/packages/29/eb/2110c4be2f622e87864e433efd7c4ee6e4f8a59ff2a93c1aa426ee50a8b8/frozenlist-1.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:e6a20a581f9ce92d389a8c7d7c3dd47c81fd5d6e655c8dddf341e14aa48659d0", size = 50652 }, + { url = "https://files.pythonhosted.org/packages/83/10/466fe96dae1bff622021ee687f68e5524d6392b0a2f80d05001cd3a451ba/frozenlist-1.4.1-py3-none-any.whl", hash = "sha256:04ced3e6a46b4cfffe20f9ae482818e34eba9b5fb0ce4056e4cc9b6e212d09b7", size = 11552 }, +] + +[[package]] +name = "fsspec" +version = "2024.5.0" +source = { registry = "https://pypi.org/simple" } +environment-markers = [ + "python_version >= '3.13'", + "python_version == '3.11' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version == '3.11' and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", + "python_version < '3.7' and python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')", + "python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')", + "python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')", + "python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", + "python_version < '3.10' and python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'", + "python_version < '3.10' and python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.10' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin')) and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", + "python_version < '3.11' and python_version >= '3.10'", + "python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", + "python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", +] +sdist = { url = "https://files.pythonhosted.org/packages/71/28/cbf337fddd6f22686b7c2639b80e006accd904db152fe333fd98f4cd8d1e/fsspec-2024.5.0.tar.gz", hash = "sha256:1d021b0b0f933e3b3029ed808eb400c08ba101ca2de4b3483fbc9ca23fcee94a", size = 400066 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ba/a3/16e9fe32187e9c8bc7f9b7bcd9728529faa725231a0c96f2f98714ff2fc5/fsspec-2024.5.0-py3-none-any.whl", hash = "sha256:e0fdbc446d67e182f49a70b82cf7889028a63588fde6b222521f10937b2b670c", size = 316106 }, +] + +[package.optional-dependencies] +http = [ + { name = "aiohttp", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.10' and platform_machine == 'aarch64' and platform_system == 'Linux') or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] + +[[package]] +name = "fsspec" +version = "2024.6.1" +source = { registry = "https://pypi.org/simple" } +environment-markers = [ + "python_version < '3.10' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.11' and python_version >= '3.10' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", +] +sdist = { url = "https://files.pythonhosted.org/packages/90/b6/eba5024a9889fcfff396db543a34bef0ab9d002278f163129f9f01005960/fsspec-2024.6.1.tar.gz", hash = "sha256:fad7d7e209dd4c1208e3bbfda706620e0da5142bebbd9c384afb95b07e798e49", size = 284584 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5e/44/73bea497ac69bafde2ee4269292fa3b41f1198f4bb7bbaaabde30ad29d4a/fsspec-2024.6.1-py3-none-any.whl", hash = "sha256:3cb443f8bcd2efb31295a5b9fdb02aee81d8452c80d28f97a6d0959e6cee101e", size = 177561 }, +] + +[package.optional-dependencies] +http = [ + { name = "aiohttp", marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, +] + +[[package]] +name = "ftfy" +version = "6.2.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "wcwidth", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/da/a9/59f4354257e8350a25be1774021991fb3a99a2fb87d0c1f367592548aed3/ftfy-6.2.3.tar.gz", hash = "sha256:79b505988f29d577a58a9069afe75553a02a46e42de6091c0660cdc67812badc", size = 64165 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ed/46/14d230ad057048aea7ccd2f96a80905830866d281ea90a6662a825490659/ftfy-6.2.3-py3-none-any.whl", hash = "sha256:f15761b023f3061a66207d33f0c0149ad40a8319fd16da91796363e2c049fdf8", size = 43011 }, +] + +[[package]] +name = "fugashi" +version = "1.3.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8e/73/5e160668189cb4d7fa671eb589886fd8afaa2fbf4c257ca77743e39dc9a9/fugashi-1.3.2.tar.gz", hash = "sha256:964980b5d227ee41af7570542aaab56b1298c44416271cba5d8ff9a58ab40748", size = 338825 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f2/d6/1bfc92a8dd39ec44d6df86a426211e8eff34c9c044613b5591a29270290e/fugashi-1.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:583e7a14e6ddf8a03b500bec30d708f72e98035ab43e2c92940dd9c36ee63de9", size = 565250 }, + { url = "https://files.pythonhosted.org/packages/40/a3/9a7826472b3753436ebc2e81ecca4eb554c2c191f09f59b87a0f22f51891/fugashi-1.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6c67023cdc1b059b05751c1785c794c24d8862f37a16cdb805e33c7d7ae0c19d", size = 521023 }, + { url = "https://files.pythonhosted.org/packages/9e/49/4d0f9a30a18021bdc06e0610e7466a889332f6880f4db3388366ee11ac33/fugashi-1.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6b2e21be33ed72621d9f4a601a33c00b38052df947f297d792b221a33337f094", size = 514783 }, + { url = "https://files.pythonhosted.org/packages/c0/9a/ab902f4ea4deae2ced08f9565bbcb7047a9a1520c0993bfc8faccad7c94b/fugashi-1.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:af7abac3037c7421b075782897766b8f453f28ef3bbadd3e7d69c9df409a48a8", size = 586946 }, + { url = "https://files.pythonhosted.org/packages/f2/67/93fe7ae8606c44ea28fd6db3edf0d490a1bc9e7ba9702b43be5a753cb8af/fugashi-1.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b915d936e3eb30d50fde86889f8ab56968e5cb4d0ceeb497ac1bb6c58531f87", size = 600931 }, + { url = "https://files.pythonhosted.org/packages/f2/fe/556f79a19d39b2c7ddc58068e7bd7744d6a8b2c77f10664c37260d31bab7/fugashi-1.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:8dc57d07809fbecdfc277d50028d5b8d23fb4c0ed12e6d6f7f565709c18848a4", size = 499117 }, + { url = "https://files.pythonhosted.org/packages/8f/5f/8f9675a04ab663f61799bb6fe2c7d6392d1103693730b03db3614e751fa1/fugashi-1.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:50243df8758f5fb90bd2801e557168e613df61fa4d488acfe364070e8a4a234c", size = 561898 }, + { url = "https://files.pythonhosted.org/packages/e8/05/1ac2398b7c1d12d024fb03586b679787ac52fe4f53c1644824b9e77e5f86/fugashi-1.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:9c9fb77c42e6b421e5c20f74179ed479255545b40a28f9983f264a8b19a30374", size = 519541 }, + { url = "https://files.pythonhosted.org/packages/27/f2/2a0498bfdb7dd8a80b8901bc059ff87495684ba17c66e59cfc980f996756/fugashi-1.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6fdef6be3489279c670459a55b2dfa876c0856b3fc96b3590aa801f37af6b827", size = 513121 }, + { url = "https://files.pythonhosted.org/packages/82/51/a5054f29165a437eedf845ed9cb1dac410ece2c2f0f16411db6be6c11319/fugashi-1.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2b2ebe0d6722e05000a959df303e06937939009f4eef0b8692018eb019496013", size = 594281 }, + { url = "https://files.pythonhosted.org/packages/24/22/7acc383ae61ea7f35705b60e76d3e527d13f0af81b3570b810da7af4470f/fugashi-1.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:85d8e3a9e9d92f555525b2719153e7d3e4ec71d0bae0b076b5495634039b8490", size = 606680 }, + { url = "https://files.pythonhosted.org/packages/20/04/67db7a11e20e12f01618e6942d6ce2a3c1c88ade0b6878edba17d8e8722d/fugashi-1.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:9774bb52930fa17ebab17f8bcf2b5d20b6ef529b425ea65affb29a3307c003f8", size = 498335 }, + { url = "https://files.pythonhosted.org/packages/34/ad/aceb8b1fef41308db782265e81d30e400957e8ec4508b25287df1af4f641/fugashi-1.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:fcfb3908059f4dd15d7fda64edd3c027b4da668bf1731f147aa888f5db01bd6c", size = 559903 }, + { url = "https://files.pythonhosted.org/packages/ad/8a/751ddea5821266135bc9e4fb0565744197180b5d91ec5cc021946020606d/fugashi-1.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:49b44261f2051c43a9e31816d85bb89e5563c3e4c03ff7830d1ebf5942888cf9", size = 518178 }, + { url = "https://files.pythonhosted.org/packages/8b/0e/785dbaa42e0e7ef2a17e6c3c6eca48ef862340d92051f2b257a660944752/fugashi-1.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:3a2d8aecb2a239de33bcb70806b7688001e72f68bde68961c6f2899155f15f87", size = 512640 }, + { url = "https://files.pythonhosted.org/packages/22/c5/ff64272679471658d6c6313f647d0ad0a1a254fe73d26c60cf263e0bd6d0/fugashi-1.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4e24864e92ad3acf3c0b8f645e33d543fe569544bb6ee9728cb281325aa76d06", size = 605926 }, + { url = "https://files.pythonhosted.org/packages/d9/0f/dfceef3b7e26da34556b8c3ab33a901977da069726da012bc57cfa2749a7/fugashi-1.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea942e45214a99844146ce0e0f1ac43bff6e2ccbf6d1cbfde4f2bed9ca0951b1", size = 622075 }, + { url = "https://files.pythonhosted.org/packages/86/d9/49484b50c6df110e1a24bc71958899ddd454e7d48227696d29503d91ed1e/fugashi-1.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:da61498017e5cbee65c6eff88a13e17b45a5e3b0428733e99168344b8ff95da5", size = 497750 }, + { url = "https://files.pythonhosted.org/packages/7c/f1/fb3e5dc9205e1bf6178a7b1fb4ac462d82aad7a0d4974215d9c02c54f8a0/fugashi-1.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7e392f2c57068bb892c45c1b69067c3dde94b633c81c725a613ee7defe09de47", size = 564866 }, + { url = "https://files.pythonhosted.org/packages/4e/7e/f23c21f72ae28e78407bd1eb2a40ce88ec6178451e1b9d595941a6b01bba/fugashi-1.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:85de463fc30390c06d985f52fcfd422acf7ada6b13f723721ca964854b9ae435", size = 520937 }, + { url = "https://files.pythonhosted.org/packages/35/98/2f84da4a4c2568de8ffcb467ac9be266c6bb11b7a8a8c2a9f65b282196f6/fugashi-1.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5a640da3824aba966209fc425b2b19c38d22a3da637f83b4a7df83cb94376b87", size = 514509 }, + { url = "https://files.pythonhosted.org/packages/cb/a6/21a71f536e61c3ec5fbcec02b43a2b20398976804f9221c34dc0503ef74e/fugashi-1.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:11e95f57b78152be3a0a1a1e77d7887cfc25c30412d5f5825711b75ea6d415be", size = 602236 }, + { url = "https://files.pythonhosted.org/packages/a8/ff/242c6925b847aeb8f3ca915acdb708c305181b461eee183269bdf514fc52/fugashi-1.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:409b83f136a3c2da805cd999bd7e1792e7c71fa8e0637f77bdec2b6fd070a3bb", size = 614525 }, + { url = "https://files.pythonhosted.org/packages/63/9b/0fd0d9daea50204b469406a36a26bcd7c73d5eafb3a268cdd32d0e7759d9/fugashi-1.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:51eed11fee767597cfe735bd01326eb06deb2283112e29e9e5bdc954750e7a24", size = 500176 }, + { url = "https://files.pythonhosted.org/packages/aa/96/7f762bd0a88b88556d1314c5244f8cd1abd76e750f35c09d9ece9f5be895/fugashi-1.3.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:bc99b6e8f003c7a0e53e0f486caa1547f0ca8f86777610ea92af6e2f40ca212a", size = 508043 }, + { url = "https://files.pythonhosted.org/packages/e6/18/b9b2db4d763e6c9a73c758ed5bc1446d30177b5b903e165a884f1d3ca406/fugashi-1.3.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:21d2dac5b085632f1f9a24edf5d7ccaeb3272be672e4aa37a0b219fc7a3b0655", size = 507921 }, +] + +[[package]] +name = "gast" +version = "0.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3c/14/c566f5ca00c115db7725263408ff952b8ae6d6a4e792ef9c84e77d9af7a1/gast-0.6.0.tar.gz", hash = "sha256:88fc5300d32c7ac6ca7b515310862f71e6fdf2c029bbec7c66c0f5dd47b6b1fb", size = 27708 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a3/61/8001b38461d751cd1a0c3a6ae84346796a5758123f3ed97a1b121dfbf4f3/gast-0.6.0-py3-none-any.whl", hash = "sha256:52b182313f7330389f72b069ba00f174cfe2a06411099547288839c6cbafbd54", size = 21173 }, +] + +[[package]] +name = "gitdb" +version = "4.0.11" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "smmap", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/19/0d/bbb5b5ee188dec84647a4664f3e11b06ade2bde568dbd489d9d64adef8ed/gitdb-4.0.11.tar.gz", hash = "sha256:bf5421126136d6d0af55bc1e7c1af1c397a34f5b7bd79e776cd3e89785c2b04b", size = 394469 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fd/5b/8f0c4a5bb9fd491c277c21eff7ccae71b47d43c4446c9d0c6cff2fe8c2c4/gitdb-4.0.11-py3-none-any.whl", hash = "sha256:81a3407ddd2ee8df444cbacea00e2d038e40150acfa3001696fe0dcf1d3adfa4", size = 62721 }, +] + +[[package]] +name = "gitpython" +version = "3.1.18" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "gitdb", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/29/22/3d591875078c1c5e7e11b478616821995053968a74b76043c55448c46381/GitPython-3.1.18.tar.gz", hash = "sha256:b838a895977b45ab6f0cc926a9045c8d1c44e2b653c1fcc39fe91f42c6e8f05b", size = 181199 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bc/91/b38c4fabb6e5092ab23492ded4f318ab7299b19263272b703478038c0fbc/GitPython-3.1.18-py3-none-any.whl", hash = "sha256:fce760879cd2aebd2991b3542876dc5c4a909b30c9d69dfc488e504a8db37ee8", size = 170100 }, +] + +[[package]] +name = "google-auth" +version = "2.33.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cachetools", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyasn1-modules", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rsa", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/28/4d/626b37c6bcc1f211aef23f47c49375072c0cb19148627d98c85e099acbc8/google_auth-2.33.0.tar.gz", hash = "sha256:d6a52342160d7290e334b4d47ba390767e4438ad0d45b7630774533e82655b95", size = 257157 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/60/57/0f37c6f35847e26b7bea7d5e4f069cf037fd792cf8b67206311761e7bb92/google_auth-2.33.0-py2.py3-none-any.whl", hash = "sha256:8eff47d0d4a34ab6265c50a106a3362de6a9975bb08998700e389f857e4d39df", size = 200537 }, +] + +[[package]] +name = "google-auth-oauthlib" +version = "1.2.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "google-auth", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests-oauthlib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cc/0f/1772edb8d75ecf6280f1c7f51cbcebe274e8b17878b382f63738fd96cee5/google_auth_oauthlib-1.2.1.tar.gz", hash = "sha256:afd0cad092a2eaa53cd8e8298557d6de1034c6cb4a740500b5357b648af97263", size = 24970 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1a/8e/22a28dfbd218033e4eeaf3a0533b2b54852b6530da0c0fe934f0cc494b29/google_auth_oauthlib-1.2.1-py2.py3-none-any.whl", hash = "sha256:2d58a27262d55aa1b87678c3ba7142a080098cbc2024f903c62355deb235d91f", size = 24930 }, +] + +[[package]] +name = "google-pasta" +version = "0.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/35/4a/0bd53b36ff0323d10d5f24ebd67af2de10a1117f5cf4d7add90df92756f1/google-pasta-0.2.0.tar.gz", hash = "sha256:c9f2c8dfc8f96d0d5808299920721be30c9eec37f2389f28904f454565c8a16e", size = 40430 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a3/de/c648ef6835192e6e2cc03f40b19eeda4382c49b5bafb43d88b931c4c74ac/google_pasta-0.2.0-py3-none-any.whl", hash = "sha256:b32482794a366b5366a32c92a9a9201b107821889935a02b3e51f6b432ea84ed", size = 57471 }, +] + +[[package]] +name = "greenlet" +version = "3.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/17/14/3bddb1298b9a6786539ac609ba4b7c9c0842e12aa73aaa4d8d73ec8f8185/greenlet-3.0.3.tar.gz", hash = "sha256:43374442353259554ce33599da8b692d5aa96f8976d567d4badf263371fbe491", size = 182013 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a6/64/bea53c592e3e45799f7c8039a8ee7d6883c518eafef1fcae60beb776070f/greenlet-3.0.3-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:9da2bd29ed9e4f15955dd1595ad7bc9320308a3b766ef7f837e23ad4b4aac31a", size = 270098 }, + { url = "https://files.pythonhosted.org/packages/a6/d6/408ad9603339db28ce334021b1403dfcfbcb7501a435d49698408d928de7/greenlet-3.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d353cadd6083fdb056bb46ed07e4340b0869c305c8ca54ef9da3421acbdf6881", size = 651930 }, + { url = "https://files.pythonhosted.org/packages/6c/90/5b14670653f7363fb3e1665f8da6d64bd4c31d53a796d09ef69f48be7273/greenlet-3.0.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dca1e2f3ca00b84a396bc1bce13dd21f680f035314d2379c4160c98153b2059b", size = 667643 }, + { url = "https://files.pythonhosted.org/packages/ef/17/e8e72cabfb5a906c0d976d7fbcc88310df292beea0f816efbefdaf694284/greenlet-3.0.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3ed7fb269f15dc662787f4119ec300ad0702fa1b19d2135a37c2c4de6fadfd4a", size = 659188 }, + { url = "https://files.pythonhosted.org/packages/1c/2f/64628f6ae48e05f585e0eb3fb7399b52e240ef99f602107b445bf6be23ef/greenlet-3.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd4f49ae60e10adbc94b45c0b5e6a179acc1736cf7a90160b404076ee283cf83", size = 662673 }, + { url = "https://files.pythonhosted.org/packages/24/35/945d5b10648fec9b20bcc6df8952d20bb3bba76413cd71c1fdbee98f5616/greenlet-3.0.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:73a411ef564e0e097dbe7e866bb2dda0f027e072b04da387282b02c308807405", size = 616002 }, + { url = "https://files.pythonhosted.org/packages/74/00/27e2da76b926e9b5a2c97d3f4c0baf1b7d8181209d3026c0171f621ae6c0/greenlet-3.0.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:7f362975f2d179f9e26928c5b517524e89dd48530a0202570d55ad6ca5d8a56f", size = 1150603 }, + { url = "https://files.pythonhosted.org/packages/e1/65/506e0a80931170b0dac1a03d36b7fc299f3fa3576235b916718602fff2c3/greenlet-3.0.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:649dde7de1a5eceb258f9cb00bdf50e978c9db1b996964cd80703614c86495eb", size = 1176756 }, + { url = "https://files.pythonhosted.org/packages/a6/76/e1ee9f290bb0d46b09704c2fb0e609cae329eb308ad404c0ee6fa1ecb8a5/greenlet-3.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:68834da854554926fbedd38c76e60c4a2e3198c6fbed520b106a8986445caaf9", size = 292349 }, + { url = "https://files.pythonhosted.org/packages/6e/20/68a278a6f93fa36e21cfc3d7599399a8a831225644eb3b6b18755cd3d6fc/greenlet-3.0.3-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:b1b5667cced97081bf57b8fa1d6bfca67814b0afd38208d52538316e9422fc61", size = 271666 }, + { url = "https://files.pythonhosted.org/packages/21/b4/90e06e07c78513ab03855768200bdb35c8e764e805b3f14fb488e56f82dc/greenlet-3.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52f59dd9c96ad2fc0d5724107444f76eb20aaccb675bf825df6435acb7703559", size = 657689 }, + { url = "https://files.pythonhosted.org/packages/f6/a2/0ed21078039072f9dc738bbf3af12b103a84106b1385ac4723841f846ce7/greenlet-3.0.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:afaff6cf5200befd5cec055b07d1c0a5a06c040fe5ad148abcd11ba6ab9b114e", size = 673009 }, + { url = "https://files.pythonhosted.org/packages/42/11/42ad6b1104c357826bbee7d7b9e4f24dbd9fde94899a03efb004aab62963/greenlet-3.0.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fe754d231288e1e64323cfad462fcee8f0288654c10bdf4f603a39ed923bef33", size = 667432 }, + { url = "https://files.pythonhosted.org/packages/bb/6b/384dee7e0121cbd1757bdc1824a5ee28e43d8d4e3f99aa59521f629442fe/greenlet-3.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2797aa5aedac23af156bbb5a6aa2cd3427ada2972c828244eb7d1b9255846379", size = 667442 }, + { url = "https://files.pythonhosted.org/packages/c6/1f/12d5a6cc26e8b483c2e7975f9c22e088ac735c0d8dcb8a8f72d31a4e5f04/greenlet-3.0.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b7f009caad047246ed379e1c4dbcb8b020f0a390667ea74d2387be2998f58a22", size = 620032 }, + { url = "https://files.pythonhosted.org/packages/c7/ec/85b647e59e0f137c7792a809156f413e38379cf7f3f2e1353c37f4be4026/greenlet-3.0.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c5e1536de2aad7bf62e27baf79225d0d64360d4168cf2e6becb91baf1ed074f3", size = 1154218 }, + { url = "https://files.pythonhosted.org/packages/94/ed/1e5f4bca691a81700e5a88e86d6f0e538acb10188cd2cc17140e523255ef/greenlet-3.0.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:894393ce10ceac937e56ec00bb71c4c2f8209ad516e96033e4b3b1de270e200d", size = 1180754 }, + { url = "https://files.pythonhosted.org/packages/47/79/26d54d7d700ef65b689fc2665a40846d13e834da0486674a8d4f0f371a47/greenlet-3.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:1ea188d4f49089fc6fb283845ab18a2518d279c7cd9da1065d7a84e991748728", size = 292822 }, + { url = "https://files.pythonhosted.org/packages/a2/2f/461615adc53ba81e99471303b15ac6b2a6daa8d2a0f7f77fd15605e16d5b/greenlet-3.0.3-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:70fb482fdf2c707765ab5f0b6655e9cfcf3780d8d87355a063547b41177599be", size = 273085 }, + { url = "https://files.pythonhosted.org/packages/e9/55/2c3cfa3cdbb940cf7321fbcf544f0e9c74898eed43bf678abf416812d132/greenlet-3.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d4d1ac74f5c0c0524e4a24335350edad7e5f03b9532da7ea4d3c54d527784f2e", size = 660514 }, + { url = "https://files.pythonhosted.org/packages/38/77/efb21ab402651896c74f24a172eb4d7479f9f53898bd5e56b9e20bb24ffd/greenlet-3.0.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:149e94a2dd82d19838fe4b2259f1b6b9957d5ba1b25640d2380bea9c5df37676", size = 674295 }, + { url = "https://files.pythonhosted.org/packages/74/3a/92f188ace0190f0066dca3636cf1b09481d0854c46e92ec5e29c7cefe5b1/greenlet-3.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:15d79dd26056573940fcb8c7413d84118086f2ec1a8acdfa854631084393efcc", size = 669395 }, + { url = "https://files.pythonhosted.org/packages/63/0f/847ed02cdfce10f0e6e3425cd054296bddb11a17ef1b34681fa01a055187/greenlet-3.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:881b7db1ebff4ba09aaaeae6aa491daeb226c8150fc20e836ad00041bcb11230", size = 670455 }, + { url = "https://files.pythonhosted.org/packages/bd/37/56b0da468a85e7704f3b2bc045015301bdf4be2184a44868c71f6dca6fe2/greenlet-3.0.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fcd2469d6a2cf298f198f0487e0a5b1a47a42ca0fa4dfd1b6862c999f018ebbf", size = 625692 }, + { url = "https://files.pythonhosted.org/packages/7c/68/b5f4084c0a252d7e9c0d95fc1cfc845d08622037adb74e05be3a49831186/greenlet-3.0.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:1f672519db1796ca0d8753f9e78ec02355e862d0998193038c7073045899f305", size = 1152597 }, + { url = "https://files.pythonhosted.org/packages/a4/fa/31e22345518adcd69d1d6ab5087a12c178aa7f3c51103f6d5d702199d243/greenlet-3.0.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2516a9957eed41dd8f1ec0c604f1cdc86758b587d964668b5b196a9db5bfcde6", size = 1181043 }, + { url = "https://files.pythonhosted.org/packages/53/80/3d94d5999b4179d91bcc93745d1b0815b073d61be79dd546b840d17adb18/greenlet-3.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:bba5387a6975598857d86de9eac14210a49d554a77eb8261cc68b7d082f78ce2", size = 293635 }, + { url = "https://files.pythonhosted.org/packages/0b/8a/f5140c8713f919af0e98e6aaa40cb20edaaf3739d18c4a077581e2422ac4/greenlet-3.0.3-cp39-cp39-macosx_11_0_universal2.whl", hash = "sha256:da70d4d51c8b306bb7a031d5cff6cc25ad253affe89b70352af5f1cb68e74b53", size = 269242 }, + { url = "https://files.pythonhosted.org/packages/cf/5b/2de4a398840d3b4d99c4a3476cda0d82badfa349f3f89846ada2e32e9500/greenlet-3.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:086152f8fbc5955df88382e8a75984e2bb1c892ad2e3c80a2508954e52295257", size = 650174 }, + { url = "https://files.pythonhosted.org/packages/dc/c3/06ca5f34b01af6d6e2fd2f97c0ad3673123a442bf4a3add548d374b1cc7c/greenlet-3.0.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d73a9fe764d77f87f8ec26a0c85144d6a951a6c438dfe50487df5595c6373eac", size = 666285 }, + { url = "https://files.pythonhosted.org/packages/a2/92/f11dbbcf33809421447b24d2eefee0575c59c8569d6d03f7ca4d2b34d56f/greenlet-3.0.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b7dcbe92cc99f08c8dd11f930de4d99ef756c3591a5377d1d9cd7dd5e896da71", size = 658521 }, + { url = "https://files.pythonhosted.org/packages/9d/ea/8bc7ed08ba274bdaff08f2cb546d832b8f44af267e03ca6e449840486915/greenlet-3.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1551a8195c0d4a68fac7a4325efac0d541b48def35feb49d803674ac32582f61", size = 660753 }, + { url = "https://files.pythonhosted.org/packages/af/05/b7e068070a6c143f34dfcd7e9144684271b8067e310f6da68269580db1d8/greenlet-3.0.3-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:64d7675ad83578e3fc149b617a444fab8efdafc9385471f868eb5ff83e446b8b", size = 614348 }, + { url = "https://files.pythonhosted.org/packages/74/82/9737e7dee4ccb9e1be2a8f17cf760458be2c36c6ff7bbaef55cbe279e729/greenlet-3.0.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b37eef18ea55f2ffd8f00ff8fe7c8d3818abd3e25fb73fae2ca3b672e333a7a6", size = 1149569 }, + { url = "https://files.pythonhosted.org/packages/54/4b/965a542baf157f23912e466b50fa9c49dd66132d9495d201e6c607ea16f2/greenlet-3.0.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:77457465d89b8263bca14759d7c1684df840b6811b2499838cc5b040a8b5b113", size = 1176361 }, + { url = "https://files.pythonhosted.org/packages/20/70/2f99bdcb4e3912d844dee279e077ee670ec43161d96670a9dfad16b89dd1/greenlet-3.0.3-cp39-cp39-win32.whl", hash = "sha256:57e8974f23e47dac22b83436bdcf23080ade568ce77df33159e019d161ce1d1e", size = 272960 }, + { url = "https://files.pythonhosted.org/packages/c3/80/01ff837bc7122d049971960123d749ed16adbd43cbc008afdb780a40e3fa/greenlet-3.0.3-cp39-cp39-win_amd64.whl", hash = "sha256:c5ee858cfe08f34712f548c3c363e807e7186f03ad7a5039ebadb29e8c6be067", size = 290843 }, +] + +[[package]] +name = "grpcio" +version = "1.65.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cf/e7/739849982ca7fa1bf5e52a472803618e4f1f2963e9a73b1ca2cb056f95c7/grpcio-1.65.4.tar.gz", hash = "sha256:2a4f476209acffec056360d3e647ae0e14ae13dcf3dfb130c227ae1c594cbe39", size = 12254082 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ae/48/1c13c0963aa714406b46739f4fa57fb467979f9f07c528cf586d270f0043/grpcio-1.65.4-cp310-cp310-linux_armv7l.whl", hash = "sha256:0e85c8766cf7f004ab01aff6a0393935a30d84388fa3c58d77849fcf27f3e98c", size = 4878764 }, + { url = "https://files.pythonhosted.org/packages/52/df/9fe3671493b3ebb9a936f477749c9bb84dc2c78b3633f475594ffbd8716e/grpcio-1.65.4-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:e4a795c02405c7dfa8affd98c14d980f4acea16ea3b539e7404c645329460e5a", size = 10411328 }, + { url = "https://files.pythonhosted.org/packages/d7/ff/fa75c686920b0c83a07658d6cc665ef8ac9b0a89057ad1e91afac995ff0d/grpcio-1.65.4-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:d7b984a8dd975d949c2042b9b5ebcf297d6d5af57dcd47f946849ee15d3c2fb8", size = 5393965 }, + { url = "https://files.pythonhosted.org/packages/7d/ed/070a968c69f5b8c8d943f9300b3aad78b4befa44408b0b3169370915b1c0/grpcio-1.65.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:644a783ce604a7d7c91412bd51cf9418b942cf71896344b6dc8d55713c71ce82", size = 5980074 }, + { url = "https://files.pythonhosted.org/packages/a5/57/f03b02c4fad8b72539ab04b8b524782e071c89a2d9c182d60b5d9ded41d7/grpcio-1.65.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5764237d751d3031a36fafd57eb7d36fd2c10c658d2b4057c516ccf114849a3e", size = 5660544 }, + { url = "https://files.pythonhosted.org/packages/4f/5a/47ca58c5c275b5d1002d8a60a9544b30f6b5ca4f3689a75a6d9df890c004/grpcio-1.65.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:ee40d058cf20e1dd4cacec9c39e9bce13fedd38ce32f9ba00f639464fcb757de", size = 6287925 }, + { url = "https://files.pythonhosted.org/packages/ff/d9/77b7ebc1b3ac905644a4ec4ad5bb605680482c3ece5966c399bca164c874/grpcio-1.65.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4482a44ce7cf577a1f8082e807a5b909236bce35b3e3897f839f2fbd9ae6982d", size = 5909355 }, + { url = "https://files.pythonhosted.org/packages/ab/77/9480f757114cea5f31e8101de74cddcd1dd1d4e4e3d814a5a384a21635b1/grpcio-1.65.4-cp310-cp310-win32.whl", hash = "sha256:66bb051881c84aa82e4f22d8ebc9d1704b2e35d7867757f0740c6ef7b902f9b1", size = 3435366 }, + { url = "https://files.pythonhosted.org/packages/89/11/2dab356785e1df6e0a8224c0e4d5f8587fba345c065c3e27f0ad4456bc08/grpcio-1.65.4-cp310-cp310-win_amd64.whl", hash = "sha256:870370524eff3144304da4d1bbe901d39bdd24f858ce849b7197e530c8c8f2ec", size = 4144806 }, + { url = "https://files.pythonhosted.org/packages/a5/cf/969a2de144666f483a0c11aa2b33bf646689062f928bb361c57db8b7c90e/grpcio-1.65.4-cp311-cp311-linux_armv7l.whl", hash = "sha256:85e9c69378af02e483bc626fc19a218451b24a402bdf44c7531e4c9253fb49ef", size = 4884884 }, + { url = "https://files.pythonhosted.org/packages/9d/ee/4ce71fac8935862bb43e4d2a30d286e3de4d9f53d0cf486daa2e379e5c8f/grpcio-1.65.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:2bd672e005afab8bf0d6aad5ad659e72a06dd713020554182a66d7c0c8f47e18", size = 10438328 }, + { url = "https://files.pythonhosted.org/packages/40/ef/c85c23ce58d55ae21d4812be8462cce91d2f271d8e174c862f1cb1f5a51e/grpcio-1.65.4-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:abccc5d73f5988e8f512eb29341ed9ced923b586bb72e785f265131c160231d8", size = 5396919 }, + { url = "https://files.pythonhosted.org/packages/9d/48/595fa809256e09d9defbbd17a92dc7ee5d36cf7392c5cbc69eb9fa5b0daf/grpcio-1.65.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:886b45b29f3793b0c2576201947258782d7e54a218fe15d4a0468d9a6e00ce17", size = 5982481 }, + { url = "https://files.pythonhosted.org/packages/a7/40/086bcaa583f1c4b80c193f9269f0270fb6e5eb384cd855ec2660e1bbcc75/grpcio-1.65.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:be952436571dacc93ccc7796db06b7daf37b3b56bb97e3420e6503dccfe2f1b4", size = 5659542 }, + { url = "https://files.pythonhosted.org/packages/13/b4/5b60479e819889834a785dfceb67a8710e78518ac154158cf745e95fe853/grpcio-1.65.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:8dc9ddc4603ec43f6238a5c95400c9a901b6d079feb824e890623da7194ff11e", size = 6292647 }, + { url = "https://files.pythonhosted.org/packages/d5/2e/791a7c1d5582068adb87e63f291758c8c8e459b8aff0fe75f96e075ba42a/grpcio-1.65.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:ade1256c98cba5a333ef54636095f2c09e6882c35f76acb04412f3b1aa3c29a5", size = 5908730 }, + { url = "https://files.pythonhosted.org/packages/f9/75/87a399e96428270c9cc6700f1451d819bc8423ff242de6387a1a1f1b857e/grpcio-1.65.4-cp311-cp311-win32.whl", hash = "sha256:280e93356fba6058cbbfc6f91a18e958062ef1bdaf5b1caf46c615ba1ae71b5b", size = 3435309 }, + { url = "https://files.pythonhosted.org/packages/74/12/257ab1687ab913aa39330092a9816014bfcf108557f05869a4d40e01ece1/grpcio-1.65.4-cp311-cp311-win_amd64.whl", hash = "sha256:d2b819f9ee27ed4e3e737a4f3920e337e00bc53f9e254377dd26fc7027c4d558", size = 4145930 }, + { url = "https://files.pythonhosted.org/packages/10/32/29329ba27ddef8d502e2c279f0beab93fb60d13c1cb7e3e6c5bf2c1ef3d7/grpcio-1.65.4-cp312-cp312-linux_armv7l.whl", hash = "sha256:926a0750a5e6fb002542e80f7fa6cab8b1a2ce5513a1c24641da33e088ca4c56", size = 4822752 }, + { url = "https://files.pythonhosted.org/packages/a3/4e/218d076b1f939d02b4738bd0b1044ec6898f3e21a9fe8b7c4876dd970195/grpcio-1.65.4-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:2a1d4c84d9e657f72bfbab8bedf31bdfc6bfc4a1efb10b8f2d28241efabfaaf2", size = 10400601 }, + { url = "https://files.pythonhosted.org/packages/62/51/46f4366183f72986071bed97caa1aa19e05a9288df7b7fb3c439bd48d5ac/grpcio-1.65.4-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:17de4fda50967679677712eec0a5c13e8904b76ec90ac845d83386b65da0ae1e", size = 5337677 }, + { url = "https://files.pythonhosted.org/packages/24/dd/8d19248f6645e3acd34d2a22d84e7b3db14135db528a3003239f8e26460d/grpcio-1.65.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3dee50c1b69754a4228e933696408ea87f7e896e8d9797a3ed2aeed8dbd04b74", size = 5922221 }, + { url = "https://files.pythonhosted.org/packages/12/75/b25d1f130db4a294214ac300a38cc1f5a853ee8ea2e0e2529a200d3e6165/grpcio-1.65.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:74c34fc7562bdd169b77966068434a93040bfca990e235f7a67cdf26e1bd5c63", size = 5603315 }, + { url = "https://files.pythonhosted.org/packages/b5/0f/72647daa8dec968c338ed8fbf904369103377de73fe10ba4456eb843bd70/grpcio-1.65.4-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:24a2246e80a059b9eb981e4c2a6d8111b1b5e03a44421adbf2736cc1d4988a8a", size = 6236055 }, + { url = "https://files.pythonhosted.org/packages/d9/56/32bdcfdab28a42207095f6d799508d135b9d072521ce322165d0599478d1/grpcio-1.65.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:18c10f0d054d2dce34dd15855fcca7cc44ec3b811139437543226776730c0f28", size = 5853581 }, + { url = "https://files.pythonhosted.org/packages/63/7f/8716a0ecc1fc1a80e5071c4de52bb8b4993032f2841670f099eb865eca88/grpcio-1.65.4-cp312-cp312-win32.whl", hash = "sha256:d72962788b6c22ddbcdb70b10c11fbb37d60ae598c51eb47ec019db66ccfdff0", size = 3418578 }, + { url = "https://files.pythonhosted.org/packages/a9/2a/b104830e8ffe183d6e648fa2b4e200e7e1582191df195beaa93d28127f5f/grpcio-1.65.4-cp312-cp312-win_amd64.whl", hash = "sha256:7656376821fed8c89e68206a522522317787a3d9ed66fb5110b1dff736a5e416", size = 4130956 }, + { url = "https://files.pythonhosted.org/packages/95/02/5a1e0d025dd831235834a0ccce2f1e9504d64a8d3a3f0881cd2a98175171/grpcio-1.65.4-cp39-cp39-linux_armv7l.whl", hash = "sha256:874acd010e60a2ec1e30d5e505b0651ab12eb968157cd244f852b27c6dbed733", size = 4897236 }, + { url = "https://files.pythonhosted.org/packages/26/15/65a1612e87ed05545c19fe6d919a1ee5bef07a35f4d959f66d805379e8bc/grpcio-1.65.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b07f36faf01fca5427d4aa23645e2d492157d56c91fab7e06fe5697d7e171ad4", size = 10506647 }, + { url = "https://files.pythonhosted.org/packages/f9/9d/cbe5275f6a316a13a0320f47162c6f4949f50e62a3a530d0ab8905b1a209/grpcio-1.65.4-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:b81711bf4ec08a3710b534e8054c7dcf90f2edc22bebe11c1775a23f145595fe", size = 5416399 }, + { url = "https://files.pythonhosted.org/packages/e9/c8/0bf10fa500316d795fa3480db4299b6b79fe998ab9942e9a376e83f4642a/grpcio-1.65.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88fcabc332a4aef8bcefadc34a02e9ab9407ab975d2c7d981a8e12c1aed92aa1", size = 5999122 }, + { url = "https://files.pythonhosted.org/packages/bc/e4/710112ef9edd51430c99c75f306cd605b94c122403be3058cc0ef5c35d13/grpcio-1.65.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c9ba3e63108a8749994f02c7c0e156afb39ba5bdf755337de8e75eb685be244b", size = 5685252 }, + { url = "https://files.pythonhosted.org/packages/ae/87/45a5682482e4bba02a34dc507c82f5c96ad0e29ec388bb4f5c7b85df63dc/grpcio-1.65.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:8eb485801957a486bf5de15f2c792d9f9c897a86f2f18db8f3f6795a094b4bb2", size = 6307285 }, + { url = "https://files.pythonhosted.org/packages/f3/29/0f901894e763807cc420ab5fbcbfcb1f3797dc5a8755a399f78b5b7df0e8/grpcio-1.65.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:075f3903bc1749ace93f2b0664f72964ee5f2da5c15d4b47e0ab68e4f442c257", size = 5930544 }, + { url = "https://files.pythonhosted.org/packages/8c/8f/2555198771997a25891c8619bc0e1023ca937f2876a041c0ba65ddf4f920/grpcio-1.65.4-cp39-cp39-win32.whl", hash = "sha256:0a0720299bdb2cc7306737295d56e41ce8827d5669d4a3cd870af832e3b17c4d", size = 3436203 }, + { url = "https://files.pythonhosted.org/packages/85/c1/514b64320820122c8f5acc116b69b5c1ba42329f6050c0e5b09f6dcfe474/grpcio-1.65.4-cp39-cp39-win_amd64.whl", hash = "sha256:a146bc40fa78769f22e1e9ff4f110ef36ad271b79707577bf2a31e3e931141b9", size = 4144542 }, +] + +[[package]] +name = "h11" +version = "0.14.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f5/38/3af3d3633a34a3316095b39c8e8fb4853a28a536e55d347bd8d8e9a14b03/h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d", size = 100418 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/95/04/ff642e65ad6b90db43e668d70ffb6736436c7ce41fcc549f4e9472234127/h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761", size = 58259 }, +] + +[[package]] +name = "h5py" +version = "3.11.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/52/8f/e557819155a282da36fb21f8de4730cfd10a964b52b3ae8d20157ac1c668/h5py-3.11.0.tar.gz", hash = "sha256:7b7e8f78072a2edec87c9836f25f34203fd492a4475709a18b417a33cfb21fa9", size = 406519 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ac/25/a1cc81b3a742b73f9409bafe4762c9de0940cce0955d4b6754698fd5ce44/h5py-3.11.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1625fd24ad6cfc9c1ccd44a66dac2396e7ee74940776792772819fc69f3a3731", size = 3477113 }, + { url = "https://files.pythonhosted.org/packages/d4/03/bbb9a992fb43d3ce46687b7c14107f0fa56e6c8704c9ca945a9392cbc8ce/h5py-3.11.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c072655ad1d5fe9ef462445d3e77a8166cbfa5e599045f8aa3c19b75315f10e5", size = 2939879 }, + { url = "https://files.pythonhosted.org/packages/94/00/94bf8573e7487b7c37f2b613fc381880d48ec2311f2e859b8a5817deb4df/h5py-3.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:77b19a40788e3e362b54af4dcf9e6fde59ca016db2c61360aa30b47c7b7cef00", size = 5306122 }, + { url = "https://files.pythonhosted.org/packages/bb/0d/fbadb9c69e2a31f641bc24e8d21671129ef3b73f0c61bb16b094fadf1385/h5py-3.11.0-cp310-cp310-win_amd64.whl", hash = "sha256:ef4e2f338fc763f50a8113890f455e1a70acd42a4d083370ceb80c463d803972", size = 2968816 }, + { url = "https://files.pythonhosted.org/packages/a0/52/38bb74cc4362738cc7ef819503fc54d70f0c3a7378519ccb0ac309389122/h5py-3.11.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:bbd732a08187a9e2a6ecf9e8af713f1d68256ee0f7c8b652a32795670fb481ba", size = 3489913 }, + { url = "https://files.pythonhosted.org/packages/f0/af/dfbea0c69fe725e9e77259d42f4e14eb582eb094200aaf697feb36f513d8/h5py-3.11.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:75bd7b3d93fbeee40860fd70cdc88df4464e06b70a5ad9ce1446f5f32eb84007", size = 2946912 }, + { url = "https://files.pythonhosted.org/packages/af/26/f231ee425c8df93c1abbead3d90ea4a5ff3d6aa49e0edfd3b4c017e74844/h5py-3.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:52c416f8eb0daae39dabe71415cb531f95dce2d81e1f61a74537a50c63b28ab3", size = 5420165 }, + { url = "https://files.pythonhosted.org/packages/d8/5e/b7b83cfe60504cc4d24746aed04353af7ea8ec104e597e5ae71b8d0390cb/h5py-3.11.0-cp311-cp311-win_amd64.whl", hash = "sha256:083e0329ae534a264940d6513f47f5ada617da536d8dccbafc3026aefc33c90e", size = 2979079 }, + { url = "https://files.pythonhosted.org/packages/58/a9/2655d4b8355d0ee783dc89dd40b5f0780e6f54a4c9b60721dc235fd6c457/h5py-3.11.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:a76cae64080210389a571c7d13c94a1a6cf8cb75153044fd1f822a962c97aeab", size = 3466468 }, + { url = "https://files.pythonhosted.org/packages/9d/3f/cf80ef55e0a9b18aae96c763fbd275c54d0723e0f2cc54f954f87cc5c69a/h5py-3.11.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f3736fe21da2b7d8a13fe8fe415f1272d2a1ccdeff4849c1421d2fb30fd533bc", size = 2943214 }, + { url = "https://files.pythonhosted.org/packages/db/7e/fedac8bb8c4729409e2dec5e4136a289116d701d54f69ce73c5617afc5f0/h5py-3.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa6ae84a14103e8dc19266ef4c3e5d7c00b68f21d07f2966f0ca7bdb6c2761fb", size = 5378375 }, + { url = "https://files.pythonhosted.org/packages/2b/b2/0ee327933ffa37af1fc7915df7fc067e6009adcd8445d55ad07a9bec11b5/h5py-3.11.0-cp312-cp312-win_amd64.whl", hash = "sha256:21dbdc5343f53b2e25404673c4f00a3335aef25521bd5fa8c707ec3833934892", size = 2970991 }, + { url = "https://files.pythonhosted.org/packages/c2/1f/36a84945616881bd47e6c40dcdca7e929bc811725d78d001eddba6864185/h5py-3.11.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f4e025e852754ca833401777c25888acb96889ee2c27e7e629a19aee288833f0", size = 3490090 }, + { url = "https://files.pythonhosted.org/packages/3c/fb/e213586de5ea56f1747a843e725c62eef350512be57452186996ba660d52/h5py-3.11.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6c4b760082626120031d7902cd983d8c1f424cdba2809f1067511ef283629d4b", size = 2951710 }, + { url = "https://files.pythonhosted.org/packages/71/28/69a881e01f198ccdb65c36f7adcfef22bfe85e38ffbfdf833af24f58eb5e/h5py-3.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:67462d0669f8f5459529de179f7771bd697389fcb3faab54d63bf788599a48ea", size = 5326481 }, + { url = "https://files.pythonhosted.org/packages/c3/61/0b35ad9aac0ab0a33365879556fdb824fc83013df69b247386690db59015/h5py-3.11.0-cp39-cp39-win_amd64.whl", hash = "sha256:d9c944d364688f827dc889cf83f1fca311caf4fa50b19f009d1f2b525edd33a3", size = 2978689 }, +] + +[[package]] +name = "hf-doc-builder" +version = "0.5.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "black", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "gitpython", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "huggingface-hub", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "nbformat", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/97/f7/3a4e5528b79891159cd428d6c6d09bd47ca6b4c26315b9bb77828b162586/hf-doc-builder-0.5.0.tar.gz", hash = "sha256:e557660f76d1d90ac79e96d7b17642eca83f16a0a89ceabde180f0437d28179b", size = 152415 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/40/89/b794a9f2708f2926d3050132541952bc44eeeb1e560dc34fd00bace47655/hf_doc_builder-0.5.0-py3-none-any.whl", hash = "sha256:bdceb44a26b7eb90a344afb3560306e23e95f0676f94fbd8a8111cf7f096e2ea", size = 67780 }, +] + +[[package]] +name = "hjson" +version = "3.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/82/e5/0b56d723a76ca67abadbf7fb71609fb0ea7e6926e94fcca6c65a85b36a0e/hjson-3.1.0.tar.gz", hash = "sha256:55af475a27cf83a7969c808399d7bccdec8fb836a07ddbd574587593b9cdcf75", size = 40541 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1f/7f/13cd798d180af4bf4c0ceddeefba2b864a63c71645abc0308b768d67bb81/hjson-3.1.0-py3-none-any.whl", hash = "sha256:65713cdcf13214fb554eb8b4ef803419733f4f5e551047c9b711098ab7186b89", size = 54018 }, +] + +[[package]] +name = "huggingface-hub" +version = "0.24.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "filelock", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fsspec", version = "2024.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.10' and platform_machine == 'aarch64' and platform_system == 'Linux') or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fsspec", version = "2024.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ec/07/b70a5b9c3da399a54a446a4750763c9030f47fa0491ef31a3fa8de4cb0d2/huggingface_hub-0.24.5.tar.gz", hash = "sha256:7b45d6744dd53ce9cbf9880957de00e9d10a9ae837f1c9b7255fc8fa4e8264f3", size = 349225 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0b/05/31b21998f68c31e7ffcc27ff08531fb9af5506d765ce8d661fb0036e6918/huggingface_hub-0.24.5-py3-none-any.whl", hash = "sha256:d93fb63b1f1a919a22ce91a14518974e81fc4610bf344dfe7572343ce8d3aced", size = 417510 }, +] + +[[package]] +name = "humanfriendly" +version = "10.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyreadline3", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cc/3f/2c29224acb2e2df4d2046e4c73ee2662023c58ff5b113c4c1adac0886c43/humanfriendly-10.0.tar.gz", hash = "sha256:6b0b831ce8f15f7300721aa49829fc4e83921a9a301cc7f606be6686a2288ddc", size = 360702 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f0/0f/310fb31e39e2d734ccaa2c0fb981ee41f7bd5056ce9bc29b2248bd569169/humanfriendly-10.0-py2.py3-none-any.whl", hash = "sha256:1697e1a8a8f550fd43c2865cd84542fc175a61dcb779b6fee18cf6b6ccba1477", size = 86794 }, +] + +[[package]] +name = "hypothesis" +version = "6.110.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "exceptiongroup", marker = "python_version < '3.11'" }, + { name = "sortedcontainers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/af/f1/3e21fa4dab81c67ddbcf92a23dce668474d4689695e76b9988a8817083e5/hypothesis-6.110.1.tar.gz", hash = "sha256:a138bfaea11aba6daadf8effd9065251a6fec1549f25b7d72ac9881a413f76b0", size = 406779 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0b/79/06dfd9c9413a19cc0a5a2828706a2629ed74506c29486b5ca456d4d96aff/hypothesis-6.110.1-py3-none-any.whl", hash = "sha256:4b54a4ed3385c53b247b99e7b3c9630e7b665ef3cfdb2c557dd1c0b34d090481", size = 467555 }, +] + +[[package]] +name = "idna" +version = "3.7" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/21/ed/f86a79a07470cb07819390452f178b3bef1d375f2ec021ecfc709fc7cf07/idna-3.7.tar.gz", hash = "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc", size = 189575 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e5/3e/741d8c82801c347547f8a2a06aa57dbb1992be9e948df2ea0eda2c8b79e8/idna-3.7-py3-none-any.whl", hash = "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0", size = 66836 }, +] + +[[package]] +name = "importlib-metadata" +version = "6.11.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "zipp", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ee/eb/58c2ab27ee628ad801f56d4017fe62afab0293116f6d0b08f1d5bd46e06f/importlib_metadata-6.11.0.tar.gz", hash = "sha256:1231cf92d825c9e03cfc4da076a16de6422c863558229ea0b22b675657463443", size = 54593 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/59/9b/ecce94952ab5ea74c31dcf9ccf78ccd484eebebef06019bf8cb579ab4519/importlib_metadata-6.11.0-py3-none-any.whl", hash = "sha256:f0afba6205ad8f8947c7d338b5342d5db2afbfd82f9cbef7879a9539cc12eb9b", size = 23427 }, +] + +[[package]] +name = "importlib-resources" +version = "6.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "zipp", marker = "python_version < '3.10'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c8/9d/6ee73859d6be81c6ea7ebac89655e92740296419bd37e5c8abdb5b62fd55/importlib_resources-6.4.0.tar.gz", hash = "sha256:cdb2b453b8046ca4e3798eb1d84f3cce1446a0e8e7b5ef4efb600f19fc398145", size = 42040 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/75/06/4df55e1b7b112d183f65db9503bff189e97179b256e1ea450a3c365241e0/importlib_resources-6.4.0-py3-none-any.whl", hash = "sha256:50d10f043df931902d4194ea07ec57960f66a80449ff867bfe782b4c486ba78c", size = 38168 }, +] + +[[package]] +name = "iniconfig" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d7/4b/cbd8e699e64a6f16ca3a8220661b5f83792b3017d0f79807cb8708d33913/iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3", size = 4646 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374", size = 5892 }, +] + +[[package]] +name = "ipadic" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e7/4e/c459f94d62a0bef89f866857bc51b9105aff236b83928618315b41a26b7b/ipadic-1.0.0.tar.gz", hash = "sha256:f5923d31eca6131acaaf18ed28d8998665b1347b640d3a6476f64650e9a71c07", size = 13413189 } + +[[package]] +name = "isodate" +version = "0.6.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/db/7a/c0a56c7d56c7fa723988f122fa1f1ccf8c5c4ccc48efad0d214b49e5b1af/isodate-0.6.1.tar.gz", hash = "sha256:48c5881de7e8b0a0d648cb024c8062dc84e7b840ed81e864c7614fd3c127bde9", size = 28443 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/85/7882d311924cbcfc70b1890780763e36ff0b140c7e51c110fc59a532f087/isodate-0.6.1-py2.py3-none-any.whl", hash = "sha256:0751eece944162659049d35f4f549ed815792b38793f07cf73381c1c87cbed96", size = 41722 }, +] + +[[package]] +name = "isort" +version = "5.13.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/87/f9/c1eb8635a24e87ade2efce21e3ce8cd6b8630bb685ddc9cdaca1349b2eb5/isort-5.13.2.tar.gz", hash = "sha256:48fdfcb9face5d58a4f6dde2e72a1fb8dcaf8ab26f95ab49fab84c2ddefb0109", size = 175303 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/b3/8def84f539e7d2289a02f0524b944b15d7c75dab7628bedf1c4f0992029c/isort-5.13.2-py3-none-any.whl", hash = "sha256:8ca5e72a8d85860d5a3fa69b8745237f2939afe12dbf656afbcb47fe72d947a6", size = 92310 }, +] + +[[package]] +name = "itsdangerous" +version = "2.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9c/cb/8ac0172223afbccb63986cc25049b154ecfb5e85932587206f42317be31d/itsdangerous-2.2.0.tar.gz", hash = "sha256:e0050c0b7da1eea53ffaf149c0cfbb5c6e2e2b69c4bef22c81fa6eb73e5f6173", size = 54410 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/96/92447566d16df59b2a776c0fb82dbc4d9e07cd95062562af01e408583fc4/itsdangerous-2.2.0-py3-none-any.whl", hash = "sha256:c6242fc49e35958c8b15141343aa660db5fc54d4f13a1db01a3f5891b98700ef", size = 16234 }, +] + +[[package]] +name = "jax" +version = "0.4.13" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "importlib-metadata", marker = "python_version < '3.10'" }, + { name = "ml-dtypes", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "opt-einsum", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "scipy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1e/f2/03643b515aede51a812608e3fe37cbc30426241e512bb0fb8546c36ddd5b/jax-0.4.13.tar.gz", hash = "sha256:03bfe6749dfe647f16f15f6616638adae6c4a7ca7167c75c21961ecfd3a3baaa", size = 1312396 } + +[[package]] +name = "jaxlib" +version = "0.4.13" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ml-dtypes", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "scipy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/5b/3d/e6ec561f4d6dc822abbc86b6d2adb36753d6b3ba25dff2fa00cb7d7b941c/jaxlib-0.4.13-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:532ebc4fb11386282ad63b83941d4557f4038c1144acf026f1f8565f64c7e9c0", size = 75002669 }, + { url = "https://files.pythonhosted.org/packages/09/aa/7316c5df14e819cfbf6ade7c3196a731182318247e901a780708db9dfffe/jaxlib-0.4.13-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a259bb35429bfbd3b76e43019dfc8f7d6ea94bb217400b78f7d0824ce07a58ac", size = 60529784 }, + { url = "https://files.pythonhosted.org/packages/7d/69/9a71db7bac2d6543e8ec7f4236477b646b245b59b6bfcc99591cdfc76494/jaxlib-0.4.13-cp310-cp310-manylinux2014_x86_64.whl", hash = "sha256:ea1bc9811ef7d73a15e3213115e88fe7f5d14b59d95027bea9fccc98e5a14af8", size = 71571087 }, + { url = "https://files.pythonhosted.org/packages/8e/8c/c9ffca098a00bbd802a01dce5b78387a64c0e1419570c9775f42dcf1c6a3/jaxlib-0.4.13-cp310-cp310-win_amd64.whl", hash = "sha256:fde66a93e9be89d99e5792f677ed8e319667d6b2396865b1c52c1312844c47f9", size = 39121663 }, + { url = "https://files.pythonhosted.org/packages/02/e2/803075c7ad869b47b40e08b7fad35916f4536d3e6df40c02e38d7e0cf0d5/jaxlib-0.4.13-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:49690fcdd26560515fd15399fc3a44777e0bfc5db5c48fe76ff7bc7228e8b2fb", size = 75002379 }, + { url = "https://files.pythonhosted.org/packages/49/8c/986d8022a471e4a80e1f33cfab81ea3b7dc675fd2a2d210be217e64c09e3/jaxlib-0.4.13-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f4e9e34e5d8a6556f62fead14aee0b1614c2c6296f0078d8e6139d6aff109649", size = 60528240 }, + { url = "https://files.pythonhosted.org/packages/18/53/6c56ab4ab31f6f8a09fcdb9dbc8ad2dd9b08ea0718e93ec6739f81679b9e/jaxlib-0.4.13-cp311-cp311-manylinux2014_x86_64.whl", hash = "sha256:8000c0d15c107328e8f7b7b3ac91dd822f5c287a80231882b620503ed141fa89", size = 71569405 }, + { url = "https://files.pythonhosted.org/packages/ee/4a/681e13141877e3e9f367fc70cb898e16893db14c8c4abc074221ffa9b3e4/jaxlib-0.4.13-cp311-cp311-win_amd64.whl", hash = "sha256:19ae4c316b17a49342432c69f7f89f190b975333f3f9e9e175f686a651bc7347", size = 39123675 }, + { url = "https://files.pythonhosted.org/packages/cd/7c/45935fa8cd67664b492e9ad60a0fa32f6e7dde8c9909b3c3d9f4bfa4d118/jaxlib-0.4.13-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:c230ef85712e608d0f048869766a5a63afeb2e72309943db0df9f959ab17307f", size = 75004444 }, + { url = "https://files.pythonhosted.org/packages/fd/d7/c8707ac3203ef2198e1ec45b9afb62e634578cae9c54c455223846d094ab/jaxlib-0.4.13-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d19c05c15f962e098d49b45e2758aacf19330d192ec5395f9ef136f62db90edc", size = 60531230 }, + { url = "https://files.pythonhosted.org/packages/b8/29/09d0ce36bec04c1750688c6fec270df7502677f82f317f6c6b43e491b7e0/jaxlib-0.4.13-cp39-cp39-manylinux2014_x86_64.whl", hash = "sha256:b5c0a9737efd95fe18fd7715ce30dfce476546705ea8934aad6731777a9631a5", size = 71571249 }, + { url = "https://files.pythonhosted.org/packages/b5/88/574e2472005f1d3377621eeef3262282b48b322dfdc8bceddab6035c0454/jaxlib-0.4.13-cp39-cp39-win_amd64.whl", hash = "sha256:bebb4cf001f180dc431f9604daf930c2d9cc778e4dda26f401ac939b7bac912e", size = 39048355 }, +] + +[[package]] +name = "jinja2" +version = "3.1.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ed/55/39036716d19cab0747a5020fc7e907f362fbf48c984b14e62127f7e68e5d/jinja2-3.1.4.tar.gz", hash = "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369", size = 240245 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/31/80/3a54838c3fb461f6fec263ebf3a3a41771bd05190238de3486aae8540c36/jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d", size = 133271 }, +] + +[[package]] +name = "jinja2-time" +version = "0.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "arrow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jinja2", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/de/7c/ee2f2014a2a0616ad3328e58e7dac879251babdb4cb796d770b5d32c469f/jinja2-time-0.2.0.tar.gz", hash = "sha256:d14eaa4d315e7688daa4969f616f226614350c48730bfa1692d2caebd8c90d40", size = 5701 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6a/a1/d44fa38306ffa34a7e1af09632b158e13ec89670ce491f8a15af3ebcb4e4/jinja2_time-0.2.0-py2.py3-none-any.whl", hash = "sha256:d3eab6605e3ec8b7a0863df09cc1d23714908fa61aa6986a845c20ba488b4efa", size = 6360 }, +] + +[[package]] +name = "jmespath" +version = "1.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/00/2a/e867e8531cf3e36b41201936b7fa7ba7b5702dbef42922193f05c8976cd6/jmespath-1.0.1.tar.gz", hash = "sha256:90261b206d6defd58fdd5e85f478bf633a2901798906be2ad389150c5c60edbe", size = 25843 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/31/b4/b9b800c45527aadd64d5b442f9b932b00648617eb5d63d2c7a6587b7cafc/jmespath-1.0.1-py3-none-any.whl", hash = "sha256:02e2e4cc71b5bcab88332eebf907519190dd9e6e82107fa7f83b1003a6252980", size = 20256 }, +] + +[[package]] +name = "joblib" +version = "1.4.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/64/33/60135848598c076ce4b231e1b1895170f45fbcaeaa2c9d5e38b04db70c35/joblib-1.4.2.tar.gz", hash = "sha256:2382c5816b2636fbd20a09e0f4e9dad4736765fdfb7dca582943b9c1366b3f0e", size = 2116621 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/91/29/df4b9b42f2be0b623cbd5e2140cafcaa2bef0759a00b7b70104dcfe2fb51/joblib-1.4.2-py3-none-any.whl", hash = "sha256:06d478d5674cbc267e7496a410ee875abd68e4340feff4490bcb7afb88060ae6", size = 301817 }, +] + +[[package]] +name = "jsonschema" +version = "4.23.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jsonschema-specifications", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "referencing", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rpds-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/38/2e/03362ee4034a4c917f697890ccd4aec0800ccf9ded7f511971c75451deec/jsonschema-4.23.0.tar.gz", hash = "sha256:d71497fef26351a33265337fa77ffeb82423f3ea21283cd9467bb03999266bc4", size = 325778 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/69/4a/4f9dbeb84e8850557c02365a0eee0649abe5eb1d84af92a25731c6c0f922/jsonschema-4.23.0-py3-none-any.whl", hash = "sha256:fbadb6f8b144a8f8cf9f0b89ba94501d143e50411a1278633f56a7acf7fd5566", size = 88462 }, +] + +[[package]] +name = "jsonschema-specifications" +version = "2023.12.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "referencing", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f8/b9/cc0cc592e7c195fb8a650c1d5990b10175cf13b4c97465c72ec841de9e4b/jsonschema_specifications-2023.12.1.tar.gz", hash = "sha256:48a76787b3e70f5ed53f1160d2b81f586e4ca6d1548c5de7085d1682674764cc", size = 13983 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ee/07/44bd408781594c4d0a027666ef27fab1e441b109dc3b76b4f836f8fd04fe/jsonschema_specifications-2023.12.1-py3-none-any.whl", hash = "sha256:87e4fdf3a94858b8a2ba2778d9ba57d8a9cafca7c7489c46ba0d30a8bc6a9c3c", size = 18482 }, +] + +[[package]] +name = "jupyter-core" +version = "5.7.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "platformdirs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pywin32", marker = "platform_python_implementation != 'PyPy' and sys_platform == 'win32'" }, + { name = "traitlets", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/00/11/b56381fa6c3f4cc5d2cf54a7dbf98ad9aa0b339ef7a601d6053538b079a7/jupyter_core-5.7.2.tar.gz", hash = "sha256:aa5f8d32bbf6b431ac830496da7392035d6f61b4f54872f15c4bd2a9c3f536d9", size = 87629 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c9/fb/108ecd1fe961941959ad0ee4e12ee7b8b1477247f30b1fdfd83ceaf017f0/jupyter_core-5.7.2-py3-none-any.whl", hash = "sha256:4f7315d2f6b4bcf2e3e7cb6e46772eba760ae459cd1f59d29eb57b0a01bd7409", size = 28965 }, +] + +[[package]] +name = "kagglehub" +version = "0.2.9" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/3f/9d/a3bbd76a48c8e06cc8c6817549c52148c7bc9d4ead9626cfb3e1093a0786/kagglehub-0.2.9.tar.gz", hash = "sha256:761366c7349910612c9df879fae0a305a2146bf3b3f90e8be8434ab823d53687", size = 55678 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5c/e7/71927b088047132317c14eb513d69c8375ddba3c9029d4154a054f6c8765/kagglehub-0.2.9-py3-none-any.whl", hash = "sha256:4689019c69f52a86130e3b8c02e41ba521d17ac1d2644d8178a9eb32bbc74ea9", size = 39787 }, +] + +[[package]] +name = "kenlm" +version = "0.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/97/76/6a7479e3546d34ee46fc960c8d0ccf281f26ed18956d17f4ec5dcb1fa377/kenlm-0.2.0.tar.gz", hash = "sha256:c2dc1dc09d3c150e6a1777ef0fd5cac3688e1dc1cc13e41472d0284e5e88ac7f", size = 427425 } + +[[package]] +name = "keras" +version = "2.15.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b5/03/80072f4ee46e3c77e95b06d684fadf90a67759e4e9f1d86a563e0965c71a/keras-2.15.0.tar.gz", hash = "sha256:81871d298c064dc4ac6b58440fdae67bfcf47c8d7ad28580fab401834c06a575", size = 1252015 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fc/a7/0d4490de967a67f68a538cc9cdb259bff971c4b5787f7765dc7c8f118f71/keras-2.15.0-py3-none-any.whl", hash = "sha256:2dcc6d2e30cf9c951064b63c1f4c404b966c59caf09e01f3549138ec8ee0dd1f", size = 1710438 }, +] + +[[package]] +name = "keras-nlp" +version = "0.14.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "kagglehub", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "regex", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rich", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-text", marker = "platform_system != 'Darwin'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/da/bf/7f34bfd78555f8ce68f51f6583b4a91a279e34dee2013047e338529c3f8a/keras_nlp-0.14.4.tar.gz", hash = "sha256:abd5886efc60d52f0970ac43d3791c87624bfa8f7a7048a66f9dbcb2d1d28771", size = 331838 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0e/e9/abbca8edef533acc7deec437742eb9c8c542d03534cab3bee7835bd97f3f/keras_nlp-0.14.4-py3-none-any.whl", hash = "sha256:13664b96c4551f4734074d502a961e8f994ee2ce15c7e94e472b33f1d4bf109c", size = 572242 }, +] + +[[package]] +name = "language-tags" +version = "1.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e0/7e/b6a0efe4fee11e9742c1baaedf7c574084238a70b03c1d8eb2761383848f/language_tags-1.2.0.tar.gz", hash = "sha256:e934acba3e3dc85f867703eca421847a9ab7b7679b11b5d5cfd096febbf8bde6", size = 207901 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b0/42/327554649ed2dd5ce59d3f5da176c7be20f9352c7c6c51597293660b7b08/language_tags-1.2.0-py3-none-any.whl", hash = "sha256:d815604622242fdfbbfd747b40c31213617fd03734a267f2e39ee4bd73c88722", size = 213449 }, +] + +[[package]] +name = "lazy-loader" +version = "0.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6f/6b/c875b30a1ba490860c93da4cabf479e03f584eba06fe5963f6f6644653d8/lazy_loader-0.4.tar.gz", hash = "sha256:47c75182589b91a4e1a85a136c074285a5ad4d9f39c63e0d7fb76391c4574cd1", size = 15431 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/83/60/d497a310bde3f01cb805196ac61b7ad6dc5dcf8dce66634dc34364b20b4f/lazy_loader-0.4-py3-none-any.whl", hash = "sha256:342aa8e14d543a154047afb4ba8ef17f5563baad3fc610d7b15b213b0f119efc", size = 12097 }, +] + +[[package]] +name = "libclang" +version = "18.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6e/5c/ca35e19a4f142adffa27e3d652196b7362fa612243e2b916845d801454fc/libclang-18.1.1.tar.gz", hash = "sha256:a1214966d08d73d971287fc3ead8dfaf82eb07fb197680d8b3859dbbbbf78250", size = 39612 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4b/49/f5e3e7e1419872b69f6f5e82ba56e33955a74bd537d8a1f5f1eff2f3668a/libclang-18.1.1-1-py2.py3-none-macosx_11_0_arm64.whl", hash = "sha256:0b2e143f0fac830156feb56f9231ff8338c20aecfe72b4ffe96f19e5a1dbb69a", size = 25836045 }, + { url = "https://files.pythonhosted.org/packages/e2/e5/fc61bbded91a8830ccce94c5294ecd6e88e496cc85f6704bf350c0634b70/libclang-18.1.1-py2.py3-none-macosx_10_9_x86_64.whl", hash = "sha256:6f14c3f194704e5d09769108f03185fce7acaf1d1ae4bbb2f30a72c2400cb7c5", size = 26502641 }, + { url = "https://files.pythonhosted.org/packages/db/ed/1df62b44db2583375f6a8a5e2ca5432bbdc3edb477942b9b7c848c720055/libclang-18.1.1-py2.py3-none-macosx_11_0_arm64.whl", hash = "sha256:83ce5045d101b669ac38e6da8e58765f12da2d3aafb3b9b98d88b286a60964d8", size = 26420207 }, + { url = "https://files.pythonhosted.org/packages/1d/fc/716c1e62e512ef1c160e7984a73a5fc7df45166f2ff3f254e71c58076f7c/libclang-18.1.1-py2.py3-none-manylinux2010_x86_64.whl", hash = "sha256:c533091d8a3bbf7460a00cb6c1a71da93bffe148f172c7d03b1c31fbf8aa2a0b", size = 24515943 }, + { url = "https://files.pythonhosted.org/packages/3c/3d/f0ac1150280d8d20d059608cf2d5ff61b7c3b7f7bcf9c0f425ab92df769a/libclang-18.1.1-py2.py3-none-manylinux2014_aarch64.whl", hash = "sha256:54dda940a4a0491a9d1532bf071ea3ef26e6dbaf03b5000ed94dd7174e8f9592", size = 23784972 }, + { url = "https://files.pythonhosted.org/packages/fe/2f/d920822c2b1ce9326a4c78c0c2b4aa3fde610c7ee9f631b600acb5376c26/libclang-18.1.1-py2.py3-none-manylinux2014_armv7l.whl", hash = "sha256:cf4a99b05376513717ab5d82a0db832c56ccea4fd61a69dbb7bccf2dfb207dbe", size = 20259606 }, + { url = "https://files.pythonhosted.org/packages/2d/c2/de1db8c6d413597076a4259cea409b83459b2db997c003578affdd32bf66/libclang-18.1.1-py2.py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:69f8eb8f65c279e765ffd28aaa7e9e364c776c17618af8bff22a8df58677ff4f", size = 24921494 }, + { url = "https://files.pythonhosted.org/packages/0b/2d/3f480b1e1d31eb3d6de5e3ef641954e5c67430d5ac93b7fa7e07589576c7/libclang-18.1.1-py2.py3-none-win_amd64.whl", hash = "sha256:4dd2d3b82fab35e2bf9ca717d7b63ac990a3519c7e312f19fa8e86dcc712f7fb", size = 26415083 }, + { url = "https://files.pythonhosted.org/packages/71/cf/e01dc4cc79779cd82d77888a88ae2fa424d93b445ad4f6c02bfc18335b70/libclang-18.1.1-py2.py3-none-win_arm64.whl", hash = "sha256:3f0e1f49f04d3cd198985fea0511576b0aee16f9ff0e0f0cad7f9c57ec3c20e8", size = 22361112 }, +] + +[[package]] +name = "librosa" +version = "0.10.2.post1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "audioread", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "decorator", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "joblib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "lazy-loader", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "msgpack", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numba", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pooch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "scikit-learn", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "scipy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "soundfile", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "soxr", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0e/2d/77783a52641a21ff7e2230aa588e4fb4a61422a64673096a36776b7e5bd9/librosa-0.10.2.post1.tar.gz", hash = "sha256:cd99f16717cbcd1e0983e37308d1db46a6f7dfc2e396e5a9e61e6821e44bd2e7", size = 325533 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8c/8a/2d231b35456506b7c98b3ab9bbf07917b205fed8615d2e59e976ab497fff/librosa-0.10.2.post1-py3-none-any.whl", hash = "sha256:dc882750e8b577a63039f25661b7e39ec4cfbacc99c1cffba666cd664fb0a7a0", size = 260089 }, +] + +[[package]] +name = "llvmlite" +version = "0.43.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9f/3d/f513755f285db51ab363a53e898b85562e950f79a2e6767a364530c2f645/llvmlite-0.43.0.tar.gz", hash = "sha256:ae2b5b5c3ef67354824fb75517c8db5fbe93bc02cd9671f3c62271626bc041d5", size = 157069 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/23/ff/6ca7e98998b573b4bd6566f15c35e5c8bea829663a6df0c7aa55ab559da9/llvmlite-0.43.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a289af9a1687c6cf463478f0fa8e8aa3b6fb813317b0d70bf1ed0759eab6f761", size = 31064408 }, + { url = "https://files.pythonhosted.org/packages/ca/5c/a27f9257f86f0cda3f764ff21d9f4217b9f6a0d45e7a39ecfa7905f524ce/llvmlite-0.43.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6d4fd101f571a31acb1559ae1af30f30b1dc4b3186669f92ad780e17c81e91bc", size = 28793153 }, + { url = "https://files.pythonhosted.org/packages/7e/3c/4410f670ad0a911227ea2ecfcba9f672a77cf1924df5280c4562032ec32d/llvmlite-0.43.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7d434ec7e2ce3cc8f452d1cd9a28591745de022f931d67be688a737320dfcead", size = 42857276 }, + { url = "https://files.pythonhosted.org/packages/c6/21/2ffbab5714e72f2483207b4a1de79b2eecd9debbf666ff4e7067bcc5c134/llvmlite-0.43.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6912a87782acdff6eb8bf01675ed01d60ca1f2551f8176a300a886f09e836a6a", size = 43871781 }, + { url = "https://files.pythonhosted.org/packages/f2/26/b5478037c453554a61625ef1125f7e12bb1429ae11c6376f47beba9b0179/llvmlite-0.43.0-cp310-cp310-win_amd64.whl", hash = "sha256:14f0e4bf2fd2d9a75a3534111e8ebeb08eda2f33e9bdd6dfa13282afacdde0ed", size = 28123487 }, + { url = "https://files.pythonhosted.org/packages/95/8c/de3276d773ab6ce3ad676df5fab5aac19696b2956319d65d7dd88fb10f19/llvmlite-0.43.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3e8d0618cb9bfe40ac38a9633f2493d4d4e9fcc2f438d39a4e854f39cc0f5f98", size = 31064409 }, + { url = "https://files.pythonhosted.org/packages/ee/e1/38deed89ced4cf378c61e232265cfe933ccde56ae83c901aa68b477d14b1/llvmlite-0.43.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e0a9a1a39d4bf3517f2af9d23d479b4175ead205c592ceeb8b89af48a327ea57", size = 28793149 }, + { url = "https://files.pythonhosted.org/packages/2f/b2/4429433eb2dc8379e2cb582502dca074c23837f8fd009907f78a24de4c25/llvmlite-0.43.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c1da416ab53e4f7f3bc8d4eeba36d801cc1894b9fbfbf2022b29b6bad34a7df2", size = 42857277 }, + { url = "https://files.pythonhosted.org/packages/6b/99/5d00a7d671b1ba1751fc9f19d3b36f3300774c6eebe2bcdb5f6191763eb4/llvmlite-0.43.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:977525a1e5f4059316b183fb4fd34fa858c9eade31f165427a3977c95e3ee749", size = 43871781 }, + { url = "https://files.pythonhosted.org/packages/20/ab/ed5ed3688c6ba4f0b8d789da19fd8e30a9cf7fc5852effe311bc5aefe73e/llvmlite-0.43.0-cp311-cp311-win_amd64.whl", hash = "sha256:d5bd550001d26450bd90777736c69d68c487d17bf371438f975229b2b8241a91", size = 28107433 }, + { url = "https://files.pythonhosted.org/packages/0b/67/9443509e5d2b6d8587bae3ede5598fa8bd586b1c7701696663ea8af15b5b/llvmlite-0.43.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f99b600aa7f65235a5a05d0b9a9f31150c390f31261f2a0ba678e26823ec38f7", size = 31064409 }, + { url = "https://files.pythonhosted.org/packages/a2/9c/24139d3712d2d352e300c39c0e00d167472c08b3bd350c3c33d72c88ff8d/llvmlite-0.43.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:35d80d61d0cda2d767f72de99450766250560399edc309da16937b93d3b676e7", size = 28793145 }, + { url = "https://files.pythonhosted.org/packages/bf/f1/4c205a48488e574ee9f6505d50e84370a978c90f08dab41a42d8f2c576b6/llvmlite-0.43.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eccce86bba940bae0d8d48ed925f21dbb813519169246e2ab292b5092aba121f", size = 42857276 }, + { url = "https://files.pythonhosted.org/packages/00/5f/323c4d56e8401c50185fd0e875fcf06b71bf825a863699be1eb10aa2a9cb/llvmlite-0.43.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:df6509e1507ca0760787a199d19439cc887bfd82226f5af746d6977bd9f66844", size = 43871781 }, + { url = "https://files.pythonhosted.org/packages/c6/94/dea10e263655ce78d777e78d904903faae39d1fc440762be4a9dc46bed49/llvmlite-0.43.0-cp312-cp312-win_amd64.whl", hash = "sha256:7a2872ee80dcf6b5dbdc838763d26554c2a18aa833d31a2635bff16aafefb9c9", size = 28107442 }, + { url = "https://files.pythonhosted.org/packages/2a/73/12925b1bbb3c2beb6d96f892ef5b4d742c34f00ddb9f4a125e9e87b22f52/llvmlite-0.43.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9cd2a7376f7b3367019b664c21f0c61766219faa3b03731113ead75107f3b66c", size = 31064410 }, + { url = "https://files.pythonhosted.org/packages/cc/61/58c70aa0808a8cba825a7d98cc65bef4801b99328fba80837bfcb5fc767f/llvmlite-0.43.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:18e9953c748b105668487b7c81a3e97b046d8abf95c4ddc0cd3c94f4e4651ae8", size = 28793145 }, + { url = "https://files.pythonhosted.org/packages/c8/c6/9324eb5de2ba9d99cbed853d85ba7a318652a48e077797bec27cf40f911d/llvmlite-0.43.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:74937acd22dc11b33946b67dca7680e6d103d6e90eeaaaf932603bec6fe7b03a", size = 42857276 }, + { url = "https://files.pythonhosted.org/packages/e0/d0/889e9705107db7b1ec0767b03f15d7b95b4c4f9fdf91928ab1c7e9ffacf6/llvmlite-0.43.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc9efc739cc6ed760f795806f67889923f7274276f0eb45092a1473e40d9b867", size = 43871777 }, + { url = "https://files.pythonhosted.org/packages/df/41/73cc26a2634b538cfe813f618c91e7e9960b8c163f8f0c94a2b0f008b9da/llvmlite-0.43.0-cp39-cp39-win_amd64.whl", hash = "sha256:47e147cdda9037f94b399bf03bfd8a6b6b1f2f90be94a454e3386f006455a9b4", size = 28123489 }, +] + +[[package]] +name = "lxml" +version = "5.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/63/f7/ffbb6d2eb67b80a45b8a0834baa5557a14a5ffce0979439e7cd7f0c4055b/lxml-5.2.2.tar.gz", hash = "sha256:bb2dc4898180bea79863d5487e5f9c7c34297414bad54bcd0f0852aee9cfdb87", size = 3678631 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9b/e9/73c7e6f9a933ee82cd68599d6291c875379cbce2c47717b811744cfd2256/lxml-5.2.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:364d03207f3e603922d0d3932ef363d55bbf48e3647395765f9bfcbdf6d23632", size = 8124248 }, + { url = "https://files.pythonhosted.org/packages/f2/1e/364a7e4afe9d27cef4f7a684ace409a379c953fe0881b0f2ff67380ed9ea/lxml-5.2.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:50127c186f191b8917ea2fb8b206fbebe87fd414a6084d15568c27d0a21d60db", size = 4412062 }, + { url = "https://files.pythonhosted.org/packages/06/0f/fd5d42f906eff843c9080fba7fdd005cdf1be697e19517013938c0581eed/lxml-5.2.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:74e4f025ef3db1c6da4460dd27c118d8cd136d0391da4e387a15e48e5c975147", size = 5138539 }, + { url = "https://files.pythonhosted.org/packages/06/53/6994084d29251e9ee0e8486d82416836a9d009208853e8216cbc4c924c8c/lxml-5.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:981a06a3076997adf7c743dcd0d7a0415582661e2517c7d961493572e909aa1d", size = 4839289 }, + { url = "https://files.pythonhosted.org/packages/68/ad/3cbe5b7005722cae504f3cc2879f444f6407fb1a8a1f53050f03ca784c46/lxml-5.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aef5474d913d3b05e613906ba4090433c515e13ea49c837aca18bde190853dff", size = 5420758 }, + { url = "https://files.pythonhosted.org/packages/6b/2d/ea82f53acc12e7245a1927de78093654d140e6ef12bd2fcae41436c936da/lxml-5.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1e275ea572389e41e8b039ac076a46cb87ee6b8542df3fff26f5baab43713bca", size = 4874778 }, + { url = "https://files.pythonhosted.org/packages/98/59/3877fd55ebc6d0f426583137bedeee21c9f6d5d5c829664a14103f5279a7/lxml-5.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5b65529bb2f21ac7861a0e94fdbf5dc0daab41497d18223b46ee8515e5ad297", size = 5013017 }, + { url = "https://files.pythonhosted.org/packages/84/2e/dac726231781599429ea0b3faf018c081334a68c68708e7381077f447033/lxml-5.2.2-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:bcc98f911f10278d1daf14b87d65325851a1d29153caaf146877ec37031d5f36", size = 4816824 }, + { url = "https://files.pythonhosted.org/packages/54/4d/47eb532c0472bb5495efe899740e3d928ddb79599e73d156d4cfa8e126a3/lxml-5.2.2-cp310-cp310-manylinux_2_28_ppc64le.whl", hash = "sha256:b47633251727c8fe279f34025844b3b3a3e40cd1b198356d003aa146258d13a2", size = 5468541 }, + { url = "https://files.pythonhosted.org/packages/78/73/82a00717a29330cf56a4a7f3077aa7ee4d5171e79fcdd7d161d90df53122/lxml-5.2.2-cp310-cp310-manylinux_2_28_s390x.whl", hash = "sha256:fbc9d316552f9ef7bba39f4edfad4a734d3d6f93341232a9dddadec4f15d425f", size = 4977853 }, + { url = "https://files.pythonhosted.org/packages/c6/24/8ddb86ab14428d4d222a383a5260eea93728192359a1fff5de8f7fa13374/lxml-5.2.2-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:13e69be35391ce72712184f69000cda04fc89689429179bc4c0ae5f0b7a8c21b", size = 5030426 }, + { url = "https://files.pythonhosted.org/packages/1f/fb/510777421d0231b3f601d7d6a9a494717bac3a206eca1518b38a869f5289/lxml-5.2.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:3b6a30a9ab040b3f545b697cb3adbf3696c05a3a68aad172e3fd7ca73ab3c835", size = 4865825 }, + { url = "https://files.pythonhosted.org/packages/27/0a/82b3f5b375d3252a76e73efb56857424804f5dabce62712e256f96d0fa69/lxml-5.2.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:a233bb68625a85126ac9f1fc66d24337d6e8a0f9207b688eec2e7c880f012ec0", size = 5417133 }, + { url = "https://files.pythonhosted.org/packages/03/f4/73ea84c176aaff04ca10093fc7ac3912c4aa4793ef1c3f5a963a40db0a6f/lxml-5.2.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:dfa7c241073d8f2b8e8dbc7803c434f57dbb83ae2a3d7892dd068d99e96efe2c", size = 4838827 }, + { url = "https://files.pythonhosted.org/packages/38/bc/e9269ba955b66ef2af8559d405514d8c055b5dfa58cec71f78f0bc4d7493/lxml-5.2.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:1a7aca7964ac4bb07680d5c9d63b9d7028cace3e2d43175cb50bba8c5ad33316", size = 5004832 }, + { url = "https://files.pythonhosted.org/packages/0a/99/a3abdfcde8f2a171a9e5f63b97bf2a6a6612c2356af151fb2bdc949e77ba/lxml-5.2.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ae4073a60ab98529ab8a72ebf429f2a8cc612619a8c04e08bed27450d52103c0", size = 4860569 }, + { url = "https://files.pythonhosted.org/packages/1e/3c/ba4aa85a49a7bb9fef7062cd7f584b3da59d4bba82cef375164b95f60834/lxml-5.2.2-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:ffb2be176fed4457e445fe540617f0252a72a8bc56208fd65a690fdb1f57660b", size = 5506124 }, + { url = "https://files.pythonhosted.org/packages/5c/5d/faebbdaae16a40eb559b3e1bf0548e23ad43716f1c5e781c1d2f9ac900ec/lxml-5.2.2-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:e290d79a4107d7d794634ce3e985b9ae4f920380a813717adf61804904dc4393", size = 4946883 }, + { url = "https://files.pythonhosted.org/packages/31/47/64914d8e752c9dd13b7da69ca7b9f645983412206936058b5261c2c9e093/lxml-5.2.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:96e85aa09274955bb6bd483eaf5b12abadade01010478154b0ec70284c1b1526", size = 5046267 }, + { url = "https://files.pythonhosted.org/packages/54/c2/cc28433f429a6767e0de7b9f908ed0c88dc5c60195330d15686d6ba623a4/lxml-5.2.2-cp310-cp310-win32.whl", hash = "sha256:f956196ef61369f1685d14dad80611488d8dc1ef00be57c0c5a03064005b0f30", size = 3478736 }, + { url = "https://files.pythonhosted.org/packages/5b/bc/51530ee31e3ce25634ed790e38a62ffaea6507befd73b51926e19ce794f9/lxml-5.2.2-cp310-cp310-win_amd64.whl", hash = "sha256:875a3f90d7eb5c5d77e529080d95140eacb3c6d13ad5b616ee8095447b1d22e7", size = 3807856 }, + { url = "https://files.pythonhosted.org/packages/da/6a/24e9f77d17668dd4ac0a6c2a56113fd3e0db07cee51e3a67afcd47c597e5/lxml-5.2.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:45f9494613160d0405682f9eee781c7e6d1bf45f819654eb249f8f46a2c22545", size = 8137962 }, + { url = "https://files.pythonhosted.org/packages/4e/42/3bfe92749715c819763d2205370ecc7f586b44e277f38839e27cce7d6bb8/lxml-5.2.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b0b3f2df149efb242cee2ffdeb6674b7f30d23c9a7af26595099afaf46ef4e88", size = 4424403 }, + { url = "https://files.pythonhosted.org/packages/d5/fd/4899215277e3ef1767019fab178fad8a149081f80cf886a73dc0ba1badae/lxml-5.2.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d28cb356f119a437cc58a13f8135ab8a4c8ece18159eb9194b0d269ec4e28083", size = 5099309 }, + { url = "https://files.pythonhosted.org/packages/15/3d/d84d07fc450af34ce49b88a5aac805b486f38c9f9305fba647a39367c51c/lxml-5.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:657a972f46bbefdbba2d4f14413c0d079f9ae243bd68193cb5061b9732fa54c1", size = 4810147 }, + { url = "https://files.pythonhosted.org/packages/bc/c6/32af0ec3e8323e12212c064f924ddf993017e68d1f50e03da2a3be1289c1/lxml-5.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b74b9ea10063efb77a965a8d5f4182806fbf59ed068b3c3fd6f30d2ac7bee734", size = 5406165 }, + { url = "https://files.pythonhosted.org/packages/67/c7/6060ea3efbd1a60a10963b1b09f493fc8f6f6728310a7a77479a3f9ab20a/lxml-5.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:07542787f86112d46d07d4f3c4e7c760282011b354d012dc4141cc12a68cef5f", size = 4866924 }, + { url = "https://files.pythonhosted.org/packages/8a/f7/f5df71c70c4d14d186dd86fd0e9ebeffdb63b9b86fb19fe9315f9576266b/lxml-5.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:303f540ad2dddd35b92415b74b900c749ec2010e703ab3bfd6660979d01fd4ed", size = 4967116 }, + { url = "https://files.pythonhosted.org/packages/4e/56/c35969591789763657eb16c2fa79c924823b97da5536da8b89e11582da89/lxml-5.2.2-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:2eb2227ce1ff998faf0cd7fe85bbf086aa41dfc5af3b1d80867ecfe75fb68df3", size = 4811365 }, + { url = "https://files.pythonhosted.org/packages/e7/28/1809a5406282c03df561a3c8143c143bd515d5668f1a138f51aec6d2618e/lxml-5.2.2-cp311-cp311-manylinux_2_28_ppc64le.whl", hash = "sha256:1d8a701774dfc42a2f0b8ccdfe7dbc140500d1049e0632a611985d943fcf12df", size = 5452505 }, + { url = "https://files.pythonhosted.org/packages/99/a1/d91217a8d7fef5ac41af87c916d322c273a9b2047c735ea1dafa2ac46d16/lxml-5.2.2-cp311-cp311-manylinux_2_28_s390x.whl", hash = "sha256:56793b7a1a091a7c286b5f4aa1fe4ae5d1446fe742d00cdf2ffb1077865db10d", size = 4973479 }, + { url = "https://files.pythonhosted.org/packages/ad/b7/0dc82afed00c4c189cfd0b83464f9a431c66de8e73d911063956a147276a/lxml-5.2.2-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:eb00b549b13bd6d884c863554566095bf6fa9c3cecb2e7b399c4bc7904cb33b5", size = 5013920 }, + { url = "https://files.pythonhosted.org/packages/5f/e0/4cd021850f2e8ab5ce6ce294556300bd4b5c1eb7def88b5f859449dc883c/lxml-5.2.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:1a2569a1f15ae6c8c64108a2cd2b4a858fc1e13d25846be0666fc144715e32ab", size = 4849156 }, + { url = "https://files.pythonhosted.org/packages/f0/f4/fb01451fda1e121eb8f117a00040454ca05a9c9d82b308272042eebd05f3/lxml-5.2.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:8cf85a6e40ff1f37fe0f25719aadf443686b1ac7652593dc53c7ef9b8492b115", size = 5408551 }, + { url = "https://files.pythonhosted.org/packages/2f/ca/0376418e202e9423d47f86ae09db885fa6e109d0efb602f6468e6d1e8e77/lxml-5.2.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:d237ba6664b8e60fd90b8549a149a74fcc675272e0e95539a00522e4ca688b04", size = 4829966 }, + { url = "https://files.pythonhosted.org/packages/74/c4/4e6f5e2be18f8eb76dff5bff3619c2c654650fee93aea37a92866efe90bc/lxml-5.2.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0b3f5016e00ae7630a4b83d0868fca1e3d494c78a75b1c7252606a3a1c5fc2ad", size = 4976003 }, + { url = "https://files.pythonhosted.org/packages/3b/ca/5d74a0572c911f8dbf12d89abe0fdcbe0409c18978b5694392becd4d56fb/lxml-5.2.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:23441e2b5339bc54dc949e9e675fa35efe858108404ef9aa92f0456929ef6fe8", size = 4852709 }, + { url = "https://files.pythonhosted.org/packages/83/07/d95e9663ad8d875f344930e4fb52a0a6f56225267d3cc6e3e9bfa44ca736/lxml-5.2.2-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:2fb0ba3e8566548d6c8e7dd82a8229ff47bd8fb8c2da237607ac8e5a1b8312e5", size = 5479261 }, + { url = "https://files.pythonhosted.org/packages/df/e1/9ebae8d05492a8e9f632f2add15199e7bca5c1b063444e360a7bde685718/lxml-5.2.2-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:79d1fb9252e7e2cfe4de6e9a6610c7cbb99b9708e2c3e29057f487de5a9eaefa", size = 4944199 }, + { url = "https://files.pythonhosted.org/packages/ec/ab/189f571450e3393d4d442f88683d11b5a47c88e66a4e6b0d467500360483/lxml-5.2.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6dcc3d17eac1df7859ae01202e9bb11ffa8c98949dcbeb1069c8b9a75917e01b", size = 5033723 }, + { url = "https://files.pythonhosted.org/packages/80/d7/f28ccad4f08596592a58ad945c636140268bb4de9dcf4d10c9f72108d8a5/lxml-5.2.2-cp311-cp311-win32.whl", hash = "sha256:4c30a2f83677876465f44c018830f608fa3c6a8a466eb223535035fbc16f3438", size = 3475657 }, + { url = "https://files.pythonhosted.org/packages/04/19/d6aa2d980f220a04c91d4de538d2fea1a65535e7b0a4aec0998ce46e3667/lxml-5.2.2-cp311-cp311-win_amd64.whl", hash = "sha256:49095a38eb333aaf44c06052fd2ec3b8f23e19747ca7ec6f6c954ffea6dbf7be", size = 3816665 }, + { url = "https://files.pythonhosted.org/packages/26/36/6e00905cb4de2d014f4a62df58f0e82d262b5461245d951a6e7442b0222a/lxml-5.2.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:7429e7faa1a60cad26ae4227f4dd0459efde239e494c7312624ce228e04f6391", size = 8171540 }, + { url = "https://files.pythonhosted.org/packages/d6/68/7e9de19d47cd5430414063cd7739e8c8d8386016740c18af5ff13b64ff5c/lxml-5.2.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:50ccb5d355961c0f12f6cf24b7187dbabd5433f29e15147a67995474f27d1776", size = 4441241 }, + { url = "https://files.pythonhosted.org/packages/b4/1f/6a88a8e1b6a9be644c74e5f72cf581cb342a392e020c60a389cd194ebba1/lxml-5.2.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dc911208b18842a3a57266d8e51fc3cfaccee90a5351b92079beed912a7914c2", size = 5052926 }, + { url = "https://files.pythonhosted.org/packages/6b/cc/8e73a63c2aeb205fbed44272fea8c5ded07920233b9956e8e304e2516931/lxml-5.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:33ce9e786753743159799fdf8e92a5da351158c4bfb6f2db0bf31e7892a1feb5", size = 4748543 }, + { url = "https://files.pythonhosted.org/packages/ae/fc/6020fe1468fccb684619df6765a79b67229091631e5f14b97c3efcd75ca7/lxml-5.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec87c44f619380878bd49ca109669c9f221d9ae6883a5bcb3616785fa8f94c97", size = 5320915 }, + { url = "https://files.pythonhosted.org/packages/25/6c/02cecb6a26b0baec373baa3f4fb55343cf0d8710d6a853ff4c4b12a9cf16/lxml-5.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08ea0f606808354eb8f2dfaac095963cb25d9d28e27edcc375d7b30ab01abbf6", size = 4814179 }, + { url = "https://files.pythonhosted.org/packages/de/12/0253de661bb9f8c26b47059be4ed2ec5b9e4411fd2b1d45a2f4b399a7616/lxml-5.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75a9632f1d4f698b2e6e2e1ada40e71f369b15d69baddb8968dcc8e683839b18", size = 4923168 }, + { url = "https://files.pythonhosted.org/packages/cd/e7/63435cfa76534fb33a9656507057b96a25bb850ae932424b9724c9fe379e/lxml-5.2.2-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:74da9f97daec6928567b48c90ea2c82a106b2d500f397eeb8941e47d30b1ca85", size = 4741798 }, + { url = "https://files.pythonhosted.org/packages/27/7f/9e203e850609fa12c8b347fcceaba8655f062bc19ace7a837bb7fcf64b8f/lxml-5.2.2-cp312-cp312-manylinux_2_28_ppc64le.whl", hash = "sha256:0969e92af09c5687d769731e3f39ed62427cc72176cebb54b7a9d52cc4fa3b73", size = 5347143 }, + { url = "https://files.pythonhosted.org/packages/d9/d2/089fcb90e6bdd16639656c2632573508ae02f42a3b034376d3e32efd2ccc/lxml-5.2.2-cp312-cp312-manylinux_2_28_s390x.whl", hash = "sha256:9164361769b6ca7769079f4d426a41df6164879f7f3568be9086e15baca61466", size = 4901745 }, + { url = "https://files.pythonhosted.org/packages/9a/87/cff3c63ebe067ec9a7cc1948c379b8a16e7990c29bd5baf77c0a1dbd03c0/lxml-5.2.2-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:d26a618ae1766279f2660aca0081b2220aca6bd1aa06b2cf73f07383faf48927", size = 4947584 }, + { url = "https://files.pythonhosted.org/packages/73/3f/5a22be26edce482cb5dbdc5cf75544cfd1d3fb1389124d06995395829617/lxml-5.2.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ab67ed772c584b7ef2379797bf14b82df9aa5f7438c5b9a09624dd834c1c1aaf", size = 4790271 }, + { url = "https://files.pythonhosted.org/packages/b5/66/007666e7878ca746e44da3b4c2acf9d5c617dd51e152e89589e7eeb59f87/lxml-5.2.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:3d1e35572a56941b32c239774d7e9ad724074d37f90c7a7d499ab98761bd80cf", size = 5340401 }, + { url = "https://files.pythonhosted.org/packages/9d/3e/b7464d5c06a57cb206fd14a9251bfa75ae03d4f6b1c0c41cf82111bdfa3b/lxml-5.2.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:8268cbcd48c5375f46e000adb1390572c98879eb4f77910c6053d25cc3ac2c67", size = 4784839 }, + { url = "https://files.pythonhosted.org/packages/5b/70/1c45927de1cd7dc47292cfa8a9eb7928b38ce5647d66601bd169b25af4a7/lxml-5.2.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:e282aedd63c639c07c3857097fc0e236f984ceb4089a8b284da1c526491e3f3d", size = 4933979 }, + { url = "https://files.pythonhosted.org/packages/08/e1/51f6ad2bdb5f28fceeb6bd591d4a0ed5de42ffc6741fd88eb2209c6a46f2/lxml-5.2.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6dfdc2bfe69e9adf0df4915949c22a25b39d175d599bf98e7ddf620a13678585", size = 4782412 }, + { url = "https://files.pythonhosted.org/packages/81/13/7df8804d4fb678e0216f6f4532754fd471856b5cb24726dab55a3b65f527/lxml-5.2.2-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:4aefd911793b5d2d7a921233a54c90329bf3d4a6817dc465f12ffdfe4fc7b8fe", size = 5371318 }, + { url = "https://files.pythonhosted.org/packages/d7/7d/c98b7ef3e496a9c371057dc955be1fda04dab4e8af488b01bec254e1b59b/lxml-5.2.2-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:8b8df03a9e995b6211dafa63b32f9d405881518ff1ddd775db4e7b98fb545e1c", size = 4871432 }, + { url = "https://files.pythonhosted.org/packages/3e/fa/b361d670ffa8f477504b7fc0e5734a7878815c7e0b6769f3a5a903a94aee/lxml-5.2.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f11ae142f3a322d44513de1018b50f474f8f736bc3cd91d969f464b5bfef8836", size = 4972719 }, + { url = "https://files.pythonhosted.org/packages/fc/43/70e469a190a8f39ca5829b4ef4f2f7299ce65243abe46ba4a73dc58c1365/lxml-5.2.2-cp312-cp312-win32.whl", hash = "sha256:16a8326e51fcdffc886294c1e70b11ddccec836516a343f9ed0f82aac043c24a", size = 3487299 }, + { url = "https://files.pythonhosted.org/packages/58/16/99b03974974537c8c786fb98183d7c213ceb16e71205174a29ae869ca988/lxml-5.2.2-cp312-cp312-win_amd64.whl", hash = "sha256:bbc4b80af581e18568ff07f6395c02114d05f4865c2812a1f02f2eaecf0bfd48", size = 3817779 }, + { url = "https://files.pythonhosted.org/packages/51/79/9f7d249850c9f8357538055359bffa91cc9f0606fcea72b6881fdea9ee39/lxml-5.2.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:fb91819461b1b56d06fa4bcf86617fac795f6a99d12239fb0c68dbeba41a0a30", size = 8129295 }, + { url = "https://files.pythonhosted.org/packages/40/94/cc5a570ae1dcd337a6b63330d8fd6ff81dc27310574157129faca3ddbfe7/lxml-5.2.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d4ed0c7cbecde7194cd3228c044e86bf73e30a23505af852857c09c24e77ec5d", size = 4415097 }, + { url = "https://files.pythonhosted.org/packages/bc/41/38d7e67e72f87fea0d9f2fd37e394484eb32b102d3a0520611a65e992602/lxml-5.2.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:54401c77a63cc7d6dc4b4e173bb484f28a5607f3df71484709fe037c92d4f0ed", size = 5139658 }, + { url = "https://files.pythonhosted.org/packages/6f/3f/66f7869f12bf6f21af6b24b0b29e4bccc162efa276ee46a58e6993b63f5a/lxml-5.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:625e3ef310e7fa3a761d48ca7ea1f9d8718a32b1542e727d584d82f4453d5eeb", size = 4839453 }, + { url = "https://files.pythonhosted.org/packages/f5/67/5dd78932c10e49f5fd3d0cd63d27bcaa801fae8f64c643a931e0391c56e2/lxml-5.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:519895c99c815a1a24a926d5b60627ce5ea48e9f639a5cd328bda0515ea0f10c", size = 5422704 }, + { url = "https://files.pythonhosted.org/packages/0f/e8/c0dd37abb15dd982e348c666ae02a7767d7a70acf143d5e24a906de2b29f/lxml-5.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c7079d5eb1c1315a858bbf180000757db8ad904a89476653232db835c3114001", size = 4875536 }, + { url = "https://files.pythonhosted.org/packages/e5/43/d60da0fe90a9a48198a23268dd2dafeac46f880adda6739b4cbbcec65a02/lxml-5.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:343ab62e9ca78094f2306aefed67dcfad61c4683f87eee48ff2fd74902447726", size = 5013656 }, + { url = "https://files.pythonhosted.org/packages/f6/59/74549a8c486d60c24c8cae942325e60916fb2699b1cbec89025ceeb49e51/lxml-5.2.2-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:cd9e78285da6c9ba2d5c769628f43ef66d96ac3085e59b10ad4f3707980710d3", size = 4818873 }, + { url = "https://files.pythonhosted.org/packages/9b/d5/469cc5b87f704d951d558ab8dcf4a6a1e339dbfd4cf82788d6c5f76daa55/lxml-5.2.2-cp39-cp39-manylinux_2_28_ppc64le.whl", hash = "sha256:546cf886f6242dff9ec206331209db9c8e1643ae642dea5fdbecae2453cb50fd", size = 5470990 }, + { url = "https://files.pythonhosted.org/packages/0d/89/d2f6f90e30cf7eb4477554a13f8a7b8aadaf762d595c76a434eb26d0947c/lxml-5.2.2-cp39-cp39-manylinux_2_28_s390x.whl", hash = "sha256:02f6a8eb6512fdc2fd4ca10a49c341c4e109aa6e9448cc4859af5b949622715a", size = 4979955 }, + { url = "https://files.pythonhosted.org/packages/c4/34/11d8b7bacec6b9af6305a266cc5a2695f81427dba9a4c2d59791b5b156e5/lxml-5.2.2-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:339ee4a4704bc724757cd5dd9dc8cf4d00980f5d3e6e06d5847c1b594ace68ab", size = 5028329 }, + { url = "https://files.pythonhosted.org/packages/2b/40/9a1782445756e1c3b028a26d8ce1864042d13ba8c7e5aa1eeb12a6b3b410/lxml-5.2.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0a028b61a2e357ace98b1615fc03f76eb517cc028993964fe08ad514b1e8892d", size = 4866331 }, + { url = "https://files.pythonhosted.org/packages/b4/10/741b8edfacede7a3bcec3f0f781fcc9270efe276b0fe73aa0330217c41fa/lxml-5.2.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:f90e552ecbad426eab352e7b2933091f2be77115bb16f09f78404861c8322981", size = 5420205 }, + { url = "https://files.pythonhosted.org/packages/88/8f/320abad6e805b6bff2920ce99fea4e818598bee771e10744a2a173402a4d/lxml-5.2.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:d83e2d94b69bf31ead2fa45f0acdef0757fa0458a129734f59f67f3d2eb7ef32", size = 4841182 }, + { url = "https://files.pythonhosted.org/packages/2b/94/fc50d1b8b8dcd75e3020b420339d650657fc2f6fcdeadbfcd39f63ee4292/lxml-5.2.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a02d3c48f9bb1e10c7788d92c0c7db6f2002d024ab6e74d6f45ae33e3d0288a3", size = 5006820 }, + { url = "https://files.pythonhosted.org/packages/21/83/46e40a901e00105a3520d57d6726ac1e5c8a9276f5972ef26b4be54789f1/lxml-5.2.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:6d68ce8e7b2075390e8ac1e1d3a99e8b6372c694bbe612632606d1d546794207", size = 4861349 }, + { url = "https://files.pythonhosted.org/packages/ee/92/a5a02b2b556b8736061532588a07dafdd0fa3bd34c515d600790ff931a5b/lxml-5.2.2-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:453d037e09a5176d92ec0fd282e934ed26d806331a8b70ab431a81e2fbabf56d", size = 5507842 }, + { url = "https://files.pythonhosted.org/packages/ab/a1/4c25151d56943c76937a976d5f5cc5047e4e60322e3af189d76d1a09e021/lxml-5.2.2-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:3b019d4ee84b683342af793b56bb35034bd749e4cbdd3d33f7d1107790f8c472", size = 4949210 }, + { url = "https://files.pythonhosted.org/packages/bc/7a/6b40c5bca97a9b685d1db5217cd51f829c5ed16fe797b0c40eb6e33f7cb5/lxml-5.2.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:cb3942960f0beb9f46e2a71a3aca220d1ca32feb5a398656be934320804c0df9", size = 5047392 }, + { url = "https://files.pythonhosted.org/packages/fb/53/7b3959a5d41c696db8cf7e4481bf1ac630f7a882215b332e795107d10d19/lxml-5.2.2-cp39-cp39-win32.whl", hash = "sha256:ac6540c9fff6e3813d29d0403ee7a81897f1d8ecc09a8ff84d2eea70ede1cdbf", size = 3479661 }, + { url = "https://files.pythonhosted.org/packages/78/c7/0479936ae05ec99a855cea94fcedfa6b3b2d642689e52122722811f54afe/lxml-5.2.2-cp39-cp39-win_amd64.whl", hash = "sha256:610b5c77428a50269f38a534057444c249976433f40f53e3b47e68349cca1425", size = 3809160 }, + { url = "https://files.pythonhosted.org/packages/00/68/cd5637510441ab4556f087b342000e4ae2d0cf3bea67b073a4327f31020c/lxml-5.2.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:b537bd04d7ccd7c6350cdaaaad911f6312cbd61e6e6045542f781c7f8b2e99d2", size = 3927145 }, + { url = "https://files.pythonhosted.org/packages/f6/e0/1122d5b6a10eb71fac4276a0d3b1f5cf1ef0a29f774601d4740e80a70e1a/lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4820c02195d6dfb7b8508ff276752f6b2ff8b64ae5d13ebe02e7667e035000b9", size = 4215917 }, + { url = "https://files.pythonhosted.org/packages/95/d1/ff0c68a61a385f6dffd4c099bc9720cb127bb94f0df8e71f52fe539f85b7/lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2a09f6184f17a80897172863a655467da2b11151ec98ba8d7af89f17bf63dae", size = 4326313 }, + { url = "https://files.pythonhosted.org/packages/a8/3c/c9ce5ba91764aaea8944b8e90543ba2e8fc2610d4c5c052160e83ac100b6/lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:76acba4c66c47d27c8365e7c10b3d8016a7da83d3191d053a58382311a8bf4e1", size = 4218518 }, + { url = "https://files.pythonhosted.org/packages/59/03/df1fc5b9f1db8502863ebef8f6a6f37131d7e7c432e997724689221052d9/lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b128092c927eaf485928cec0c28f6b8bead277e28acf56800e972aa2c2abd7a2", size = 4351481 }, + { url = "https://files.pythonhosted.org/packages/f0/ca/8f3b5500119f2651e45d261506e2246b960691239aa499411b763aa79a61/lxml-5.2.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:ae791f6bd43305aade8c0e22f816b34f3b72b6c820477aab4d18473a37e8090b", size = 3488498 }, + { url = "https://files.pythonhosted.org/packages/37/ee/4e2c2d6b86c448a39f4d8bfdce5fa65a116c716dc6bfb257f404ebf5f222/lxml-5.2.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:34e17913c431f5ae01d8658dbf792fdc457073dcdfbb31dc0cc6ab256e664a8d", size = 3924281 }, + { url = "https://files.pythonhosted.org/packages/76/51/0e53d8b7dfce944b6f9136ec4346f910c507ced0b16b520b61f2e98cbc55/lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:05f8757b03208c3f50097761be2dea0aba02e94f0dc7023ed73a7bb14ff11eb0", size = 4214485 }, + { url = "https://files.pythonhosted.org/packages/b1/d9/7a3aebdf5eb50b8a1e3b70c8b693fdc314b5e41b289d31c9c6d383b1aa44/lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6a520b4f9974b0a0a6ed73c2154de57cdfd0c8800f4f15ab2b73238ffed0b36e", size = 4324516 }, + { url = "https://files.pythonhosted.org/packages/a0/f9/c079a1690bfab601122e9355f34a71c17e2d7c74b0ea460c42288b68f96c/lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:5e097646944b66207023bc3c634827de858aebc226d5d4d6d16f0b77566ea182", size = 4215143 }, + { url = "https://files.pythonhosted.org/packages/c6/63/27d3d039276e87ac956cb1c3ddc3a2f949512630de6ecf202a9780588927/lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b5e4ef22ff25bfd4ede5f8fb30f7b24446345f3e79d9b7455aef2836437bc38a", size = 4347095 }, + { url = "https://files.pythonhosted.org/packages/2a/a6/86ef80e010cb757107ff079990b0e07d41b0b60c9eae20423be809877355/lxml-5.2.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:ff69a9a0b4b17d78170c73abe2ab12084bdf1691550c5629ad1fe7849433f324", size = 3487478 }, +] + +[[package]] +name = "mako" +version = "1.3.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/67/03/fb5ba97ff65ce64f6d35b582aacffc26b693a98053fa831ab43a437cbddb/Mako-1.3.5.tar.gz", hash = "sha256:48dbc20568c1d276a2698b36d968fa76161bf127194907ea6fc594fa81f943bc", size = 392738 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/03/62/70f5a0c2dd208f9f3f2f9afd103aec42ee4d9ad2401d78342f75e9b8da36/Mako-1.3.5-py3-none-any.whl", hash = "sha256:260f1dbc3a519453a9c856dedfe4beb4e50bd5a26d96386cb6c80856556bb91a", size = 78565 }, +] + +[[package]] +name = "markdown" +version = "3.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "importlib-metadata", marker = "python_version < '3.10'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/22/02/4785861427848cc11e452cc62bb541006a1087cf04a1de83aedd5530b948/Markdown-3.6.tar.gz", hash = "sha256:ed4f41f6daecbeeb96e576ce414c41d2d876daa9a16cb35fa8ed8c2ddfad0224", size = 354715 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fc/b3/0c0c994fe49cd661084f8d5dc06562af53818cc0abefaca35bdc894577c3/Markdown-3.6-py3-none-any.whl", hash = "sha256:48f276f4d8cfb8ce6527c8f79e2ee29708508bf4d40aa410fbc3b4ee832c850f", size = 105381 }, +] + +[[package]] +name = "markdown-it-py" +version = "3.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mdurl", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/38/71/3b932df36c1a044d397a1f92d1cf91ee0a503d91e470cbd670aa66b07ed0/markdown-it-py-3.0.0.tar.gz", hash = "sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb", size = 74596 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl", hash = "sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1", size = 87528 }, +] + +[[package]] +name = "markupsafe" +version = "2.1.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/87/5b/aae44c6655f3801e81aa3eef09dbbf012431987ba564d7231722f68df02d/MarkupSafe-2.1.5.tar.gz", hash = "sha256:d283d37a890ba4c1ae73ffadf8046435c76e7bc2247bbb63c00bd1a709c6544b", size = 19384 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e4/54/ad5eb37bf9d51800010a74e4665425831a9db4e7c4e0fde4352e391e808e/MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a17a92de5231666cfbe003f0e4b9b3a7ae3afb1ec2845aadc2bacc93ff85febc", size = 18206 }, + { url = "https://files.pythonhosted.org/packages/6a/4a/a4d49415e600bacae038c67f9fecc1d5433b9d3c71a4de6f33537b89654c/MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:72b6be590cc35924b02c78ef34b467da4ba07e4e0f0454a2c5907f473fc50ce5", size = 14079 }, + { url = "https://files.pythonhosted.org/packages/0a/7b/85681ae3c33c385b10ac0f8dd025c30af83c78cec1c37a6aa3b55e67f5ec/MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e61659ba32cf2cf1481e575d0462554625196a1f2fc06a1c777d3f48e8865d46", size = 26620 }, + { url = "https://files.pythonhosted.org/packages/7c/52/2b1b570f6b8b803cef5ac28fdf78c0da318916c7d2fe9402a84d591b394c/MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2174c595a0d73a3080ca3257b40096db99799265e1c27cc5a610743acd86d62f", size = 25818 }, + { url = "https://files.pythonhosted.org/packages/29/fe/a36ba8c7ca55621620b2d7c585313efd10729e63ef81e4e61f52330da781/MarkupSafe-2.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae2ad8ae6ebee9d2d94b17fb62763125f3f374c25618198f40cbb8b525411900", size = 25493 }, + { url = "https://files.pythonhosted.org/packages/60/ae/9c60231cdfda003434e8bd27282b1f4e197ad5a710c14bee8bea8a9ca4f0/MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:075202fa5b72c86ad32dc7d0b56024ebdbcf2048c0ba09f1cde31bfdd57bcfff", size = 30630 }, + { url = "https://files.pythonhosted.org/packages/65/dc/1510be4d179869f5dafe071aecb3f1f41b45d37c02329dfba01ff59e5ac5/MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:598e3276b64aff0e7b3451b72e94fa3c238d452e7ddcd893c3ab324717456bad", size = 29745 }, + { url = "https://files.pythonhosted.org/packages/30/39/8d845dd7d0b0613d86e0ef89549bfb5f61ed781f59af45fc96496e897f3a/MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fce659a462a1be54d2ffcacea5e3ba2d74daa74f30f5f143fe0c58636e355fdd", size = 30021 }, + { url = "https://files.pythonhosted.org/packages/c7/5c/356a6f62e4f3c5fbf2602b4771376af22a3b16efa74eb8716fb4e328e01e/MarkupSafe-2.1.5-cp310-cp310-win32.whl", hash = "sha256:d9fad5155d72433c921b782e58892377c44bd6252b5af2f67f16b194987338a4", size = 16659 }, + { url = "https://files.pythonhosted.org/packages/69/48/acbf292615c65f0604a0c6fc402ce6d8c991276e16c80c46a8f758fbd30c/MarkupSafe-2.1.5-cp310-cp310-win_amd64.whl", hash = "sha256:bf50cd79a75d181c9181df03572cdce0fbb75cc353bc350712073108cba98de5", size = 17213 }, + { url = "https://files.pythonhosted.org/packages/11/e7/291e55127bb2ae67c64d66cef01432b5933859dfb7d6949daa721b89d0b3/MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:629ddd2ca402ae6dbedfceeba9c46d5f7b2a61d9749597d4307f943ef198fc1f", size = 18219 }, + { url = "https://files.pythonhosted.org/packages/6b/cb/aed7a284c00dfa7c0682d14df85ad4955a350a21d2e3b06d8240497359bf/MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b7b716f97b52c5a14bffdf688f971b2d5ef4029127f1ad7a513973cfd818df2", size = 14098 }, + { url = "https://files.pythonhosted.org/packages/1c/cf/35fe557e53709e93feb65575c93927942087e9b97213eabc3fe9d5b25a55/MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ec585f69cec0aa07d945b20805be741395e28ac1627333b1c5b0105962ffced", size = 29014 }, + { url = "https://files.pythonhosted.org/packages/97/18/c30da5e7a0e7f4603abfc6780574131221d9148f323752c2755d48abad30/MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b91c037585eba9095565a3556f611e3cbfaa42ca1e865f7b8015fe5c7336d5a5", size = 28220 }, + { url = "https://files.pythonhosted.org/packages/0c/40/2e73e7d532d030b1e41180807a80d564eda53babaf04d65e15c1cf897e40/MarkupSafe-2.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7502934a33b54030eaf1194c21c692a534196063db72176b0c4028e140f8f32c", size = 27756 }, + { url = "https://files.pythonhosted.org/packages/18/46/5dca760547e8c59c5311b332f70605d24c99d1303dd9a6e1fc3ed0d73561/MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0e397ac966fdf721b2c528cf028494e86172b4feba51d65f81ffd65c63798f3f", size = 33988 }, + { url = "https://files.pythonhosted.org/packages/6d/c5/27febe918ac36397919cd4a67d5579cbbfa8da027fa1238af6285bb368ea/MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c061bb86a71b42465156a3ee7bd58c8c2ceacdbeb95d05a99893e08b8467359a", size = 32718 }, + { url = "https://files.pythonhosted.org/packages/f8/81/56e567126a2c2bc2684d6391332e357589a96a76cb9f8e5052d85cb0ead8/MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3a57fdd7ce31c7ff06cdfbf31dafa96cc533c21e443d57f5b1ecc6cdc668ec7f", size = 33317 }, + { url = "https://files.pythonhosted.org/packages/00/0b/23f4b2470accb53285c613a3ab9ec19dc944eaf53592cb6d9e2af8aa24cc/MarkupSafe-2.1.5-cp311-cp311-win32.whl", hash = "sha256:397081c1a0bfb5124355710fe79478cdbeb39626492b15d399526ae53422b906", size = 16670 }, + { url = "https://files.pythonhosted.org/packages/b7/a2/c78a06a9ec6d04b3445a949615c4c7ed86a0b2eb68e44e7541b9d57067cc/MarkupSafe-2.1.5-cp311-cp311-win_amd64.whl", hash = "sha256:2b7c57a4dfc4f16f7142221afe5ba4e093e09e728ca65c51f5620c9aaeb9a617", size = 17224 }, + { url = "https://files.pythonhosted.org/packages/53/bd/583bf3e4c8d6a321938c13f49d44024dbe5ed63e0a7ba127e454a66da974/MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:8dec4936e9c3100156f8a2dc89c4b88d5c435175ff03413b443469c7c8c5f4d1", size = 18215 }, + { url = "https://files.pythonhosted.org/packages/48/d6/e7cd795fc710292c3af3a06d80868ce4b02bfbbf370b7cee11d282815a2a/MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:3c6b973f22eb18a789b1460b4b91bf04ae3f0c4234a0a6aa6b0a92f6f7b951d4", size = 14069 }, + { url = "https://files.pythonhosted.org/packages/51/b5/5d8ec796e2a08fc814a2c7d2584b55f889a55cf17dd1a90f2beb70744e5c/MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac07bad82163452a6884fe8fa0963fb98c2346ba78d779ec06bd7a6262132aee", size = 29452 }, + { url = "https://files.pythonhosted.org/packages/0a/0d/2454f072fae3b5a137c119abf15465d1771319dfe9e4acbb31722a0fff91/MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5dfb42c4604dddc8e4305050aa6deb084540643ed5804d7455b5df8fe16f5e5", size = 28462 }, + { url = "https://files.pythonhosted.org/packages/2d/75/fd6cb2e68780f72d47e6671840ca517bda5ef663d30ada7616b0462ad1e3/MarkupSafe-2.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ea3d8a3d18833cf4304cd2fc9cbb1efe188ca9b5efef2bdac7adc20594a0e46b", size = 27869 }, + { url = "https://files.pythonhosted.org/packages/b0/81/147c477391c2750e8fc7705829f7351cf1cd3be64406edcf900dc633feb2/MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d050b3361367a06d752db6ead6e7edeb0009be66bc3bae0ee9d97fb326badc2a", size = 33906 }, + { url = "https://files.pythonhosted.org/packages/8b/ff/9a52b71839d7a256b563e85d11050e307121000dcebc97df120176b3ad93/MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:bec0a414d016ac1a18862a519e54b2fd0fc8bbfd6890376898a6c0891dd82e9f", size = 32296 }, + { url = "https://files.pythonhosted.org/packages/88/07/2dc76aa51b481eb96a4c3198894f38b480490e834479611a4053fbf08623/MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:58c98fee265677f63a4385256a6d7683ab1832f3ddd1e66fe948d5880c21a169", size = 33038 }, + { url = "https://files.pythonhosted.org/packages/96/0c/620c1fb3661858c0e37eb3cbffd8c6f732a67cd97296f725789679801b31/MarkupSafe-2.1.5-cp312-cp312-win32.whl", hash = "sha256:8590b4ae07a35970728874632fed7bd57b26b0102df2d2b233b6d9d82f6c62ad", size = 16572 }, + { url = "https://files.pythonhosted.org/packages/3f/14/c3554d512d5f9100a95e737502f4a2323a1959f6d0d01e0d0997b35f7b10/MarkupSafe-2.1.5-cp312-cp312-win_amd64.whl", hash = "sha256:823b65d8706e32ad2df51ed89496147a42a2a6e01c13cfb6ffb8b1e92bc910bb", size = 17127 }, + { url = "https://files.pythonhosted.org/packages/0f/31/780bb297db036ba7b7bbede5e1d7f1e14d704ad4beb3ce53fb495d22bc62/MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7a68b554d356a91cce1236aa7682dc01df0edba8d043fd1ce607c49dd3c1edcf", size = 18193 }, + { url = "https://files.pythonhosted.org/packages/6c/77/d77701bbef72892affe060cdacb7a2ed7fd68dae3b477a8642f15ad3b132/MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:db0b55e0f3cc0be60c1f19efdde9a637c32740486004f20d1cff53c3c0ece4d2", size = 14073 }, + { url = "https://files.pythonhosted.org/packages/d9/a7/1e558b4f78454c8a3a0199292d96159eb4d091f983bc35ef258314fe7269/MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e53af139f8579a6d5f7b76549125f0d94d7e630761a2111bc431fd820e163b8", size = 26486 }, + { url = "https://files.pythonhosted.org/packages/5f/5a/360da85076688755ea0cceb92472923086993e86b5613bbae9fbc14136b0/MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17b950fccb810b3293638215058e432159d2b71005c74371d784862b7e4683f3", size = 25685 }, + { url = "https://files.pythonhosted.org/packages/6a/18/ae5a258e3401f9b8312f92b028c54d7026a97ec3ab20bfaddbdfa7d8cce8/MarkupSafe-2.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4c31f53cdae6ecfa91a77820e8b151dba54ab528ba65dfd235c80b086d68a465", size = 25338 }, + { url = "https://files.pythonhosted.org/packages/0b/cc/48206bd61c5b9d0129f4d75243b156929b04c94c09041321456fd06a876d/MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bff1b4290a66b490a2f4719358c0cdcd9bafb6b8f061e45c7a2460866bf50c2e", size = 30439 }, + { url = "https://files.pythonhosted.org/packages/d1/06/a41c112ab9ffdeeb5f77bc3e331fdadf97fa65e52e44ba31880f4e7f983c/MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bc1667f8b83f48511b94671e0e441401371dfd0f0a795c7daa4a3cd1dde55bea", size = 29531 }, + { url = "https://files.pythonhosted.org/packages/02/8c/ab9a463301a50dab04d5472e998acbd4080597abc048166ded5c7aa768c8/MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5049256f536511ee3f7e1b3f87d1d1209d327e818e6ae1365e8653d7e3abb6a6", size = 29823 }, + { url = "https://files.pythonhosted.org/packages/bc/29/9bc18da763496b055d8e98ce476c8e718dcfd78157e17f555ce6dd7d0895/MarkupSafe-2.1.5-cp39-cp39-win32.whl", hash = "sha256:00e046b6dd71aa03a41079792f8473dc494d564611a8f89bbbd7cb93295ebdcf", size = 16658 }, + { url = "https://files.pythonhosted.org/packages/f6/f8/4da07de16f10551ca1f640c92b5f316f9394088b183c6a57183df6de5ae4/MarkupSafe-2.1.5-cp39-cp39-win_amd64.whl", hash = "sha256:fa173ec60341d6bb97a89f5ea19c85c5643c1e7dedebc22f5181eb73573142c5", size = 17211 }, +] + +[[package]] +name = "mdurl" +version = "0.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba", size = 8729 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979 }, +] + +[[package]] +name = "ml-dtypes" +version = "0.3.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "(python_version == '3.11' and platform_machine == 'aarch64' and platform_system == 'Linux') or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and platform_machine == 'aarch64' and platform_system == 'Linux')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/39/7d/8d85fcba868758b3a546e6914e727abd8f29ea6918079f816975c9eecd63/ml_dtypes-0.3.2.tar.gz", hash = "sha256:533059bc5f1764fac071ef54598db358c167c51a718f68f5bb55e3dee79d2967", size = 692014 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/62/0a/2b586fd10be7b8311068f4078623a73376fc49c8b3768be9965034062982/ml_dtypes-0.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7afde548890a92b41c0fed3a6c525f1200a5727205f73dc21181a2726571bb53", size = 389797 }, + { url = "https://files.pythonhosted.org/packages/bc/6d/de99642d98feb7e83ccfbc5eb2b5970ff19ec6834094b690205bebe1c22d/ml_dtypes-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d1a746fe5fb9cd974a91070174258f0be129c592b93f9ce7df6cc336416c3fbd", size = 2182877 }, + { url = "https://files.pythonhosted.org/packages/71/01/7dc0e2cdead686a758810d08fd4111602088fe3f0d88064a83cbfb635593/ml_dtypes-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:961134ea44c7b8ca63eda902a44b58cd8bd670e21d62e255c81fba0a8e70d9b7", size = 2160459 }, + { url = "https://files.pythonhosted.org/packages/30/a5/0480b23b2213c746cd874894bc485eb49310d7045159a36c7c03cab729ce/ml_dtypes-0.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:6b35c4e8ca957c877ac35c79ffa77724ecc3702a1e4b18b08306c03feae597bb", size = 127768 }, + { url = "https://files.pythonhosted.org/packages/6e/a4/6aabb78f1569550fd77c74d2c1d008b502c8ce72776bd88b14ea6c182c9e/ml_dtypes-0.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:763697ab8a88d47443997a7cdf3aac7340049aed45f7521f6b0ec8a0594821fe", size = 389791 }, + { url = "https://files.pythonhosted.org/packages/d1/ed/211bf2e1c66e4ec9b712c3be848a876185c7f0d5e94bf647b60e64ef32eb/ml_dtypes-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b89b194e9501a92d289c1ffd411380baf5daafb9818109a4f49b0a1b6dce4462", size = 2185796 }, + { url = "https://files.pythonhosted.org/packages/77/a0/d4ee9e3aca5b9101c590b58555820618e8201c2ccb7004eabb417ec046ac/ml_dtypes-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2c34f2ba9660b21fe1034b608308a01be82bbef2a92fb8199f24dc6bad0d5226", size = 2164071 }, + { url = "https://files.pythonhosted.org/packages/a4/db/1784b87285588788170f87e987bfb4bda218d62a70a81ebb66c94e7f9b95/ml_dtypes-0.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:6604877d567a29bfe7cc02969ae0f2425260e5335505cf5e7fefc3e5465f5655", size = 127681 }, + { url = "https://files.pythonhosted.org/packages/ad/2d/57a8aa1ba7472a93a675bfba3f0c90d9396d01d040617a5345ce87884330/ml_dtypes-0.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:93b78f53431c93953f7850bb1b925a17f0ab5d97527e38a7e865b5b4bc5cfc18", size = 393571 }, + { url = "https://files.pythonhosted.org/packages/6a/05/ec30199c791cf0d788a26f56d8efb8ee4133ede79a9680fd8cc05e706404/ml_dtypes-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3a17ef2322e60858d93584e9c52a5be7dd6236b056b7fa1ec57f1bb6ba043e33", size = 2180925 }, + { url = "https://files.pythonhosted.org/packages/e5/f1/93219c44bae4017e6e43391fa4433592de08e05def9d885227d3596f21a5/ml_dtypes-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e8505946df1665db01332d885c2020b4cb9e84a8b1241eb4ba69d59591f65855", size = 2160573 }, + { url = "https://files.pythonhosted.org/packages/47/f3/847da54c3d243ff2aa778078ecf09da199194d282744718ef325dd8afd41/ml_dtypes-0.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:f47619d978ab1ae7dfdc4052ea97c636c6263e1f19bd1be0e42c346b98d15ff4", size = 128649 }, + { url = "https://files.pythonhosted.org/packages/7b/bb/4513133bccda7e66eb56ee38f68d1a8bbc81f072d00a40ee369c43f25ba9/ml_dtypes-0.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c7b3fb3d4f6b39bcd4f6c4b98f406291f0d681a895490ee29a0f95bab850d53c", size = 389810 }, + { url = "https://files.pythonhosted.org/packages/ea/58/c56da71b1d9f9c6c1e61f63d27f901c3526e13da0589ec2ff993e9a72c04/ml_dtypes-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7a4c3fcbf86fa52d0204f07cfd23947ef05b4ad743a1a988e163caa34a201e5e", size = 2180720 }, + { url = "https://files.pythonhosted.org/packages/86/29/b389f235add26220bc7b7f100362f4e3a84e14f7c837abd34a11347df1b0/ml_dtypes-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:91f8783fd1f2c23fd3b9ee5ad66b785dafa58ba3cdb050c4458021fa4d1eb226", size = 2158181 }, + { url = "https://files.pythonhosted.org/packages/38/3c/5d058a50340759423b25cb99f930cb3691fc30ebe86d53fdf1bff55c2d71/ml_dtypes-0.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:7ba8e1fafc7fff3e643f453bffa7d082df1678a73286ce8187d3e825e776eb94", size = 127704 }, +] + +[[package]] +name = "mpmath" +version = "1.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e0/47/dd32fa426cc72114383ac549964eecb20ecfd886d1e5ccf5340b55b02f57/mpmath-1.3.0.tar.gz", hash = "sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f", size = 508106 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/43/e3/7d92a15f894aa0c9c4b49b8ee9ac9850d6e63b03c9c32c0367a13ae62209/mpmath-1.3.0-py3-none-any.whl", hash = "sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c", size = 536198 }, +] + +[[package]] +name = "msgpack" +version = "1.0.8" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/08/4c/17adf86a8fbb02c144c7569dc4919483c01a2ac270307e2d59e1ce394087/msgpack-1.0.8.tar.gz", hash = "sha256:95c02b0e27e706e48d0e5426d1710ca78e0f0628d6e89d5b5a5b91a5f12274f3", size = 167014 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/c2/8ecbafd6d3178ad408989c82d6d518fec76e053bae20c0fd9f47bffe7dda/msgpack-1.0.8-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:505fe3d03856ac7d215dbe005414bc28505d26f0c128906037e66d98c4e95868", size = 157691 }, + { url = "https://files.pythonhosted.org/packages/0d/7e/93373ffbe6561e719996a90b6d112604f52da3ab46e7c395db7607458553/msgpack-1.0.8-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e6b7842518a63a9f17107eb176320960ec095a8ee3b4420b5f688e24bf50c53c", size = 87954 }, + { url = "https://files.pythonhosted.org/packages/ba/13/d000e53b067aee19d57a4f26d5bffed7890e6896538ac5f97605b0f64985/msgpack-1.0.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:376081f471a2ef24828b83a641a02c575d6103a3ad7fd7dade5486cad10ea659", size = 84945 }, + { url = "https://files.pythonhosted.org/packages/2b/6e/3dcd4f7d8b978277393fd5b7c0abd9d2b6ef7ba8eb12834bed59158ecf5f/msgpack-1.0.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e390971d082dba073c05dbd56322427d3280b7cc8b53484c9377adfbae67dc2", size = 376004 }, + { url = "https://files.pythonhosted.org/packages/d9/96/a1868dd8997d65732476dfc70fef44d046c1b4dbe36ec1481ab744d87775/msgpack-1.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:00e073efcba9ea99db5acef3959efa45b52bc67b61b00823d2a1a6944bf45982", size = 385107 }, + { url = "https://files.pythonhosted.org/packages/9b/db/8d629233bba3cbe6d7a6e0fd018ed684c5f0befea4428d4217ce066d2f20/msgpack-1.0.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82d92c773fbc6942a7a8b520d22c11cfc8fd83bba86116bfcf962c2f5c2ecdaa", size = 374290 }, + { url = "https://files.pythonhosted.org/packages/f0/75/553cc9ddfe59c62654dd398c16cd8ab1b3eeb145e56805f52115cbe9f5a0/msgpack-1.0.8-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:9ee32dcb8e531adae1f1ca568822e9b3a738369b3b686d1477cbc643c4a9c128", size = 380759 }, + { url = "https://files.pythonhosted.org/packages/7c/40/c6f31cef899b54e3f6a759204d0b152c9205aef7219c9d2279f608c421eb/msgpack-1.0.8-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e3aa7e51d738e0ec0afbed661261513b38b3014754c9459508399baf14ae0c9d", size = 413943 }, + { url = "https://files.pythonhosted.org/packages/b0/a8/29426f7af85406116e1cdbd21d8f02e30ef8f4afe3cfcbb43c498cbadadf/msgpack-1.0.8-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:69284049d07fce531c17404fcba2bb1df472bc2dcdac642ae71a2d079d950653", size = 385405 }, + { url = "https://files.pythonhosted.org/packages/98/b4/a32559cd8604402f55560ab7e5ebf20a92b533f376d693bb67a9c0aff41e/msgpack-1.0.8-cp310-cp310-win32.whl", hash = "sha256:13577ec9e247f8741c84d06b9ece5f654920d8365a4b636ce0e44f15e07ec693", size = 69043 }, + { url = "https://files.pythonhosted.org/packages/21/47/b7217d54e15dbae5492b845364427fa3cb1b0ccb58160b04ba47b551d7d9/msgpack-1.0.8-cp310-cp310-win_amd64.whl", hash = "sha256:e532dbd6ddfe13946de050d7474e3f5fb6ec774fbb1a188aaf469b08cf04189a", size = 75106 }, + { url = "https://files.pythonhosted.org/packages/3e/0e/96477b0448c593cc5c679e855c7bb58bb6543a065760e67cad0c3f90deb1/msgpack-1.0.8-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9517004e21664f2b5a5fd6333b0731b9cf0817403a941b393d89a2f1dc2bd836", size = 157669 }, + { url = "https://files.pythonhosted.org/packages/46/ca/96051d40050cd17bf054996662dbf8900da9995fa0a3308f2597a47bedad/msgpack-1.0.8-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d16a786905034e7e34098634b184a7d81f91d4c3d246edc6bd7aefb2fd8ea6ad", size = 87994 }, + { url = "https://files.pythonhosted.org/packages/17/29/7f3f30dd40bf1c2599350099645d3664b3aadb803583cbfce57a28047c4d/msgpack-1.0.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e2872993e209f7ed04d963e4b4fbae72d034844ec66bc4ca403329db2074377b", size = 84887 }, + { url = "https://files.pythonhosted.org/packages/1a/01/01a88f7971c68037dab4be2737b50e00557bbdaf179ab988803c736043ed/msgpack-1.0.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c330eace3dd100bdb54b5653b966de7f51c26ec4a7d4e87132d9b4f738220ba", size = 400836 }, + { url = "https://files.pythonhosted.org/packages/f6/f0/a7bdb48223cd21b9abed814b08fca8fe6a40931e70ec97c24d2f15d68ef3/msgpack-1.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:83b5c044f3eff2a6534768ccfd50425939e7a8b5cf9a7261c385de1e20dcfc85", size = 409267 }, + { url = "https://files.pythonhosted.org/packages/f5/9a/88388f7960930a7dc0bbcde3d1db1bd543c9645483f3172c64853f4cab67/msgpack-1.0.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1876b0b653a808fcd50123b953af170c535027bf1d053b59790eebb0aeb38950", size = 397264 }, + { url = "https://files.pythonhosted.org/packages/43/7c/82b729d105dae9f8be500228fdd8cfc1f918a18e285afcbf6d6915146037/msgpack-1.0.8-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:dfe1f0f0ed5785c187144c46a292b8c34c1295c01da12e10ccddfc16def4448a", size = 404763 }, + { url = "https://files.pythonhosted.org/packages/e0/3f/978df03be94c2198be22df5d6e31b69ef7a9759c6cc0cce4ed1d08e2b27b/msgpack-1.0.8-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3528807cbbb7f315bb81959d5961855e7ba52aa60a3097151cb21956fbc7502b", size = 434775 }, + { url = "https://files.pythonhosted.org/packages/dd/06/adb6c8cdea18f9ba09b7dc1442b50ce222858ae4a85703420349784429d0/msgpack-1.0.8-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e2f879ab92ce502a1e65fce390eab619774dda6a6ff719718069ac94084098ce", size = 409109 }, + { url = "https://files.pythonhosted.org/packages/c6/d6/46eec1866b1ff58001a4be192ec43675620392de078fd4baf394f7d03552/msgpack-1.0.8-cp311-cp311-win32.whl", hash = "sha256:26ee97a8261e6e35885c2ecd2fd4a6d38252246f94a2aec23665a4e66d066305", size = 68779 }, + { url = "https://files.pythonhosted.org/packages/33/e9/f450b8e1243704c0ab656dcd37f6146881d11bbb68588132d8ae673c455b/msgpack-1.0.8-cp311-cp311-win_amd64.whl", hash = "sha256:eadb9f826c138e6cf3c49d6f8de88225a3c0ab181a9b4ba792e006e5292d150e", size = 75180 }, + { url = "https://files.pythonhosted.org/packages/97/73/757eeca26527ebac31d86d35bf4ba20155ee14d35c8619dd96bc80a037f3/msgpack-1.0.8-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:114be227f5213ef8b215c22dde19532f5da9652e56e8ce969bf0a26d7c419fee", size = 158948 }, + { url = "https://files.pythonhosted.org/packages/11/df/558899a5f90d450e988484be25be0b49c6930858d6fe44ea6f1f66502fe5/msgpack-1.0.8-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d661dc4785affa9d0edfdd1e59ec056a58b3dbb9f196fa43587f3ddac654ac7b", size = 88696 }, + { url = "https://files.pythonhosted.org/packages/99/3e/49d430df1e9abf06bb91e9824422cd6ceead2114662417286da3ddcdd295/msgpack-1.0.8-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d56fd9f1f1cdc8227d7b7918f55091349741904d9520c65f0139a9755952c9e8", size = 85428 }, + { url = "https://files.pythonhosted.org/packages/54/f7/84828d0c6be6b7f0770777f1a7b1f76f3a78e8b6afb5e4e9c1c9350242be/msgpack-1.0.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0726c282d188e204281ebd8de31724b7d749adebc086873a59efb8cf7ae27df3", size = 396116 }, + { url = "https://files.pythonhosted.org/packages/04/2a/c833a8503be9030083f0469e7a3c74d3622a3b4eae676c3934d3ccc01036/msgpack-1.0.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8db8e423192303ed77cff4dce3a4b88dbfaf43979d280181558af5e2c3c71afc", size = 408331 }, + { url = "https://files.pythonhosted.org/packages/04/50/b988d0a8e8835f705e4bbcb6433845ff11dd50083c0aa43e607bb7b2ff96/msgpack-1.0.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:99881222f4a8c2f641f25703963a5cefb076adffd959e0558dc9f803a52d6a58", size = 394182 }, + { url = "https://files.pythonhosted.org/packages/98/e1/0d18496cbeef771db605b6a14794f9b4235d371f36b43f7223c1613969ec/msgpack-1.0.8-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:b5505774ea2a73a86ea176e8a9a4a7c8bf5d521050f0f6f8426afe798689243f", size = 401226 }, + { url = "https://files.pythonhosted.org/packages/03/79/ae000bde2aee4b9f0d50c1ca1ab301ade873b59dd6968c28f918d1cf8be4/msgpack-1.0.8-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:ef254a06bcea461e65ff0373d8a0dd1ed3aa004af48839f002a0c994a6f72d04", size = 432994 }, + { url = "https://files.pythonhosted.org/packages/cb/46/f97bedf3ab16d38eeea0aafa3ad93cc7b9adf898218961faaea9c3c639f1/msgpack-1.0.8-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:e1dd7839443592d00e96db831eddb4111a2a81a46b028f0facd60a09ebbdd543", size = 410432 }, + { url = "https://files.pythonhosted.org/packages/8f/59/db5b61c74341b6fdf2c8a5743bb242c395d728666cf3105ff17290eb421a/msgpack-1.0.8-cp312-cp312-win32.whl", hash = "sha256:64d0fcd436c5683fdd7c907eeae5e2cbb5eb872fafbc03a43609d7941840995c", size = 69255 }, + { url = "https://files.pythonhosted.org/packages/72/5c/5facaa9b5d1b3ead831697daacf37d485af312bbe483ac6ecf43a3dd777f/msgpack-1.0.8-cp312-cp312-win_amd64.whl", hash = "sha256:74398a4cf19de42e1498368c36eed45d9528f5fd0155241e82c4082b7e16cffd", size = 75348 }, + { url = "https://files.pythonhosted.org/packages/76/2f/a06b5ca0ba80aeb5f0b50449fb57a55c2c70bc495f2569442c743ed8478d/msgpack-1.0.8-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:f51bab98d52739c50c56658cc303f190785f9a2cd97b823357e7aeae54c8f68a", size = 157945 }, + { url = "https://files.pythonhosted.org/packages/7a/c7/c95fe31dd0d7bf49fd3590df8e0089a8b9b18222909439d68dcc7973fd13/msgpack-1.0.8-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:73ee792784d48aa338bba28063e19a27e8d989344f34aad14ea6e1b9bd83f596", size = 88030 }, + { url = "https://files.pythonhosted.org/packages/42/fa/9379d11dd1b83570b2e9dc0d7c7e45aec2fb99d80540170f82d79f83132a/msgpack-1.0.8-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f9904e24646570539a8950400602d66d2b2c492b9010ea7e965025cb71d0c86d", size = 85101 }, + { url = "https://files.pythonhosted.org/packages/ad/61/225d64e983e51f960cac41fd1084188764fcc7430e75f609ad9d86e47839/msgpack-1.0.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e75753aeda0ddc4c28dce4c32ba2f6ec30b1b02f6c0b14e547841ba5b24f753f", size = 375971 }, + { url = "https://files.pythonhosted.org/packages/09/b1/d80b0a71ac05655f73146492601e91b1dbb7eb0d95d8261bec1c981e8a36/msgpack-1.0.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5dbf059fb4b7c240c873c1245ee112505be27497e90f7c6591261c7d3c3a8228", size = 385062 }, + { url = "https://files.pythonhosted.org/packages/20/40/4eb8e9dc0e949bf22e5bcd74d16996ad61eb87220a1d719d6badd169be1a/msgpack-1.0.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4916727e31c28be8beaf11cf117d6f6f188dcc36daae4e851fee88646f5b6b18", size = 373871 }, + { url = "https://files.pythonhosted.org/packages/39/e2/cac717fd842a6d0d321b2f34add877033aede4f2e6321d93799ab68c6aea/msgpack-1.0.8-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:7938111ed1358f536daf311be244f34df7bf3cdedb3ed883787aca97778b28d8", size = 379532 }, + { url = "https://files.pythonhosted.org/packages/56/7a/2a9b40ca2d9ff8f9b5628b15b820676d830b006cff6ca6b3bdffbafd2142/msgpack-1.0.8-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:493c5c5e44b06d6c9268ce21b302c9ca055c1fd3484c25ba41d34476c76ee746", size = 413708 }, + { url = "https://files.pythonhosted.org/packages/ff/21/1b3545b88fe47526925b37217729036df4088340cad6e665609cb36ba84e/msgpack-1.0.8-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5fbb160554e319f7b22ecf530a80a3ff496d38e8e07ae763b9e82fadfe96f273", size = 383553 }, + { url = "https://files.pythonhosted.org/packages/aa/ef/bde2160092b87c76e3733b94bb4fba5fbd7937173a9d4a4bf0f78c246cc2/msgpack-1.0.8-cp39-cp39-win32.whl", hash = "sha256:f9af38a89b6a5c04b7d18c492c8ccf2aee7048aff1ce8437c4683bb5a1df893d", size = 69215 }, + { url = "https://files.pythonhosted.org/packages/c8/03/5ded16a0da44662b131af259fb2f95cd9b11a5850e57d290a5341b16d9ca/msgpack-1.0.8-cp39-cp39-win_amd64.whl", hash = "sha256:ed59dd52075f8fc91da6053b12e8c89e37aa043f8986efd89e61fae69dc1b011", size = 75081 }, +] + +[[package]] +name = "multidict" +version = "6.0.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f9/79/722ca999a3a09a63b35aac12ec27dfa8e5bb3a38b0f857f7a1a209a88836/multidict-6.0.5.tar.gz", hash = "sha256:f7e301075edaf50500f0b341543c41194d8df3ae5caf4702f2095f3ca73dd8da", size = 59867 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/36/48097b96135017ed1b806c5ea27b6cdc2ed3a6861c5372b793563206c586/multidict-6.0.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:228b644ae063c10e7f324ab1ab6b548bdf6f8b47f3ec234fef1093bc2735e5f9", size = 50955 }, + { url = "https://files.pythonhosted.org/packages/d9/48/037440edb5d4a1c65e002925b2f24071d6c27754e6f4734f63037e3169d6/multidict-6.0.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:896ebdcf62683551312c30e20614305f53125750803b614e9e6ce74a96232604", size = 30361 }, + { url = "https://files.pythonhosted.org/packages/a4/eb/d8e7693c9064554a1585698d1902839440c6c695b0f53c9a8be5d9d4a3b8/multidict-6.0.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:411bf8515f3be9813d06004cac41ccf7d1cd46dfe233705933dd163b60e37600", size = 30508 }, + { url = "https://files.pythonhosted.org/packages/f3/7d/fe7648d4b2f200f8854066ce6e56bf51889abfaf859814c62160dd0e32a9/multidict-6.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1d147090048129ce3c453f0292e7697d333db95e52616b3793922945804a433c", size = 126318 }, + { url = "https://files.pythonhosted.org/packages/8d/ea/0230b6faa9a5bc10650fd50afcc4a86e6c37af2fe05bc679b74d79253732/multidict-6.0.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:215ed703caf15f578dca76ee6f6b21b7603791ae090fbf1ef9d865571039ade5", size = 133998 }, + { url = "https://files.pythonhosted.org/packages/36/6d/d2f982fb485175727a193b4900b5f929d461e7aa87d6fb5a91a377fcc9c0/multidict-6.0.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c6390cf87ff6234643428991b7359b5f59cc15155695deb4eda5c777d2b880f", size = 129150 }, + { url = "https://files.pythonhosted.org/packages/33/62/2c9085e571318d51212a6914566fe41dd0e33d7f268f7e2f23dcd3f06c56/multidict-6.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21fd81c4ebdb4f214161be351eb5bcf385426bf023041da2fd9e60681f3cebae", size = 124266 }, + { url = "https://files.pythonhosted.org/packages/ce/e2/88cdfeaf03eab3498f688a19b62ca704d371cd904cb74b682541ca7b20a7/multidict-6.0.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3cc2ad10255f903656017363cd59436f2111443a76f996584d1077e43ee51182", size = 116637 }, + { url = "https://files.pythonhosted.org/packages/12/4d/99dfc36872dcc53956879f5da80a6505bbd29214cce90ce792a86e15fddf/multidict-6.0.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:6939c95381e003f54cd4c5516740faba40cf5ad3eeff460c3ad1d3e0ea2549bf", size = 155908 }, + { url = "https://files.pythonhosted.org/packages/c2/5c/1e76b2c742cb9e0248d1e8c4ed420817879230c833fa27d890b5fd22290b/multidict-6.0.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:220dd781e3f7af2c2c1053da9fa96d9cf3072ca58f057f4c5adaaa1cab8fc442", size = 147111 }, + { url = "https://files.pythonhosted.org/packages/bc/84/9579004267e1cc5968ef2ef8718dab9d8950d99354d85b739dd67b09c273/multidict-6.0.5-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:766c8f7511df26d9f11cd3a8be623e59cca73d44643abab3f8c8c07620524e4a", size = 160502 }, + { url = "https://files.pythonhosted.org/packages/11/b7/bef33e84e3722bc42531af020d7ae8c31235ce8846bacaa852b6484cf868/multidict-6.0.5-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:fe5d7785250541f7f5019ab9cba2c71169dc7d74d0f45253f8313f436458a4ef", size = 156587 }, + { url = "https://files.pythonhosted.org/packages/26/ce/f745a2d6104e56f7fa0d7d0756bb9ed27b771dd7b8d9d7348cd7f0f7b9de/multidict-6.0.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c1c1496e73051918fcd4f58ff2e0f2f3066d1c76a0c6aeffd9b45d53243702cc", size = 151948 }, + { url = "https://files.pythonhosted.org/packages/f1/50/714da64281d2b2b3b4068e84f115e1ef3bd3ed3715b39503ff3c59e8d30d/multidict-6.0.5-cp310-cp310-win32.whl", hash = "sha256:7afcdd1fc07befad18ec4523a782cde4e93e0a2bf71239894b8d61ee578c1319", size = 25734 }, + { url = "https://files.pythonhosted.org/packages/ef/3d/ba0dc18e96c5d83731c54129819d5892389e180f54ebb045c6124b2e8b87/multidict-6.0.5-cp310-cp310-win_amd64.whl", hash = "sha256:99f60d34c048c5c2fabc766108c103612344c46e35d4ed9ae0673d33c8fb26e8", size = 28182 }, + { url = "https://files.pythonhosted.org/packages/5f/da/b10ea65b850b54f44a6479177c6987f456bc2d38f8dc73009b78afcf0ede/multidict-6.0.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f285e862d2f153a70586579c15c44656f888806ed0e5b56b64489afe4a2dbfba", size = 50815 }, + { url = "https://files.pythonhosted.org/packages/21/db/3403263f158b0bc7b0d4653766d71cb39498973f2042eead27b2e9758782/multidict-6.0.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:53689bb4e102200a4fafa9de9c7c3c212ab40a7ab2c8e474491914d2305f187e", size = 30269 }, + { url = "https://files.pythonhosted.org/packages/02/c1/b15ecceb6ffa5081ed2ed450aea58d65b0e0358001f2b426705f9f41f4c2/multidict-6.0.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:612d1156111ae11d14afaf3a0669ebf6c170dbb735e510a7438ffe2369a847fd", size = 30500 }, + { url = "https://files.pythonhosted.org/packages/3f/e1/7fdd0f39565df3af87d6c2903fb66a7d529fbd0a8a066045d7a5b6ad1145/multidict-6.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7be7047bd08accdb7487737631d25735c9a04327911de89ff1b26b81745bd4e3", size = 130751 }, + { url = "https://files.pythonhosted.org/packages/76/bc/9f593f9e38c6c09bbf0344b56ad67dd53c69167937c2edadee9719a5e17d/multidict-6.0.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de170c7b4fe6859beb8926e84f7d7d6c693dfe8e27372ce3b76f01c46e489fcf", size = 138185 }, + { url = "https://files.pythonhosted.org/packages/28/32/d7799a208701d537b92705f46c777ded812a6dc139c18d8ed599908f6b1c/multidict-6.0.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:04bde7a7b3de05732a4eb39c94574db1ec99abb56162d6c520ad26f83267de29", size = 133585 }, + { url = "https://files.pythonhosted.org/packages/52/ec/be54a3ad110f386d5bd7a9a42a4ff36b3cd723ebe597f41073a73ffa16b8/multidict-6.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:85f67aed7bb647f93e7520633d8f51d3cbc6ab96957c71272b286b2f30dc70ed", size = 128684 }, + { url = "https://files.pythonhosted.org/packages/36/e1/a680eabeb71e25d4733276d917658dfa1cd3a99b1223625dbc247d266c98/multidict-6.0.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:425bf820055005bfc8aa9a0b99ccb52cc2f4070153e34b701acc98d201693733", size = 120994 }, + { url = "https://files.pythonhosted.org/packages/ef/08/08f4f44a8a43ea4cee13aa9cdbbf4a639af8db49310a0637ca389c4cf817/multidict-6.0.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d3eb1ceec286eba8220c26f3b0096cf189aea7057b6e7b7a2e60ed36b373b77f", size = 159689 }, + { url = "https://files.pythonhosted.org/packages/aa/a9/46cdb4cb40bbd4b732169413f56b04a6553460b22bd914f9729c9ba63761/multidict-6.0.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:7901c05ead4b3fb75113fb1dd33eb1253c6d3ee37ce93305acd9d38e0b5f21a4", size = 150611 }, + { url = "https://files.pythonhosted.org/packages/e9/32/35668bb3e6ab2f12f4e4f7f4000f72f714882a94f904d4c3633fbd036753/multidict-6.0.5-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:e0e79d91e71b9867c73323a3444724d496c037e578a0e1755ae159ba14f4f3d1", size = 164444 }, + { url = "https://files.pythonhosted.org/packages/fa/10/f1388a91552af732d8ec48dab928abc209e732767e9e8f92d24c3544353c/multidict-6.0.5-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:29bfeb0dff5cb5fdab2023a7a9947b3b4af63e9c47cae2a10ad58394b517fddc", size = 160158 }, + { url = "https://files.pythonhosted.org/packages/14/c3/f602601f1819983e018156e728e57b3f19726cb424b543667faab82f6939/multidict-6.0.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e030047e85cbcedbfc073f71836d62dd5dadfbe7531cae27789ff66bc551bd5e", size = 156072 }, + { url = "https://files.pythonhosted.org/packages/82/a6/0290af8487326108c0d03d14f8a0b8b1001d71e4494df5f96ab0c88c0b88/multidict-6.0.5-cp311-cp311-win32.whl", hash = "sha256:2f4848aa3baa109e6ab81fe2006c77ed4d3cd1e0ac2c1fbddb7b1277c168788c", size = 25731 }, + { url = "https://files.pythonhosted.org/packages/88/aa/ea217cb18325aa05cb3e3111c19715f1e97c50a4a900cbc20e54648de5f5/multidict-6.0.5-cp311-cp311-win_amd64.whl", hash = "sha256:2faa5ae9376faba05f630d7e5e6be05be22913782b927b19d12b8145968a85ea", size = 28176 }, + { url = "https://files.pythonhosted.org/packages/90/9c/7fda9c0defa09538c97b1f195394be82a1f53238536f70b32eb5399dfd4e/multidict-6.0.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:51d035609b86722963404f711db441cf7134f1889107fb171a970c9701f92e1e", size = 49575 }, + { url = "https://files.pythonhosted.org/packages/be/21/d6ca80dd1b9b2c5605ff7475699a8ff5dc6ea958cd71fb2ff234afc13d79/multidict-6.0.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:cbebcd5bcaf1eaf302617c114aa67569dd3f090dd0ce8ba9e35e9985b41ac35b", size = 29638 }, + { url = "https://files.pythonhosted.org/packages/9c/18/9565f32c19d186168731e859692dfbc0e98f66a1dcf9e14d69c02a78b75a/multidict-6.0.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2ffc42c922dbfddb4a4c3b438eb056828719f07608af27d163191cb3e3aa6cc5", size = 29874 }, + { url = "https://files.pythonhosted.org/packages/4e/4e/3815190e73e6ef101b5681c174c541bf972a1b064e926e56eea78d06e858/multidict-6.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ceb3b7e6a0135e092de86110c5a74e46bda4bd4fbfeeb3a3bcec79c0f861e450", size = 129914 }, + { url = "https://files.pythonhosted.org/packages/0c/08/bb47f886457e2259aefc10044e45c8a1b62f0c27228557e17775869d0341/multidict-6.0.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:79660376075cfd4b2c80f295528aa6beb2058fd289f4c9252f986751a4cd0496", size = 134589 }, + { url = "https://files.pythonhosted.org/packages/d5/2f/952f79b5f0795cf4e34852fc5cf4dfda6166f63c06c798361215b69c131d/multidict-6.0.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4428b29611e989719874670fd152b6625500ad6c686d464e99f5aaeeaca175a", size = 133259 }, + { url = "https://files.pythonhosted.org/packages/24/1f/af976383b0b772dd351210af5b60ff9927e3abb2f4a103e93da19a957da0/multidict-6.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d84a5c3a5f7ce6db1f999fb9438f686bc2e09d38143f2d93d8406ed2dd6b9226", size = 130779 }, + { url = "https://files.pythonhosted.org/packages/fc/b1/b0a7744be00b0f5045c7ed4e4a6b8ee6bde4672b2c620474712299df5979/multidict-6.0.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:76c0de87358b192de7ea9649beb392f107dcad9ad27276324c24c91774ca5271", size = 120125 }, + { url = "https://files.pythonhosted.org/packages/d0/bf/2a1d667acf11231cdf0b97a6cd9f30e7a5cf847037b5cf6da44884284bd0/multidict-6.0.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:79a6d2ba910adb2cbafc95dad936f8b9386e77c84c35bc0add315b856d7c3abb", size = 167095 }, + { url = "https://files.pythonhosted.org/packages/5e/e8/ad6ee74b1a2050d3bc78f566dabcc14c8bf89cbe87eecec866c011479815/multidict-6.0.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:92d16a3e275e38293623ebf639c471d3e03bb20b8ebb845237e0d3664914caef", size = 155823 }, + { url = "https://files.pythonhosted.org/packages/45/7c/06926bb91752c52abca3edbfefac1ea90d9d1bc00c84d0658c137589b920/multidict-6.0.5-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:fb616be3538599e797a2017cccca78e354c767165e8858ab5116813146041a24", size = 170233 }, + { url = "https://files.pythonhosted.org/packages/3c/29/3dd36cf6b9c5abba8b97bba84eb499a168ba59c3faec8829327b3887d123/multidict-6.0.5-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:14c2976aa9038c2629efa2c148022ed5eb4cb939e15ec7aace7ca932f48f9ba6", size = 169035 }, + { url = "https://files.pythonhosted.org/packages/60/47/9a0f43470c70bbf6e148311f78ef5a3d4996b0226b6d295bdd50fdcfe387/multidict-6.0.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:435a0984199d81ca178b9ae2c26ec3d49692d20ee29bc4c11a2a8d4514c67eda", size = 166229 }, + { url = "https://files.pythonhosted.org/packages/1d/23/c1b7ae7a0b8a3e08225284ef3ecbcf014b292a3ee821bc4ed2185fd4ce7d/multidict-6.0.5-cp312-cp312-win32.whl", hash = "sha256:9fe7b0653ba3d9d65cbe7698cca585bf0f8c83dbbcc710db9c90f478e175f2d5", size = 25840 }, + { url = "https://files.pythonhosted.org/packages/4a/68/66fceb758ad7a88993940dbdf3ac59911ba9dc46d7798bf6c8652f89f853/multidict-6.0.5-cp312-cp312-win_amd64.whl", hash = "sha256:01265f5e40f5a17f8241d52656ed27192be03bfa8764d88e8220141d1e4b3556", size = 27905 }, + { url = "https://files.pythonhosted.org/packages/c6/7c/c8f4445389c0bbc5ea85d1e737233c257f314d0f836a6644e097a5ef512f/multidict-6.0.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:e7be68734bd8c9a513f2b0cfd508802d6609da068f40dc57d4e3494cefc92929", size = 50828 }, + { url = "https://files.pythonhosted.org/packages/7d/5c/c364a77b37f580cc28da4194b77ed04286c7631933d3e64fdae40f1972e2/multidict-6.0.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1d9ea7a7e779d7a3561aade7d596649fbecfa5c08a7674b11b423783217933f9", size = 30315 }, + { url = "https://files.pythonhosted.org/packages/1a/25/f4b60a34dde70c475f4dcaeb4796c256db80d2e03198052d0c3cee5d5fbb/multidict-6.0.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ea1456df2a27c73ce51120fa2f519f1bea2f4a03a917f4a43c8707cf4cbbae1a", size = 30451 }, + { url = "https://files.pythonhosted.org/packages/d0/10/2ff646c471e84af25fe8111985ffb8ec85a3f6e1ade8643bfcfcc0f4d2b1/multidict-6.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cf590b134eb70629e350691ecca88eac3e3b8b3c86992042fb82e3cb1830d5e1", size = 125880 }, + { url = "https://files.pythonhosted.org/packages/c9/ee/a4775297550dfb127641bd335d00d6d896e4ba5cf0216f78654e5ad6ac80/multidict-6.0.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5c0631926c4f58e9a5ccce555ad7747d9a9f8b10619621f22f9635f069f6233e", size = 133606 }, + { url = "https://files.pythonhosted.org/packages/7d/e9/95746d0c7c40bb0f43fc5424b7d7cf783e8638ce67f05fa677fff9ad76bb/multidict-6.0.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dce1c6912ab9ff5f179eaf6efe7365c1f425ed690b03341911bf4939ef2f3046", size = 128720 }, + { url = "https://files.pythonhosted.org/packages/39/a9/1f8d42c8103bcb1da6bb719f1bc018594b5acc8eae56b3fec4720ebee225/multidict-6.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0868d64af83169e4d4152ec612637a543f7a336e4a307b119e98042e852ad9c", size = 123750 }, + { url = "https://files.pythonhosted.org/packages/b5/f8/c8abbe7c425497d8bf997b1fffd9650ca175325ff397fadc9d63ae5dc027/multidict-6.0.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:141b43360bfd3bdd75f15ed811850763555a251e38b2405967f8e25fb43f7d40", size = 116213 }, + { url = "https://files.pythonhosted.org/packages/c2/bb/242664de860cd1201f4d207f0bd2011c1a730877e1dbffbe5d6ec4089e2d/multidict-6.0.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:7df704ca8cf4a073334e0427ae2345323613e4df18cc224f647f251e5e75a527", size = 155410 }, + { url = "https://files.pythonhosted.org/packages/f6/5b/35d20c85b8ccd0c9afc47b8dd46e028b6650ad9660a4b6ad191301d220f5/multidict-6.0.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6214c5a5571802c33f80e6c84713b2c79e024995b9c5897f794b43e714daeec9", size = 146668 }, + { url = "https://files.pythonhosted.org/packages/1b/52/6e984685d048f6728807c3fd9b8a6e3e3d51a06a4d6665d6e0102115455d/multidict-6.0.5-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:cd6c8fca38178e12c00418de737aef1261576bd1b6e8c6134d3e729a4e858b38", size = 160140 }, + { url = "https://files.pythonhosted.org/packages/76/c0/3aa6238557ed1d235be70d9c3f86d63a835c421b76073b8ce06bf32725e8/multidict-6.0.5-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:e02021f87a5b6932fa6ce916ca004c4d441509d33bbdbeca70d05dff5e9d2479", size = 156185 }, + { url = "https://files.pythonhosted.org/packages/85/82/02ed81023b5812582bf7c46e8e2868ffd6a29f8c313af1dd76e82e243c39/multidict-6.0.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ebd8d160f91a764652d3e51ce0d2956b38efe37c9231cd82cfc0bed2e40b581c", size = 151518 }, + { url = "https://files.pythonhosted.org/packages/d8/00/fd6eef9830046c063939cbf119c101898cbb611ea20301ae911b74caca19/multidict-6.0.5-cp39-cp39-win32.whl", hash = "sha256:04da1bb8c8dbadf2a18a452639771951c662c5ad03aefe4884775454be322c9b", size = 25732 }, + { url = "https://files.pythonhosted.org/packages/58/a3/4d2c1b4d1859c89d9ce48a4ae410ee019485e324e484b0160afdba8cc42b/multidict-6.0.5-cp39-cp39-win_amd64.whl", hash = "sha256:d6f6d4f185481c9669b9447bf9d9cf3b95a0e9df9d169bbc17e363b7d5487755", size = 28181 }, + { url = "https://files.pythonhosted.org/packages/fa/a2/17e1e23c6be0a916219c5292f509360c345b5fa6beeb50d743203c27532c/multidict-6.0.5-py3-none-any.whl", hash = "sha256:0d63c74e3d7ab26de115c49bffc92cc77ed23395303d496eae515d4204a625e7", size = 9729 }, +] + +[[package]] +name = "multiprocess" +version = "0.70.12.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "dill", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/99/1a/472900644359cdd208d1fbe71706bdeecbc6e8db2e39c35ebe89459e9172/multiprocess-0.70.12.2.zip", hash = "sha256:206bb9b97b73f87fec1ed15a19f8762950256aa84225450abc7150d02855a083", size = 3308461 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/97/0a/c9e66e0c3fd4f2a9404c91ba1a967858041c865c958746bb6939454eed10/multiprocess-0.70.12.2-pp27-none-any.whl", hash = "sha256:a9f58945edb234591684c0a181b744a3231643814ef3a8f47cea9a2073b4b2bb", size = 82019 }, + { url = "https://files.pythonhosted.org/packages/e3/12/c1c7b5574a574a5bc898c8656b0ab8514d0609356b3ca18180e2ae94c2f7/multiprocess-0.70.12.2-py39-none-any.whl", hash = "sha256:6f812a1d3f198b7cacd63983f60e2dc1338bd4450893f90c435067b5a3127e6f", size = 128693 }, +] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/98/a4/1ab47638b92648243faf97a5aeb6ea83059cc3624972ab6b8d2316078d3f/mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782", size = 4433 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2a/e2/5d3f6ada4297caebe1a2add3b126fe800c96f56dbe5d1988a2cbe0b267aa/mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d", size = 4695 }, +] + +[[package]] +name = "nbformat" +version = "5.10.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "fastjsonschema", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jsonschema", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jupyter-core", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "traitlets", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6d/fd/91545e604bc3dad7dca9ed03284086039b294c6b3d75c0d2fa45f9e9caf3/nbformat-5.10.4.tar.gz", hash = "sha256:322168b14f937a5d11362988ecac2a4952d3d8e3a2cbeb2319584631226d5b3a", size = 142749 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl", hash = "sha256:3b48d6c8fbca4b299bf3982ea7db1af21580e4fec269ad087b9e81588891200b", size = 78454 }, +] + +[[package]] +name = "nest-asyncio" +version = "1.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/83/f8/51569ac65d696c8ecbee95938f89d4abf00f47d58d48f6fbabfe8f0baefe/nest_asyncio-1.6.0.tar.gz", hash = "sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe", size = 7418 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a0/c4/c2971a3ba4c6103a3d10c4b0f24f461ddc027f0f09763220cf35ca1401b3/nest_asyncio-1.6.0-py3-none-any.whl", hash = "sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c", size = 5195 }, +] + +[[package]] +name = "networkx" +version = "3.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c4/80/a84676339aaae2f1cfdf9f418701dd634aef9cc76f708ef55c36ff39c3ca/networkx-3.2.1.tar.gz", hash = "sha256:9f1bb5cf3409bf324e0a722c20bdb4c20ee39bf1c30ce8ae499c8502b0b5e0c6", size = 2073928 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d5/f0/8fbc882ca80cf077f1b246c0e3c3465f7f415439bdea6b899f6b19f61f70/networkx-3.2.1-py3-none-any.whl", hash = "sha256:f18c69adc97877c42332c170849c96cefa91881c99a7cb3e95b7c659ebdc1ec2", size = 1647772 }, +] + +[[package]] +name = "ninja" +version = "1.11.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/37/2c/d717d13a413d6f7579cdaa1e28e6e2c98de95461549b08d311c8a5bf4c51/ninja-1.11.1.1.tar.gz", hash = "sha256:9d793b08dd857e38d0b6ffe9e6b7145d7c485a42dcfea04905ca0cdb6017cc3c", size = 132392 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3d/6e/04ed11bb244039908f6f212cb5f3e97933e238655248e4ce307c1687ba1f/ninja-1.11.1.1-py2.py3-none-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl", hash = "sha256:376889c76d87b95b5719fdd61dd7db193aa7fd4432e5d52d2e44e4c497bdbbee", size = 270611 }, + { url = "https://files.pythonhosted.org/packages/2c/52/0e5423311eb9939b6f9354059a6d88a6211eb4fa1c7a4ef303ecee1c1fe0/ninja-1.11.1.1-py2.py3-none-manylinux1_i686.manylinux_2_5_i686.whl", hash = "sha256:ecf80cf5afd09f14dcceff28cb3f11dc90fb97c999c89307aea435889cb66877", size = 324256 }, + { url = "https://files.pythonhosted.org/packages/6d/92/8d7aebd4430ab5ff65df2bfee6d5745f95c004284db2d8ca76dcbfd9de47/ninja-1.11.1.1-py2.py3-none-manylinux1_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:84502ec98f02a037a169c4b0d5d86075eaf6afc55e1879003d6cab51ced2ea4b", size = 307194 }, + { url = "https://files.pythonhosted.org/packages/01/c8/96424839fd127b4492229acf50763ed9940d864ca35d17d151934aef1f6f/ninja-1.11.1.1-py2.py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:73b93c14046447c7c5cc892433d4fae65d6364bec6685411cb97a8bcf815f93a", size = 155643 }, + { url = "https://files.pythonhosted.org/packages/6b/fa/5ca8e65a98cdb9a71d4f1e38cac7bd757bbb9555a5aef5a4d293aa890e5c/ninja-1.11.1.1-py2.py3-none-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:18302d96a5467ea98b68e1cae1ae4b4fb2b2a56a82b955193c637557c7273dbd", size = 179538 }, + { url = "https://files.pythonhosted.org/packages/45/ef/60086f02cbc6882da00a02c81d645cefd8d2d65b01fade41b873d8dd85a2/ninja-1.11.1.1-py2.py3-none-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:aad34a70ef15b12519946c5633344bc775a7656d789d9ed5fdb0d456383716ef", size = 156217 }, + { url = "https://files.pythonhosted.org/packages/1c/00/2fd13ac6aafdb566f00d6b541101fca54e58ae58bf96c00f9780df019607/ninja-1.11.1.1-py2.py3-none-musllinux_1_1_aarch64.whl", hash = "sha256:d491fc8d89cdcb416107c349ad1e3a735d4c4af5e1cb8f5f727baca6350fdaea", size = 372069 }, + { url = "https://files.pythonhosted.org/packages/ad/5d/6e97c8a25167d4867694c7fb0b9bdbc9b096d6479c8e56c5bd41b49613f6/ninja-1.11.1.1-py2.py3-none-musllinux_1_1_i686.whl", hash = "sha256:7563ce1d9fe6ed5af0b8dd9ab4a214bf4ff1f2f6fd6dc29f480981f0f8b8b249", size = 418859 }, + { url = "https://files.pythonhosted.org/packages/43/78/34af88d753389a9412438d16142c77e587e0d69152faf0bbf99701063dd8/ninja-1.11.1.1-py2.py3-none-musllinux_1_1_ppc64le.whl", hash = "sha256:9df724344202b83018abb45cb1efc22efd337a1496514e7e6b3b59655be85205", size = 419782 }, + { url = "https://files.pythonhosted.org/packages/3b/74/de0633f8bced3b188942fca64a950e8f2206c60c10c97af465b356ae9b25/ninja-1.11.1.1-py2.py3-none-musllinux_1_1_s390x.whl", hash = "sha256:3e0f9be5bb20d74d58c66cc1c414c3e6aeb45c35b0d0e41e8d739c2c0d57784f", size = 415476 }, + { url = "https://files.pythonhosted.org/packages/9a/f3/3e4a56ff77739d1582749b93497bdebf11e003fbc7a66363ef6c772ebd0a/ninja-1.11.1.1-py2.py3-none-musllinux_1_1_x86_64.whl", hash = "sha256:76482ba746a2618eecf89d5253c0d1e4f1da1270d41e9f54dfbd91831b0f6885", size = 379229 }, + { url = "https://files.pythonhosted.org/packages/c5/ee/53df34fcc9c0b1db62b2f2e2c848e28d9354e1c7f0dce029ee50b16ca157/ninja-1.11.1.1-py2.py3-none-win32.whl", hash = "sha256:fa2ba9d74acfdfbfbcf06fad1b8282de8a7a8c481d9dee45c859a8c93fcc1082", size = 265049 }, + { url = "https://files.pythonhosted.org/packages/b6/2f/a3bc50fa63fc4fe9348e15b53dc8c87febfd4e0c660fcf250c4b19a3aa3b/ninja-1.11.1.1-py2.py3-none-win_amd64.whl", hash = "sha256:95da904130bfa02ea74ff9c0116b4ad266174fafb1c707aa50212bc7859aebf1", size = 312958 }, + { url = "https://files.pythonhosted.org/packages/73/2a/f5b7b3b7ecd5cf4e31375580bf5c6a01a328ed1ebdfff90fab463e3f4bc7/ninja-1.11.1.1-py2.py3-none-win_arm64.whl", hash = "sha256:185e0641bde601e53841525c4196278e9aaf4463758da6dd1e752c0a0f54136a", size = 272686 }, +] + +[[package]] +name = "nltk" +version = "3.8.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "joblib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "regex", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/57/49/51af17a2b0d850578d0022408802aa452644d40281a6c6e82f7cb0235ddb/nltk-3.8.1.zip", hash = "sha256:1834da3d0682cba4f2cede2f9aad6b0fafb6461ba451db0efb6f9c39798d64d3", size = 4620388 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a6/0a/0d20d2c0f16be91b9fa32a77b76c60f9baf6eba419e5ef5deca17af9c582/nltk-3.8.1-py3-none-any.whl", hash = "sha256:fd5c9109f976fa86bcadba8f91e47f5e9293bd034474752e92a520f81c93dda5", size = 1510663 }, +] + +[[package]] +name = "numba" +version = "0.60.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "llvmlite", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/3c/93/2849300a9184775ba274aba6f82f303343669b0592b7bb0849ea713dabb0/numba-0.60.0.tar.gz", hash = "sha256:5df6158e5584eece5fc83294b949fd30b9f1125df7708862205217e068aabf16", size = 2702171 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f7/cf/baa13a7e3556d73d9e38021e6d6aa4aeb30d8b94545aa8b70d0f24a1ccc4/numba-0.60.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:5d761de835cd38fb400d2c26bb103a2726f548dc30368853121d66201672e651", size = 2647627 }, + { url = "https://files.pythonhosted.org/packages/ac/ba/4b57fa498564457c3cc9fc9e570a6b08e6086c74220f24baaf04e54b995f/numba-0.60.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:159e618ef213fba758837f9837fb402bbe65326e60ba0633dbe6c7f274d42c1b", size = 2650322 }, + { url = "https://files.pythonhosted.org/packages/28/98/7ea97ee75870a54f938a8c70f7e0be4495ba5349c5f9db09d467c4a5d5b7/numba-0.60.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:1527dc578b95c7c4ff248792ec33d097ba6bef9eda466c948b68dfc995c25781", size = 3407390 }, + { url = "https://files.pythonhosted.org/packages/79/58/cb4ac5b8f7ec64200460aef1fed88258fb872ceef504ab1f989d2ff0f684/numba-0.60.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:fe0b28abb8d70f8160798f4de9d486143200f34458d34c4a214114e445d7124e", size = 3699694 }, + { url = "https://files.pythonhosted.org/packages/1c/b0/c61a93ca947d12233ff45de506ddbf52af3f752066a0b8be4d27426e16da/numba-0.60.0-cp310-cp310-win_amd64.whl", hash = "sha256:19407ced081d7e2e4b8d8c36aa57b7452e0283871c296e12d798852bc7d7f198", size = 2687030 }, + { url = "https://files.pythonhosted.org/packages/98/ad/df18d492a8f00d29a30db307904b9b296e37507034eedb523876f3a2e13e/numba-0.60.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a17b70fc9e380ee29c42717e8cc0bfaa5556c416d94f9aa96ba13acb41bdece8", size = 2647254 }, + { url = "https://files.pythonhosted.org/packages/9a/51/a4dc2c01ce7a850b8e56ff6d5381d047a5daea83d12bad08aa071d34b2ee/numba-0.60.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3fb02b344a2a80efa6f677aa5c40cd5dd452e1b35f8d1c2af0dfd9ada9978e4b", size = 2649970 }, + { url = "https://files.pythonhosted.org/packages/f9/4c/8889ac94c0b33dca80bed11564b8c6d9ea14d7f094e674c58e5c5b05859b/numba-0.60.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:5f4fde652ea604ea3c86508a3fb31556a6157b2c76c8b51b1d45eb40c8598703", size = 3412492 }, + { url = "https://files.pythonhosted.org/packages/57/03/2b4245b05b71c0cee667e6a0b51606dfa7f4157c9093d71c6b208385a611/numba-0.60.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:4142d7ac0210cc86432b818338a2bc368dc773a2f5cf1e32ff7c5b378bd63ee8", size = 3705018 }, + { url = "https://files.pythonhosted.org/packages/79/89/2d924ca60dbf949f18a6fec223a2445f5f428d9a5f97a6b29c2122319015/numba-0.60.0-cp311-cp311-win_amd64.whl", hash = "sha256:cac02c041e9b5bc8cf8f2034ff6f0dbafccd1ae9590dc146b3a02a45e53af4e2", size = 2686920 }, + { url = "https://files.pythonhosted.org/packages/eb/5c/b5ec752c475e78a6c3676b67c514220dbde2725896bbb0b6ec6ea54b2738/numba-0.60.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d7da4098db31182fc5ffe4bc42c6f24cd7d1cb8a14b59fd755bfee32e34b8404", size = 2647866 }, + { url = "https://files.pythonhosted.org/packages/65/42/39559664b2e7c15689a638c2a38b3b74c6e69a04e2b3019b9f7742479188/numba-0.60.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:38d6ea4c1f56417076ecf8fc327c831ae793282e0ff51080c5094cb726507b1c", size = 2650208 }, + { url = "https://files.pythonhosted.org/packages/67/88/c4459ccc05674ef02119abf2888ccd3e2fed12a323f52255f4982fc95876/numba-0.60.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:62908d29fb6a3229c242e981ca27e32a6e606cc253fc9e8faeb0e48760de241e", size = 3466946 }, + { url = "https://files.pythonhosted.org/packages/8b/41/ac11cf33524def12aa5bd698226ae196a1185831c05ed29dc0c56eaa308b/numba-0.60.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:0ebaa91538e996f708f1ab30ef4d3ddc344b64b5227b67a57aa74f401bb68b9d", size = 3761463 }, + { url = "https://files.pythonhosted.org/packages/ca/bd/0fe29fcd1b6a8de479a4ed25c6e56470e467e3611c079d55869ceef2b6d1/numba-0.60.0-cp312-cp312-win_amd64.whl", hash = "sha256:f75262e8fe7fa96db1dca93d53a194a38c46da28b112b8a4aca168f0df860347", size = 2707588 }, + { url = "https://files.pythonhosted.org/packages/68/1a/87c53f836cdf557083248c3f47212271f220280ff766538795e77c8c6bbf/numba-0.60.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:01ef4cd7d83abe087d644eaa3d95831b777aa21d441a23703d649e06b8e06b74", size = 2647186 }, + { url = "https://files.pythonhosted.org/packages/28/14/a5baa1f2edea7b49afa4dc1bb1b126645198cf1075186853b5b497be826e/numba-0.60.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:819a3dfd4630d95fd574036f99e47212a1af41cbcb019bf8afac63ff56834449", size = 2650038 }, + { url = "https://files.pythonhosted.org/packages/3b/bd/f1985719ff34e37e07bb18f9d3acd17e5a21da255f550c8eae031e2ddf5f/numba-0.60.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:0b983bd6ad82fe868493012487f34eae8bf7dd94654951404114f23c3466d34b", size = 3403010 }, + { url = "https://files.pythonhosted.org/packages/54/9b/cd73d3f6617ddc8398a63ef97d8dc9139a9879b9ca8a7ca4b8789056ea46/numba-0.60.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:c151748cd269ddeab66334bd754817ffc0cabd9433acb0f551697e5151917d25", size = 3695086 }, + { url = "https://files.pythonhosted.org/packages/01/01/8b7b670c77c5ea0e47e283d82332969bf672ab6410d0b2610cac5b7a3ded/numba-0.60.0-cp39-cp39-win_amd64.whl", hash = "sha256:3031547a015710140e8c87226b4cfe927cac199835e5bf7d4fe5cb64e814e3ab", size = 2686978 }, +] + +[[package]] +name = "numpy" +version = "1.26.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/65/6e/09db70a523a96d25e115e71cc56a6f9031e7b8cd166c1ac8438307c14058/numpy-1.26.4.tar.gz", hash = "sha256:2a02aba9ed12e4ac4eb3ea9421c420301a0c6460d9830d74a9df87efa4912010", size = 15786129 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/94/ace0fdea5241a27d13543ee117cbc65868e82213fb31a8eb7fe9ff23f313/numpy-1.26.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0", size = 20631468 }, + { url = "https://files.pythonhosted.org/packages/20/f7/b24208eba89f9d1b58c1668bc6c8c4fd472b20c45573cb767f59d49fb0f6/numpy-1.26.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a", size = 13966411 }, + { url = "https://files.pythonhosted.org/packages/fc/a5/4beee6488160798683eed5bdb7eead455892c3b4e1f78d79d8d3f3b084ac/numpy-1.26.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d209d8969599b27ad20994c8e41936ee0964e6da07478d6c35016bc386b66ad4", size = 14219016 }, + { url = "https://files.pythonhosted.org/packages/4b/d7/ecf66c1cd12dc28b4040b15ab4d17b773b87fa9d29ca16125de01adb36cd/numpy-1.26.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ffa75af20b44f8dba823498024771d5ac50620e6915abac414251bd971b4529f", size = 18240889 }, + { url = "https://files.pythonhosted.org/packages/24/03/6f229fe3187546435c4f6f89f6d26c129d4f5bed40552899fcf1f0bf9e50/numpy-1.26.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:62b8e4b1e28009ef2846b4c7852046736bab361f7aeadeb6a5b89ebec3c7055a", size = 13876746 }, + { url = "https://files.pythonhosted.org/packages/39/fe/39ada9b094f01f5a35486577c848fe274e374bbf8d8f472e1423a0bbd26d/numpy-1.26.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a4abb4f9001ad2858e7ac189089c42178fcce737e4169dc61321660f1a96c7d2", size = 18078620 }, + { url = "https://files.pythonhosted.org/packages/d5/ef/6ad11d51197aad206a9ad2286dc1aac6a378059e06e8cf22cd08ed4f20dc/numpy-1.26.4-cp310-cp310-win32.whl", hash = "sha256:bfe25acf8b437eb2a8b2d49d443800a5f18508cd811fea3181723922a8a82b07", size = 5972659 }, + { url = "https://files.pythonhosted.org/packages/19/77/538f202862b9183f54108557bfda67e17603fc560c384559e769321c9d92/numpy-1.26.4-cp310-cp310-win_amd64.whl", hash = "sha256:b97fe8060236edf3662adfc2c633f56a08ae30560c56310562cb4f95500022d5", size = 15808905 }, + { url = "https://files.pythonhosted.org/packages/11/57/baae43d14fe163fa0e4c47f307b6b2511ab8d7d30177c491960504252053/numpy-1.26.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4c66707fabe114439db9068ee468c26bbdf909cac0fb58686a42a24de1760c71", size = 20630554 }, + { url = "https://files.pythonhosted.org/packages/1a/2e/151484f49fd03944c4a3ad9c418ed193cfd02724e138ac8a9505d056c582/numpy-1.26.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:edd8b5fe47dab091176d21bb6de568acdd906d1887a4584a15a9a96a1dca06ef", size = 13997127 }, + { url = "https://files.pythonhosted.org/packages/79/ae/7e5b85136806f9dadf4878bf73cf223fe5c2636818ba3ab1c585d0403164/numpy-1.26.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ab55401287bfec946ced39700c053796e7cc0e3acbef09993a9ad2adba6ca6e", size = 14222994 }, + { url = "https://files.pythonhosted.org/packages/3a/d0/edc009c27b406c4f9cbc79274d6e46d634d139075492ad055e3d68445925/numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:666dbfb6ec68962c033a450943ded891bed2d54e6755e35e5835d63f4f6931d5", size = 18252005 }, + { url = "https://files.pythonhosted.org/packages/09/bf/2b1aaf8f525f2923ff6cfcf134ae5e750e279ac65ebf386c75a0cf6da06a/numpy-1.26.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:96ff0b2ad353d8f990b63294c8986f1ec3cb19d749234014f4e7eb0112ceba5a", size = 13885297 }, + { url = "https://files.pythonhosted.org/packages/df/a0/4e0f14d847cfc2a633a1c8621d00724f3206cfeddeb66d35698c4e2cf3d2/numpy-1.26.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:60dedbb91afcbfdc9bc0b1f3f402804070deed7392c23eb7a7f07fa857868e8a", size = 18093567 }, + { url = "https://files.pythonhosted.org/packages/d2/b7/a734c733286e10a7f1a8ad1ae8c90f2d33bf604a96548e0a4a3a6739b468/numpy-1.26.4-cp311-cp311-win32.whl", hash = "sha256:1af303d6b2210eb850fcf03064d364652b7120803a0b872f5211f5234b399f20", size = 5968812 }, + { url = "https://files.pythonhosted.org/packages/3f/6b/5610004206cf7f8e7ad91c5a85a8c71b2f2f8051a0c0c4d5916b76d6cbb2/numpy-1.26.4-cp311-cp311-win_amd64.whl", hash = "sha256:cd25bcecc4974d09257ffcd1f098ee778f7834c3ad767fe5db785be9a4aa9cb2", size = 15811913 }, + { url = "https://files.pythonhosted.org/packages/95/12/8f2020a8e8b8383ac0177dc9570aad031a3beb12e38847f7129bacd96228/numpy-1.26.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:b3ce300f3644fb06443ee2222c2201dd3a89ea6040541412b8fa189341847218", size = 20335901 }, + { url = "https://files.pythonhosted.org/packages/75/5b/ca6c8bd14007e5ca171c7c03102d17b4f4e0ceb53957e8c44343a9546dcc/numpy-1.26.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:03a8c78d01d9781b28a6989f6fa1bb2c4f2d51201cf99d3dd875df6fbd96b23b", size = 13685868 }, + { url = "https://files.pythonhosted.org/packages/79/f8/97f10e6755e2a7d027ca783f63044d5b1bc1ae7acb12afe6a9b4286eac17/numpy-1.26.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9fad7dcb1aac3c7f0584a5a8133e3a43eeb2fe127f47e3632d43d677c66c102b", size = 13925109 }, + { url = "https://files.pythonhosted.org/packages/0f/50/de23fde84e45f5c4fda2488c759b69990fd4512387a8632860f3ac9cd225/numpy-1.26.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:675d61ffbfa78604709862923189bad94014bef562cc35cf61d3a07bba02a7ed", size = 17950613 }, + { url = "https://files.pythonhosted.org/packages/4c/0c/9c603826b6465e82591e05ca230dfc13376da512b25ccd0894709b054ed0/numpy-1.26.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ab47dbe5cc8210f55aa58e4805fe224dac469cde56b9f731a4c098b91917159a", size = 13572172 }, + { url = "https://files.pythonhosted.org/packages/76/8c/2ba3902e1a0fc1c74962ea9bb33a534bb05984ad7ff9515bf8d07527cadd/numpy-1.26.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:1dda2e7b4ec9dd512f84935c5f126c8bd8b9f2fc001e9f54af255e8c5f16b0e0", size = 17786643 }, + { url = "https://files.pythonhosted.org/packages/28/4a/46d9e65106879492374999e76eb85f87b15328e06bd1550668f79f7b18c6/numpy-1.26.4-cp312-cp312-win32.whl", hash = "sha256:50193e430acfc1346175fcbdaa28ffec49947a06918b7b92130744e81e640110", size = 5677803 }, + { url = "https://files.pythonhosted.org/packages/16/2e/86f24451c2d530c88daf997cb8d6ac622c1d40d19f5a031ed68a4b73a374/numpy-1.26.4-cp312-cp312-win_amd64.whl", hash = "sha256:08beddf13648eb95f8d867350f6a018a4be2e5ad54c8d8caed89ebca558b2818", size = 15517754 }, + { url = "https://files.pythonhosted.org/packages/7d/24/ce71dc08f06534269f66e73c04f5709ee024a1afe92a7b6e1d73f158e1f8/numpy-1.26.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7349ab0fa0c429c82442a27a9673fc802ffdb7c7775fad780226cb234965e53c", size = 20636301 }, + { url = "https://files.pythonhosted.org/packages/ae/8c/ab03a7c25741f9ebc92684a20125fbc9fc1b8e1e700beb9197d750fdff88/numpy-1.26.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:52b8b60467cd7dd1e9ed082188b4e6bb35aa5cdd01777621a1658910745b90be", size = 13971216 }, + { url = "https://files.pythonhosted.org/packages/6d/64/c3bcdf822269421d85fe0d64ba972003f9bb4aa9a419da64b86856c9961f/numpy-1.26.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d5241e0a80d808d70546c697135da2c613f30e28251ff8307eb72ba696945764", size = 14226281 }, + { url = "https://files.pythonhosted.org/packages/54/30/c2a907b9443cf42b90c17ad10c1e8fa801975f01cb9764f3f8eb8aea638b/numpy-1.26.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f870204a840a60da0b12273ef34f7051e98c3b5961b61b0c2c1be6dfd64fbcd3", size = 18249516 }, + { url = "https://files.pythonhosted.org/packages/43/12/01a563fc44c07095996d0129b8899daf89e4742146f7044cdbdb3101c57f/numpy-1.26.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:679b0076f67ecc0138fd2ede3a8fd196dddc2ad3254069bcb9faf9a79b1cebcd", size = 13882132 }, + { url = "https://files.pythonhosted.org/packages/16/ee/9df80b06680aaa23fc6c31211387e0db349e0e36d6a63ba3bd78c5acdf11/numpy-1.26.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:47711010ad8555514b434df65f7d7b076bb8261df1ca9bb78f53d3b2db02e95c", size = 18084181 }, + { url = "https://files.pythonhosted.org/packages/28/7d/4b92e2fe20b214ffca36107f1a3e75ef4c488430e64de2d9af5db3a4637d/numpy-1.26.4-cp39-cp39-win32.whl", hash = "sha256:a354325ee03388678242a4d7ebcd08b5c727033fcff3b2f536aea978e15ee9e6", size = 5976360 }, + { url = "https://files.pythonhosted.org/packages/b5/42/054082bd8220bbf6f297f982f0a8f5479fcbc55c8b511d928df07b965869/numpy-1.26.4-cp39-cp39-win_amd64.whl", hash = "sha256:3373d5d70a5fe74a2c1bb6d2cfd9609ecf686d47a2d7b1d37a8f3b6bf6003aea", size = 15814633 }, + { url = "https://files.pythonhosted.org/packages/3f/72/3df6c1c06fc83d9cfe381cccb4be2532bbd38bf93fbc9fad087b6687f1c0/numpy-1.26.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:afedb719a9dcfc7eaf2287b839d8198e06dcd4cb5d276a3df279231138e83d30", size = 20455961 }, + { url = "https://files.pythonhosted.org/packages/8e/02/570545bac308b58ffb21adda0f4e220ba716fb658a63c151daecc3293350/numpy-1.26.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95a7476c59002f2f6c590b9b7b998306fba6a5aa646b1e22ddfeaf8f78c3a29c", size = 18061071 }, + { url = "https://files.pythonhosted.org/packages/f4/5f/fafd8c51235f60d49f7a88e2275e13971e90555b67da52dd6416caec32fe/numpy-1.26.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7e50d0a0cc3189f9cb0aeb3a6a6af18c16f59f004b866cd2be1c14b36134a4a0", size = 15709730 }, +] + +[[package]] +name = "nvidia-cublas-cu12" +version = "12.1.3.1" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/37/6d/121efd7382d5b0284239f4ab1fc1590d86d34ed4a4a2fdb13b30ca8e5740/nvidia_cublas_cu12-12.1.3.1-py3-none-manylinux1_x86_64.whl", hash = "sha256:ee53ccca76a6fc08fb9701aa95b6ceb242cdaab118c3bb152af4e579af792728", size = 410594774 }, + { url = "https://files.pythonhosted.org/packages/c5/ef/32a375b74bea706c93deea5613552f7c9104f961b21df423f5887eca713b/nvidia_cublas_cu12-12.1.3.1-py3-none-win_amd64.whl", hash = "sha256:2b964d60e8cf11b5e1073d179d85fa340c120e99b3067558f3cf98dd69d02906", size = 439918445 }, +] + +[[package]] +name = "nvidia-cuda-cupti-cu12" +version = "12.1.105" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/00/6b218edd739ecfc60524e585ba8e6b00554dd908de2c9c66c1af3e44e18d/nvidia_cuda_cupti_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:e54fde3983165c624cb79254ae9818a456eb6e87a7fd4d56a2352c24ee542d7e", size = 14109015 }, + { url = "https://files.pythonhosted.org/packages/d0/56/0021e32ea2848c24242f6b56790bd0ccc8bf99f973ca790569c6ca028107/nvidia_cuda_cupti_cu12-12.1.105-py3-none-win_amd64.whl", hash = "sha256:bea8236d13a0ac7190bd2919c3e8e6ce1e402104276e6f9694479e48bb0eb2a4", size = 10154340 }, +] + +[[package]] +name = "nvidia-cuda-nvrtc-cu12" +version = "12.1.105" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/9f/c64c03f49d6fbc56196664d05dba14e3a561038a81a638eeb47f4d4cfd48/nvidia_cuda_nvrtc_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:339b385f50c309763ca65456ec75e17bbefcbbf2893f462cb8b90584cd27a1c2", size = 23671734 }, + { url = "https://files.pythonhosted.org/packages/ad/1d/f76987c4f454eb86e0b9a0e4f57c3bf1ac1d13ad13cd1a4da4eb0e0c0ce9/nvidia_cuda_nvrtc_cu12-12.1.105-py3-none-win_amd64.whl", hash = "sha256:0a98a522d9ff138b96c010a65e145dc1b4850e9ecb75a0172371793752fd46ed", size = 19331863 }, +] + +[[package]] +name = "nvidia-cuda-runtime-cu12" +version = "12.1.105" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/eb/d5/c68b1d2cdfcc59e72e8a5949a37ddb22ae6cade80cd4a57a84d4c8b55472/nvidia_cuda_runtime_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:6e258468ddf5796e25f1dc591a31029fa317d97a0a94ed93468fc86301d61e40", size = 823596 }, + { url = "https://files.pythonhosted.org/packages/9f/e2/7a2b4b5064af56ea8ea2d8b2776c0f2960d95c88716138806121ae52a9c9/nvidia_cuda_runtime_cu12-12.1.105-py3-none-win_amd64.whl", hash = "sha256:dfb46ef84d73fababab44cf03e3b83f80700d27ca300e537f85f636fac474344", size = 821226 }, +] + +[[package]] +name = "nvidia-cudnn-cu12" +version = "9.1.0.70" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-cublas-cu12", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/9f/fd/713452cd72343f682b1c7b9321e23829f00b842ceaedcda96e742ea0b0b3/nvidia_cudnn_cu12-9.1.0.70-py3-none-manylinux2014_x86_64.whl", hash = "sha256:165764f44ef8c61fcdfdfdbe769d687e06374059fbb388b6c89ecb0e28793a6f", size = 664752741 }, + { url = "https://files.pythonhosted.org/packages/3f/d0/f90ee6956a628f9f04bf467932c0a25e5a7e706a684b896593c06c82f460/nvidia_cudnn_cu12-9.1.0.70-py3-none-win_amd64.whl", hash = "sha256:6278562929433d68365a07a4a1546c237ba2849852c0d4b2262a486e805b977a", size = 679925892 }, +] + +[[package]] +name = "nvidia-cufft-cu12" +version = "11.0.2.54" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/86/94/eb540db023ce1d162e7bea9f8f5aa781d57c65aed513c33ee9a5123ead4d/nvidia_cufft_cu12-11.0.2.54-py3-none-manylinux1_x86_64.whl", hash = "sha256:794e3948a1aa71fd817c3775866943936774d1c14e7628c74f6f7417224cdf56", size = 121635161 }, + { url = "https://files.pythonhosted.org/packages/f7/57/7927a3aa0e19927dfed30256d1c854caf991655d847a4e7c01fe87e3d4ac/nvidia_cufft_cu12-11.0.2.54-py3-none-win_amd64.whl", hash = "sha256:d9ac353f78ff89951da4af698f80870b1534ed69993f10a4cf1d96f21357e253", size = 121344196 }, +] + +[[package]] +name = "nvidia-curand-cu12" +version = "10.3.2.106" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/44/31/4890b1c9abc496303412947fc7dcea3d14861720642b49e8ceed89636705/nvidia_curand_cu12-10.3.2.106-py3-none-manylinux1_x86_64.whl", hash = "sha256:9d264c5036dde4e64f1de8c50ae753237c12e0b1348738169cd0f8a536c0e1e0", size = 56467784 }, + { url = "https://files.pythonhosted.org/packages/5c/97/4c9c7c79efcdf5b70374241d48cf03b94ef6707fd18ea0c0f53684931d0b/nvidia_curand_cu12-10.3.2.106-py3-none-win_amd64.whl", hash = "sha256:75b6b0c574c0037839121317e17fd01f8a69fd2ef8e25853d826fec30bdba74a", size = 55995813 }, +] + +[[package]] +name = "nvidia-cusolver-cu12" +version = "11.4.5.107" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-cublas-cu12", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "nvidia-cusparse-cu12", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "nvidia-nvjitlink-cu12", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/bc/1d/8de1e5c67099015c834315e333911273a8c6aaba78923dd1d1e25fc5f217/nvidia_cusolver_cu12-11.4.5.107-py3-none-manylinux1_x86_64.whl", hash = "sha256:8a7ec542f0412294b15072fa7dab71d31334014a69f953004ea7a118206fe0dd", size = 124161928 }, + { url = "https://files.pythonhosted.org/packages/b8/80/8fca0bf819122a631c3976b6fc517c1b10741b643b94046bd8dd451522c5/nvidia_cusolver_cu12-11.4.5.107-py3-none-win_amd64.whl", hash = "sha256:74e0c3a24c78612192a74fcd90dd117f1cf21dea4822e66d89e8ea80e3cd2da5", size = 121643081 }, +] + +[[package]] +name = "nvidia-cusparse-cu12" +version = "12.1.0.106" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-nvjitlink-cu12", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/65/5b/cfaeebf25cd9fdec14338ccb16f6b2c4c7fa9163aefcf057d86b9cc248bb/nvidia_cusparse_cu12-12.1.0.106-py3-none-manylinux1_x86_64.whl", hash = "sha256:f3b50f42cf363f86ab21f720998517a659a48131e8d538dc02f8768237bd884c", size = 195958278 }, + { url = "https://files.pythonhosted.org/packages/0f/95/48fdbba24c93614d1ecd35bc6bdc6087bd17cbacc3abc4b05a9c2a1ca232/nvidia_cusparse_cu12-12.1.0.106-py3-none-win_amd64.whl", hash = "sha256:b798237e81b9719373e8fae8d4f091b70a0cf09d9d85c95a557e11df2d8e9a5a", size = 195414588 }, +] + +[[package]] +name = "nvidia-ml-py" +version = "12.555.43" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ee/c6/2348fc1fb776ff41a34635fb1f18010a6d6fd7ba6e57184dabd9d98ba9cf/nvidia-ml-py-12.555.43.tar.gz", hash = "sha256:e9e7f12ef1ec234bb0dc22d2bdc762ffafab394bdc472a07a4377c95bbf93afe", size = 38214 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/50/13/fcc6b604dea9782d69e675b1481af16e9a02c44d1d43819af209b0a1e6bb/nvidia_ml_py-12.555.43-py3-none-any.whl", hash = "sha256:b89ba66e8ba8032fdbbaa907323f248be0ed001e106f814a1e1137e58eba2a80", size = 39552 }, +] + +[[package]] +name = "nvidia-nccl-cu12" +version = "2.20.5" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c1/bb/d09dda47c881f9ff504afd6f9ca4f502ded6d8fc2f572cacc5e39da91c28/nvidia_nccl_cu12-2.20.5-py3-none-manylinux2014_aarch64.whl", hash = "sha256:1fc150d5c3250b170b29410ba682384b14581db722b2531b0d8d33c595f33d01", size = 176238458 }, + { url = "https://files.pythonhosted.org/packages/4b/2a/0a131f572aa09f741c30ccd45a8e56316e8be8dfc7bc19bf0ab7cfef7b19/nvidia_nccl_cu12-2.20.5-py3-none-manylinux2014_x86_64.whl", hash = "sha256:057f6bf9685f75215d0c53bf3ac4a10b3e6578351de307abad9e18a99182af56", size = 176249402 }, +] + +[[package]] +name = "nvidia-nvjitlink-cu12" +version = "12.6.20" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/81/b3/e456a1b2d499bb84bdc6670bfbcf41ff3bac58bd2fae6880d62834641558/nvidia_nvjitlink_cu12-12.6.20-py3-none-manylinux2014_aarch64.whl", hash = "sha256:84fb38465a5bc7c70cbc320cfd0963eb302ee25a5e939e9f512bbba55b6072fb", size = 19252608 }, + { url = "https://files.pythonhosted.org/packages/59/65/7ff0569494fbaea45ad2814972cc88da843d53cc96eb8554fcd0908941d9/nvidia_nvjitlink_cu12-12.6.20-py3-none-manylinux2014_x86_64.whl", hash = "sha256:562ab97ea2c23164823b2a89cb328d01d45cb99634b8c65fe7cd60d14562bd79", size = 19724950 }, + { url = "https://files.pythonhosted.org/packages/cb/ef/8f96c82e1cfcf6d5b770f7b043c3cc24841fc247b37629a7cc643dbf72a1/nvidia_nvjitlink_cu12-12.6.20-py3-none-win_amd64.whl", hash = "sha256:ed3c43a17f37b0c922a919203d2d36cbef24d41cc3e6b625182f8b58203644f6", size = 162012830 }, +] + +[[package]] +name = "nvidia-nvtx-cu12" +version = "12.1.105" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/da/d3/8057f0587683ed2fcd4dbfbdfdfa807b9160b809976099d36b8f60d08f03/nvidia_nvtx_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:dc21cf308ca5691e7c04d962e213f8a4aa9bbfa23d95412f452254c2caeb09e5", size = 99138 }, + { url = "https://files.pythonhosted.org/packages/b8/d7/bd7cb2d95ac6ac6e8d05bfa96cdce69619f1ef2808e072919044c2d47a8c/nvidia_nvtx_cu12-12.1.105-py3-none-win_amd64.whl", hash = "sha256:65f4d98982b31b60026e0e6de73fbdfc09d08a96f4656dd3665ca616a11e1e82", size = 66307 }, +] + +[[package]] +name = "oauthlib" +version = "3.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6d/fa/fbf4001037904031639e6bfbfc02badfc7e12f137a8afa254df6c4c8a670/oauthlib-3.2.2.tar.gz", hash = "sha256:9859c40929662bec5d64f34d01c99e093149682a3f38915dc0655d5a633dd918", size = 177352 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/80/cab10959dc1faead58dc8384a781dfbf93cb4d33d50988f7a69f1b7c9bbe/oauthlib-3.2.2-py3-none-any.whl", hash = "sha256:8139f29aac13e25d502680e9e19963e83f16838d48a0d71c287fe40e7067fbca", size = 151688 }, +] + +[[package]] +name = "onnx" +version = "1.16.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d8/83/09d7715612f72236b439eba6ebfecdaac59d99562dfc1d7a90dddb6168e1/onnx-1.16.2.tar.gz", hash = "sha256:b33a282b038813c4b69e73ea65c2909768e8dd6cc10619b70632335daf094646", size = 12308861 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/49/0c/f5b531a10344648ef577d0c3eca70fa40156928f1f927237eb6f107c74bb/onnx-1.16.2-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:ab0a1aa6b0470020ea3636afdce3e2a67f856fefe4be8c73b20371b07fcde69c", size = 16505840 }, + { url = "https://files.pythonhosted.org/packages/c2/8f/65582450430242811ec955806a870437a9d66f9dceccd53d05dd902d76ad/onnx-1.16.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a449122a49534bb9c2b6f16c8493b606ef0accda6b9dbf0c513ca4b31ebe8b38", size = 15793170 }, + { url = "https://files.pythonhosted.org/packages/f5/3d/d28484e5d87d4500db0d3b44836d9cd31d88f1efbe168356dbb1dd4f2571/onnx-1.16.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec6a425e59291fff430da4a884aa07a1d0cbb5dcd22cc78f6cf4ba5adb9f3367", size = 15924158 }, + { url = "https://files.pythonhosted.org/packages/c7/b9/0588350b9c779246a4f0302961e7b065c181fee70bb4a1219f13e4698fc1/onnx-1.16.2-cp310-cp310-win32.whl", hash = "sha256:55fbaf38acd4cd8fdd0b4f36871fb596b075518d3e981acc893f2ab887d1891a", size = 14337983 }, + { url = "https://files.pythonhosted.org/packages/0c/e4/1bc3ae56e6581587926a50a5c9dce3cfacf510e592e2512c7f5f2a9a4859/onnx-1.16.2-cp310-cp310-win_amd64.whl", hash = "sha256:4e496d301756e0a22fd2bdfac24b861c7b1ddbdd9ce7677b2a252c00c4c8f2a7", size = 14440121 }, + { url = "https://files.pythonhosted.org/packages/ea/d0/b6e02665c3e7ec097f194a75afc16698ce7729b810f0e67ac085a735f6e5/onnx-1.16.2-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:859b41574243c9bfd0abce03c15c78a1f270cc03c7f99629b984daf7adfa5003", size = 16505840 }, + { url = "https://files.pythonhosted.org/packages/82/fc/04b03e31b6741c3b430d04cfa055660242eba800e15c1c3394db3082098d/onnx-1.16.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:39a57d196fe5d73861e70d9625674e6caf8ca13c5e9c740462cf530a07cd2e1c", size = 15793427 }, + { url = "https://files.pythonhosted.org/packages/0b/8b/443486985df06b2e934d1a833f44786f22af06f2ba144ec5ce61f63beb2e/onnx-1.16.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7b98aa9733bd4b781eb931d33b4078ff2837e7d68062460726d6dd011f332bd4", size = 15924140 }, + { url = "https://files.pythonhosted.org/packages/de/20/74f04969a7d0112ce261e549a8b776bf0a262dc109c1e5e70b794ebecedb/onnx-1.16.2-cp311-cp311-win32.whl", hash = "sha256:e9f018b2e172efeea8c2473a51a825652767726374145d7cfdebdc7a27446fdd", size = 14338020 }, + { url = "https://files.pythonhosted.org/packages/41/d3/6f18b81626b9bc7f53f85e766fb688026e803da4ff20160afd80172542e7/onnx-1.16.2-cp311-cp311-win_amd64.whl", hash = "sha256:e66e4512a30df8916db5cf84f47d47b3250b9ab9a98d9cffe142c98c54598ba0", size = 14439804 }, + { url = "https://files.pythonhosted.org/packages/8c/a4/bd05b4a952d07a12c42206ea67fe855e633bb455c6128e388f3d66b46a7e/onnx-1.16.2-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:bfdb8c2eb4c92f55626376e00993db8fcc753da4b80babf28d99636af8dbae6b", size = 16510753 }, + { url = "https://files.pythonhosted.org/packages/8f/3d/6d623912bd7262abba8f7d1b2930896c8ccc3e11eda668b27d28e43c7705/onnx-1.16.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9b77a6c138f284dfc9b06fa370768aa4fd167efc49ff740e2158dd02eedde8d0", size = 15791696 }, + { url = "https://files.pythonhosted.org/packages/bb/2a/68851578adab1fd8abc4418c29f9944ad3d653452db76269c87f42ebe7e3/onnx-1.16.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ca12e47965e590b63f31681c8c563c75449a04178f27eac1ff64bad314314fb3", size = 15923654 }, + { url = "https://files.pythonhosted.org/packages/76/54/f909b428ab922cf9f3b1deec372173a0f4be313ae249b44c2db627a1f3e9/onnx-1.16.2-cp312-cp312-win32.whl", hash = "sha256:324fe3551e91ffd74b43dbcf1d48e96579f4c1be2ff1224591ecd3ec6daa6139", size = 14338109 }, + { url = "https://files.pythonhosted.org/packages/2b/66/121875d593a51ffd7a35315855c0e09ceca43c0bfe0e98af72053cc83682/onnx-1.16.2-cp312-cp312-win_amd64.whl", hash = "sha256:080b19b0bd2b5536b4c61812464fe495758d6c9cfed3fdd3f20516e616212bee", size = 14441282 }, + { url = "https://files.pythonhosted.org/packages/4e/35/abbf2fa3dbb96b430f6e810e3fb7bc042ed150f371cb1aedb47052c40f8e/onnx-1.16.2-cp39-cp39-macosx_11_0_universal2.whl", hash = "sha256:e79edba750ae06059d82d8ff8129a6488a7e692cd23cd7fe010f7ec7d6a14bad", size = 16506179 }, + { url = "https://files.pythonhosted.org/packages/64/fd/f38042d1e807cc0c6fbd8663b8aef6f2a08d87ee71669ff6130e4e550b39/onnx-1.16.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2d192db8501103fede9c1725861e65ed41efb65da1ce915ba969aae40073eb94", size = 15793392 }, + { url = "https://files.pythonhosted.org/packages/0b/c2/b7583750a65df9f47cd3ec6d16b92762807859d860d4c658ab205b978710/onnx-1.16.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da01d4a3bd7a0d0ee5084f65441fc9ca38450fc18835b7f9d5da5b9e7ca8b85d", size = 15924625 }, + { url = "https://files.pythonhosted.org/packages/cb/0d/22769fa03571ce4e8fa23e359a91e24c38be5ca1192267878e627473b8a7/onnx-1.16.2-cp39-cp39-win32.whl", hash = "sha256:0b765b09bdb01fa2338ea52483aa3d9c75e249f85446f0d9ad1dc5bd2b149082", size = 14338210 }, + { url = "https://files.pythonhosted.org/packages/d4/29/03f15191571fdef99d6e3f641e6385159d4bc826cdcad9b819b48fb30455/onnx-1.16.2-cp39-cp39-win_amd64.whl", hash = "sha256:bfee781a59919e797f4dae380e63a0390ec01ce5c337a1459b992aac2f49a3c2", size = 14435298 }, +] + +[[package]] +name = "onnxconverter-common" +version = "1.13.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnx", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ec/44/54c6b7f1a28d919a15caf642113fb44651087d1bb0658f028c54b93df8e3/onnxconverter-common-1.13.0.tar.gz", hash = "sha256:03db8a6033a3d6590f22df3f64234079caa826375d1fcb0b37b8123c06bf598c", size = 73935 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/51/a4/4439174c879c33557eab08e4dd480c1e096bc26c487c85a62e4c0d8f78ff/onnxconverter_common-1.13.0-py2.py3-none-any.whl", hash = "sha256:5ee1c025ef6c3b4abaede8425bc6b393248941a6cf8c21563d0d0e3f04634a0a", size = 83796 }, +] + +[[package]] +name = "onnxruntime" +version = "1.18.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "coloredlogs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "flatbuffers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sympy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/02/83/b72ef2d6cc8f8b4d60bc6b41641eaa8975c5f968a49bc69ff3c5e9b28b7f/onnxruntime-1.18.1-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:29ef7683312393d4ba04252f1b287d964bd67d5e6048b94d2da3643986c74d80", size = 15892232 }, + { url = "https://files.pythonhosted.org/packages/cd/ef/4f4e45d49c2587080f0252dba644620a9808e2d19591bb0b327650ace6b6/onnxruntime-1.18.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:fc706eb1df06ddf55776e15a30519fb15dda7697f987a2bbda4962845e3cec05", size = 6013528 }, + { url = "https://files.pythonhosted.org/packages/04/da/cd671caf4231942c4f68bf0dc1a959303df91dfd0e1d55c556b924d8e68e/onnxruntime-1.18.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b7de69f5ced2a263531923fa68bbec52a56e793b802fcd81a03487b5e292bc3a", size = 6788962 }, + { url = "https://files.pythonhosted.org/packages/63/ea/7f1396f7279073e1288e1d39874f39999ee7ea5b2f3f5ad838214b4a3620/onnxruntime-1.18.1-cp310-cp310-win32.whl", hash = "sha256:221e5b16173926e6c7de2cd437764492aa12b6811f45abd37024e7cf2ae5d7e3", size = 5069833 }, + { url = "https://files.pythonhosted.org/packages/74/8e/0db236760a60ba59fac48e253c2c645bfd7d6ade58d4ce796b645d73e2de/onnxruntime-1.18.1-cp310-cp310-win_amd64.whl", hash = "sha256:75211b619275199c861ee94d317243b8a0fcde6032e5a80e1aa9ded8ab4c6060", size = 5581426 }, + { url = "https://files.pythonhosted.org/packages/d7/ae/e257a5ffa4ef84e51255a38b62b4fdb538d92455e1f0f0ad056074f89c94/onnxruntime-1.18.1-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:f26582882f2dc581b809cfa41a125ba71ad9e715738ec6402418df356969774a", size = 15892594 }, + { url = "https://files.pythonhosted.org/packages/54/4b/f4c52a6b5e62f98f852a946fefc48f12d5838652eb7da5c300dc27a80ba4/onnxruntime-1.18.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ef36f3a8b768506d02be349ac303fd95d92813ba3ba70304d40c3cd5c25d6a4c", size = 6010462 }, + { url = "https://files.pythonhosted.org/packages/dd/ae/163375ec2b6aee385c26889b4a0bd4546133b1da7c66285ef8db180781c5/onnxruntime-1.18.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:170e711393e0618efa8ed27b59b9de0ee2383bd2a1f93622a97006a5ad48e434", size = 6794885 }, + { url = "https://files.pythonhosted.org/packages/25/76/3a3007573abd458c22453838c8620d2b37e14ca82b92c8fa7a85b620d031/onnxruntime-1.18.1-cp311-cp311-win32.whl", hash = "sha256:9b6a33419b6949ea34e0dc009bc4470e550155b6da644571ecace4b198b0d88f", size = 5069708 }, + { url = "https://files.pythonhosted.org/packages/99/b2/488704f6298ac249015f65b64c24bf5611fcf2594ab0e75fa6bcce5e873f/onnxruntime-1.18.1-cp311-cp311-win_amd64.whl", hash = "sha256:5c1380a9f1b7788da742c759b6a02ba771fe1ce620519b2b07309decbd1a2fe1", size = 5581717 }, + { url = "https://files.pythonhosted.org/packages/23/e9/8a2d3e5521b896d6483b101cd698912f9ad19b26314b0c671d98656d028c/onnxruntime-1.18.1-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:31bd57a55e3f983b598675dfc7e5d6f0877b70ec9864b3cc3c3e1923d0a01919", size = 15909435 }, + { url = "https://files.pythonhosted.org/packages/bf/75/305c44288ad9733d4209c8c5cb7eba6f09f25462bf2d64bbdfca742585c3/onnxruntime-1.18.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b9e03c4ba9f734500691a4d7d5b381cd71ee2f3ce80a1154ac8f7aed99d1ecaa", size = 6007788 }, + { url = "https://files.pythonhosted.org/packages/a3/0a/89bc7acdf7b311ec5cdf6c01983e8ecb23f7b1ba7a1b2d2fd10d33dfd24a/onnxruntime-1.18.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:781aa9873640f5df24524f96f6070b8c550c66cb6af35710fd9f92a20b4bfbf6", size = 6793752 }, + { url = "https://files.pythonhosted.org/packages/b7/ea/8eac166b5903b1f0e6e08ff8c64986654b1b21e410b1f18c45e97a225a88/onnxruntime-1.18.1-cp312-cp312-win32.whl", hash = "sha256:3a2d9ab6254ca62adbb448222e630dc6883210f718065063518c8f93a32432be", size = 5070749 }, + { url = "https://files.pythonhosted.org/packages/80/62/3f54fd70511e004869a2bc5c4ba4303a5b51b625ff81bd989c35d1d8086a/onnxruntime-1.18.1-cp312-cp312-win_amd64.whl", hash = "sha256:ad93c560b1c38c27c0275ffd15cd7f45b3ad3fc96653c09ce2931179982ff204", size = 5584630 }, + { url = "https://files.pythonhosted.org/packages/9c/95/b581d7e2134ef49d9f4d63bfd0aa7ad91e6c8fecf8ce71a229306a78857c/onnxruntime-1.18.1-cp39-cp39-macosx_11_0_universal2.whl", hash = "sha256:128df253ade673e60cea0955ec9d0e89617443a6d9ce47c2d79eb3f72a3be3de", size = 15893504 }, + { url = "https://files.pythonhosted.org/packages/5f/66/8a1deac3f16fad5fab4aedeea8d4a0baaafef0e16f7c5ae2e162f6af6d34/onnxruntime-1.18.1-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9839491e77e5c5a175cab3621e184d5a88925ee297ff4c311b68897197f4cde9", size = 5995471 }, + { url = "https://files.pythonhosted.org/packages/10/f5/67bd1b947bc4055ea62efd4b974cef51a8a6819ac4e8c61ca014901dbfd0/onnxruntime-1.18.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ad3187c1faff3ac15f7f0e7373ef4788c582cafa655a80fdbb33eaec88976c66", size = 6793994 }, + { url = "https://files.pythonhosted.org/packages/50/ea/4fb07d2a82d6b2782c98adcaea7d3e6b057b8e85c219f8d21e5ec72bc423/onnxruntime-1.18.1-cp39-cp39-win32.whl", hash = "sha256:34657c78aa4e0b5145f9188b550ded3af626651b15017bf43d280d7e23dbf195", size = 5070149 }, + { url = "https://files.pythonhosted.org/packages/da/5b/60dd8b3acf1230eb7093122f4fa621784ec4a7deaaf246456a4e2f0f0a25/onnxruntime-1.18.1-cp39-cp39-win_amd64.whl", hash = "sha256:9c14fd97c3ddfa97da5feef595e2c73f14c2d0ec1d4ecbea99c8d96603c89589", size = 5584248 }, +] + +[[package]] +name = "onnxruntime-tools" +version = "1.7.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "coloredlogs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnx", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "psutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "py-cpuinfo", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "py3nvml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/fd/b5/c36283fef3b1d492a39d1b5f3f195965fbf002b168633daad302c51d8f4c/onnxruntime_tools-1.7.0.tar.gz", hash = "sha256:6dbdcee49424e066bcd10357c37d51bc422ae26494e3c2f0c1970d534f967f6d", size = 141435 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6f/b0/db0e73356df0aaa8737e6f13c0dac499b5d904d3fa267c8ebf24515e8001/onnxruntime_tools-1.7.0-py3-none-any.whl", hash = "sha256:1dff888b5c482ac5bc627f12e108445fefcb3d600c43f63633975316fe617ad8", size = 212695 }, +] + +[[package]] +name = "opencv-python" +version = "4.10.0.84" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/4a/e7/b70a2d9ab205110d715906fc8ec83fbb00404aeb3a37a0654fdb68eb0c8c/opencv-python-4.10.0.84.tar.gz", hash = "sha256:72d234e4582e9658ffea8e9cae5b63d488ad06994ef12d81dc303b17472f3526", size = 95103981 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/66/82/564168a349148298aca281e342551404ef5521f33fba17b388ead0a84dc5/opencv_python-4.10.0.84-cp37-abi3-macosx_11_0_arm64.whl", hash = "sha256:fc182f8f4cda51b45f01c64e4cbedfc2f00aff799debebc305d8d0210c43f251", size = 54835524 }, + { url = "https://files.pythonhosted.org/packages/64/4a/016cda9ad7cf18c58ba074628a4eaae8aa55f3fd06a266398cef8831a5b9/opencv_python-4.10.0.84-cp37-abi3-macosx_12_0_x86_64.whl", hash = "sha256:71e575744f1d23f79741450254660442785f45a0797212852ee5199ef12eed98", size = 56475426 }, + { url = "https://files.pythonhosted.org/packages/81/e4/7a987ebecfe5ceaf32db413b67ff18eb3092c598408862fff4d7cc3fd19b/opencv_python-4.10.0.84-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:09a332b50488e2dda866a6c5573ee192fe3583239fb26ff2f7f9ceb0bc119ea6", size = 41746971 }, + { url = "https://files.pythonhosted.org/packages/3f/a4/d2537f47fd7fcfba966bd806e3ec18e7ee1681056d4b0a9c8d983983e4d5/opencv_python-4.10.0.84-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ace140fc6d647fbe1c692bcb2abce768973491222c067c131d80957c595b71f", size = 62548253 }, + { url = "https://files.pythonhosted.org/packages/1e/39/bbf57e7b9dab623e8773f6ff36385456b7ae7fa9357a5e53db732c347eac/opencv_python-4.10.0.84-cp37-abi3-win32.whl", hash = "sha256:2db02bb7e50b703f0a2d50c50ced72e95c574e1e5a0bb35a8a86d0b35c98c236", size = 28737688 }, + { url = "https://files.pythonhosted.org/packages/ec/6c/fab8113424af5049f85717e8e527ca3773299a3c6b02506e66436e19874f/opencv_python-4.10.0.84-cp37-abi3-win_amd64.whl", hash = "sha256:32dbbd94c26f611dc5cc6979e6b7aa1f55a64d6b463cc1dcd3c95505a63e48fe", size = 38842521 }, +] + +[[package]] +name = "opt-einsum" +version = "3.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7d/bf/9257e53a0e7715bc1127e15063e831f076723c6cd60985333a1c18878fb8/opt_einsum-3.3.0.tar.gz", hash = "sha256:59f6475f77bbc37dcf7cd748519c0ec60722e91e63ca114e68821c0c54a46549", size = 73951 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bc/19/404708a7e54ad2798907210462fd950c3442ea51acc8790f3da48d2bee8b/opt_einsum-3.3.0-py3-none-any.whl", hash = "sha256:2455e59e3947d3c275477df7f5205b30635e266fe6dc300e3d9f9646bfcea147", size = 65486 }, +] + +[[package]] +name = "optax" +version = "0.1.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "chex", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jaxlib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/9a/74/66b5c8c59b21017d50a04db5b2eca113418d35c99e17f7a62c76a22c8e88/optax-0.1.4.tar.gz", hash = "sha256:fb7a0550d57a6636164a3de25986a8a19be8ff6431fcdf1225b4e05175810f22", size = 116113 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2e/7a/53ab156dd30acd9b4039603ebe623e81783de33b33ed14bcd52a29c2eeef/optax-0.1.4-py3-none-any.whl", hash = "sha256:12fcf33bd682f9a162a3deb097f864130c3224d76771af2ba09410de80399a9b", size = 154872 }, +] + +[[package]] +name = "optuna" +version = "3.6.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "alembic", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "colorlog", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sqlalchemy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/dd/10/5e37d49c98d5aee9f4eb5eb0e0e24a8c6846dccb45586626127a0c157a85/optuna-3.6.1.tar.gz", hash = "sha256:146e530b57b4b9afd7526b3e642fbe65491f7e292b405913355f8e438e361ecf", size = 292748 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/15/da/68883911855d8b4d521f9a370e4e6aab8232b91c1d8d5a8348c4680c6642/optuna-3.6.1-py3-none-any.whl", hash = "sha256:b32e0490bd6552790b70ec94de77dd2855057c9e229cd9f4da48fe8a31c7f1cc", size = 380102 }, +] + +[[package]] +name = "orbax-checkpoint" +version = "0.5.16" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "etils", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "etils", extra = ["epath", "epy"] }, + { name = "jax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jaxlib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "msgpack", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "nest-asyncio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorstore", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/05/f3/39988acde4fa04b0017b8dec1c2cc4429c4d54830f418c80574ff6f6ff9b/orbax_checkpoint-0.5.16.tar.gz", hash = "sha256:c64d2a3ba6dd7e41330c3efd2bb669743480e62ad242eac5517e67369c26a38e", size = 160749 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/50/00/95794fe517d705c06b1918c4d32372d7476f81a2bfc6ed44f850bbe71ee2/orbax_checkpoint-0.5.16-py3-none-any.whl", hash = "sha256:1b4329ff477c59e061ac15bc09eea34a248f2048b1c5b43eae9b530e068e5974", size = 217032 }, +] + +[[package]] +name = "packaging" +version = "24.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/51/65/50db4dda066951078f0a96cf12f4b9ada6e4b811516bf0262c0f4f7064d4/packaging-24.1.tar.gz", hash = "sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002", size = 148788 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/08/aa/cc0199a5f0ad350994d660967a8efb233fe0416e4639146c089643407ce6/packaging-24.1-py3-none-any.whl", hash = "sha256:5b8f2217dbdbd2f7f384c41c628544e6d52f2d0f53c6d0c3ea61aa5d1d7ff124", size = 53985 }, +] + +[[package]] +name = "pandas" +version = "2.2.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version <= '3.11' or python_version >= '3.12'" }, + { name = "python-dateutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pytz", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tzdata", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/88/d9/ecf715f34c73ccb1d8ceb82fc01cd1028a65a5f6dbc57bfa6ea155119058/pandas-2.2.2.tar.gz", hash = "sha256:9e79019aba43cb4fda9e4d983f8e88ca0373adbb697ae9c6c43093218de28b54", size = 4398391 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/2d/39600d073ea70b9cafdc51fab91d69c72b49dd92810f24cb5ac6631f387f/pandas-2.2.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:90c6fca2acf139569e74e8781709dccb6fe25940488755716d1d354d6bc58bce", size = 12551798 }, + { url = "https://files.pythonhosted.org/packages/fd/4b/0cd38e68ab690b9df8ef90cba625bf3f93b82d1c719703b8e1b333b2c72d/pandas-2.2.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c7adfc142dac335d8c1e0dcbd37eb8617eac386596eb9e1a1b77791cf2498238", size = 11287392 }, + { url = "https://files.pythonhosted.org/packages/01/c6/d3d2612aea9b9f28e79a30b864835dad8f542dcf474eee09afeee5d15d75/pandas-2.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4abfe0be0d7221be4f12552995e58723c7422c80a659da13ca382697de830c08", size = 15634823 }, + { url = "https://files.pythonhosted.org/packages/89/1b/12521efcbc6058e2673583bb096c2b5046a9df39bd73eca392c1efed24e5/pandas-2.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8635c16bf3d99040fdf3ca3db669a7250ddf49c55dc4aa8fe0ae0fa8d6dcc1f0", size = 13032214 }, + { url = "https://files.pythonhosted.org/packages/e4/d7/303dba73f1c3a9ef067d23e5afbb6175aa25e8121be79be354dcc740921a/pandas-2.2.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:40ae1dffb3967a52203105a077415a86044a2bea011b5f321c6aa64b379a3f51", size = 16278302 }, + { url = "https://files.pythonhosted.org/packages/ba/df/8ff7c5ed1cc4da8c6ab674dc8e4860a4310c3880df1283e01bac27a4333d/pandas-2.2.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8e5a0b00e1e56a842f922e7fae8ae4077aee4af0acb5ae3622bd4b4c30aedf99", size = 13892866 }, + { url = "https://files.pythonhosted.org/packages/69/a6/81d5dc9a612cf0c1810c2ebc4f2afddb900382276522b18d128213faeae3/pandas-2.2.2-cp310-cp310-win_amd64.whl", hash = "sha256:ddf818e4e6c7c6f4f7c8a12709696d193976b591cc7dc50588d3d1a6b5dc8772", size = 11621592 }, + { url = "https://files.pythonhosted.org/packages/1b/70/61704497903d43043e288017cb2b82155c0d41e15f5c17807920877b45c2/pandas-2.2.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:696039430f7a562b74fa45f540aca068ea85fa34c244d0deee539cb6d70aa288", size = 12574808 }, + { url = "https://files.pythonhosted.org/packages/16/c6/75231fd47afd6b3f89011e7077f1a3958441264aca7ae9ff596e3276a5d0/pandas-2.2.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8e90497254aacacbc4ea6ae5e7a8cd75629d6ad2b30025a4a8b09aa4faf55151", size = 11304876 }, + { url = "https://files.pythonhosted.org/packages/97/2d/7b54f80b93379ff94afb3bd9b0cd1d17b48183a0d6f98045bc01ce1e06a7/pandas-2.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:58b84b91b0b9f4bafac2a0ac55002280c094dfc6402402332c0913a59654ab2b", size = 15602548 }, + { url = "https://files.pythonhosted.org/packages/fc/a5/4d82be566f069d7a9a702dcdf6f9106df0e0b042e738043c0cc7ddd7e3f6/pandas-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d2123dc9ad6a814bcdea0f099885276b31b24f7edf40f6cdbc0912672e22eee", size = 13031332 }, + { url = "https://files.pythonhosted.org/packages/92/a2/b79c48f530673567805e607712b29814b47dcaf0d167e87145eb4b0118c6/pandas-2.2.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:2925720037f06e89af896c70bca73459d7e6a4be96f9de79e2d440bd499fe0db", size = 16286054 }, + { url = "https://files.pythonhosted.org/packages/40/c7/47e94907f1d8fdb4868d61bd6c93d57b3784a964d52691b77ebfdb062842/pandas-2.2.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0cace394b6ea70c01ca1595f839cf193df35d1575986e484ad35c4aeae7266c1", size = 13879507 }, + { url = "https://files.pythonhosted.org/packages/ab/63/966db1321a0ad55df1d1fe51505d2cdae191b84c907974873817b0a6e849/pandas-2.2.2-cp311-cp311-win_amd64.whl", hash = "sha256:873d13d177501a28b2756375d59816c365e42ed8417b41665f346289adc68d24", size = 11634249 }, + { url = "https://files.pythonhosted.org/packages/dd/49/de869130028fb8d90e25da3b7d8fb13e40f5afa4c4af1781583eb1ff3839/pandas-2.2.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:9dfde2a0ddef507a631dc9dc4af6a9489d5e2e740e226ad426a05cabfbd7c8ef", size = 12500886 }, + { url = "https://files.pythonhosted.org/packages/db/7c/9a60add21b96140e22465d9adf09832feade45235cd22f4cb1668a25e443/pandas-2.2.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:e9b79011ff7a0f4b1d6da6a61aa1aa604fb312d6647de5bad20013682d1429ce", size = 11340320 }, + { url = "https://files.pythonhosted.org/packages/b0/85/f95b5f322e1ae13b7ed7e97bd999160fa003424711ab4dc8344b8772c270/pandas-2.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1cb51fe389360f3b5a4d57dbd2848a5f033350336ca3b340d1c53a1fad33bcad", size = 15204346 }, + { url = "https://files.pythonhosted.org/packages/40/10/79e52ef01dfeb1c1ca47a109a01a248754ebe990e159a844ece12914de83/pandas-2.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eee3a87076c0756de40b05c5e9a6069c035ba43e8dd71c379e68cab2c20f16ad", size = 12733396 }, + { url = "https://files.pythonhosted.org/packages/35/9d/208febf8c4eb5c1d9ea3314d52d8bd415fd0ef0dd66bb24cc5bdbc8fa71a/pandas-2.2.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:3e374f59e440d4ab45ca2fffde54b81ac3834cf5ae2cdfa69c90bc03bde04d76", size = 15858913 }, + { url = "https://files.pythonhosted.org/packages/99/d1/2d9bd05def7a9e08a92ec929b5a4c8d5556ec76fae22b0fa486cbf33ea63/pandas-2.2.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:43498c0bdb43d55cb162cdc8c06fac328ccb5d2eabe3cadeb3529ae6f0517c32", size = 13417786 }, + { url = "https://files.pythonhosted.org/packages/22/a5/a0b255295406ed54269814bc93723cfd1a0da63fb9aaf99e1364f07923e5/pandas-2.2.2-cp312-cp312-win_amd64.whl", hash = "sha256:d187d355ecec3629624fccb01d104da7d7f391db0311145817525281e2804d23", size = 11498828 }, + { url = "https://files.pythonhosted.org/packages/1b/cc/eb6ce83667131667c6561e009823e72aa5c76698e75552724bdfc8d1ef0b/pandas-2.2.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:0ca6377b8fca51815f382bd0b697a0814c8bda55115678cbc94c30aacbb6eff2", size = 12566406 }, + { url = "https://files.pythonhosted.org/packages/96/08/9ad65176f854fd5eb806a27da6e8b6c12d5ddae7ef3bd80d8b3009099333/pandas-2.2.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9057e6aa78a584bc93a13f0a9bf7e753a5e9770a30b4d758b8d5f2a62a9433cd", size = 11304008 }, + { url = "https://files.pythonhosted.org/packages/aa/30/5987c82fea318ac7d6bcd083c5b5259d4000e99dd29ae7a9357c65a1b17a/pandas-2.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:001910ad31abc7bf06f49dcc903755d2f7f3a9186c0c040b827e522e9cef0863", size = 15662279 }, + { url = "https://files.pythonhosted.org/packages/bb/30/f6f1f1ac36250f50c421b1b6af08c35e5a8b5a84385ef928625336b93e6f/pandas-2.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:66b479b0bd07204e37583c191535505410daa8df638fd8e75ae1b383851fe921", size = 13069490 }, + { url = "https://files.pythonhosted.org/packages/b5/27/76c1509f505d1f4cb65839352d099c90a13019371e90347166811aa6a075/pandas-2.2.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:a77e9d1c386196879aa5eb712e77461aaee433e54c68cf253053a73b7e49c33a", size = 16299412 }, + { url = "https://files.pythonhosted.org/packages/5d/11/a5a2f52936fba3afc42de35b19cae941284d973649cb6949bc41cc2e5901/pandas-2.2.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:92fd6b027924a7e178ac202cfbe25e53368db90d56872d20ffae94b96c7acc57", size = 13920884 }, + { url = "https://files.pythonhosted.org/packages/bf/2c/a0cee9c392a4c9227b835af27f9260582b994f9a2b5ec23993b596e5deb7/pandas-2.2.2-cp39-cp39-win_amd64.whl", hash = "sha256:640cef9aa381b60e296db324337a554aeeb883ead99dc8f6c18e81a93942f5f4", size = 11637580 }, +] + +[[package]] +name = "parameterized" +version = "0.9.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ea/49/00c0c0cc24ff4266025a53e41336b79adaa5a4ebfad214f433d623f9865e/parameterized-0.9.0.tar.gz", hash = "sha256:7fc905272cefa4f364c1a3429cbbe9c0f98b793988efb5bf90aac80f08db09b1", size = 24351 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/00/2f/804f58f0b856ab3bf21617cccf5b39206e6c4c94c2cd227bde125ea6105f/parameterized-0.9.0-py2.py3-none-any.whl", hash = "sha256:4e0758e3d41bea3bbd05ec14fc2c24736723f243b28d702081aef438c9372b1b", size = 20475 }, +] + +[[package]] +name = "pathos" +version = "0.2.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "dill", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "multiprocess", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pox", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ppft", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/66/74/2630ffec903fe3cb712f2c8a538d55422298a31461ff5370e9c6b97a93de/pathos-0.2.8.zip", hash = "sha256:1f0f27a90f7ab66c423ba796529000fde9360d17b2d8e50097641ff405fc6f15", size = 219791 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/23/6b/7ffe02bdb5f5cf4b2290cc906b415dde7c886dbb11928dda40d39e6654dd/pathos-0.2.8-py2.py3-none-any.whl", hash = "sha256:789ae53487e5f9393fcc2b9703188a1b97f20206c429654134a7152f591bafe7", size = 81688 }, +] + +[[package]] +name = "pathspec" +version = "0.12.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ca/bc/f35b8446f4531a7cb215605d100cd88b7ac6f44ab3fc94870c120ab3adbf/pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712", size = 51043 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl", hash = "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08", size = 31191 }, +] + +[[package]] +name = "phonemizer" +version = "3.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "dlinfo", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "joblib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "segments", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c4/ff/3574c55a71b42ad6944a5bf0a7d59f0251ea2ba47e51a5c4005e32e9145c/phonemizer-3.3.0.tar.gz", hash = "sha256:5e0c38122effe0b331a24e674aff256874ece169d70a9cf1120337b56f8e3d0c", size = 88564 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/23/e8d67c2052e132181c4c9027c2d8ed9e37e8acb27acfc13ed2d0c41ed850/phonemizer-3.3.0-py3-none-any.whl", hash = "sha256:17afaa98691fe73b025dd8d8727b0e67cc376c5e7ee27590853e457fb3f43602", size = 103800 }, +] + +[[package]] +name = "pillow" +version = "10.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cd/74/ad3d526f3bf7b6d3f408b73fde271ec69dfac8b81341a318ce825f2b3812/pillow-10.4.0.tar.gz", hash = "sha256:166c1cd4d24309b30d61f79f4a9114b7b2313d7450912277855ff5dfd7cd4a06", size = 46555059 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0e/69/a31cccd538ca0b5272be2a38347f8839b97a14be104ea08b0db92f749c74/pillow-10.4.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:4d9667937cfa347525b319ae34375c37b9ee6b525440f3ef48542fcf66f2731e", size = 3509271 }, + { url = "https://files.pythonhosted.org/packages/9a/9e/4143b907be8ea0bce215f2ae4f7480027473f8b61fcedfda9d851082a5d2/pillow-10.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:543f3dc61c18dafb755773efc89aae60d06b6596a63914107f75459cf984164d", size = 3375658 }, + { url = "https://files.pythonhosted.org/packages/8a/25/1fc45761955f9359b1169aa75e241551e74ac01a09f487adaaf4c3472d11/pillow-10.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7928ecbf1ece13956b95d9cbcfc77137652b02763ba384d9ab508099a2eca856", size = 4332075 }, + { url = "https://files.pythonhosted.org/packages/5e/dd/425b95d0151e1d6c951f45051112394f130df3da67363b6bc75dc4c27aba/pillow-10.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4d49b85c4348ea0b31ea63bc75a9f3857869174e2bf17e7aba02945cd218e6f", size = 4444808 }, + { url = "https://files.pythonhosted.org/packages/b1/84/9a15cc5726cbbfe7f9f90bfb11f5d028586595907cd093815ca6644932e3/pillow-10.4.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:6c762a5b0997f5659a5ef2266abc1d8851ad7749ad9a6a5506eb23d314e4f46b", size = 4356290 }, + { url = "https://files.pythonhosted.org/packages/b5/5b/6651c288b08df3b8c1e2f8c1152201e0b25d240e22ddade0f1e242fc9fa0/pillow-10.4.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:a985e028fc183bf12a77a8bbf36318db4238a3ded7fa9df1b9a133f1cb79f8fc", size = 4525163 }, + { url = "https://files.pythonhosted.org/packages/07/8b/34854bf11a83c248505c8cb0fcf8d3d0b459a2246c8809b967963b6b12ae/pillow-10.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:812f7342b0eee081eaec84d91423d1b4650bb9828eb53d8511bcef8ce5aecf1e", size = 4463100 }, + { url = "https://files.pythonhosted.org/packages/78/63/0632aee4e82476d9cbe5200c0cdf9ba41ee04ed77887432845264d81116d/pillow-10.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ac1452d2fbe4978c2eec89fb5a23b8387aba707ac72810d9490118817d9c0b46", size = 4592880 }, + { url = "https://files.pythonhosted.org/packages/df/56/b8663d7520671b4398b9d97e1ed9f583d4afcbefbda3c6188325e8c297bd/pillow-10.4.0-cp310-cp310-win32.whl", hash = "sha256:bcd5e41a859bf2e84fdc42f4edb7d9aba0a13d29a2abadccafad99de3feff984", size = 2235218 }, + { url = "https://files.pythonhosted.org/packages/f4/72/0203e94a91ddb4a9d5238434ae6c1ca10e610e8487036132ea9bf806ca2a/pillow-10.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:ecd85a8d3e79cd7158dec1c9e5808e821feea088e2f69a974db5edf84dc53141", size = 2554487 }, + { url = "https://files.pythonhosted.org/packages/bd/52/7e7e93d7a6e4290543f17dc6f7d3af4bd0b3dd9926e2e8a35ac2282bc5f4/pillow-10.4.0-cp310-cp310-win_arm64.whl", hash = "sha256:ff337c552345e95702c5fde3158acb0625111017d0e5f24bf3acdb9cc16b90d1", size = 2243219 }, + { url = "https://files.pythonhosted.org/packages/a7/62/c9449f9c3043c37f73e7487ec4ef0c03eb9c9afc91a92b977a67b3c0bbc5/pillow-10.4.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:0a9ec697746f268507404647e531e92889890a087e03681a3606d9b920fbee3c", size = 3509265 }, + { url = "https://files.pythonhosted.org/packages/f4/5f/491dafc7bbf5a3cc1845dc0430872e8096eb9e2b6f8161509d124594ec2d/pillow-10.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:dfe91cb65544a1321e631e696759491ae04a2ea11d36715eca01ce07284738be", size = 3375655 }, + { url = "https://files.pythonhosted.org/packages/73/d5/c4011a76f4207a3c151134cd22a1415741e42fa5ddecec7c0182887deb3d/pillow-10.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5dc6761a6efc781e6a1544206f22c80c3af4c8cf461206d46a1e6006e4429ff3", size = 4340304 }, + { url = "https://files.pythonhosted.org/packages/ac/10/c67e20445a707f7a610699bba4fe050583b688d8cd2d202572b257f46600/pillow-10.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e84b6cc6a4a3d76c153a6b19270b3526a5a8ed6b09501d3af891daa2a9de7d6", size = 4452804 }, + { url = "https://files.pythonhosted.org/packages/a9/83/6523837906d1da2b269dee787e31df3b0acb12e3d08f024965a3e7f64665/pillow-10.4.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:bbc527b519bd3aa9d7f429d152fea69f9ad37c95f0b02aebddff592688998abe", size = 4365126 }, + { url = "https://files.pythonhosted.org/packages/ba/e5/8c68ff608a4203085158cff5cc2a3c534ec384536d9438c405ed6370d080/pillow-10.4.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:76a911dfe51a36041f2e756b00f96ed84677cdeb75d25c767f296c1c1eda1319", size = 4533541 }, + { url = "https://files.pythonhosted.org/packages/f4/7c/01b8dbdca5bc6785573f4cee96e2358b0918b7b2c7b60d8b6f3abf87a070/pillow-10.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:59291fb29317122398786c2d44427bbd1a6d7ff54017075b22be9d21aa59bd8d", size = 4471616 }, + { url = "https://files.pythonhosted.org/packages/c8/57/2899b82394a35a0fbfd352e290945440e3b3785655a03365c0ca8279f351/pillow-10.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:416d3a5d0e8cfe4f27f574362435bc9bae57f679a7158e0096ad2beb427b8696", size = 4600802 }, + { url = "https://files.pythonhosted.org/packages/4d/d7/a44f193d4c26e58ee5d2d9db3d4854b2cfb5b5e08d360a5e03fe987c0086/pillow-10.4.0-cp311-cp311-win32.whl", hash = "sha256:7086cc1d5eebb91ad24ded9f58bec6c688e9f0ed7eb3dbbf1e4800280a896496", size = 2235213 }, + { url = "https://files.pythonhosted.org/packages/c1/d0/5866318eec2b801cdb8c82abf190c8343d8a1cd8bf5a0c17444a6f268291/pillow-10.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cbed61494057c0f83b83eb3a310f0bf774b09513307c434d4366ed64f4128a91", size = 2554498 }, + { url = "https://files.pythonhosted.org/packages/d4/c8/310ac16ac2b97e902d9eb438688de0d961660a87703ad1561fd3dfbd2aa0/pillow-10.4.0-cp311-cp311-win_arm64.whl", hash = "sha256:f5f0c3e969c8f12dd2bb7e0b15d5c468b51e5017e01e2e867335c81903046a22", size = 2243219 }, + { url = "https://files.pythonhosted.org/packages/05/cb/0353013dc30c02a8be34eb91d25e4e4cf594b59e5a55ea1128fde1e5f8ea/pillow-10.4.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:673655af3eadf4df6b5457033f086e90299fdd7a47983a13827acf7459c15d94", size = 3509350 }, + { url = "https://files.pythonhosted.org/packages/e7/cf/5c558a0f247e0bf9cec92bff9b46ae6474dd736f6d906315e60e4075f737/pillow-10.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:866b6942a92f56300012f5fbac71f2d610312ee65e22f1aa2609e491284e5597", size = 3374980 }, + { url = "https://files.pythonhosted.org/packages/84/48/6e394b86369a4eb68b8a1382c78dc092245af517385c086c5094e3b34428/pillow-10.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:29dbdc4207642ea6aad70fbde1a9338753d33fb23ed6956e706936706f52dd80", size = 4343799 }, + { url = "https://files.pythonhosted.org/packages/3b/f3/a8c6c11fa84b59b9df0cd5694492da8c039a24cd159f0f6918690105c3be/pillow-10.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf2342ac639c4cf38799a44950bbc2dfcb685f052b9e262f446482afaf4bffca", size = 4459973 }, + { url = "https://files.pythonhosted.org/packages/7d/1b/c14b4197b80150fb64453585247e6fb2e1d93761fa0fa9cf63b102fde822/pillow-10.4.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:f5b92f4d70791b4a67157321c4e8225d60b119c5cc9aee8ecf153aace4aad4ef", size = 4370054 }, + { url = "https://files.pythonhosted.org/packages/55/77/40daddf677897a923d5d33329acd52a2144d54a9644f2a5422c028c6bf2d/pillow-10.4.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:86dcb5a1eb778d8b25659d5e4341269e8590ad6b4e8b44d9f4b07f8d136c414a", size = 4539484 }, + { url = "https://files.pythonhosted.org/packages/40/54/90de3e4256b1207300fb2b1d7168dd912a2fb4b2401e439ba23c2b2cabde/pillow-10.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:780c072c2e11c9b2c7ca37f9a2ee8ba66f44367ac3e5c7832afcfe5104fd6d1b", size = 4477375 }, + { url = "https://files.pythonhosted.org/packages/13/24/1bfba52f44193860918ff7c93d03d95e3f8748ca1de3ceaf11157a14cf16/pillow-10.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:37fb69d905be665f68f28a8bba3c6d3223c8efe1edf14cc4cfa06c241f8c81d9", size = 4608773 }, + { url = "https://files.pythonhosted.org/packages/55/04/5e6de6e6120451ec0c24516c41dbaf80cce1b6451f96561235ef2429da2e/pillow-10.4.0-cp312-cp312-win32.whl", hash = "sha256:7dfecdbad5c301d7b5bde160150b4db4c659cee2b69589705b6f8a0c509d9f42", size = 2235690 }, + { url = "https://files.pythonhosted.org/packages/74/0a/d4ce3c44bca8635bd29a2eab5aa181b654a734a29b263ca8efe013beea98/pillow-10.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:1d846aea995ad352d4bdcc847535bd56e0fd88d36829d2c90be880ef1ee4668a", size = 2554951 }, + { url = "https://files.pythonhosted.org/packages/b5/ca/184349ee40f2e92439be9b3502ae6cfc43ac4b50bc4fc6b3de7957563894/pillow-10.4.0-cp312-cp312-win_arm64.whl", hash = "sha256:e553cad5179a66ba15bb18b353a19020e73a7921296a7979c4a2b7f6a5cd57f9", size = 2243427 }, + { url = "https://files.pythonhosted.org/packages/c3/00/706cebe7c2c12a6318aabe5d354836f54adff7156fd9e1bd6c89f4ba0e98/pillow-10.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8bc1a764ed8c957a2e9cacf97c8b2b053b70307cf2996aafd70e91a082e70df3", size = 3525685 }, + { url = "https://files.pythonhosted.org/packages/cf/76/f658cbfa49405e5ecbfb9ba42d07074ad9792031267e782d409fd8fe7c69/pillow-10.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6209bb41dc692ddfee4942517c19ee81b86c864b626dbfca272ec0f7cff5d9fb", size = 3374883 }, + { url = "https://files.pythonhosted.org/packages/46/2b/99c28c4379a85e65378211971c0b430d9c7234b1ec4d59b2668f6299e011/pillow-10.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bee197b30783295d2eb680b311af15a20a8b24024a19c3a26431ff83eb8d1f70", size = 4339837 }, + { url = "https://files.pythonhosted.org/packages/f1/74/b1ec314f624c0c43711fdf0d8076f82d9d802afd58f1d62c2a86878e8615/pillow-10.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1ef61f5dd14c300786318482456481463b9d6b91ebe5ef12f405afbba77ed0be", size = 4455562 }, + { url = "https://files.pythonhosted.org/packages/4a/2a/4b04157cb7b9c74372fa867096a1607e6fedad93a44deeff553ccd307868/pillow-10.4.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:297e388da6e248c98bc4a02e018966af0c5f92dfacf5a5ca22fa01cb3179bca0", size = 4366761 }, + { url = "https://files.pythonhosted.org/packages/ac/7b/8f1d815c1a6a268fe90481232c98dd0e5fa8c75e341a75f060037bd5ceae/pillow-10.4.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:e4db64794ccdf6cb83a59d73405f63adbe2a1887012e308828596100a0b2f6cc", size = 4536767 }, + { url = "https://files.pythonhosted.org/packages/e5/77/05fa64d1f45d12c22c314e7b97398ffb28ef2813a485465017b7978b3ce7/pillow-10.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:bd2880a07482090a3bcb01f4265f1936a903d70bc740bfcb1fd4e8a2ffe5cf5a", size = 4477989 }, + { url = "https://files.pythonhosted.org/packages/12/63/b0397cfc2caae05c3fb2f4ed1b4fc4fc878f0243510a7a6034ca59726494/pillow-10.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4b35b21b819ac1dbd1233317adeecd63495f6babf21b7b2512d244ff6c6ce309", size = 4610255 }, + { url = "https://files.pythonhosted.org/packages/7b/f9/cfaa5082ca9bc4a6de66ffe1c12c2d90bf09c309a5f52b27759a596900e7/pillow-10.4.0-cp313-cp313-win32.whl", hash = "sha256:551d3fd6e9dc15e4c1eb6fc4ba2b39c0c7933fa113b220057a34f4bb3268a060", size = 2235603 }, + { url = "https://files.pythonhosted.org/packages/01/6a/30ff0eef6e0c0e71e55ded56a38d4859bf9d3634a94a88743897b5f96936/pillow-10.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:030abdbe43ee02e0de642aee345efa443740aa4d828bfe8e2eb11922ea6a21ea", size = 2554972 }, + { url = "https://files.pythonhosted.org/packages/48/2c/2e0a52890f269435eee38b21c8218e102c621fe8d8df8b9dd06fabf879ba/pillow-10.4.0-cp313-cp313-win_arm64.whl", hash = "sha256:5b001114dd152cfd6b23befeb28d7aee43553e2402c9f159807bf55f33af8a8d", size = 2243375 }, + { url = "https://files.pythonhosted.org/packages/31/85/955fa5400fa8039921f630372cfe5056eed6e1b8e0430ee4507d7de48832/pillow-10.4.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:0ae24a547e8b711ccaaf99c9ae3cd975470e1a30caa80a6aaee9a2f19c05701d", size = 3509283 }, + { url = "https://files.pythonhosted.org/packages/23/9c/343827267eb28d41cd82b4180d33b10d868af9077abcec0af9793aa77d2d/pillow-10.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:298478fe4f77a4408895605f3482b6cc6222c018b2ce565c2b6b9c354ac3229b", size = 3375691 }, + { url = "https://files.pythonhosted.org/packages/60/a3/7ebbeabcd341eab722896d1a5b59a3df98c4b4d26cf4b0385f8aa94296f7/pillow-10.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:134ace6dc392116566980ee7436477d844520a26a4b1bd4053f6f47d096997fd", size = 4328295 }, + { url = "https://files.pythonhosted.org/packages/32/3f/c02268d0c6fb6b3958bdda673c17b315c821d97df29ae6969f20fb49388a/pillow-10.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:930044bb7679ab003b14023138b50181899da3f25de50e9dbee23b61b4de2126", size = 4440810 }, + { url = "https://files.pythonhosted.org/packages/67/5d/1c93c8cc35f2fdd3d6cc7e4ad72d203902859a2867de6ad957d9b708eb8d/pillow-10.4.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:c76e5786951e72ed3686e122d14c5d7012f16c8303a674d18cdcd6d89557fc5b", size = 4352283 }, + { url = "https://files.pythonhosted.org/packages/bc/a8/8655557c9c7202b8abbd001f61ff36711cefaf750debcaa1c24d154ef602/pillow-10.4.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:b2724fdb354a868ddf9a880cb84d102da914e99119211ef7ecbdc613b8c96b3c", size = 4521800 }, + { url = "https://files.pythonhosted.org/packages/58/78/6f95797af64d137124f68af1bdaa13b5332da282b86031f6fa70cf368261/pillow-10.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:dbc6ae66518ab3c5847659e9988c3b60dc94ffb48ef9168656e0019a93dbf8a1", size = 4459177 }, + { url = "https://files.pythonhosted.org/packages/8a/6d/2b3ce34f1c4266d79a78c9a51d1289a33c3c02833fe294ef0dcbb9cba4ed/pillow-10.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:06b2f7898047ae93fad74467ec3d28fe84f7831370e3c258afa533f81ef7f3df", size = 4589079 }, + { url = "https://files.pythonhosted.org/packages/e3/e0/456258c74da1ff5bf8ef1eab06a95ca994d8b9ed44c01d45c3f8cbd1db7e/pillow-10.4.0-cp39-cp39-win32.whl", hash = "sha256:7970285ab628a3779aecc35823296a7869f889b8329c16ad5a71e4901a3dc4ef", size = 2235247 }, + { url = "https://files.pythonhosted.org/packages/37/f8/bef952bdb32aa53741f58bf21798642209e994edc3f6598f337f23d5400a/pillow-10.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:961a7293b2457b405967af9c77dcaa43cc1a8cd50d23c532e62d48ab6cdd56f5", size = 2554479 }, + { url = "https://files.pythonhosted.org/packages/bb/8e/805201619cad6651eef5fc1fdef913804baf00053461522fabbc5588ea12/pillow-10.4.0-cp39-cp39-win_arm64.whl", hash = "sha256:32cda9e3d601a52baccb2856b8ea1fc213c90b340c542dcef77140dfa3278a9e", size = 2243226 }, + { url = "https://files.pythonhosted.org/packages/38/30/095d4f55f3a053392f75e2eae45eba3228452783bab3d9a920b951ac495c/pillow-10.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:5b4815f2e65b30f5fbae9dfffa8636d992d49705723fe86a3661806e069352d4", size = 3493889 }, + { url = "https://files.pythonhosted.org/packages/f3/e8/4ff79788803a5fcd5dc35efdc9386af153569853767bff74540725b45863/pillow-10.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:8f0aef4ef59694b12cadee839e2ba6afeab89c0f39a3adc02ed51d109117b8da", size = 3346160 }, + { url = "https://files.pythonhosted.org/packages/d7/ac/4184edd511b14f760c73f5bb8a5d6fd85c591c8aff7c2229677a355c4179/pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f4727572e2918acaa9077c919cbbeb73bd2b3ebcfe033b72f858fc9fbef0026", size = 3435020 }, + { url = "https://files.pythonhosted.org/packages/da/21/1749cd09160149c0a246a81d646e05f35041619ce76f6493d6a96e8d1103/pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ff25afb18123cea58a591ea0244b92eb1e61a1fd497bf6d6384f09bc3262ec3e", size = 3490539 }, + { url = "https://files.pythonhosted.org/packages/b6/f5/f71fe1888b96083b3f6dfa0709101f61fc9e972c0c8d04e9d93ccef2a045/pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:dc3e2db6ba09ffd7d02ae9141cfa0ae23393ee7687248d46a7507b75d610f4f5", size = 3476125 }, + { url = "https://files.pythonhosted.org/packages/96/b9/c0362c54290a31866c3526848583a2f45a535aa9d725fd31e25d318c805f/pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:02a2be69f9c9b8c1e97cf2713e789d4e398c751ecfd9967c18d0ce304efbf885", size = 3579373 }, + { url = "https://files.pythonhosted.org/packages/52/3b/ce7a01026a7cf46e5452afa86f97a5e88ca97f562cafa76570178ab56d8d/pillow-10.4.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:0755ffd4a0c6f267cccbae2e9903d95477ca2f77c4fcf3a3a09570001856c8a5", size = 2554661 }, + { url = "https://files.pythonhosted.org/packages/e1/1f/5a9fcd6ced51633c22481417e11b1b47d723f64fb536dfd67c015eb7f0ab/pillow-10.4.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:a02364621fe369e06200d4a16558e056fe2805d3468350df3aef21e00d26214b", size = 3493850 }, + { url = "https://files.pythonhosted.org/packages/cb/e6/3ea4755ed5320cb62aa6be2f6de47b058c6550f752dd050e86f694c59798/pillow-10.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:1b5dea9831a90e9d0721ec417a80d4cbd7022093ac38a568db2dd78363b00908", size = 3346118 }, + { url = "https://files.pythonhosted.org/packages/0a/22/492f9f61e4648422b6ca39268ec8139277a5b34648d28f400faac14e0f48/pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9b885f89040bb8c4a1573566bbb2f44f5c505ef6e74cec7ab9068c900047f04b", size = 3434958 }, + { url = "https://files.pythonhosted.org/packages/f9/19/559a48ad4045704bb0547965b9a9345f5cd461347d977a56d178db28819e/pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:87dd88ded2e6d74d31e1e0a99a726a6765cda32d00ba72dc37f0651f306daaa8", size = 3490340 }, + { url = "https://files.pythonhosted.org/packages/d9/de/cebaca6fb79905b3a1aa0281d238769df3fb2ede34fd7c0caa286575915a/pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:2db98790afc70118bd0255c2eeb465e9767ecf1f3c25f9a1abb8ffc8cfd1fe0a", size = 3476048 }, + { url = "https://files.pythonhosted.org/packages/71/f0/86d5b2f04693b0116a01d75302b0a307800a90d6c351a8aa4f8ae76cd499/pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:f7baece4ce06bade126fb84b8af1c33439a76d8a6fd818970215e0560ca28c27", size = 3579366 }, + { url = "https://files.pythonhosted.org/packages/37/ae/2dbfc38cc4fd14aceea14bc440d5151b21f64c4c3ba3f6f4191610b7ee5d/pillow-10.4.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:cfdd747216947628af7b259d274771d84db2268ca062dd5faf373639d00113a3", size = 2554652 }, +] + +[[package]] +name = "plac" +version = "1.4.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9b/79/1edb4c836c69306d0ecb0865f46d62ea7e28ef16b3f95bb394e4f2a46330/plac-1.4.3.tar.gz", hash = "sha256:d4cb3387b2113a28aebd509433d0264a4e5d9bb7c1a86db4fbd0a8f11af74eb3", size = 38984 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8f/af/4c61d2ac0d589719f548f5a1ba919738e44bac7b0c723ce147de5556d233/plac-1.4.3-py2.py3-none-any.whl", hash = "sha256:8a84fde8f950c9de6588a2d53c9deeac3ba1ddb456d887a33228460cf6549750", size = 22458 }, +] + +[[package]] +name = "platformdirs" +version = "4.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f5/52/0763d1d976d5c262df53ddda8d8d4719eedf9594d046f117c25a27261a19/platformdirs-4.2.2.tar.gz", hash = "sha256:38b7b51f512eed9e84a22788b4bce1de17c0adb134d6becb09836e37d8654cd3", size = 20916 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/68/13/2aa1f0e1364feb2c9ef45302f387ac0bd81484e9c9a4c5688a322fbdfd08/platformdirs-4.2.2-py3-none-any.whl", hash = "sha256:2d7a1657e36a80ea911db832a8a6ece5ee53d8de21edd5cc5879af6530b1bfee", size = 18146 }, +] + +[[package]] +name = "plotly" +version = "5.23.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tenacity", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/db/9e/31b2f0b8f2357cd5f3e992c76c3e4e85a5cbbad8b8c5f23d0684e3f4c608/plotly-5.23.0.tar.gz", hash = "sha256:89e57d003a116303a34de6700862391367dd564222ab71f8531df70279fc0193", size = 8553751 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b8/f0/bcf716a8e070370d6598c92fcd328bd9ef8a9bda2c5562da5a835c66700b/plotly-5.23.0-py3-none-any.whl", hash = "sha256:76cbe78f75eddc10c56f5a4ee3e7ccaade7c0a57465546f02098c0caed6c2d1a", size = 17326571 }, +] + +[[package]] +name = "pluggy" +version = "1.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/96/2d/02d4312c973c6050a18b314a5ad0b3210edb65a906f868e31c111dede4a6/pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1", size = 67955 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/5f/e351af9a41f866ac3f1fac4ca0613908d9a41741cfcf2228f4ad853b697d/pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669", size = 20556 }, +] + +[[package]] +name = "pooch" +version = "1.8.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "platformdirs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c6/77/b3d3e00c696c16cf99af81ef7b1f5fe73bd2a307abca41bd7605429fe6e5/pooch-1.8.2.tar.gz", hash = "sha256:76561f0de68a01da4df6af38e9955c4c9d1a5c90da73f7e40276a5728ec83d10", size = 59353 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a8/87/77cc11c7a9ea9fd05503def69e3d18605852cd0d4b0d3b8f15bbeb3ef1d1/pooch-1.8.2-py3-none-any.whl", hash = "sha256:3529a57096f7198778a5ceefd5ac3ef0e4d06a6ddaf9fc2d609b806f25302c47", size = 64574 }, +] + +[[package]] +name = "portalocker" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pywin32", marker = "platform_system == 'Windows'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/df/48/62cf97ff7d2233e7db29dfb83f1584e26289e88af8af39de1a76629ac487/portalocker-2.0.0.tar.gz", hash = "sha256:14487eed81aa914127edf0284e29c7ca8842c05bb33d96dc7e4bdb47282d26e4", size = 15204 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/89/a6/3814b7107e0788040870e8825eebf214d72166adf656ba7d4bf14759a06a/portalocker-2.0.0-py2.py3-none-any.whl", hash = "sha256:5d7bc386d785dfc87e763a29d7d5864556c62653379e3ff484c71e49425d1898", size = 11249 }, +] + +[[package]] +name = "pox" +version = "0.3.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/87/8c/6e1e0e919b64d1a3fe11f461a34e5d0c570c00051cde44828514917f9651/pox-0.3.4.tar.gz", hash = "sha256:16e6eca84f1bec3828210b06b052adf04cf2ab20c22fd6fbef5f78320c9a6fed", size = 119609 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e1/d7/9e73c32f73da71e8224b4cb861b5db50ebdebcdff14d3e3fb47a63c578b2/pox-0.3.4-py3-none-any.whl", hash = "sha256:651b8ae8a7b341b7bfd267f67f63106daeb9805f1ac11f323d5280d2da93fdb6", size = 29473 }, +] + +[[package]] +name = "poyo" +version = "0.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7d/56/01b496f36bbd496aed9351dd1b06cf57fd2f5028480a87adbcf7a4ff1f65/poyo-0.5.0.tar.gz", hash = "sha256:e26956aa780c45f011ca9886f044590e2d8fd8b61db7b1c1cf4e0869f48ed4dd", size = 15276 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/42/50/0b0820601bde2eda403f47b9a4a1f270098ed0dd4c00c443d883164bdccc/poyo-0.5.0-py2.py3-none-any.whl", hash = "sha256:3e2ca8e33fdc3c411cd101ca395668395dd5dc7ac775b8e809e3def9f9fe041a", size = 10183 }, +] + +[[package]] +name = "ppft" +version = "1.7.6.8" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f8/c1/6aa25972c1910cf120a6c82bf2fc67edfdd1375c26f75048aae769caccc1/ppft-1.7.6.8.tar.gz", hash = "sha256:76a429a7d7b74c4d743f6dba8351e58d62b6432ed65df9fe204790160dab996d", size = 136481 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ff/fa/5160c7d2fb1d4f2b83cba7a40f0eb4b015b78f6973b7ab6b2e73c233cfdc/ppft-1.7.6.8-py3-none-any.whl", hash = "sha256:de2dd4b1b080923dd9627fbdea52649fd741c752fce4f3cf37e26f785df23d9b", size = 56755 }, +] + +[[package]] +name = "protobuf" +version = "4.25.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e8/ab/cb61a4b87b2e7e6c312dce33602bd5884797fd054e0e53205f1c27cf0f66/protobuf-4.25.4.tar.gz", hash = "sha256:0dc4a62cc4052a036ee2204d26fe4d835c62827c855c8a03f29fe6da146b380d", size = 380283 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c8/43/27b48d9040763b78177d3083e16c70dba6e3c3ee2af64b659f6332c2b06e/protobuf-4.25.4-cp310-abi3-win32.whl", hash = "sha256:db9fd45183e1a67722cafa5c1da3e85c6492a5383f127c86c4c4aa4845867dc4", size = 392409 }, + { url = "https://files.pythonhosted.org/packages/0c/d4/589d673ada9c4c62d5f155218d7ff7ac796efb9c6af95b0bd29d438ae16e/protobuf-4.25.4-cp310-abi3-win_amd64.whl", hash = "sha256:ba3d8504116a921af46499471c63a85260c1a5fc23333154a427a310e015d26d", size = 413398 }, + { url = "https://files.pythonhosted.org/packages/34/ca/bf85ffe3dd16f1f2aaa6c006da8118800209af3da160ae4d4f47500eabd9/protobuf-4.25.4-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:eecd41bfc0e4b1bd3fa7909ed93dd14dd5567b98c941d6c1ad08fdcab3d6884b", size = 394160 }, + { url = "https://files.pythonhosted.org/packages/68/1d/e8961af9a8e534d66672318d6b70ea8e3391a6b13e16a29b039e4a99c214/protobuf-4.25.4-cp37-abi3-manylinux2014_aarch64.whl", hash = "sha256:4c8a70fdcb995dcf6c8966cfa3a29101916f7225e9afe3ced4395359955d3835", size = 293700 }, + { url = "https://files.pythonhosted.org/packages/ca/6c/cc7ab2fb3a4a7f07f211d8a7bbb76bba633eb09b148296dbd4281e217f95/protobuf-4.25.4-cp37-abi3-manylinux2014_x86_64.whl", hash = "sha256:3319e073562e2515c6ddc643eb92ce20809f5d8f10fead3332f71c63be6a7040", size = 294612 }, + { url = "https://files.pythonhosted.org/packages/a4/b5/f7e2460dec8347d67e6108bef6ad3291c76e38c898a1087e2c836c02951e/protobuf-4.25.4-cp39-cp39-win32.whl", hash = "sha256:90bf6fd378494eb698805bbbe7afe6c5d12c8e17fca817a646cd6a1818c696ca", size = 392490 }, + { url = "https://files.pythonhosted.org/packages/c7/0b/15bd1a224e5e5744a0dcccf11bcd5dc1405877be38e477b1359d7c2c3737/protobuf-4.25.4-cp39-cp39-win_amd64.whl", hash = "sha256:ac79a48d6b99dfed2729ccccee547b34a1d3d63289c71cef056653a846a2240f", size = 413357 }, + { url = "https://files.pythonhosted.org/packages/b5/95/0ba7f66934a0a798006f06fc3d74816da2b7a2bcfd9b98c53d26f684c89e/protobuf-4.25.4-py3-none-any.whl", hash = "sha256:bfbebc1c8e4793cfd58589acfb8a1026be0003e852b9da7db5a4285bde996978", size = 156464 }, +] + +[[package]] +name = "psutil" +version = "6.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/18/c7/8c6872f7372eb6a6b2e4708b88419fb46b857f7a2e1892966b851cc79fc9/psutil-6.0.0.tar.gz", hash = "sha256:8faae4f310b6d969fa26ca0545338b21f73c6b15db7c4a8d934a5482faa818f2", size = 508067 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c5/66/78c9c3020f573c58101dc43a44f6855d01bbbd747e24da2f0c4491200ea3/psutil-6.0.0-cp27-none-win32.whl", hash = "sha256:02b69001f44cc73c1c5279d02b30a817e339ceb258ad75997325e0e6169d8b35", size = 249766 }, + { url = "https://files.pythonhosted.org/packages/e1/3f/2403aa9558bea4d3854b0e5e567bc3dd8e9fbc1fc4453c0aa9aafeb75467/psutil-6.0.0-cp27-none-win_amd64.whl", hash = "sha256:21f1fb635deccd510f69f485b87433460a603919b45e2a324ad65b0cc74f8fb1", size = 253024 }, + { url = "https://files.pythonhosted.org/packages/0b/37/f8da2fbd29690b3557cca414c1949f92162981920699cd62095a984983bf/psutil-6.0.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:c588a7e9b1173b6e866756dde596fd4cad94f9399daf99ad8c3258b3cb2b47a0", size = 250961 }, + { url = "https://files.pythonhosted.org/packages/35/56/72f86175e81c656a01c4401cd3b1c923f891b31fbcebe98985894176d7c9/psutil-6.0.0-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ed2440ada7ef7d0d608f20ad89a04ec47d2d3ab7190896cd62ca5fc4fe08bf0", size = 287478 }, + { url = "https://files.pythonhosted.org/packages/19/74/f59e7e0d392bc1070e9a70e2f9190d652487ac115bb16e2eff6b22ad1d24/psutil-6.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5fd9a97c8e94059b0ef54a7d4baf13b405011176c3b6ff257c247cae0d560ecd", size = 290455 }, + { url = "https://files.pythonhosted.org/packages/cd/5f/60038e277ff0a9cc8f0c9ea3d0c5eb6ee1d2470ea3f9389d776432888e47/psutil-6.0.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e2e8d0054fc88153ca0544f5c4d554d42e33df2e009c4ff42284ac9ebdef4132", size = 292046 }, + { url = "https://files.pythonhosted.org/packages/8b/20/2ff69ad9c35c3df1858ac4e094f20bd2374d33c8643cf41da8fd7cdcb78b/psutil-6.0.0-cp37-abi3-win32.whl", hash = "sha256:a495580d6bae27291324fe60cea0b5a7c23fa36a7cd35035a16d93bdcf076b9d", size = 253560 }, + { url = "https://files.pythonhosted.org/packages/73/44/561092313ae925f3acfaace6f9ddc4f6a9c748704317bad9c8c8f8a36a79/psutil-6.0.0-cp37-abi3-win_amd64.whl", hash = "sha256:33ea5e1c975250a720b3a6609c490db40dae5d83a4eb315170c4fe0d8b1f34b3", size = 257399 }, + { url = "https://files.pythonhosted.org/packages/7c/06/63872a64c312a24fb9b4af123ee7007a306617da63ff13bcc1432386ead7/psutil-6.0.0-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:ffe7fc9b6b36beadc8c322f84e1caff51e8703b88eee1da46d1e3a6ae11b4fd0", size = 251988 }, +] + +[[package]] +name = "py-cpuinfo" +version = "9.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/37/a8/d832f7293ebb21690860d2e01d8115e5ff6f2ae8bbdc953f0eb0fa4bd2c7/py-cpuinfo-9.0.0.tar.gz", hash = "sha256:3cdbbf3fac90dc6f118bfd64384f309edeadd902d7c8fb17f02ffa1fc3f49690", size = 104716 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e0/a9/023730ba63db1e494a271cb018dcd361bd2c917ba7004c3e49d5daf795a2/py_cpuinfo-9.0.0-py3-none-any.whl", hash = "sha256:859625bc251f64e21f077d099d4162689c762b5d6a4c3c97553d56241c9674d5", size = 22335 }, +] + +[[package]] +name = "py3nvml" +version = "0.2.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "xmltodict", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/10/7e/fa282e456b87570d663ce97946b4dcb16850d4495ce4bd625a1a10c8ed56/py3nvml-0.2.7.tar.gz", hash = "sha256:09ee1d04598a6e664e24465f804ce3bfe119a6fdb5362df1c168f8aa929fbd73", size = 58224 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/03/3a/ea6f2419bd20f97f65ee55a9910c722313fe99cacc0bf77afb4b74b446ff/py3nvml-0.2.7-py3-none-any.whl", hash = "sha256:30101170d1f51419c8d21fd8ca6cdc333a552b4f8a945c2fc7d107d77e4220dd", size = 55503 }, +] + +[[package]] +name = "pyarrow" +version = "17.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/27/4e/ea6d43f324169f8aec0e57569443a38bab4b398d09769ca64f7b4d467de3/pyarrow-17.0.0.tar.gz", hash = "sha256:4beca9521ed2c0921c1023e68d097d0299b62c362639ea315572a58f3f50fd28", size = 1112479 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/39/5d/78d4b040bc5ff2fc6c3d03e80fca396b742f6c125b8af06bcf7427f931bc/pyarrow-17.0.0-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:a5c8b238d47e48812ee577ee20c9a2779e6a5904f1708ae240f53ecbee7c9f07", size = 28994846 }, + { url = "https://files.pythonhosted.org/packages/3b/73/8ed168db7642e91180330e4ea9f3ff8bab404678f00d32d7df0871a4933b/pyarrow-17.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:db023dc4c6cae1015de9e198d41250688383c3f9af8f565370ab2b4cb5f62655", size = 27165908 }, + { url = "https://files.pythonhosted.org/packages/81/36/e78c24be99242063f6d0590ef68c857ea07bdea470242c361e9a15bd57a4/pyarrow-17.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da1e060b3876faa11cee287839f9cc7cdc00649f475714b8680a05fd9071d545", size = 39264209 }, + { url = "https://files.pythonhosted.org/packages/18/4c/3db637d7578f683b0a8fb8999b436bdbedd6e3517bd4f90c70853cf3ad20/pyarrow-17.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75c06d4624c0ad6674364bb46ef38c3132768139ddec1c56582dbac54f2663e2", size = 39862883 }, + { url = "https://files.pythonhosted.org/packages/81/3c/0580626896c842614a523e66b351181ed5bb14e5dfc263cd68cea2c46d90/pyarrow-17.0.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:fa3c246cc58cb5a4a5cb407a18f193354ea47dd0648194e6265bd24177982fe8", size = 38723009 }, + { url = "https://files.pythonhosted.org/packages/ee/fb/c1b47f0ada36d856a352da261a44d7344d8f22e2f7db3945f8c3b81be5dd/pyarrow-17.0.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:f7ae2de664e0b158d1607699a16a488de3d008ba99b3a7aa5de1cbc13574d047", size = 39855626 }, + { url = "https://files.pythonhosted.org/packages/19/09/b0a02908180a25d57312ab5919069c39fddf30602568980419f4b02393f6/pyarrow-17.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:5984f416552eea15fd9cee03da53542bf4cddaef5afecefb9aa8d1010c335087", size = 25147242 }, + { url = "https://files.pythonhosted.org/packages/f9/46/ce89f87c2936f5bb9d879473b9663ce7a4b1f4359acc2f0eb39865eaa1af/pyarrow-17.0.0-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:1c8856e2ef09eb87ecf937104aacfa0708f22dfeb039c363ec99735190ffb977", size = 29028748 }, + { url = "https://files.pythonhosted.org/packages/8d/8e/ce2e9b2146de422f6638333c01903140e9ada244a2a477918a368306c64c/pyarrow-17.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2e19f569567efcbbd42084e87f948778eb371d308e137a0f97afe19bb860ccb3", size = 27190965 }, + { url = "https://files.pythonhosted.org/packages/3b/c8/5675719570eb1acd809481c6d64e2136ffb340bc387f4ca62dce79516cea/pyarrow-17.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b244dc8e08a23b3e352899a006a26ae7b4d0da7bb636872fa8f5884e70acf15", size = 39269081 }, + { url = "https://files.pythonhosted.org/packages/5e/78/3931194f16ab681ebb87ad252e7b8d2c8b23dad49706cadc865dff4a1dd3/pyarrow-17.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b72e87fe3e1db343995562f7fff8aee354b55ee83d13afba65400c178ab2597", size = 39864921 }, + { url = "https://files.pythonhosted.org/packages/d8/81/69b6606093363f55a2a574c018901c40952d4e902e670656d18213c71ad7/pyarrow-17.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:dc5c31c37409dfbc5d014047817cb4ccd8c1ea25d19576acf1a001fe07f5b420", size = 38740798 }, + { url = "https://files.pythonhosted.org/packages/4c/21/9ca93b84b92ef927814cb7ba37f0774a484c849d58f0b692b16af8eebcfb/pyarrow-17.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:e3343cb1e88bc2ea605986d4b94948716edc7a8d14afd4e2c097232f729758b4", size = 39871877 }, + { url = "https://files.pythonhosted.org/packages/30/d1/63a7c248432c71c7d3ee803e706590a0b81ce1a8d2b2ae49677774b813bb/pyarrow-17.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:a27532c38f3de9eb3e90ecab63dfda948a8ca859a66e3a47f5f42d1e403c4d03", size = 25151089 }, + { url = "https://files.pythonhosted.org/packages/d4/62/ce6ac1275a432b4a27c55fe96c58147f111d8ba1ad800a112d31859fae2f/pyarrow-17.0.0-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:9b8a823cea605221e61f34859dcc03207e52e409ccf6354634143e23af7c8d22", size = 29019418 }, + { url = "https://files.pythonhosted.org/packages/8e/0a/dbd0c134e7a0c30bea439675cc120012337202e5fac7163ba839aa3691d2/pyarrow-17.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f1e70de6cb5790a50b01d2b686d54aaf73da01266850b05e3af2a1bc89e16053", size = 27152197 }, + { url = "https://files.pythonhosted.org/packages/cb/05/3f4a16498349db79090767620d6dc23c1ec0c658a668d61d76b87706c65d/pyarrow-17.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0071ce35788c6f9077ff9ecba4858108eebe2ea5a3f7cf2cf55ebc1dbc6ee24a", size = 39263026 }, + { url = "https://files.pythonhosted.org/packages/c2/0c/ea2107236740be8fa0e0d4a293a095c9f43546a2465bb7df34eee9126b09/pyarrow-17.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:757074882f844411fcca735e39aae74248a1531367a7c80799b4266390ae51cc", size = 39880798 }, + { url = "https://files.pythonhosted.org/packages/f6/b0/b9164a8bc495083c10c281cc65064553ec87b7537d6f742a89d5953a2a3e/pyarrow-17.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:9ba11c4f16976e89146781a83833df7f82077cdab7dc6232c897789343f7891a", size = 38715172 }, + { url = "https://files.pythonhosted.org/packages/f1/c4/9625418a1413005e486c006e56675334929fad864347c5ae7c1b2e7fe639/pyarrow-17.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:b0c6ac301093b42d34410b187bba560b17c0330f64907bfa4f7f7f2444b0cf9b", size = 39874508 }, + { url = "https://files.pythonhosted.org/packages/ae/49/baafe2a964f663413be3bd1cf5c45ed98c5e42e804e2328e18f4570027c1/pyarrow-17.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:392bc9feabc647338e6c89267635e111d71edad5fcffba204425a7c8d13610d7", size = 25099235 }, + { url = "https://files.pythonhosted.org/packages/43/e0/a898096d35be240aa61fb2d54db58b86d664b10e1e51256f9300f47565e8/pyarrow-17.0.0-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:13d7a460b412f31e4c0efa1148e1d29bdf18ad1411eb6757d38f8fbdcc8645fb", size = 29007881 }, + { url = "https://files.pythonhosted.org/packages/59/22/f7d14907ed0697b5dd488d393129f2738629fa5bcba863e00931b7975946/pyarrow-17.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9b564a51fbccfab5a04a80453e5ac6c9954a9c5ef2890d1bcf63741909c3f8df", size = 27178117 }, + { url = "https://files.pythonhosted.org/packages/bf/ee/661211feac0ed48467b1d5c57298c91403809ec3ab78b1d175e1d6ad03cf/pyarrow-17.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:32503827abbc5aadedfa235f5ece8c4f8f8b0a3cf01066bc8d29de7539532687", size = 39273896 }, + { url = "https://files.pythonhosted.org/packages/af/61/bcd9b58e38ead6ad42b9ed00da33a3f862bc1d445e3d3164799c25550ac2/pyarrow-17.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a155acc7f154b9ffcc85497509bcd0d43efb80d6f733b0dc3bb14e281f131c8b", size = 39875438 }, + { url = "https://files.pythonhosted.org/packages/75/63/29d1bfcc57af73cde3fc3baccab2f37548de512dbe0ab294b033cd203516/pyarrow-17.0.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:dec8d129254d0188a49f8a1fc99e0560dc1b85f60af729f47de4046015f9b0a5", size = 38735092 }, + { url = "https://files.pythonhosted.org/packages/39/f4/90258b4de753df7cc61cefb0312f8abcf226672e96cc64996e66afce817a/pyarrow-17.0.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:a48ddf5c3c6a6c505904545c25a4ae13646ae1f8ba703c4df4a1bfe4f4006bda", size = 39867610 }, + { url = "https://files.pythonhosted.org/packages/e7/f6/b75d4816c32f1618ed31a005ee635dd1d91d8164495d94f2ea092f594661/pyarrow-17.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:42bf93249a083aca230ba7e2786c5f673507fa97bbd9725a1e2754715151a204", size = 25148611 }, +] + +[[package]] +name = "pyarrow-hotfix" +version = "0.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/70/0a/71da7b0db0c7078d4cf34ecf0c70ded5ed29decc06612097474e0114f4cc/pyarrow_hotfix-0.6.tar.gz", hash = "sha256:79d3e030f7ff890d408a100ac16d6f00b14d44a502d7897cd9fc3e3a534e9945", size = 9754 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e4/f4/9ec2222f5f5f8ea04f66f184caafd991a39c8782e31f5b0266f101cb68ca/pyarrow_hotfix-0.6-py3-none-any.whl", hash = "sha256:dcc9ae2d220dff0083be6a9aa8e0cdee5182ad358d4931fce825c545e5c89178", size = 7888 }, +] + +[[package]] +name = "pyasn1" +version = "0.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4a/a3/d2157f333900747f20984553aca98008b6dc843eb62f3a36030140ccec0d/pyasn1-0.6.0.tar.gz", hash = "sha256:3a35ab2c4b5ef98e17dfdec8ab074046fbda76e281c5a706ccd82328cfc8f64c", size = 148088 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/23/7e/5f50d07d5e70a2addbccd90ac2950f81d1edd0783630651d9268d7f1db49/pyasn1-0.6.0-py2.py3-none-any.whl", hash = "sha256:cca4bb0f2df5504f02f6f8a775b6e416ff9b0b3b16f7ee80b5a3153d9b804473", size = 85313 }, +] + +[[package]] +name = "pyasn1-modules" +version = "0.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyasn1", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f7/00/e7bd1dec10667e3f2be602686537969a7ac92b0a7c5165be2e5875dc3971/pyasn1_modules-0.4.0.tar.gz", hash = "sha256:831dbcea1b177b28c9baddf4c6d1013c24c3accd14a1873fffaa6a2e905f17b6", size = 307859 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/13/68/8906226b15ef38e71dc926c321d2fe99de8048e9098b5dfd38343011c886/pyasn1_modules-0.4.0-py3-none-any.whl", hash = "sha256:be04f15b66c206eed667e0bb5ab27e2b1855ea54a842e5037738099e8ca4ae0b", size = 181220 }, +] + +[[package]] +name = "pycparser" +version = "2.22" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1d/b2/31537cf4b1ca988837256c910a668b553fceb8f069bedc4b1c826024b52c/pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6", size = 172736 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc", size = 117552 }, +] + +[[package]] +name = "pyctcdecode" +version = "0.5.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "hypothesis", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pygtrie", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/61/96/7dec2cb5414c388b94044f25d701ed9d08e30ba2509a4e2cf6451cdd25ed/pyctcdecode-0.5.0.tar.gz", hash = "sha256:f3bcb313e43ca16a54938b3e77b0b375328653bba932668243db745fde513a2c", size = 68451 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a5/8a/93e2118411ae5e861d4f4ce65578c62e85d0f1d9cb389bd63bd57130604e/pyctcdecode-0.5.0-py2.py3-none-any.whl", hash = "sha256:5b4282872ddc8e30fe7ac45112f4ab6134ac67fc03df0bbecf48667d032a0914", size = 39166 }, +] + +[[package]] +name = "pydantic" +version = "2.8.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "annotated-types", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pydantic-core", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/8c/99/d0a5dca411e0a017762258013ba9905cd6e7baa9a3fd1fe8b6529472902e/pydantic-2.8.2.tar.gz", hash = "sha256:6f62c13d067b0755ad1c21a34bdd06c0c12625a22b0fc09c6b149816604f7c2a", size = 739834 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1f/fa/b7f815b8c9ad021c07f88875b601222ef5e70619391ade4a49234d12d278/pydantic-2.8.2-py3-none-any.whl", hash = "sha256:73ee9fddd406dc318b885c7a2eab8a6472b68b8fb5ba8150949fc3db939f23c8", size = 423875 }, +] + +[[package]] +name = "pydantic-core" +version = "2.20.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/12/e3/0d5ad91211dba310f7ded335f4dad871172b9cc9ce204f5a56d76ccd6247/pydantic_core-2.20.1.tar.gz", hash = "sha256:26ca695eeee5f9f1aeeb211ffc12f10bcb6f71e2989988fda61dabd65db878d4", size = 388371 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6b/9d/f30f080f745682e762512f3eef1f6e392c7d74a102e6e96de8a013a5db84/pydantic_core-2.20.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:3acae97ffd19bf091c72df4d726d552c473f3576409b2a7ca36b2f535ffff4a3", size = 1837257 }, + { url = "https://files.pythonhosted.org/packages/f2/89/77e7aebdd4a235497ac1e07f0a99e9f40e47f6e0f6783fe30500df08fc42/pydantic_core-2.20.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:41f4c96227a67a013e7de5ff8f20fb496ce573893b7f4f2707d065907bffdbd6", size = 1776715 }, + { url = "https://files.pythonhosted.org/packages/18/50/5a4e9120b395108c2a0441a425356c0d26a655d7c617288bec1c28b854ac/pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5f239eb799a2081495ea659d8d4a43a8f42cd1fe9ff2e7e436295c38a10c286a", size = 1789023 }, + { url = "https://files.pythonhosted.org/packages/c7/e5/f19e13ba86b968d024b56aa53f40b24828652ac026e5addd0ae49eeada02/pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:53e431da3fc53360db73eedf6f7124d1076e1b4ee4276b36fb25514544ceb4a3", size = 1775598 }, + { url = "https://files.pythonhosted.org/packages/c9/c7/f3c29bed28bd022c783baba5bf9946c4f694cb837a687e62f453c81eb5c6/pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f1f62b2413c3a0e846c3b838b2ecd6c7a19ec6793b2a522745b0869e37ab5bc1", size = 1977691 }, + { url = "https://files.pythonhosted.org/packages/41/3e/f62c2a05c554fff34570f6788617e9670c83ed7bc07d62a55cccd1bc0be6/pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5d41e6daee2813ecceea8eda38062d69e280b39df793f5a942fa515b8ed67953", size = 2693214 }, + { url = "https://files.pythonhosted.org/packages/ae/49/8a6fe79d35e2f3bea566d8ea0e4e6f436d4f749d7838c8e8c4c5148ae706/pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3d482efec8b7dc6bfaedc0f166b2ce349df0011f5d2f1f25537ced4cfc34fd98", size = 2061047 }, + { url = "https://files.pythonhosted.org/packages/51/c6/585355c7c8561e11197dbf6333c57dd32f9f62165d48589b57ced2373d97/pydantic_core-2.20.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e93e1a4b4b33daed65d781a57a522ff153dcf748dee70b40c7258c5861e1768a", size = 1895106 }, + { url = "https://files.pythonhosted.org/packages/ce/23/829f6b87de0775919e82f8addef8b487ace1c77bb4cb754b217f7b1301b6/pydantic_core-2.20.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e7c4ea22b6739b162c9ecaaa41d718dfad48a244909fe7ef4b54c0b530effc5a", size = 1968506 }, + { url = "https://files.pythonhosted.org/packages/ca/2f/f8ca8f0c40b3ee0a4d8730a51851adb14c5eda986ec09f8d754b2fba784e/pydantic_core-2.20.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4f2790949cf385d985a31984907fecb3896999329103df4e4983a4a41e13e840", size = 2110217 }, + { url = "https://files.pythonhosted.org/packages/bb/a0/1876656c7b17eb69cc683452cce6bb890dd722222a71b3de57ddb512f561/pydantic_core-2.20.1-cp310-none-win32.whl", hash = "sha256:5e999ba8dd90e93d57410c5e67ebb67ffcaadcea0ad973240fdfd3a135506250", size = 1709669 }, + { url = "https://files.pythonhosted.org/packages/be/4a/576524eefa9b301c088c4818dc50ff1c51a88fe29efd87ab75748ae15fd7/pydantic_core-2.20.1-cp310-none-win_amd64.whl", hash = "sha256:512ecfbefef6dac7bc5eaaf46177b2de58cdf7acac8793fe033b24ece0b9566c", size = 1902386 }, + { url = "https://files.pythonhosted.org/packages/61/db/f6a724db226d990a329910727cfac43539ff6969edc217286dd05cda3ef6/pydantic_core-2.20.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:d2a8fa9d6d6f891f3deec72f5cc668e6f66b188ab14bb1ab52422fe8e644f312", size = 1834507 }, + { url = "https://files.pythonhosted.org/packages/9b/83/6f2bfe75209d557ae1c3550c1252684fc1827b8b12fbed84c3b4439e135d/pydantic_core-2.20.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:175873691124f3d0da55aeea1d90660a6ea7a3cfea137c38afa0a5ffabe37b88", size = 1773527 }, + { url = "https://files.pythonhosted.org/packages/93/ef/513ea76d7ca81f2354bb9c8d7839fc1157673e652613f7e1aff17d8ce05d/pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:37eee5b638f0e0dcd18d21f59b679686bbd18917b87db0193ae36f9c23c355fc", size = 1787879 }, + { url = "https://files.pythonhosted.org/packages/31/0a/ac294caecf235f0cc651de6232f1642bb793af448d1cfc541b0dc1fd72b8/pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:25e9185e2d06c16ee438ed39bf62935ec436474a6ac4f9358524220f1b236e43", size = 1774694 }, + { url = "https://files.pythonhosted.org/packages/46/a4/08f12b5512f095963550a7cb49ae010e3f8f3f22b45e508c2cb4d7744fce/pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:150906b40ff188a3260cbee25380e7494ee85048584998c1e66df0c7a11c17a6", size = 1976369 }, + { url = "https://files.pythonhosted.org/packages/15/59/b2495be4410462aedb399071c71884042a2c6443319cbf62d00b4a7ed7a5/pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ad4aeb3e9a97286573c03df758fc7627aecdd02f1da04516a86dc159bf70121", size = 2691250 }, + { url = "https://files.pythonhosted.org/packages/3c/ae/fc99ce1ba791c9e9d1dee04ce80eef1dae5b25b27e3fc8e19f4e3f1348bf/pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3f3ed29cd9f978c604708511a1f9c2fdcb6c38b9aae36a51905b8811ee5cbf1", size = 2061462 }, + { url = "https://files.pythonhosted.org/packages/44/bb/eb07cbe47cfd638603ce3cb8c220f1a054b821e666509e535f27ba07ca5f/pydantic_core-2.20.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0dae11d8f5ded51699c74d9548dcc5938e0804cc8298ec0aa0da95c21fff57b", size = 1893923 }, + { url = "https://files.pythonhosted.org/packages/ce/ef/5a52400553b8faa0e7f11fd7a2ba11e8d2feb50b540f9e7973c49b97eac0/pydantic_core-2.20.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:faa6b09ee09433b87992fb5a2859efd1c264ddc37280d2dd5db502126d0e7f27", size = 1966779 }, + { url = "https://files.pythonhosted.org/packages/4c/5b/fb37fe341344d9651f5c5f579639cd97d50a457dc53901aa8f7e9f28beb9/pydantic_core-2.20.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9dc1b507c12eb0481d071f3c1808f0529ad41dc415d0ca11f7ebfc666e66a18b", size = 2109044 }, + { url = "https://files.pythonhosted.org/packages/70/1a/6f7278802dbc66716661618807ab0dfa4fc32b09d1235923bbbe8b3a5757/pydantic_core-2.20.1-cp311-none-win32.whl", hash = "sha256:fa2fddcb7107e0d1808086ca306dcade7df60a13a6c347a7acf1ec139aa6789a", size = 1708265 }, + { url = "https://files.pythonhosted.org/packages/35/7f/58758c42c61b0bdd585158586fecea295523d49933cb33664ea888162daf/pydantic_core-2.20.1-cp311-none-win_amd64.whl", hash = "sha256:40a783fb7ee353c50bd3853e626f15677ea527ae556429453685ae32280c19c2", size = 1901750 }, + { url = "https://files.pythonhosted.org/packages/6f/47/ef0d60ae23c41aced42921728650460dc831a0adf604bfa66b76028cb4d0/pydantic_core-2.20.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:595ba5be69b35777474fa07f80fc260ea71255656191adb22a8c53aba4479231", size = 1839225 }, + { url = "https://files.pythonhosted.org/packages/6a/23/430f2878c9cd977a61bb39f71751d9310ec55cee36b3d5bf1752c6341fd0/pydantic_core-2.20.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a4f55095ad087474999ee28d3398bae183a66be4823f753cd7d67dd0153427c9", size = 1768604 }, + { url = "https://files.pythonhosted.org/packages/9e/2b/ec4e7225dee79e0dc80ccc3c35ab33cc2c4bbb8a1a7ecf060e5e453651ec/pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f9aa05d09ecf4c75157197f27cdc9cfaeb7c5f15021c6373932bf3e124af029f", size = 1789767 }, + { url = "https://files.pythonhosted.org/packages/64/b0/38b24a1fa6d2f96af3148362e10737ec073768cd44d3ec21dca3be40a519/pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e97fdf088d4b31ff4ba35db26d9cc472ac7ef4a2ff2badeabf8d727b3377fc52", size = 1772061 }, + { url = "https://files.pythonhosted.org/packages/5e/da/bb73274c42cb60decfa61e9eb0c9029da78b3b9af0a9de0309dbc8ff87b6/pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bc633a9fe1eb87e250b5c57d389cf28998e4292336926b0b6cdaee353f89a237", size = 1974573 }, + { url = "https://files.pythonhosted.org/packages/c8/65/41693110fb3552556180460daffdb8bbeefb87fc026fd9aa4b849374015c/pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d573faf8eb7e6b1cbbcb4f5b247c60ca8be39fe2c674495df0eb4318303137fe", size = 2625596 }, + { url = "https://files.pythonhosted.org/packages/09/b3/a5a54b47cccd1ab661ed5775235c5e06924753c2d4817737c5667bfa19a8/pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:26dc97754b57d2fd00ac2b24dfa341abffc380b823211994c4efac7f13b9e90e", size = 2099064 }, + { url = "https://files.pythonhosted.org/packages/52/fa/443a7a6ea54beaba45ff3a59f3d3e6e3004b7460bcfb0be77bcf98719d3b/pydantic_core-2.20.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:33499e85e739a4b60c9dac710c20a08dc73cb3240c9a0e22325e671b27b70d24", size = 1900345 }, + { url = "https://files.pythonhosted.org/packages/8e/e6/9aca9ffae60f9cdf0183069de3e271889b628d0fb175913fcb3db5618fb1/pydantic_core-2.20.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:bebb4d6715c814597f85297c332297c6ce81e29436125ca59d1159b07f423eb1", size = 1968252 }, + { url = "https://files.pythonhosted.org/packages/46/5e/6c716810ea20a6419188992973a73c2fb4eb99cd382368d0637ddb6d3c99/pydantic_core-2.20.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:516d9227919612425c8ef1c9b869bbbee249bc91912c8aaffb66116c0b447ebd", size = 2119191 }, + { url = "https://files.pythonhosted.org/packages/06/fc/6123b00a9240fbb9ae0babad7a005d51103d9a5d39c957a986f5cdd0c271/pydantic_core-2.20.1-cp312-none-win32.whl", hash = "sha256:469f29f9093c9d834432034d33f5fe45699e664f12a13bf38c04967ce233d688", size = 1717788 }, + { url = "https://files.pythonhosted.org/packages/d5/36/e61ad5a46607a469e2786f398cd671ebafcd9fb17f09a2359985c7228df5/pydantic_core-2.20.1-cp312-none-win_amd64.whl", hash = "sha256:035ede2e16da7281041f0e626459bcae33ed998cca6a0a007a5ebb73414ac72d", size = 1898188 }, + { url = "https://files.pythonhosted.org/packages/49/75/40b0e98b658fdba02a693b3bacb4c875a28bba87796c7b13975976597d8c/pydantic_core-2.20.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:0827505a5c87e8aa285dc31e9ec7f4a17c81a813d45f70b1d9164e03a813a686", size = 1838688 }, + { url = "https://files.pythonhosted.org/packages/75/02/d8ba2d4a266591a6a623c68b331b96523d4b62ab82a951794e3ed8907390/pydantic_core-2.20.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:19c0fa39fa154e7e0b7f82f88ef85faa2a4c23cc65aae2f5aea625e3c13c735a", size = 1768409 }, + { url = "https://files.pythonhosted.org/packages/91/ae/25ecd9bc4ce4993e99a1a3c9ab111c082630c914260e129572fafed4ecc2/pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa223cd1e36b642092c326d694d8bf59b71ddddc94cdb752bbbb1c5c91d833b", size = 1789317 }, + { url = "https://files.pythonhosted.org/packages/7a/80/72057580681cdbe55699c367963d9c661b569a1d39338b4f6239faf36cdc/pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c336a6d235522a62fef872c6295a42ecb0c4e1d0f1a3e500fe949415761b8a19", size = 1771949 }, + { url = "https://files.pythonhosted.org/packages/a2/be/d9bbabc55b05019013180f141fcaf3b14dbe15ca7da550e95b60c321009a/pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7eb6a0587eded33aeefea9f916899d42b1799b7b14b8f8ff2753c0ac1741edac", size = 1974392 }, + { url = "https://files.pythonhosted.org/packages/79/2d/7bcd938c6afb0f40293283f5f09988b61fb0a4f1d180abe7c23a2f665f8e/pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:70c8daf4faca8da5a6d655f9af86faf6ec2e1768f4b8b9d0226c02f3d6209703", size = 2625565 }, + { url = "https://files.pythonhosted.org/packages/ac/88/ca758e979457096008a4b16a064509028e3e092a1e85a5ed6c18ced8da88/pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9fa4c9bf273ca41f940bceb86922a7667cd5bf90e95dbb157cbb8441008482c", size = 2098784 }, + { url = "https://files.pythonhosted.org/packages/eb/de/2fad6d63c3c42e472e985acb12ec45b7f56e42e6f4cd6dfbc5e87ee8678c/pydantic_core-2.20.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:11b71d67b4725e7e2a9f6e9c0ac1239bbc0c48cce3dc59f98635efc57d6dac83", size = 1900198 }, + { url = "https://files.pythonhosted.org/packages/fe/50/077c7f35b6488dc369a6d22993af3a37901e198630f38ac43391ca730f5b/pydantic_core-2.20.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:270755f15174fb983890c49881e93f8f1b80f0b5e3a3cc1394a255706cabd203", size = 1968005 }, + { url = "https://files.pythonhosted.org/packages/5d/1f/f378631574ead46d636b9a04a80ff878b9365d4b361b1905ef1667d4182a/pydantic_core-2.20.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:c81131869240e3e568916ef4c307f8b99583efaa60a8112ef27a366eefba8ef0", size = 2118920 }, + { url = "https://files.pythonhosted.org/packages/7a/ea/e4943f17df7a3031d709481fe4363d4624ae875a6409aec34c28c9e6cf59/pydantic_core-2.20.1-cp313-none-win32.whl", hash = "sha256:b91ced227c41aa29c672814f50dbb05ec93536abf8f43cd14ec9521ea09afe4e", size = 1717397 }, + { url = "https://files.pythonhosted.org/packages/13/63/b95781763e8d84207025071c0cec16d921c0163c7a9033ae4b9a0e020dc7/pydantic_core-2.20.1-cp313-none-win_amd64.whl", hash = "sha256:65db0f2eefcaad1a3950f498aabb4875c8890438bc80b19362cf633b87a8ab20", size = 1898013 }, + { url = "https://files.pythonhosted.org/packages/17/c3/803028de61ce9a1fe1643f77ff845807c76298bf1995fa216c4ae853c6b9/pydantic_core-2.20.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:b03f7941783b4c4a26051846dea594628b38f6940a2fdc0df00b221aed39314c", size = 1838087 }, + { url = "https://files.pythonhosted.org/packages/77/f7/25f1fba7ea1ae052e20b234e4c66d54b129e5b3f4d1e6c0da6534dbf57c3/pydantic_core-2.20.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1eedfeb6089ed3fad42e81a67755846ad4dcc14d73698c120a82e4ccf0f1f9f6", size = 1722218 }, + { url = "https://files.pythonhosted.org/packages/57/53/fe2e1ae3795b7a69f81913584174f8ed36446b56df734565260830a3632b/pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:635fee4e041ab9c479e31edda27fcf966ea9614fff1317e280d99eb3e5ab6fe2", size = 1788970 }, + { url = "https://files.pythonhosted.org/packages/13/80/d9c698486f8fb64b0945e0844c95eef3bcff920941eda30d556deadadbdf/pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:77bf3ac639c1ff567ae3b47f8d4cc3dc20f9966a2a6dd2311dcc055d3d04fb8a", size = 1775836 }, + { url = "https://files.pythonhosted.org/packages/0f/0c/ab6df185529c0ce1a6d916f9d159de389cc7de44eaa9362efc76495fb821/pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7ed1b0132f24beeec5a78b67d9388656d03e6a7c837394f99257e2d55b461611", size = 1978099 }, + { url = "https://files.pythonhosted.org/packages/0e/9f/3094afeb286c60ec08088d938b661a561f3d23cd2e88a90a92ab0ecfce4f/pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c6514f963b023aeee506678a1cf821fe31159b925c4b76fe2afa94cc70b3222b", size = 2693403 }, + { url = "https://files.pythonhosted.org/packages/9b/f1/a006955715be98093d092aa025f604c7c00721e83fe04bf467c49f31a685/pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10d4204d8ca33146e761c79f83cc861df20e7ae9f6487ca290a97702daf56006", size = 2061754 }, + { url = "https://files.pythonhosted.org/packages/32/f6/cd2e7bd0a52e2a72841f60c32e62b269995c34bdb13e4d1e799be834338a/pydantic_core-2.20.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2d036c7187b9422ae5b262badb87a20a49eb6c5238b2004e96d4da1231badef1", size = 1895490 }, + { url = "https://files.pythonhosted.org/packages/ac/22/34ce27579901fcca525f8adce7747760407cf284c4f0fec6d4542265b451/pydantic_core-2.20.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9ebfef07dbe1d93efb94b4700f2d278494e9162565a54f124c404a5656d7ff09", size = 1968678 }, + { url = "https://files.pythonhosted.org/packages/2f/3a/80df9b0b5ea5e5b8939285c600dc9ce4a185317f5fb065a37e77a20cbdb3/pydantic_core-2.20.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:6b9d9bb600328a1ce523ab4f454859e9d439150abb0906c5a1983c146580ebab", size = 2110873 }, + { url = "https://files.pythonhosted.org/packages/ec/26/998c9b8dadcdeafbc833964ef5975cd0c7516b0157575b26300d078ae239/pydantic_core-2.20.1-cp39-none-win32.whl", hash = "sha256:784c1214cb6dd1e3b15dd8b91b9a53852aed16671cc3fbe4786f4f1db07089e2", size = 1709309 }, + { url = "https://files.pythonhosted.org/packages/ed/36/67aeb15996618882c5cfe85dbeffefe09e2806cd86bdd37bca40753e82a1/pydantic_core-2.20.1-cp39-none-win_amd64.whl", hash = "sha256:d2fe69c5434391727efa54b47a1e7986bb0186e72a41b203df8f5b0a19a4f669", size = 1905736 }, + { url = "https://files.pythonhosted.org/packages/73/73/0c7265903f66cce39ed7ca939684fba344210cefc91ccc999cfd5b113fd3/pydantic_core-2.20.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:a45f84b09ac9c3d35dfcf6a27fd0634d30d183205230a0ebe8373a0e8cfa0906", size = 1828190 }, + { url = "https://files.pythonhosted.org/packages/27/55/60b8b0e58b49ee3ed36a18562dd7c6bc06a551c390e387af5872a238f2ec/pydantic_core-2.20.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:d02a72df14dfdbaf228424573a07af10637bd490f0901cee872c4f434a735b94", size = 1715252 }, + { url = "https://files.pythonhosted.org/packages/28/3d/d66314bad6bb777a36559195a007b31e916bd9e2c198f7bb8f4ccdceb4fa/pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d2b27e6af28f07e2f195552b37d7d66b150adbaa39a6d327766ffd695799780f", size = 1782641 }, + { url = "https://files.pythonhosted.org/packages/9e/f5/f178f4354d0d6c1431a8f9ede71f3c4269ac4dc55d314fdb7555814276dc/pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:084659fac3c83fd674596612aeff6041a18402f1e1bc19ca39e417d554468482", size = 1928788 }, + { url = "https://files.pythonhosted.org/packages/9c/51/1f5e27bb194df79e30b593b608c66e881ed481241e2b9ed5bdf86d165480/pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:242b8feb3c493ab78be289c034a1f659e8826e2233786e36f2893a950a719bb6", size = 1886116 }, + { url = "https://files.pythonhosted.org/packages/ac/76/450d9258c58dc7c70b9e3aadf6bebe23ddd99e459c365e2adbde80e238da/pydantic_core-2.20.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:38cf1c40a921d05c5edc61a785c0ddb4bed67827069f535d794ce6bcded919fc", size = 1960125 }, + { url = "https://files.pythonhosted.org/packages/dd/9e/0309a7a4bea51771729515e413b3987be0789837de99087f7415e0db1f9b/pydantic_core-2.20.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:e0bbdd76ce9aa5d4209d65f2b27fc6e5ef1312ae6c5333c26db3f5ade53a1e99", size = 2100407 }, + { url = "https://files.pythonhosted.org/packages/af/93/06d44e08277b3b818b75bd5f25e879d7693e4b7dd3505fde89916fcc9ca2/pydantic_core-2.20.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:254ec27fdb5b1ee60684f91683be95e5133c994cc54e86a0b0963afa25c8f8a6", size = 1914966 }, + { url = "https://files.pythonhosted.org/packages/ff/d0/639b12bc7c81ebcbbd5f946327e8970089b23fa5b11d7abb56495cbdc0de/pydantic_core-2.20.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:407653af5617f0757261ae249d3fba09504d7a71ab36ac057c938572d1bc9331", size = 1829108 }, + { url = "https://files.pythonhosted.org/packages/f1/80/3b9d7fb8b4f8d36e24373334740c0b88d9ded08342543a72e9247b4fa410/pydantic_core-2.20.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:c693e916709c2465b02ca0ad7b387c4f8423d1db7b4649c551f27a529181c5ad", size = 1716448 }, + { url = "https://files.pythonhosted.org/packages/2f/c6/f80ea0fac8c241c066245fe918cdc9d105985a1a8726aced9478548c9e37/pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5b5ff4911aea936a47d9376fd3ab17e970cc543d1b68921886e7f64bd28308d1", size = 1783620 }, + { url = "https://files.pythonhosted.org/packages/d5/3e/9af260156f79347ed3e64149836d69bfe1e0c5efadec6116a879fc31c9ec/pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:177f55a886d74f1808763976ac4efd29b7ed15c69f4d838bbd74d9d09cf6fa86", size = 1929929 }, + { url = "https://files.pythonhosted.org/packages/d1/fe/8c3e928e10a97eb8e85b18a53ed3288d039cf0fd7b0fe8d3258f14e8500a/pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:964faa8a861d2664f0c7ab0c181af0bea66098b1919439815ca8803ef136fc4e", size = 1886708 }, + { url = "https://files.pythonhosted.org/packages/31/26/b670bd58f1de902c099ff623fe62b9820448a20d70437e7698a57b922d3a/pydantic_core-2.20.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:4dd484681c15e6b9a977c785a345d3e378d72678fd5f1f3c0509608da24f2ac0", size = 1960709 }, + { url = "https://files.pythonhosted.org/packages/de/ee/322cad098a0cffc81e985ac2a298d3f29a1da25efe7dc1fb5cd2615c5b04/pydantic_core-2.20.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:f6d6cff3538391e8486a431569b77921adfcdef14eb18fbf19b7c0a5294d4e6a", size = 2101218 }, + { url = "https://files.pythonhosted.org/packages/07/8b/30233f741e16b35499fa2fad2f4a69eb127eec6c850a1b14af26e7b08b73/pydantic_core-2.20.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:a6d511cc297ff0883bc3708b465ff82d7560193169a8b93260f74ecb0a5e08a7", size = 1915399 }, +] + +[[package]] +name = "pygments" +version = "2.18.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8e/62/8336eff65bcbc8e4cb5d05b55faf041285951b6e80f33e2bff2024788f31/pygments-2.18.0.tar.gz", hash = "sha256:786ff802f32e91311bff3889f6e9a86e81505fe99f2735bb6d60ae0c5004f199", size = 4891905 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f7/3f/01c8b82017c199075f8f788d0d906b9ffbbc5a47dc9918a945e13d5a2bda/pygments-2.18.0-py3-none-any.whl", hash = "sha256:b8e6aca0523f3ab76fee51799c488e38782ac06eafcf95e7ba832985c8e7b13a", size = 1205513 }, +] + +[[package]] +name = "pygtrie" +version = "2.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b9/13/55deec25bf09383216fa7f1dfcdbfca40a04aa00b6d15a5cbf25af8fce5f/pygtrie-2.5.0.tar.gz", hash = "sha256:203514ad826eb403dab1d2e2ddd034e0d1534bbe4dbe0213bb0593f66beba4e2", size = 39266 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ec/cd/bd196b2cf014afb1009de8b0f05ecd54011d881944e62763f3c1b1e8ef37/pygtrie-2.5.0-py3-none-any.whl", hash = "sha256:8795cda8105493d5ae159a5bef313ff13156c5d4d72feddefacaad59f8c8ce16", size = 25099 }, +] + +[[package]] +name = "pylatexenc" +version = "2.10" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/5d/ab/34ec41718af73c00119d0351b7a2531d2ebddb51833a36448fc7b862be60/pylatexenc-2.10.tar.gz", hash = "sha256:3dd8fd84eb46dc30bee1e23eaab8d8fb5a7f507347b23e5f38ad9675c84f40d3", size = 162597 } + +[[package]] +name = "pynvml" +version = "11.5.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e4/e9/9931792cb776716363fc7c3039b477d11278173d71ddc230eb9b5f4ce93f/pynvml-11.5.3.tar.gz", hash = "sha256:183d223ae487e5f00402d8da06c68c978ef8a9295793ee75559839c6ade7b229", size = 73685 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/54/5b/16e50abf152be7f18120f11dfff495014a9eaff7b764626e1656f04ad262/pynvml-11.5.3-py3-none-any.whl", hash = "sha256:a5fba3ab14febda50d19dbda012ef62ae0aed45b7ccc07af0bc5be79223e450c", size = 53135 }, +] + +[[package]] +name = "pyparsing" +version = "3.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/46/3a/31fd28064d016a2182584d579e033ec95b809d8e220e74c4af6f0f2e8842/pyparsing-3.1.2.tar.gz", hash = "sha256:a1bac0ce561155ecc3ed78ca94d3c9378656ad4c94c1270de543f621420f94ad", size = 889571 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9d/ea/6d76df31432a0e6fdf81681a895f009a4bb47b3c39036db3e1b528191d52/pyparsing-3.1.2-py3-none-any.whl", hash = "sha256:f9db75911801ed778fe61bb643079ff86601aca99fcae6345aa67292038fb742", size = 103245 }, +] + +[[package]] +name = "pypng" +version = "0.20220715.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/93/cd/112f092ec27cca83e0516de0a3368dbd9128c187fb6b52aaaa7cde39c96d/pypng-0.20220715.0.tar.gz", hash = "sha256:739c433ba96f078315de54c0db975aee537cbc3e1d0ae4ed9aab0ca1e427e2c1", size = 128992 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3e/b9/3766cc361d93edb2ce81e2e1f87dd98f314d7d513877a342d31b30741680/pypng-0.20220715.0-py3-none-any.whl", hash = "sha256:4a43e969b8f5aaafb2a415536c1a8ec7e341cd6a3f957fd5b5f32a4cfeed902c", size = 58057 }, +] + +[[package]] +name = "pyreadline3" +version = "3.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d7/86/3d61a61f36a0067874a00cb4dceb9028d34b6060e47828f7fc86fb9f7ee9/pyreadline3-3.4.1.tar.gz", hash = "sha256:6f3d1f7b8a31ba32b73917cefc1f28cc660562f39aea8646d30bd6eff21f7bae", size = 86465 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/56/fc/a3c13ded7b3057680c8ae95a9b6cc83e63657c38e0005c400a5d018a33a7/pyreadline3-3.4.1-py3-none-any.whl", hash = "sha256:b0efb6516fd4fb07b45949053826a62fa4cb353db5be2bbb4a7aa1fdd1e345fb", size = 95203 }, +] + +[[package]] +name = "pytest" +version = "7.4.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "exceptiongroup", marker = "python_version < '3.11'" }, + { name = "iniconfig", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pluggy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tomli", marker = "python_version < '3.11'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/80/1f/9d8e98e4133ffb16c90f3b405c43e38d3abb715bb5d7a63a5a684f7e46a3/pytest-7.4.4.tar.gz", hash = "sha256:2cf0005922c6ace4a3e2ec8b4080eb0d9753fdc93107415332f50ce9e7994280", size = 1357116 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/51/ff/f6e8b8f39e08547faece4bd80f89d5a8de68a38b2d179cc1c4490ffa3286/pytest-7.4.4-py3-none-any.whl", hash = "sha256:b090cdf5ed60bf4c45261be03239c2c1c22df034fbffe691abe93cd80cea01d8", size = 325287 }, +] + +[[package]] +name = "pytest-timeout" +version = "2.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pytest", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/93/0d/04719abc7a4bdb3a7a1f968f24b0f5253d698c9cc94975330e9d3145befb/pytest-timeout-2.3.1.tar.gz", hash = "sha256:12397729125c6ecbdaca01035b9e5239d4db97352320af155b3f5de1ba5165d9", size = 17697 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/03/27/14af9ef8321f5edc7527e47def2a21d8118c6f329a9342cc61387a0c0599/pytest_timeout-2.3.1-py3-none-any.whl", hash = "sha256:68188cb703edfc6a18fad98dc25a3c61e9f24d644b0b70f33af545219fc7813e", size = 14148 }, +] + +[[package]] +name = "pytest-xdist" +version = "3.6.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "execnet", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pytest", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/41/c4/3c310a19bc1f1e9ef50075582652673ef2bfc8cd62afef9585683821902f/pytest_xdist-3.6.1.tar.gz", hash = "sha256:ead156a4db231eec769737f57668ef58a2084a34b2e55c4a8fa20d861107300d", size = 84060 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6d/82/1d96bf03ee4c0fdc3c0cbe61470070e659ca78dc0086fb88b66c185e2449/pytest_xdist-3.6.1-py3-none-any.whl", hash = "sha256:9ed4adfb68a016610848639bb7e02c9352d5d9f03d04809919e2dafc3be4cca7", size = 46108 }, +] + +[[package]] +name = "python-dateutil" +version = "2.9.0.post0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892 }, +] + +[[package]] +name = "python-slugify" +version = "8.0.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "text-unidecode", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/87/c7/5e1547c44e31da50a460df93af11a535ace568ef89d7a811069ead340c4a/python-slugify-8.0.4.tar.gz", hash = "sha256:59202371d1d05b54a9e7720c5e038f928f45daaffe41dd10822f3907b937c856", size = 10921 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a4/62/02da182e544a51a5c3ccf4b03ab79df279f9c60c5e82d5e8bec7ca26ac11/python_slugify-8.0.4-py2.py3-none-any.whl", hash = "sha256:276540b79961052b66b7d116620b36518847f52d5fd9e3a70164fc8c50faa6b8", size = 10051 }, +] + +[[package]] +name = "pytz" +version = "2024.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/90/26/9f1f00a5d021fff16dee3de13d43e5e978f3d58928e129c3a62cf7eb9738/pytz-2024.1.tar.gz", hash = "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812", size = 316214 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9c/3d/a121f284241f08268b21359bd425f7d4825cffc5ac5cd0e1b3d82ffd2b10/pytz-2024.1-py2.py3-none-any.whl", hash = "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319", size = 505474 }, +] + +[[package]] +name = "pywin32" +version = "306" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/08/dc/28c668097edfaf4eac4617ef7adf081b9cf50d254672fcf399a70f5efc41/pywin32-306-cp310-cp310-win32.whl", hash = "sha256:06d3420a5155ba65f0b72f2699b5bacf3109f36acbe8923765c22938a69dfc8d", size = 8506422 }, + { url = "https://files.pythonhosted.org/packages/d3/d6/891894edec688e72c2e308b3243fad98b4066e1839fd2fe78f04129a9d31/pywin32-306-cp310-cp310-win_amd64.whl", hash = "sha256:84f4471dbca1887ea3803d8848a1616429ac94a4a8d05f4bc9c5dcfd42ca99c8", size = 9226392 }, + { url = "https://files.pythonhosted.org/packages/8b/1e/fc18ad83ca553e01b97aa8393ff10e33c1fb57801db05488b83282ee9913/pywin32-306-cp311-cp311-win32.whl", hash = "sha256:e65028133d15b64d2ed8f06dd9fbc268352478d4f9289e69c190ecd6818b6407", size = 8507689 }, + { url = "https://files.pythonhosted.org/packages/7e/9e/ad6b1ae2a5ad1066dc509350e0fbf74d8d50251a51e420a2a8feaa0cecbd/pywin32-306-cp311-cp311-win_amd64.whl", hash = "sha256:a7639f51c184c0272e93f244eb24dafca9b1855707d94c192d4a0b4c01e1100e", size = 9227547 }, + { url = "https://files.pythonhosted.org/packages/91/20/f744bff1da8f43388498503634378dbbefbe493e65675f2cc52f7185c2c2/pywin32-306-cp311-cp311-win_arm64.whl", hash = "sha256:70dba0c913d19f942a2db25217d9a1b726c278f483a919f1abfed79c9cf64d3a", size = 10388324 }, + { url = "https://files.pythonhosted.org/packages/14/91/17e016d5923e178346aabda3dfec6629d1a26efe587d19667542105cf0a6/pywin32-306-cp312-cp312-win32.whl", hash = "sha256:383229d515657f4e3ed1343da8be101000562bf514591ff383ae940cad65458b", size = 8507705 }, + { url = "https://files.pythonhosted.org/packages/83/1c/25b79fc3ec99b19b0a0730cc47356f7e2959863bf9f3cd314332bddb4f68/pywin32-306-cp312-cp312-win_amd64.whl", hash = "sha256:37257794c1ad39ee9be652da0462dc2e394c8159dfd913a8a4e8eb6fd346da0e", size = 9227429 }, + { url = "https://files.pythonhosted.org/packages/1c/43/e3444dc9a12f8365d9603c2145d16bf0a2f8180f343cf87be47f5579e547/pywin32-306-cp312-cp312-win_arm64.whl", hash = "sha256:5821ec52f6d321aa59e2db7e0a35b997de60c201943557d108af9d4ae1ec7040", size = 10388145 }, + { url = "https://files.pythonhosted.org/packages/7e/7f/419c4fcadcaa374a0ae41cbdf6c3a81452892dd6c523aea629d17e49146e/pywin32-306-cp39-cp39-win32.whl", hash = "sha256:e25fd5b485b55ac9c057f67d94bc203f3f6595078d1fb3b458c9c28b7153a802", size = 8573451 }, + { url = "https://files.pythonhosted.org/packages/1c/f7/24d8ed4fd9c43b90354df7764f81f0dd5e623f9a50f1538f90fe085d6dff/pywin32-306-cp39-cp39-win_amd64.whl", hash = "sha256:39b61c15272833b5c329a2989999dcae836b1eed650252ab1b7bfbe1d59f30f4", size = 9312883 }, +] + +[[package]] +name = "pyyaml" +version = "6.0.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/54/ed/79a089b6be93607fa5cdaedf301d7dfb23af5f25c398d5ead2525b063e17/pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e", size = 130631 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9b/95/a3fac87cb7158e231b5a6012e438c647e1a87f09f8e0d123acec8ab8bf71/PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086", size = 184199 }, + { url = "https://files.pythonhosted.org/packages/c7/7a/68bd47624dab8fd4afbfd3c48e3b79efe09098ae941de5b58abcbadff5cb/PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf", size = 171758 }, + { url = "https://files.pythonhosted.org/packages/49/ee/14c54df452143b9ee9f0f29074d7ca5516a36edb0b4cc40c3f280131656f/PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237", size = 718463 }, + { url = "https://files.pythonhosted.org/packages/4d/61/de363a97476e766574650d742205be468921a7b532aa2499fcd886b62530/PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b", size = 719280 }, + { url = "https://files.pythonhosted.org/packages/6b/4e/1523cb902fd98355e2e9ea5e5eb237cbc5f3ad5f3075fa65087aa0ecb669/PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed", size = 751239 }, + { url = "https://files.pythonhosted.org/packages/b7/33/5504b3a9a4464893c32f118a9cc045190a91637b119a9c881da1cf6b7a72/PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180", size = 695802 }, + { url = "https://files.pythonhosted.org/packages/5c/20/8347dcabd41ef3a3cdc4f7b7a2aff3d06598c8779faa189cdbf878b626a4/PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68", size = 720527 }, + { url = "https://files.pythonhosted.org/packages/be/aa/5afe99233fb360d0ff37377145a949ae258aaab831bde4792b32650a4378/PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99", size = 144052 }, + { url = "https://files.pythonhosted.org/packages/b5/84/0fa4b06f6d6c958d207620fc60005e241ecedceee58931bb20138e1e5776/PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e", size = 161774 }, + { url = "https://files.pythonhosted.org/packages/f8/aa/7af4e81f7acba21a4c6be026da38fd2b872ca46226673c89a758ebdc4fd2/PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774", size = 184612 }, + { url = "https://files.pythonhosted.org/packages/8b/62/b9faa998fd185f65c1371643678e4d58254add437edb764a08c5a98fb986/PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee", size = 172040 }, + { url = "https://files.pythonhosted.org/packages/ad/0c/c804f5f922a9a6563bab712d8dcc70251e8af811fce4524d57c2c0fd49a4/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c", size = 736829 }, + { url = "https://files.pythonhosted.org/packages/51/16/6af8d6a6b210c8e54f1406a6b9481febf9c64a3109c541567e35a49aa2e7/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317", size = 764167 }, + { url = "https://files.pythonhosted.org/packages/75/e4/2c27590dfc9992f73aabbeb9241ae20220bd9452df27483b6e56d3975cc5/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85", size = 762952 }, + { url = "https://files.pythonhosted.org/packages/9b/97/ecc1abf4a823f5ac61941a9c00fe501b02ac3ab0e373c3857f7d4b83e2b6/PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4", size = 735301 }, + { url = "https://files.pythonhosted.org/packages/45/73/0f49dacd6e82c9430e46f4a027baa4ca205e8b0a9dce1397f44edc23559d/PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e", size = 756638 }, + { url = "https://files.pythonhosted.org/packages/22/5f/956f0f9fc65223a58fbc14459bf34b4cc48dec52e00535c79b8db361aabd/PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5", size = 143850 }, + { url = "https://files.pythonhosted.org/packages/ed/23/8da0bbe2ab9dcdd11f4f4557ccaf95c10b9811b13ecced089d43ce59c3c8/PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44", size = 161980 }, + { url = "https://files.pythonhosted.org/packages/86/0c/c581167fc46d6d6d7ddcfb8c843a4de25bdd27e4466938109ca68492292c/PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab", size = 183873 }, + { url = "https://files.pythonhosted.org/packages/a8/0c/38374f5bb272c051e2a69281d71cba6fdb983413e6758b84482905e29a5d/PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725", size = 173302 }, + { url = "https://files.pythonhosted.org/packages/c3/93/9916574aa8c00aa06bbac729972eb1071d002b8e158bd0e83a3b9a20a1f7/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5", size = 739154 }, + { url = "https://files.pythonhosted.org/packages/95/0f/b8938f1cbd09739c6da569d172531567dbcc9789e0029aa070856f123984/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425", size = 766223 }, + { url = "https://files.pythonhosted.org/packages/b9/2b/614b4752f2e127db5cc206abc23a8c19678e92b23c3db30fc86ab731d3bd/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476", size = 767542 }, + { url = "https://files.pythonhosted.org/packages/d4/00/dd137d5bcc7efea1836d6264f049359861cf548469d18da90cd8216cf05f/PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48", size = 731164 }, + { url = "https://files.pythonhosted.org/packages/c9/1f/4f998c900485e5c0ef43838363ba4a9723ac0ad73a9dc42068b12aaba4e4/PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b", size = 756611 }, + { url = "https://files.pythonhosted.org/packages/df/d1/f5a275fdb252768b7a11ec63585bc38d0e87c9e05668a139fea92b80634c/PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4", size = 140591 }, + { url = "https://files.pythonhosted.org/packages/0c/e8/4f648c598b17c3d06e8753d7d13d57542b30d56e6c2dedf9c331ae56312e/PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8", size = 156338 }, + { url = "https://files.pythonhosted.org/packages/ef/e3/3af305b830494fa85d95f6d95ef7fa73f2ee1cc8ef5b495c7c3269fb835f/PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba", size = 181309 }, + { url = "https://files.pythonhosted.org/packages/45/9f/3b1c20a0b7a3200524eb0076cc027a970d320bd3a6592873c85c92a08731/PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1", size = 171679 }, + { url = "https://files.pythonhosted.org/packages/7c/9a/337322f27005c33bcb656c655fa78325b730324c78620e8328ae28b64d0c/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133", size = 733428 }, + { url = "https://files.pythonhosted.org/packages/a3/69/864fbe19e6c18ea3cc196cbe5d392175b4cf3d5d0ac1403ec3f2d237ebb5/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484", size = 763361 }, + { url = "https://files.pythonhosted.org/packages/04/24/b7721e4845c2f162d26f50521b825fb061bc0a5afcf9a386840f23ea19fa/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5", size = 759523 }, + { url = "https://files.pythonhosted.org/packages/2b/b2/e3234f59ba06559c6ff63c4e10baea10e5e7df868092bf9ab40e5b9c56b6/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc", size = 726660 }, + { url = "https://files.pythonhosted.org/packages/fe/0f/25911a9f080464c59fab9027482f822b86bf0608957a5fcc6eaac85aa515/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652", size = 751597 }, + { url = "https://files.pythonhosted.org/packages/14/0d/e2c3b43bbce3cf6bd97c840b46088a3031085179e596d4929729d8d68270/PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183", size = 140527 }, + { url = "https://files.pythonhosted.org/packages/fa/de/02b54f42487e3d3c6efb3f89428677074ca7bf43aae402517bc7cca949f3/PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563", size = 156446 }, + { url = "https://files.pythonhosted.org/packages/65/d8/b7a1db13636d7fb7d4ff431593c510c8b8fca920ade06ca8ef20015493c5/PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d", size = 184777 }, + { url = "https://files.pythonhosted.org/packages/0a/02/6ec546cd45143fdf9840b2c6be8d875116a64076218b61d68e12548e5839/PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f", size = 172318 }, + { url = "https://files.pythonhosted.org/packages/0e/9a/8cc68be846c972bda34f6c2a93abb644fb2476f4dcc924d52175786932c9/PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290", size = 720891 }, + { url = "https://files.pythonhosted.org/packages/e9/6c/6e1b7f40181bc4805e2e07f4abc10a88ce4648e7e95ff1abe4ae4014a9b2/PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12", size = 722614 }, + { url = "https://files.pythonhosted.org/packages/3d/32/e7bd8535d22ea2874cef6a81021ba019474ace0d13a4819c2a4bce79bd6a/PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19", size = 737360 }, + { url = "https://files.pythonhosted.org/packages/d7/12/7322c1e30b9be969670b672573d45479edef72c9a0deac3bb2868f5d7469/PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e", size = 699006 }, + { url = "https://files.pythonhosted.org/packages/82/72/04fcad41ca56491995076630c3ec1e834be241664c0c09a64c9a2589b507/PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725", size = 723577 }, + { url = "https://files.pythonhosted.org/packages/ed/5e/46168b1f2757f1fcd442bc3029cd8767d88a98c9c05770d8b420948743bb/PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631", size = 144593 }, + { url = "https://files.pythonhosted.org/packages/19/87/5124b1c1f2412bb95c59ec481eaf936cd32f0fe2a7b16b97b81c4c017a6a/PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8", size = 162312 }, +] + +[[package]] +name = "ray" +version = "2.34.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "aiosignal", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "click", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "filelock", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "frozenlist", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jsonschema", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "msgpack", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/b9/e2/c9de6de344126f77e159e31dc36e2de131b81dc94b9e63172a963e8cd36a/ray-2.34.0-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:fb994a9f45aacb6edac32d97327f145a99c0db0b576c6c2217902b44e8fd8565", size = 65602162 }, + { url = "https://files.pythonhosted.org/packages/88/8b/eb8f2b8976ed1193c40dae62ed77eb1841258f4b547ca6f2fcc0038eb58b/ray-2.34.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6acb3d712e3f001ed8e3c0e1403f65e550adc8b558098f188d43b427e1f024c8", size = 63036107 }, + { url = "https://files.pythonhosted.org/packages/8e/bf/7b7f664184561415ced1890df70bc0a976654342c3698f3cae2268f2fcb3/ray-2.34.0-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:a2e909445fdddc7e9f318894aa3d9b5a9e79d3b4320e9c84b3703d1df908d359", size = 64003172 }, + { url = "https://files.pythonhosted.org/packages/83/d8/55fbc4ecde193abaf2c4a3ede8dd9a83de33afb5a88f484e2bc18e09f7a0/ray-2.34.0-cp310-cp310-manylinux2014_x86_64.whl", hash = "sha256:76715a92dc10d7f090bdfb490f6e6d497cc8d212da78174d0de516ba7021cee4", size = 64895815 }, + { url = "https://files.pythonhosted.org/packages/c6/04/9b278d4b688bc0b9126555976ebf8c0c29173b812b8fa7c42be72ff9f943/ray-2.34.0-cp310-cp310-win_amd64.whl", hash = "sha256:3ca22ebb25f483bff60f2b64d1b33c4f156754d73c1c183808e0380c515f0ff9", size = 24705813 }, + { url = "https://files.pythonhosted.org/packages/92/b8/a05d9e5d09ea55517ade0f909f053eaa69d17b967cb8952fec0cc6530821/ray-2.34.0-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:bb869c717057fa23010ced7be0bdfda3b260583dfd9fe969e7de3ccd3bee1e03", size = 65585163 }, + { url = "https://files.pythonhosted.org/packages/8c/94/6e06f0adf89bcb13d0e5ed03e7f662ed00a8003ebacd8a70515bffdbe7e2/ray-2.34.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:590d0676bedd72111e7df78bb71eef93826a86de0d4675739471080ffd463d02", size = 63016756 }, + { url = "https://files.pythonhosted.org/packages/62/b4/796ea6b730985ae64183cbe64b760a65b14382f9121e58dd410619845b93/ray-2.34.0-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:2315ca4eeb2c87264a7be38acf128803dffb2af2476e6322acd3f889129e4575", size = 64132726 }, + { url = "https://files.pythonhosted.org/packages/fa/53/9864f0c9c7c78466722ed8035ebb465ab3c915e06878d2906e7d4245a4e9/ray-2.34.0-cp311-cp311-manylinux2014_x86_64.whl", hash = "sha256:b608d6865600cbd3516882a19bb3b713b6f161b150ce1ee31d92084d09408b9a", size = 65018530 }, + { url = "https://files.pythonhosted.org/packages/42/15/4a9c4dd1384721dcb38e69e12b6fe227bc114fc5e9e7d04261de955e4c94/ray-2.34.0-cp311-cp311-win_amd64.whl", hash = "sha256:5125d325f6c3605de16182e60ccb4cd6a102a812665c119a71f19d07f20080d8", size = 24690447 }, + { url = "https://files.pythonhosted.org/packages/8f/db/a3ceac4623e32bd3e8857174205a065eb902b82ac5c7c0fe4cc23e3c1aec/ray-2.34.0-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:d1f8b03f7be489104c32731a3898eae41ffe1fd29c1303bbd77805e1961a1324", size = 65564396 }, + { url = "https://files.pythonhosted.org/packages/c7/e4/7270ede252fdaba20c1baa90fe928b285b625d42493a4825026304000ada/ray-2.34.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a332323d986d3faa9c539c3c979aa936bc252a0da9b20bdb48a6f634a1ff5200", size = 63001916 }, + { url = "https://files.pythonhosted.org/packages/22/66/d771588eafabdf9aa73a447d95c2499a74d605169a35b33b9c82516b8782/ray-2.34.0-cp312-cp312-manylinux2014_aarch64.whl", hash = "sha256:230eef15981cec90e868eff32ad5756e4fee53c2855c890a2d1243617df73c8e", size = 64152368 }, + { url = "https://files.pythonhosted.org/packages/71/80/3ee63d8cc83dba44df417058127648e3b44d338d9b16450c3b9556b00e28/ray-2.34.0-cp312-cp312-manylinux2014_x86_64.whl", hash = "sha256:aeaac5ce06572b15947c995b6d65a6c8706a1b2336eebed5b98e9073fe94abe0", size = 65063661 }, + { url = "https://files.pythonhosted.org/packages/e2/41/edb03a80f1e8b9e32ae45466d71773fc3508453c356738e6628cebe3d036/ray-2.34.0-cp312-cp312-win_amd64.whl", hash = "sha256:9c48fcf7cf7b3d0886f846d45c1f73de91d70486d52d10e0f0ec017660613fec", size = 24680574 }, + { url = "https://files.pythonhosted.org/packages/64/bb/4ad03421c71cbff107f2d1a29c0e8d8b754a6c53a28dc6078f6f26c8bacb/ray-2.34.0-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:93dfab2256e8bab153a10d4af8e82d124afe9a950ac5435c5d33a4637ed0cbb8", size = 65617415 }, + { url = "https://files.pythonhosted.org/packages/a2/ce/a0dbe6d7bbabcdc7224779b7db81e4337ed139c18d47ad8de179c0a10b87/ray-2.34.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:37c4840e3953bff40900a189fcf2a866581fd5c11e72b8c532a593a200450bb4", size = 63049114 }, + { url = "https://files.pythonhosted.org/packages/ab/d6/d389e685a1d25dc1f0cd745bf153a74e738475638d32fcc96681f01d8cc6/ray-2.34.0-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:42df897f2bf368fa1d74c6672f36a9fae4ebcf7f1495716f9cca445415c51f55", size = 64022135 }, + { url = "https://files.pythonhosted.org/packages/61/5d/57939bd7a84d9fdb4741cfc818413c6f4c9052c7638073f8c7096bdd8795/ray-2.34.0-cp39-cp39-manylinux2014_x86_64.whl", hash = "sha256:7c11a58daf074093d5b5a31de62f3dc0e55a7649edcc16a902eed6dc16fc6a4f", size = 64920350 }, + { url = "https://files.pythonhosted.org/packages/09/c1/7bb88e8266e7bc2e5aa91f56dc7bc72729fa5fa30e6e13be54f5a9417250/ray-2.34.0-cp39-cp39-win_amd64.whl", hash = "sha256:2cbf7b38b97f80f95ca1c841d783a577f1618c15c6fbf32574dd0efa4e4b12bd", size = 24715971 }, +] + +[package.optional-dependencies] +tune = [ + { name = "fsspec", version = "2024.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.10' and platform_machine == 'aarch64' and platform_system == 'Linux') or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fsspec", version = "2024.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "pandas", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyarrow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorboardx", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] + +[[package]] +name = "rdflib" +version = "7.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "isodate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyparsing", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0d/a3/63740490a392921a611cfc05b5b17bffd4259b3c9589c7904a4033b3d291/rdflib-7.0.0.tar.gz", hash = "sha256:9995eb8569428059b8c1affd26b25eac510d64f5043d9ce8c84e0d0036e995ae", size = 4765796 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d4/b0/7b7d8b5b0d01f1a0b12cc2e5038a868ef3a15825731b8a0d776cf47566c0/rdflib-7.0.0-py3-none-any.whl", hash = "sha256:0438920912a642c866a513de6fe8a0001bd86ef975057d6962c79ce4771687cd", size = 531912 }, +] + +[[package]] +name = "referencing" +version = "0.35.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rpds-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/99/5b/73ca1f8e72fff6fa52119dbd185f73a907b1989428917b24cff660129b6d/referencing-0.35.1.tar.gz", hash = "sha256:25b42124a6c8b632a425174f24087783efb348a6f1e0008e63cd4466fedf703c", size = 62991 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/59/2056f61236782a2c86b33906c025d4f4a0b17be0161b63b70fd9e8775d36/referencing-0.35.1-py3-none-any.whl", hash = "sha256:eda6d3234d62814d1c64e305c1331c9a3a6132da475ab6382eaa997b21ee75de", size = 26684 }, +] + +[[package]] +name = "regex" +version = "2024.7.24" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3f/51/64256d0dc72816a4fe3779449627c69ec8fee5a5625fd60ba048f53b3478/regex-2024.7.24.tar.gz", hash = "sha256:9cfd009eed1a46b27c14039ad5bbc5e71b6367c5b2e6d5f5da0ea91600817506", size = 393485 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/16/97/283bd32777e6c30a9bede976cd72ba4b9aa144dc0f0f462bd37fa1a86e01/regex-2024.7.24-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:228b0d3f567fafa0633aee87f08b9276c7062da9616931382993c03808bb68ce", size = 470812 }, + { url = "https://files.pythonhosted.org/packages/e4/80/80bc4d7329d04ba519ebcaf26ae21d9e30d33934c458691177c623ceff70/regex-2024.7.24-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:3426de3b91d1bc73249042742f45c2148803c111d1175b283270177fdf669024", size = 282129 }, + { url = "https://files.pythonhosted.org/packages/e5/8a/cddcb7942d05ad9a427ad97ab29f1a62c0607ab72bdb2f3a26fc5b07ac0f/regex-2024.7.24-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f273674b445bcb6e4409bf8d1be67bc4b58e8b46fd0d560055d515b8830063cd", size = 278909 }, + { url = "https://files.pythonhosted.org/packages/a6/d4/93b4011cb83f9a66e0fa398b4d3c6d564d94b686dace676c66502b13dae9/regex-2024.7.24-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:23acc72f0f4e1a9e6e9843d6328177ae3074b4182167e34119ec7233dfeccf53", size = 777687 }, + { url = "https://files.pythonhosted.org/packages/d0/11/d0a12e1cecc1d35bbcbeb99e2ddcb8c1b152b1b58e2ff55f50c3d762b09e/regex-2024.7.24-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:65fd3d2e228cae024c411c5ccdffae4c315271eee4a8b839291f84f796b34eca", size = 818982 }, + { url = "https://files.pythonhosted.org/packages/ae/41/01a073765d75427e24710af035d8f0a773b5cedf23f61b63e7ef2ce960d6/regex-2024.7.24-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c414cbda77dbf13c3bc88b073a1a9f375c7b0cb5e115e15d4b73ec3a2fbc6f59", size = 804015 }, + { url = "https://files.pythonhosted.org/packages/3e/66/04b63f31580026c8b819aed7f171149177d10cfab27477ea8800a2268d50/regex-2024.7.24-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf7a89eef64b5455835f5ed30254ec19bf41f7541cd94f266ab7cbd463f00c41", size = 776517 }, + { url = "https://files.pythonhosted.org/packages/be/49/0c08a7a232e4e26e17afeedf13f331224d9377dde4876ed6e21e4a584a5d/regex-2024.7.24-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:19c65b00d42804e3fbea9708f0937d157e53429a39b7c61253ff15670ff62cb5", size = 766860 }, + { url = "https://files.pythonhosted.org/packages/24/44/35769388845cdd7be97e1232a59446b738054b61bc9c92a3b0bacfaf7bb1/regex-2024.7.24-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:7a5486ca56c8869070a966321d5ab416ff0f83f30e0e2da1ab48815c8d165d46", size = 692181 }, + { url = "https://files.pythonhosted.org/packages/50/be/4e09d5bc8de176153f209c95ca4e64b9def1748d693694a95dd4401ee7be/regex-2024.7.24-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f51f9556785e5a203713f5efd9c085b4a45aecd2a42573e2b5041881b588d1f", size = 762956 }, + { url = "https://files.pythonhosted.org/packages/90/63/b37152f25fe348aa31806bafa91df607d096e8f477fed9a5cf3de339dd5f/regex-2024.7.24-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:a4997716674d36a82eab3e86f8fa77080a5d8d96a389a61ea1d0e3a94a582cf7", size = 771978 }, + { url = "https://files.pythonhosted.org/packages/ab/ac/38186431f7c1874e3f790669be933accf1090ee53aba0ab1a811ef38f07e/regex-2024.7.24-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:c0abb5e4e8ce71a61d9446040c1e86d4e6d23f9097275c5bd49ed978755ff0fe", size = 840800 }, + { url = "https://files.pythonhosted.org/packages/e8/23/91b04dbf51a2c0ddf5b1e055e9e05ed091ebcf46f2b0e6e3d2fff121f903/regex-2024.7.24-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:18300a1d78cf1290fa583cd8b7cde26ecb73e9f5916690cf9d42de569c89b1ce", size = 838991 }, + { url = "https://files.pythonhosted.org/packages/36/fd/822110cc14b99bdd7d8c61487bc774f454120cd3d7492935bf13f3399716/regex-2024.7.24-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:416c0e4f56308f34cdb18c3f59849479dde5b19febdcd6e6fa4d04b6c31c9faa", size = 767539 }, + { url = "https://files.pythonhosted.org/packages/82/54/e24a8adfca74f9a421cd47657c51413919e7755e729608de6f4c5556e002/regex-2024.7.24-cp310-cp310-win32.whl", hash = "sha256:fb168b5924bef397b5ba13aabd8cf5df7d3d93f10218d7b925e360d436863f66", size = 257712 }, + { url = "https://files.pythonhosted.org/packages/fb/cc/6485c2fc72d0de9b55392246b80921639f1be62bed1e33e982940306b5ba/regex-2024.7.24-cp310-cp310-win_amd64.whl", hash = "sha256:6b9fc7e9cc983e75e2518496ba1afc524227c163e43d706688a6bb9eca41617e", size = 269661 }, + { url = "https://files.pythonhosted.org/packages/cb/ec/261f8434a47685d61e59a4ef3d9ce7902af521219f3ebd2194c7adb171a6/regex-2024.7.24-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:382281306e3adaaa7b8b9ebbb3ffb43358a7bbf585fa93821300a418bb975281", size = 470810 }, + { url = "https://files.pythonhosted.org/packages/f0/47/f33b1cac88841f95fff862476a9e875d9a10dae6912a675c6f13c128e5d9/regex-2024.7.24-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4fdd1384619f406ad9037fe6b6eaa3de2749e2e12084abc80169e8e075377d3b", size = 282126 }, + { url = "https://files.pythonhosted.org/packages/fc/1b/256ca4e2d5041c0aa2f1dc222f04412b796346ab9ce2aa5147405a9457b4/regex-2024.7.24-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3d974d24edb231446f708c455fd08f94c41c1ff4f04bcf06e5f36df5ef50b95a", size = 278920 }, + { url = "https://files.pythonhosted.org/packages/91/03/4603ec057c0bafd2f6f50b0bdda4b12a0ff81022decf1de007b485c356a6/regex-2024.7.24-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a2ec4419a3fe6cf8a4795752596dfe0adb4aea40d3683a132bae9c30b81e8d73", size = 785420 }, + { url = "https://files.pythonhosted.org/packages/75/f8/13b111fab93e6273e26de2926345e5ecf6ddad1e44c4d419d7b0924f9c52/regex-2024.7.24-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eb563dd3aea54c797adf513eeec819c4213d7dbfc311874eb4fd28d10f2ff0f2", size = 828164 }, + { url = "https://files.pythonhosted.org/packages/4a/80/bc3b9d31bd47ff578758af929af0ac1d6169b247e26fa6e87764007f3d93/regex-2024.7.24-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:45104baae8b9f67569f0f1dca5e1f1ed77a54ae1cd8b0b07aba89272710db61e", size = 812621 }, + { url = "https://files.pythonhosted.org/packages/8b/77/92d4a14530900d46dddc57b728eea65d723cc9fcfd07b96c2c141dabba84/regex-2024.7.24-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:994448ee01864501912abf2bad9203bffc34158e80fe8bfb5b031f4f8e16da51", size = 786609 }, + { url = "https://files.pythonhosted.org/packages/35/58/06695fd8afad4c8ed0a53ec5e222156398b9fe5afd58887ab94ea68e4d16/regex-2024.7.24-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3fac296f99283ac232d8125be932c5cd7644084a30748fda013028c815ba3364", size = 775290 }, + { url = "https://files.pythonhosted.org/packages/1b/0f/50b97ee1fc6965744b9e943b5c0f3740792ab54792df73d984510964ef29/regex-2024.7.24-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:7e37e809b9303ec3a179085415cb5f418ecf65ec98cdfe34f6a078b46ef823ee", size = 772849 }, + { url = "https://files.pythonhosted.org/packages/8f/64/565ff6cf241586ab7ae76bb4138c4d29bc1d1780973b457c2db30b21809a/regex-2024.7.24-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:01b689e887f612610c869421241e075c02f2e3d1ae93a037cb14f88ab6a8934c", size = 778428 }, + { url = "https://files.pythonhosted.org/packages/e5/fe/4ceabf4382e44e1e096ac46fd5e3bca490738b24157116a48270fd542e88/regex-2024.7.24-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f6442f0f0ff81775eaa5b05af8a0ffa1dda36e9cf6ec1e0d3d245e8564b684ce", size = 849436 }, + { url = "https://files.pythonhosted.org/packages/68/23/1868e40d6b594843fd1a3498ffe75d58674edfc90d95e18dd87865b93bf2/regex-2024.7.24-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:871e3ab2838fbcb4e0865a6e01233975df3a15e6fce93b6f99d75cacbd9862d1", size = 849484 }, + { url = "https://files.pythonhosted.org/packages/f3/52/bff76de2f6e2bc05edce3abeb7e98e6309aa022fc06071100a0216fbeb50/regex-2024.7.24-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:c918b7a1e26b4ab40409820ddccc5d49871a82329640f5005f73572d5eaa9b5e", size = 776712 }, + { url = "https://files.pythonhosted.org/packages/f2/72/70ade7b0b5fe5c6df38fdfa2a5a8273e3ea6a10b772aa671b7e889e78bae/regex-2024.7.24-cp311-cp311-win32.whl", hash = "sha256:2dfbb8baf8ba2c2b9aa2807f44ed272f0913eeeba002478c4577b8d29cde215c", size = 257716 }, + { url = "https://files.pythonhosted.org/packages/04/4d/80e04f4e27ab0cbc9096e2d10696da6d9c26a39b60db52670fd57614fea5/regex-2024.7.24-cp311-cp311-win_amd64.whl", hash = "sha256:538d30cd96ed7d1416d3956f94d54e426a8daf7c14527f6e0d6d425fcb4cca52", size = 269662 }, + { url = "https://files.pythonhosted.org/packages/0f/26/f505782f386ac0399a9237571833f187414882ab6902e2e71a1ecb506835/regex-2024.7.24-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:fe4ebef608553aff8deb845c7f4f1d0740ff76fa672c011cc0bacb2a00fbde86", size = 471748 }, + { url = "https://files.pythonhosted.org/packages/bb/1d/ea9a21beeb433dbfca31ab82867d69cb67ff8674af9fab6ebd55fa9d3387/regex-2024.7.24-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:74007a5b25b7a678459f06559504f1eec2f0f17bca218c9d56f6a0a12bfffdad", size = 282841 }, + { url = "https://files.pythonhosted.org/packages/9b/f2/c6182095baf0a10169c34e87133a8e73b2e816a80035669b1278e927685e/regex-2024.7.24-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7df9ea48641da022c2a3c9c641650cd09f0cd15e8908bf931ad538f5ca7919c9", size = 279114 }, + { url = "https://files.pythonhosted.org/packages/72/58/b5161bf890b6ca575a25685f19a4a3e3b6f4a072238814f8658123177d84/regex-2024.7.24-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6a1141a1dcc32904c47f6846b040275c6e5de0bf73f17d7a409035d55b76f289", size = 789749 }, + { url = "https://files.pythonhosted.org/packages/09/fb/5381b19b62f3a3494266be462f6a015a869cf4bfd8e14d6e7db67e2c8069/regex-2024.7.24-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80c811cfcb5c331237d9bad3bea2c391114588cf4131707e84d9493064d267f9", size = 831666 }, + { url = "https://files.pythonhosted.org/packages/3d/6d/2a21c85f970f9be79357d12cf4b97f4fc6bf3bf6b843c39dabbc4e5f1181/regex-2024.7.24-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7214477bf9bd195894cf24005b1e7b496f46833337b5dedb7b2a6e33f66d962c", size = 817544 }, + { url = "https://files.pythonhosted.org/packages/f9/ae/5f23e64f6cf170614237c654f3501a912dfb8549143d4b91d1cd13dba319/regex-2024.7.24-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d55588cba7553f0b6ec33130bc3e114b355570b45785cebdc9daed8c637dd440", size = 790854 }, + { url = "https://files.pythonhosted.org/packages/29/0a/d04baad1bbc49cdfb4aef90c4fc875a60aaf96d35a1616f1dfe8149716bc/regex-2024.7.24-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:558a57cfc32adcf19d3f791f62b5ff564922942e389e3cfdb538a23d65a6b610", size = 779242 }, + { url = "https://files.pythonhosted.org/packages/3a/27/b242a962f650c3213da4596d70e24c7c1c46e3aa0f79f2a81164291085f8/regex-2024.7.24-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a512eed9dfd4117110b1881ba9a59b31433caed0c4101b361f768e7bcbaf93c5", size = 776932 }, + { url = "https://files.pythonhosted.org/packages/9c/ae/de659bdfff80ad2c0b577a43dd89dbc43870a4fc4bbf604e452196758e83/regex-2024.7.24-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:86b17ba823ea76256b1885652e3a141a99a5c4422f4a869189db328321b73799", size = 784521 }, + { url = "https://files.pythonhosted.org/packages/d4/ac/eb6a796da0bdefbf09644a7868309423b18d344cf49963a9d36c13502d46/regex-2024.7.24-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:5eefee9bfe23f6df09ffb6dfb23809f4d74a78acef004aa904dc7c88b9944b05", size = 854548 }, + { url = "https://files.pythonhosted.org/packages/56/77/fde8d825dec69e70256e0925af6c81eea9acf0a634d3d80f619d8dcd6888/regex-2024.7.24-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:731fcd76bbdbf225e2eb85b7c38da9633ad3073822f5ab32379381e8c3c12e94", size = 853345 }, + { url = "https://files.pythonhosted.org/packages/ff/04/2b79ad0bb9bc05ab4386caa2c19aa047a66afcbdfc2640618ffc729841e4/regex-2024.7.24-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:eaef80eac3b4cfbdd6de53c6e108b4c534c21ae055d1dbea2de6b3b8ff3def38", size = 781414 }, + { url = "https://files.pythonhosted.org/packages/bf/71/d0af58199283ada7d25b20e416f5b155f50aad99b0e791c0966ff5a1cd00/regex-2024.7.24-cp312-cp312-win32.whl", hash = "sha256:185e029368d6f89f36e526764cf12bf8d6f0e3a2a7737da625a76f594bdfcbfc", size = 258125 }, + { url = "https://files.pythonhosted.org/packages/95/b3/10e875c45c60b010b66fc109b899c6fc4f05d485fe1d54abff98ce791124/regex-2024.7.24-cp312-cp312-win_amd64.whl", hash = "sha256:2f1baff13cc2521bea83ab2528e7a80cbe0ebb2c6f0bfad15be7da3aed443908", size = 269162 }, + { url = "https://files.pythonhosted.org/packages/dc/c6/78f26fe25efb7bec46028eff4db9fae07852defc7d2fe48fcbdba47ff3d1/regex-2024.7.24-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:0ffe3f9d430cd37d8fa5632ff6fb36d5b24818c5c986893063b4e5bdb84cdf24", size = 470815 }, + { url = "https://files.pythonhosted.org/packages/3d/c9/580ff2b99482ca90785e28720269f352a015f30430bb583ff7bcc519bb9a/regex-2024.7.24-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:25419b70ba00a16abc90ee5fce061228206173231f004437730b67ac77323f0d", size = 282117 }, + { url = "https://files.pythonhosted.org/packages/14/58/283c749340e4d7aad87a1fb93c6bf11f377a0da8aaff6f7f863b28050752/regex-2024.7.24-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:33e2614a7ce627f0cdf2ad104797d1f68342d967de3695678c0cb84f530709f8", size = 278915 }, + { url = "https://files.pythonhosted.org/packages/3a/72/2667206ef348d8e4cdd349d6f0e064002e8d393b66093181d1a865b94a11/regex-2024.7.24-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d33a0021893ede5969876052796165bab6006559ab845fd7b515a30abdd990dc", size = 777146 }, + { url = "https://files.pythonhosted.org/packages/93/14/a9123402a27d1a11d034cb51236a9f6e5ba01a38e8599ede95d46e4362fa/regex-2024.7.24-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:04ce29e2c5fedf296b1a1b0acc1724ba93a36fb14031f3abfb7abda2806c1535", size = 818435 }, + { url = "https://files.pythonhosted.org/packages/04/72/fbab33403723b661cbfed09c635bf6ecfc07268df1a56555d19f6f0da6af/regex-2024.7.24-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b16582783f44fbca6fcf46f61347340c787d7530d88b4d590a397a47583f31dd", size = 803404 }, + { url = "https://files.pythonhosted.org/packages/36/67/851cf82e2c47d46846cca15ba84f845e876257a54cb82f229d335cd5c67e/regex-2024.7.24-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:836d3cc225b3e8a943d0b02633fb2f28a66e281290302a79df0e1eaa984ff7c1", size = 775901 }, + { url = "https://files.pythonhosted.org/packages/7f/02/19abc35bbc20f05d4a4147319923dc880c4005a01917d41b3340bf0f84ae/regex-2024.7.24-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:438d9f0f4bc64e8dea78274caa5af971ceff0f8771e1a2333620969936ba10be", size = 766357 }, + { url = "https://files.pythonhosted.org/packages/18/fb/1e35f8cfe3cd1a086449db7bbf91b6e0051b91ebb71e67915b1b01d3a3cf/regex-2024.7.24-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:973335b1624859cb0e52f96062a28aa18f3a5fc77a96e4a3d6d76e29811a0e6e", size = 691636 }, + { url = "https://files.pythonhosted.org/packages/46/29/3561d53e0cb7a1d98385206a133988616637f98a4517ada9b714d6dff5c9/regex-2024.7.24-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:c5e69fd3eb0b409432b537fe3c6f44ac089c458ab6b78dcec14478422879ec5f", size = 762342 }, + { url = "https://files.pythonhosted.org/packages/28/8b/f7fb2feb45e2c16e6e49c55979519c7ac76f3432267bf64d4aabd5d3b47b/regex-2024.7.24-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:fbf8c2f00904eaf63ff37718eb13acf8e178cb940520e47b2f05027f5bb34ce3", size = 771548 }, + { url = "https://files.pythonhosted.org/packages/03/d1/629e72e8f04639e6fadfe67b8823cc94fdcd19192b0175bd086950fefca8/regex-2024.7.24-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:ae2757ace61bc4061b69af19e4689fa4416e1a04840f33b441034202b5cd02d4", size = 840214 }, + { url = "https://files.pythonhosted.org/packages/44/af/e523b6e074f90c0471d25898916d05a1b7a774b259be192f8bc6683c5966/regex-2024.7.24-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:44fc61b99035fd9b3b9453f1713234e5a7c92a04f3577252b45feefe1b327759", size = 838533 }, + { url = "https://files.pythonhosted.org/packages/3c/2a/af44a6747d1c331234f57d48cf2dcab221770cd755a7c16b5c358b485952/regex-2024.7.24-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:84c312cdf839e8b579f504afcd7b65f35d60b6285d892b19adea16355e8343c9", size = 767083 }, + { url = "https://files.pythonhosted.org/packages/90/86/865208eb0f0790d3e4c726d291acc5cbbfed4c5133a44dc99d7d746ff0bf/regex-2024.7.24-cp39-cp39-win32.whl", hash = "sha256:ca5b2028c2f7af4e13fb9fc29b28d0ce767c38c7facdf64f6c2cd040413055f1", size = 257737 }, + { url = "https://files.pythonhosted.org/packages/7f/61/b60849cd13f26a25b7aa61a0118c86c76b933a032d38b4657f4baeaeab5b/regex-2024.7.24-cp39-cp39-win_amd64.whl", hash = "sha256:7c479f5ae937ec9985ecaf42e2e10631551d909f203e31308c12d703922742f9", size = 269711 }, +] + +[[package]] +name = "requests" +version = "2.32.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "charset-normalizer", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "idna", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "urllib3", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/63/70/2bf7780ad2d390a8d301ad0b550f1581eadbd9a20f896afe06353c2a2913/requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760", size = 131218 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/9b/335f9764261e915ed497fcdeb11df5dfd6f7bf257d4a6a2a686d80da4d54/requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6", size = 64928 }, +] + +[[package]] +name = "requests-oauthlib" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "oauthlib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/42/f2/05f29bc3913aea15eb670be136045bf5c5bbf4b99ecb839da9b422bb2c85/requests-oauthlib-2.0.0.tar.gz", hash = "sha256:b3dffaebd884d8cd778494369603a9e7b58d29111bf6b41bdc2dcd87203af4e9", size = 55650 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3b/5d/63d4ae3b9daea098d5d6f5da83984853c1bbacd5dc826764b249fe119d24/requests_oauthlib-2.0.0-py2.py3-none-any.whl", hash = "sha256:7dd8a5c40426b779b0868c404bdef9768deccf22749cde15852df527e6269b36", size = 24179 }, +] + +[[package]] +name = "retrying" +version = "1.3.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ce/70/15ce8551d65b324e18c5aa6ef6998880f21ead51ebe5ed743c0950d7d9dd/retrying-1.3.4.tar.gz", hash = "sha256:345da8c5765bd982b1d1915deb9102fd3d1f7ad16bd84a9700b85f64d24e8f3e", size = 10929 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8f/04/9e36f28be4c0532c0e9207ff9dc01fb13a2b0eb036476a213b0000837d0e/retrying-1.3.4-py3-none-any.whl", hash = "sha256:8cc4d43cb8e1125e0ff3344e9de678fefd85db3b750b81b2240dc0183af37b35", size = 11602 }, +] + +[[package]] +name = "rfc3986" +version = "1.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/79/30/5b1b6c28c105629cc12b33bdcbb0b11b5bb1880c6cfbd955f9e792921aa8/rfc3986-1.5.0.tar.gz", hash = "sha256:270aaf10d87d0d4e095063c65bf3ddbc6ee3d0b226328ce21e036f946e421835", size = 49378 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c4/e5/63ca2c4edf4e00657584608bee1001302bbf8c5f569340b78304f2f446cb/rfc3986-1.5.0-py2.py3-none-any.whl", hash = "sha256:a86d6e1f5b1dc238b218b012df0aa79409667bb209e58da56d0b94704e712a97", size = 31976 }, +] + +[[package]] +name = "rhoknp" +version = "1.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c9/a9/08dc57ef4cc49a6efc403ffd43fe1b24a0c67600e1076236979d0f12a39c/rhoknp-1.3.0.tar.gz", hash = "sha256:ccbac0bba6662b00a573f2d0361e64978901202c44c56b50b3ce2afa5dbb23b6", size = 64150 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/42/416cb51910d0d7365daae32e62ca878db6e867760bf453a62118cb1d7d23/rhoknp-1.3.0-py3-none-any.whl", hash = "sha256:41ee79bbd25e8e1142d555a2e714356fd810b9bf9bb610c75b3bcb704c37ac00", size = 86838 }, +] + +[[package]] +name = "rich" +version = "13.7.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markdown-it-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pygments", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b3/01/c954e134dc440ab5f96952fe52b4fdc64225530320a910473c1fe270d9aa/rich-13.7.1.tar.gz", hash = "sha256:9be308cb1fe2f1f57d67ce99e95af38a1e2bc71ad9813b0e247cf7ffbcc3a432", size = 221248 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/87/67/a37f6214d0e9fe57f6ae54b2956d550ca8365857f42a1ce0392bb21d9410/rich-13.7.1-py3-none-any.whl", hash = "sha256:4edbae314f59eb482f54e9e30bf00d33350aaa94f4bfcd4e9e3110e64d0d7222", size = 240681 }, +] + +[[package]] +name = "rjieba" +version = "0.1.11" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/51/53/6bc9653460d3182383fdd972ee50c167acadc3aca440c9a4fb9ef9a201ad/rjieba-0.1.11.tar.gz", hash = "sha256:a9cdbefc404dc2536b0e8c0f7b084a70f9e7e412abab5a93b0e09420db0499bc", size = 7491 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/44/86/62d971b3bd07655ba2a0520825ffe0e0564e5a400a00f856a75498501148/rjieba-0.1.11-cp36-abi3-macosx_10_7_x86_64.whl", hash = "sha256:2c9e0b81e1d237b36e9c3657deeaed7d024a7ea50f935d056972e5603da5a071", size = 2863423 }, + { url = "https://files.pythonhosted.org/packages/41/15/0059998a355b7282b94584b6d916575606051a22f0770d78745edd5f8563/rjieba-0.1.11-cp36-abi3-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:b54a32a7147e5a79f57d285fdf42a227ba70357c7ea187c0b9c226358ea3fcdf", size = 5719263 }, + { url = "https://files.pythonhosted.org/packages/22/40/466e5106a72fc674207411433dafd09ccecbf8ad11b0a8fab5e3114be006/rjieba-0.1.11-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f5c2e93c43c2c9306b89b2afd04c59a9827faf678a77e458cbde505dad969783", size = 3895193 }, + { url = "https://files.pythonhosted.org/packages/7f/b7/e9c8323da708f51473af4ade8e5094c9b567b9fa7898dd25771e7813bc1f/rjieba-0.1.11-cp36-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:012c27e956f15521dc12d1951202872eef353caed346de65265925efac945aa6", size = 3678398 }, + { url = "https://files.pythonhosted.org/packages/8a/47/02b0f2e04a6a4718a7748fef767245a04f1309a1c0265896923e000f9c22/rjieba-0.1.11-cp36-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:a5496b464b6d362293d73832680df6050726609fa70987bee164b4477cf9e43f", size = 4120062 }, + { url = "https://files.pythonhosted.org/packages/6f/62/c2791f6d47c3856f60bd13fbbf162df90fe9f2c83c8a3ed095ea68fb4ab0/rjieba-0.1.11-cp36-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f84373342a797ab60bac32c560a98670e8e897e8e3ff7dd96fd27a858640e5cf", size = 4012543 }, + { url = "https://files.pythonhosted.org/packages/28/be/8999a88af21366952adafc34e60a0307e5a454ae144a70befe6c4270988b/rjieba-0.1.11-cp36-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cb38b8dd03a8280bc4df6307e00ef8ed57e115f0b4c75453aad3816a44f331f4", size = 4172578 }, + { url = "https://files.pythonhosted.org/packages/1c/27/3367d20eee9ab7e0d73f629eeecff138ecc7a4ee935a9e5728c5c88760f6/rjieba-0.1.11-cp36-abi3-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5fe3dd87452ff180d7986578c8e352fe1c1b577416cafdc11d3dfc1e35f1d1fc", size = 3720160 }, + { url = "https://files.pythonhosted.org/packages/c6/1c/4b3c20282986e408f87d41eef2db0f8a86168341b97a4c2399a4ec8a0d59/rjieba-0.1.11-cp36-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:2b8bd280d4f3730aba089b9f6dea91855742078804ecd48028f41c9099062c20", size = 3838996 }, + { url = "https://files.pythonhosted.org/packages/07/56/28931b1ae4c89e789d55d139c2cd607e53a963c6d94214da906d406f6702/rjieba-0.1.11-cp36-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:63faef666183bffdbbbd4beb756e079578990a08ee7a0c2bc1f97566f5a5b1d8", size = 4058009 }, + { url = "https://files.pythonhosted.org/packages/47/12/3da42febf293d915b9952a07d6047ba0f91d4d236736a81ea97ef3d6f8ca/rjieba-0.1.11-cp36-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:67e7635aea74038f7e7cd452a8eb4e3ad05c8e0ac12c03c32d3bdb8283b63dc1", size = 4010131 }, + { url = "https://files.pythonhosted.org/packages/b9/f2/8ff6385f547690486d110d2fbdf00e72978ba570d0e7c6429302d6146f7c/rjieba-0.1.11-cp36-abi3-musllinux_1_2_i686.whl", hash = "sha256:657c1863332b5bb9a4009975a99fc0c94f504b10ace84b36eb7dbfa1a3834491", size = 3864270 }, + { url = "https://files.pythonhosted.org/packages/5a/62/3433231d92af712c96ef6e9e64639b008d1ab2892fbfa4953f3b2a85213c/rjieba-0.1.11-cp36-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:d0ce26b8cb5b3101e9fa59e07c9ef5dec3c7d0dba11668d8101cd77970951650", size = 4015376 }, + { url = "https://files.pythonhosted.org/packages/8c/9e/18277bfcdbaae6794ca9b7076a47b1534c469cd378b5605e6e91b5dce60a/rjieba-0.1.11-cp36-abi3-win32.whl", hash = "sha256:b2e98ca673370f0b9bc61a4e78df7181876bdb8087c4257cbcb80deaa1d8a119", size = 2664075 }, + { url = "https://files.pythonhosted.org/packages/97/4d/74d6c68dd61bb3cf035646b728eedd370332795dbc6111c25616e95f77e3/rjieba-0.1.11-cp36-abi3-win_amd64.whl", hash = "sha256:61b4187c21b724dd1eba732482bdcdbf61623d64c936942d8e80d1a69315d3c7", size = 2728182 }, +] + +[[package]] +name = "rouge-score" +version = "0.1.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "nltk", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e2/c5/9136736c37022a6ad27fea38f3111eb8f02fe75d067f9a985cc358653102/rouge_score-0.1.2.tar.gz", hash = "sha256:c7d4da2683e68c9abf0135ef915d63a46643666f848e558a1b9f7ead17ff0f04", size = 17400 } + +[[package]] +name = "rpds-py" +version = "0.20.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/55/64/b693f262791b818880d17268f3f8181ef799b0d187f6f731b1772e05a29a/rpds_py-0.20.0.tar.gz", hash = "sha256:d72a210824facfdaf8768cf2d7ca25a042c30320b3020de2fa04640920d4e121", size = 25814 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/71/2d/a7e60483b72b91909e18f29a5c5ae847bac4e2ae95b77bb77e1f41819a58/rpds_py-0.20.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:3ad0fda1635f8439cde85c700f964b23ed5fc2d28016b32b9ee5fe30da5c84e2", size = 318432 }, + { url = "https://files.pythonhosted.org/packages/b5/b4/f15b0c55a6d880ce74170e7e28c3ed6c5acdbbd118df50b91d1dabf86008/rpds_py-0.20.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9bb4a0d90fdb03437c109a17eade42dfbf6190408f29b2744114d11586611d6f", size = 311333 }, + { url = "https://files.pythonhosted.org/packages/36/10/3f4e490fe6eb069c07c22357d0b4804cd94cb9f8d01345ef9b1d93482b9d/rpds_py-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c6377e647bbfd0a0b159fe557f2c6c602c159fc752fa316572f012fc0bf67150", size = 366697 }, + { url = "https://files.pythonhosted.org/packages/f5/c8/cd6ab31b4424c7fab3b17e153b6ea7d1bb0d7cabea5c1ef683cc8adb8bc2/rpds_py-0.20.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eb851b7df9dda52dc1415ebee12362047ce771fc36914586b2e9fcbd7d293b3e", size = 368386 }, + { url = "https://files.pythonhosted.org/packages/60/5e/642a44fda6dda90b5237af7a0ef1d088159c30a504852b94b0396eb62125/rpds_py-0.20.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1e0f80b739e5a8f54837be5d5c924483996b603d5502bfff79bf33da06164ee2", size = 395374 }, + { url = "https://files.pythonhosted.org/packages/7c/b5/ff18c093c9e72630f6d6242e5ccb0728ef8265ba0a154b5972f89d23790a/rpds_py-0.20.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5a8c94dad2e45324fc74dce25e1645d4d14df9a4e54a30fa0ae8bad9a63928e3", size = 433189 }, + { url = "https://files.pythonhosted.org/packages/4a/6d/1166a157b227f2333f8e8ae320b6b7ea2a6a38fbe7a3563ad76dffc8608d/rpds_py-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8e604fe73ba048c06085beaf51147eaec7df856824bfe7b98657cf436623daf", size = 354849 }, + { url = "https://files.pythonhosted.org/packages/70/a4/70ea49863ea09ae4c2971f2eef58e80b757e3c0f2f618c5815bb751f7847/rpds_py-0.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:df3de6b7726b52966edf29663e57306b23ef775faf0ac01a3e9f4012a24a4140", size = 373233 }, + { url = "https://files.pythonhosted.org/packages/3b/d3/822a28152a1e7e2ba0dc5d06cf8736f4cd64b191bb6ec47fb51d1c3c5ccf/rpds_py-0.20.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:cf258ede5bc22a45c8e726b29835b9303c285ab46fc7c3a4cc770736b5304c9f", size = 541852 }, + { url = "https://files.pythonhosted.org/packages/c6/a5/6ef91e4425dc8b3445ff77d292fc4c5e37046462434a0423c4e0a596a8bd/rpds_py-0.20.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:55fea87029cded5df854ca7e192ec7bdb7ecd1d9a3f63d5c4eb09148acf4a7ce", size = 547630 }, + { url = "https://files.pythonhosted.org/packages/72/f8/d5625ee05c4e5c478954a16d9359069c66fe8ac8cd5ddf28f80d3b321837/rpds_py-0.20.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ae94bd0b2f02c28e199e9bc51485d0c5601f58780636185660f86bf80c89af94", size = 525766 }, + { url = "https://files.pythonhosted.org/packages/94/3c/1ff1ed6ae323b3e16fdfcdae0f0a67f373a6c3d991229dc32b499edeffb7/rpds_py-0.20.0-cp310-none-win32.whl", hash = "sha256:28527c685f237c05445efec62426d285e47a58fb05ba0090a4340b73ecda6dee", size = 199174 }, + { url = "https://files.pythonhosted.org/packages/ec/ba/5762c0aee2403dfea14ed74b0f8a2415cfdbb21cf745d600d9a8ac952c5b/rpds_py-0.20.0-cp310-none-win_amd64.whl", hash = "sha256:238a2d5b1cad28cdc6ed15faf93a998336eb041c4e440dd7f902528b8891b399", size = 213543 }, + { url = "https://files.pythonhosted.org/packages/ab/2a/191374c52d7be0b056cc2a04d718d2244c152f915d4a8d2db2aacc526189/rpds_py-0.20.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:ac2f4f7a98934c2ed6505aead07b979e6f999389f16b714448fb39bbaa86a489", size = 318369 }, + { url = "https://files.pythonhosted.org/packages/0e/6a/2c9fdcc6d235ac0d61ec4fd9981184689c3e682abd05e3caa49bccb9c298/rpds_py-0.20.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:220002c1b846db9afd83371d08d239fdc865e8f8c5795bbaec20916a76db3318", size = 311303 }, + { url = "https://files.pythonhosted.org/packages/d2/b2/725487d29633f64ef8f9cbf4729111a0b61702c8f8e94db1653930f52cce/rpds_py-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8d7919548df3f25374a1f5d01fbcd38dacab338ef5f33e044744b5c36729c8db", size = 366424 }, + { url = "https://files.pythonhosted.org/packages/7a/8c/668195ab9226d01b7cf7cd9e59c1c0be1df05d602df7ec0cf46f857dcf59/rpds_py-0.20.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:758406267907b3781beee0f0edfe4a179fbd97c0be2e9b1154d7f0a1279cf8e5", size = 368359 }, + { url = "https://files.pythonhosted.org/packages/52/28/356f6a39c1adeb02cf3e5dd526f5e8e54e17899bef045397abcfbf50dffa/rpds_py-0.20.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3d61339e9f84a3f0767b1995adfb171a0d00a1185192718a17af6e124728e0f5", size = 394886 }, + { url = "https://files.pythonhosted.org/packages/a2/65/640fb1a89080a8fb6f4bebd3dafb65a2edba82e2e44c33e6eb0f3e7956f1/rpds_py-0.20.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1259c7b3705ac0a0bd38197565a5d603218591d3f6cee6e614e380b6ba61c6f6", size = 432416 }, + { url = "https://files.pythonhosted.org/packages/a7/e8/85835077b782555d6b3416874b702ea6ebd7db1f145283c9252968670dd5/rpds_py-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5c1dc0f53856b9cc9a0ccca0a7cc61d3d20a7088201c0937f3f4048c1718a209", size = 354819 }, + { url = "https://files.pythonhosted.org/packages/4f/87/1ac631e923d65cbf36fbcfc6eaa702a169496de1311e54be142f178e53ee/rpds_py-0.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7e60cb630f674a31f0368ed32b2a6b4331b8350d67de53c0359992444b116dd3", size = 373282 }, + { url = "https://files.pythonhosted.org/packages/e4/ce/cb316f7970189e217b998191c7cf0da2ede3d5437932c86a7210dc1e9994/rpds_py-0.20.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:dbe982f38565bb50cb7fb061ebf762c2f254ca3d8c20d4006878766e84266272", size = 541540 }, + { url = "https://files.pythonhosted.org/packages/90/d7/4112d7655ec8aff168ecc91d4ceb51c557336edde7e6ccf6463691a2f253/rpds_py-0.20.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:514b3293b64187172bc77c8fb0cdae26981618021053b30d8371c3a902d4d5ad", size = 547640 }, + { url = "https://files.pythonhosted.org/packages/ab/44/4f61d64dfed98cc71623f3a7fcb612df636a208b4b2c6611eaa985e130a9/rpds_py-0.20.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d0a26ffe9d4dd35e4dfdd1e71f46401cff0181c75ac174711ccff0459135fa58", size = 525555 }, + { url = "https://files.pythonhosted.org/packages/35/f2/a862d81eacb21f340d584cd1c749c289979f9a60e9229f78bffc0418a199/rpds_py-0.20.0-cp311-none-win32.whl", hash = "sha256:89c19a494bf3ad08c1da49445cc5d13d8fefc265f48ee7e7556839acdacf69d0", size = 199338 }, + { url = "https://files.pythonhosted.org/packages/cc/ec/77d0674f9af4872919f3738018558dd9d37ad3f7ad792d062eadd4af7cba/rpds_py-0.20.0-cp311-none-win_amd64.whl", hash = "sha256:c638144ce971df84650d3ed0096e2ae7af8e62ecbbb7b201c8935c370df00a2c", size = 213585 }, + { url = "https://files.pythonhosted.org/packages/89/b7/f9682c5cc37fcc035f4a0fc33c1fe92ec9cbfdee0cdfd071cf948f53e0df/rpds_py-0.20.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:a84ab91cbe7aab97f7446652d0ed37d35b68a465aeef8fc41932a9d7eee2c1a6", size = 321468 }, + { url = "https://files.pythonhosted.org/packages/b8/ad/fc82be4eaceb8d444cb6fc1956ce972b3a0795104279de05e0e4131d0a47/rpds_py-0.20.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:56e27147a5a4c2c21633ff8475d185734c0e4befd1c989b5b95a5d0db699b21b", size = 313062 }, + { url = "https://files.pythonhosted.org/packages/0e/1c/6039e80b13a08569a304dc13476dc986352dca4598e909384db043b4e2bb/rpds_py-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2580b0c34583b85efec8c5c5ec9edf2dfe817330cc882ee972ae650e7b5ef739", size = 370168 }, + { url = "https://files.pythonhosted.org/packages/dc/c9/5b9aa35acfb58946b4b785bc8e700ac313669e02fb100f3efa6176a83e81/rpds_py-0.20.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b80d4a7900cf6b66bb9cee5c352b2d708e29e5a37fe9bf784fa97fc11504bf6c", size = 371376 }, + { url = "https://files.pythonhosted.org/packages/7b/dd/0e0dbeb70d8a5357d2814764d467ded98d81d90d3570de4fb05ec7224f6b/rpds_py-0.20.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:50eccbf054e62a7b2209b28dc7a22d6254860209d6753e6b78cfaeb0075d7bee", size = 397200 }, + { url = "https://files.pythonhosted.org/packages/e4/da/a47d931eb688ccfd77a7389e45935c79c41e8098d984d87335004baccb1d/rpds_py-0.20.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:49a8063ea4296b3a7e81a5dfb8f7b2d73f0b1c20c2af401fb0cdf22e14711a96", size = 426824 }, + { url = "https://files.pythonhosted.org/packages/0f/f7/a59a673594e6c2ff2dbc44b00fd4ecdec2fc399bb6a7bd82d612699a0121/rpds_py-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea438162a9fcbee3ecf36c23e6c68237479f89f962f82dae83dc15feeceb37e4", size = 357967 }, + { url = "https://files.pythonhosted.org/packages/5f/61/3ba1905396b2cb7088f9503a460b87da33452da54d478cb9241f6ad16d00/rpds_py-0.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:18d7585c463087bddcfa74c2ba267339f14f2515158ac4db30b1f9cbdb62c8ef", size = 378905 }, + { url = "https://files.pythonhosted.org/packages/08/31/6d0df9356b4edb0a3a077f1ef714e25ad21f9f5382fc490c2383691885ea/rpds_py-0.20.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d4c7d1a051eeb39f5c9547e82ea27cbcc28338482242e3e0b7768033cb083821", size = 546348 }, + { url = "https://files.pythonhosted.org/packages/ae/15/d33c021de5cb793101df9961c3c746dfc476953dbbf5db337d8010dffd4e/rpds_py-0.20.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e4df1e3b3bec320790f699890d41c59d250f6beda159ea3c44c3f5bac1976940", size = 553152 }, + { url = "https://files.pythonhosted.org/packages/70/2d/5536d28c507a4679179ab15aa0049440e4d3dd6752050fa0843ed11e9354/rpds_py-0.20.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2cf126d33a91ee6eedc7f3197b53e87a2acdac63602c0f03a02dd69e4b138174", size = 528807 }, + { url = "https://files.pythonhosted.org/packages/e3/62/7ebe6ec0d3dd6130921f8cffb7e34afb7f71b3819aa0446a24c5e81245ec/rpds_py-0.20.0-cp312-none-win32.whl", hash = "sha256:8bc7690f7caee50b04a79bf017a8d020c1f48c2a1077ffe172abec59870f1139", size = 200993 }, + { url = "https://files.pythonhosted.org/packages/ec/2f/b938864d66b86a6e4acadefdc56de75ef56f7cafdfd568a6464605457bd5/rpds_py-0.20.0-cp312-none-win_amd64.whl", hash = "sha256:0e13e6952ef264c40587d510ad676a988df19adea20444c2b295e536457bc585", size = 214458 }, + { url = "https://files.pythonhosted.org/packages/99/32/43b919a0a423c270a838ac2726b1c7168b946f2563fd99a51aaa9692d00f/rpds_py-0.20.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:aa9a0521aeca7d4941499a73ad7d4f8ffa3d1affc50b9ea11d992cd7eff18a29", size = 321465 }, + { url = "https://files.pythonhosted.org/packages/58/a9/c4d899cb28e9e47b0ff12462e8f827381f243176036f17bef9c1604667f2/rpds_py-0.20.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4a1f1d51eccb7e6c32ae89243cb352389228ea62f89cd80823ea7dd1b98e0b91", size = 312900 }, + { url = "https://files.pythonhosted.org/packages/8f/90/9e51670575b5dfaa8c823369ef7d943087bfb73d4f124a99ad6ef19a2b26/rpds_py-0.20.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8a86a9b96070674fc88b6f9f71a97d2c1d3e5165574615d1f9168ecba4cecb24", size = 370973 }, + { url = "https://files.pythonhosted.org/packages/fc/c1/523f2a03f853fc0d4c1acbef161747e9ab7df0a8abf6236106e333540921/rpds_py-0.20.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6c8ef2ebf76df43f5750b46851ed1cdf8f109d7787ca40035fe19fbdc1acc5a7", size = 370890 }, + { url = "https://files.pythonhosted.org/packages/51/ca/2458a771f16b0931de4d384decbe43016710bc948036c8f4562d6e063437/rpds_py-0.20.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b74b25f024b421d5859d156750ea9a65651793d51b76a2e9238c05c9d5f203a9", size = 397174 }, + { url = "https://files.pythonhosted.org/packages/00/7d/6e06807f6305ea2408b364efb0eef83a6e21b5e7b5267ad6b473b9a7e416/rpds_py-0.20.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:57eb94a8c16ab08fef6404301c38318e2c5a32216bf5de453e2714c964c125c8", size = 426449 }, + { url = "https://files.pythonhosted.org/packages/8c/d1/6c9e65260a819a1714510a7d69ac1d68aa23ee9ce8a2d9da12187263c8fc/rpds_py-0.20.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e1940dae14e715e2e02dfd5b0f64a52e8374a517a1e531ad9412319dc3ac7879", size = 357698 }, + { url = "https://files.pythonhosted.org/packages/5d/fb/ecea8b5286d2f03eec922be7173a03ed17278944f7c124348f535116db15/rpds_py-0.20.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d20277fd62e1b992a50c43f13fbe13277a31f8c9f70d59759c88f644d66c619f", size = 378530 }, + { url = "https://files.pythonhosted.org/packages/e3/e3/ac72f858957f52a109c588589b73bd2fad4a0fc82387fb55fb34aeb0f9cd/rpds_py-0.20.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:06db23d43f26478303e954c34c75182356ca9aa7797d22c5345b16871ab9c45c", size = 545753 }, + { url = "https://files.pythonhosted.org/packages/b2/a4/a27683b519d5fc98e4390a3b130117d80fd475c67aeda8aac83c0e8e326a/rpds_py-0.20.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:b2a5db5397d82fa847e4c624b0c98fe59d2d9b7cf0ce6de09e4d2e80f8f5b3f2", size = 552443 }, + { url = "https://files.pythonhosted.org/packages/a1/ed/c074d248409b4432b1ccb2056974175fa0af2d1bc1f9c21121f80a358fa3/rpds_py-0.20.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5a35df9f5548fd79cb2f52d27182108c3e6641a4feb0f39067911bf2adaa3e57", size = 528380 }, + { url = "https://files.pythonhosted.org/packages/d5/bd/04caf938895d2d78201e89c0c8a94dfd9990c34a19ff52fb01d0912343e3/rpds_py-0.20.0-cp313-none-win32.whl", hash = "sha256:fd2d84f40633bc475ef2d5490b9c19543fbf18596dcb1b291e3a12ea5d722f7a", size = 200540 }, + { url = "https://files.pythonhosted.org/packages/95/cc/109eb8b9863680411ae703664abacaa035820c7755acc9686d5dd02cdd2e/rpds_py-0.20.0-cp313-none-win_amd64.whl", hash = "sha256:9bc2d153989e3216b0559251b0c260cfd168ec78b1fac33dd485750a228db5a2", size = 214111 }, + { url = "https://files.pythonhosted.org/packages/a1/55/228f6d9a8c6940c8d5e49db5e0434ffcbad669c33509ac39cb0af061b0fa/rpds_py-0.20.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:3fde368e9140312b6e8b6c09fb9f8c8c2f00999d1823403ae90cc00480221b22", size = 319496 }, + { url = "https://files.pythonhosted.org/packages/68/61/074236253586feb550954f8b4359d38eefb45bafcbbb7d2e74062a82f386/rpds_py-0.20.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9824fb430c9cf9af743cf7aaf6707bf14323fb51ee74425c380f4c846ea70789", size = 311837 }, + { url = "https://files.pythonhosted.org/packages/03/67/ed6c2fe076bf78296934d4356145fedf3c7c2f8d490e099bcf6f31794dc0/rpds_py-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:11ef6ce74616342888b69878d45e9f779b95d4bd48b382a229fe624a409b72c5", size = 367819 }, + { url = "https://files.pythonhosted.org/packages/30/25/4a9e7b89b6760ac032f375cb236e4f8e518ad1fad685c40b6a9752056d6f/rpds_py-0.20.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c52d3f2f82b763a24ef52f5d24358553e8403ce05f893b5347098014f2d9eff2", size = 368322 }, + { url = "https://files.pythonhosted.org/packages/67/17/0255bb0e564517b53343ea672ebec9fb7ad40e9083ca09a4080fbc986bb9/rpds_py-0.20.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9d35cef91e59ebbeaa45214861874bc6f19eb35de96db73e467a8358d701a96c", size = 395552 }, + { url = "https://files.pythonhosted.org/packages/af/6e/77c65ccb0d7cdc39ec2be19b918a4d4fe9e2d2a1c5cab36745b36f2c1e59/rpds_py-0.20.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d72278a30111e5b5525c1dd96120d9e958464316f55adb030433ea905866f4de", size = 433735 }, + { url = "https://files.pythonhosted.org/packages/04/d8/e73d56b1908a6c0e3e5982365eb293170cd458cc25a19363f69c76e00fd2/rpds_py-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4c29cbbba378759ac5786730d1c3cb4ec6f8ababf5c42a9ce303dc4b3d08cda", size = 355542 }, + { url = "https://files.pythonhosted.org/packages/47/df/e72c79053b0c882b818bfd8f0ed1f1ace550bc9cdba27165cb73dddb9394/rpds_py-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6632f2d04f15d1bd6fe0eedd3b86d9061b836ddca4c03d5cf5c7e9e6b7c14580", size = 373644 }, + { url = "https://files.pythonhosted.org/packages/7f/00/3e16cb08c0cc6a233f0f61e4d009e3098cbe280ec975d14f28935bd15316/rpds_py-0.20.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d0b67d87bb45ed1cd020e8fbf2307d449b68abc45402fe1a4ac9e46c3c8b192b", size = 543139 }, + { url = "https://files.pythonhosted.org/packages/41/71/799c6b6f6031ed535f22fcf6802601cc7f981842bd28007bb7bb4bd10b2f/rpds_py-0.20.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:ec31a99ca63bf3cd7f1a5ac9fe95c5e2d060d3c768a09bc1d16e235840861420", size = 548007 }, + { url = "https://files.pythonhosted.org/packages/53/58/ad03eb6718e814fa045198c72d45d2ae60180eb48338f22c9fa34bd89964/rpds_py-0.20.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:22e6c9976e38f4d8c4a63bd8a8edac5307dffd3ee7e6026d97f3cc3a2dc02a0b", size = 526102 }, + { url = "https://files.pythonhosted.org/packages/78/99/a52e5b460f2311fc8ee75ff769e8d67e76208947180eacb4f153af2d9967/rpds_py-0.20.0-cp39-none-win32.whl", hash = "sha256:569b3ea770c2717b730b61998b6c54996adee3cef69fc28d444f3e7920313cf7", size = 199391 }, + { url = "https://files.pythonhosted.org/packages/0c/7d/fd42a27fe392a69faf4a5e635870fc425edcb998485ee73afbc734ecef16/rpds_py-0.20.0-cp39-none-win_amd64.whl", hash = "sha256:e6900ecdd50ce0facf703f7a00df12374b74bbc8ad9fe0f6559947fb20f82364", size = 213205 }, + { url = "https://files.pythonhosted.org/packages/06/39/bf1f664c347c946ef56cecaa896e3693d91acc741afa78ebb3fdb7aba08b/rpds_py-0.20.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:617c7357272c67696fd052811e352ac54ed1d9b49ab370261a80d3b6ce385045", size = 319444 }, + { url = "https://files.pythonhosted.org/packages/c1/71/876135d3cb90d62468540b84e8e83ff4dc92052ab309bfdea7ea0b9221ad/rpds_py-0.20.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:9426133526f69fcaba6e42146b4e12d6bc6c839b8b555097020e2b78ce908dcc", size = 311699 }, + { url = "https://files.pythonhosted.org/packages/f7/da/8ccaeba6a3dda7467aebaf893de9eafd56275e2c90773c83bf15fb0b8374/rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:deb62214c42a261cb3eb04d474f7155279c1a8a8c30ac89b7dcb1721d92c3c02", size = 367825 }, + { url = "https://files.pythonhosted.org/packages/04/b6/02a54c47c178d180395b3c9a8bfb3b93906e08f9acf7b4a1067d27c3fae0/rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fcaeb7b57f1a1e071ebd748984359fef83ecb026325b9d4ca847c95bc7311c92", size = 369046 }, + { url = "https://files.pythonhosted.org/packages/a7/64/df4966743aa4def8727dc13d06527c8b13eb7412c1429def2d4701bee520/rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d454b8749b4bd70dd0a79f428731ee263fa6995f83ccb8bada706e8d1d3ff89d", size = 395896 }, + { url = "https://files.pythonhosted.org/packages/6f/d9/7ff03ff3642c600f27ff94512bb158a8d815fea5ed4162c75a7e850d6003/rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d807dc2051abe041b6649681dce568f8e10668e3c1c6543ebae58f2d7e617855", size = 432427 }, + { url = "https://files.pythonhosted.org/packages/b8/c6/e1b886f7277b3454e55e85332e165091c19114eecb5377b88d892fd36ccf/rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3c20f0ddeb6e29126d45f89206b8291352b8c5b44384e78a6499d68b52ae511", size = 355403 }, + { url = "https://files.pythonhosted.org/packages/e2/62/e26bd5b944e547c7bfd0b6ca7e306bfa430f8bd298ab72a1217976a7ca8d/rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b7f19250ceef892adf27f0399b9e5afad019288e9be756d6919cb58892129f51", size = 374491 }, + { url = "https://files.pythonhosted.org/packages/c3/92/93c5a530898d3a5d1ce087455071ba714b77806ed9ffee4070d0c7a53b7e/rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:4f1ed4749a08379555cebf4650453f14452eaa9c43d0a95c49db50c18b7da075", size = 543622 }, + { url = "https://files.pythonhosted.org/packages/01/9e/d68fba289625b5d3c9d1925825d7da716fbf812bda2133ac409021d5db13/rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:dcedf0b42bcb4cfff4101d7771a10532415a6106062f005ab97d1d0ab5681c60", size = 548558 }, + { url = "https://files.pythonhosted.org/packages/bf/d6/4b2fad4898154365f0f2bd72ffd190349274a4c1d6a6f94f02a83bb2b8f1/rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:39ed0d010457a78f54090fafb5d108501b5aa5604cc22408fc1c0c77eac14344", size = 525753 }, + { url = "https://files.pythonhosted.org/packages/d2/ea/6f121d1802f3adae1981aea4209ea66f9d3c7f2f6d6b85ef4f13a61d17ef/rpds_py-0.20.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:bb273176be34a746bdac0b0d7e4e2c467323d13640b736c4c477881a3220a989", size = 213529 }, + { url = "https://files.pythonhosted.org/packages/0a/6f/7ab47005469f0d73dad89d29b733e3555d454a45146c30f5628242e56d33/rpds_py-0.20.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f918a1a130a6dfe1d7fe0f105064141342e7dd1611f2e6a21cd2f5c8cb1cfb3e", size = 320800 }, + { url = "https://files.pythonhosted.org/packages/cc/a1/bef9e0ef30f89c7516559ca7acc40e8ae70397535a0b1a4535a4a01d9ed0/rpds_py-0.20.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:f60012a73aa396be721558caa3a6fd49b3dd0033d1675c6d59c4502e870fcf0c", size = 312001 }, + { url = "https://files.pythonhosted.org/packages/31/44/9093c5dca95ee463c3669651e710af182eb6f9cd83626b15a2ebde2247b1/rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d2b1ad682a3dfda2a4e8ad8572f3100f95fad98cb99faf37ff0ddfe9cbf9d03", size = 369279 }, + { url = "https://files.pythonhosted.org/packages/6f/ac/0c36e067681fa3fe4c60a9422b011ec0ccc80c1e124f5210951f7982e887/rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:614fdafe9f5f19c63ea02817fa4861c606a59a604a77c8cdef5aa01d28b97921", size = 369716 }, + { url = "https://files.pythonhosted.org/packages/6b/78/8896e08625d46ea5bfdd526ee688b91eeafecbc3cf7223612c82ed77905b/rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fa518bcd7600c584bf42e6617ee8132869e877db2f76bcdc281ec6a4113a53ab", size = 396708 }, + { url = "https://files.pythonhosted.org/packages/24/5f/d865ae460e47e46fd2b489f2aceed34439bd8f18a1ff414c299142e0e22a/rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f0475242f447cc6cb8a9dd486d68b2ef7fbee84427124c232bff5f63b1fe11e5", size = 433356 }, + { url = "https://files.pythonhosted.org/packages/bd/8b/04031937ffa565021f934a9acf44bb6b1b60ea19fa9e58950b32357e85a1/rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f90a4cd061914a60bd51c68bcb4357086991bd0bb93d8aa66a6da7701370708f", size = 356157 }, + { url = "https://files.pythonhosted.org/packages/3a/64/1f0471b1e688704a716e07340b85f4145109359951feb08676a1f3b8cec4/rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:def7400461c3a3f26e49078302e1c1b38f6752342c77e3cf72ce91ca69fb1bc1", size = 374826 }, + { url = "https://files.pythonhosted.org/packages/73/4e/082c0c5eba463e29dff1c6b49557f6ad0d6faae4b46832fa9c1e5b69b7ba/rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:65794e4048ee837494aea3c21a28ad5fc080994dfba5b036cf84de37f7ad5074", size = 544549 }, + { url = "https://files.pythonhosted.org/packages/cd/ee/f4af0a62d1ba912c4a3a7f5ec04350946ddd59017f3f3d1c227b20ddf558/rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:faefcc78f53a88f3076b7f8be0a8f8d35133a3ecf7f3770895c25f8813460f08", size = 549245 }, + { url = "https://files.pythonhosted.org/packages/59/42/34601dc773be86a85a9ca47f68301a69fdb019aaae0c1426813f265f5ac0/rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:5b4f105deeffa28bbcdff6c49b34e74903139afa690e35d2d9e3c2c2fba18cec", size = 526722 }, + { url = "https://files.pythonhosted.org/packages/ff/4f/280745d5180c9d78df6b53b6e8b65336f8b6adeb958a8fd19c749fded637/rpds_py-0.20.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:fdfc3a892927458d98f3d55428ae46b921d1f7543b89382fdb483f5640daaec8", size = 214379 }, +] + +[[package]] +name = "rsa" +version = "4.9" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyasn1", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/aa/65/7d973b89c4d2351d7fb232c2e452547ddfa243e93131e7cfa766da627b52/rsa-4.9.tar.gz", hash = "sha256:e38464a49c6c85d7f1351b0126661487a7e0a14a50f1675ec50eb34d4f20ef21", size = 29711 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/49/97/fa78e3d2f65c02c8e1268b9aba606569fe97f6c8f7c2d74394553347c145/rsa-4.9-py3-none-any.whl", hash = "sha256:90260d9058e514786967344d0ef75fa8727eed8a7d2e43ce9f4bcf1b536174f7", size = 34315 }, +] + +[[package]] +name = "ruff" +version = "0.1.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e7/f9/0453128f11c9ec0ec48ea125237634be3a1b8c4835282ab648373d8e6ff2/ruff-0.1.5.tar.gz", hash = "sha256:5cbec0ef2ae1748fb194f420fb03fb2c25c3258c86129af7172ff8f198f125ab", size = 1700097 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/59/e1/8267e29a09b59df28b4472ae4807d8db60b8e9672c5acf343e1eedc97330/ruff-0.1.5-py3-none-macosx_10_7_x86_64.whl", hash = "sha256:32d47fc69261c21a4c48916f16ca272bf2f273eb635d91c65d5cd548bf1f3d96", size = 6028745 }, + { url = "https://files.pythonhosted.org/packages/a1/2e/acf77283eb23154ed2220c70d84018a179267c58b63fa944938d0f599892/ruff-0.1.5-py3-none-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:171276c1df6c07fa0597fb946139ced1c2978f4f0b8254f201281729981f3c17", size = 11640319 }, + { url = "https://files.pythonhosted.org/packages/dc/2e/c7f7e235fd12543ddd9f8218d59ee4b017a504d43b6a5584eebe96410ff3/ruff-0.1.5-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:17ef33cd0bb7316ca65649fc748acc1406dfa4da96a3d0cde6d52f2e866c7b39", size = 5898810 }, + { url = "https://files.pythonhosted.org/packages/81/b6/bd72889302e8503bfa87d190afbb6f6c7ac1345d680071e990328929c359/ruff-0.1.5-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b2c205827b3f8c13b4a432e9585750b93fd907986fe1aec62b2a02cf4401eee6", size = 5601321 }, + { url = "https://files.pythonhosted.org/packages/79/9d/d057e791cebac3e9af27fa4b3c78daf09c7ff35a344943c0d1dd25155cc4/ruff-0.1.5-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bb408e3a2ad8f6881d0f2e7ad70cddb3ed9f200eb3517a91a245bbe27101d379", size = 6041325 }, + { url = "https://files.pythonhosted.org/packages/28/fd/53511e2a3cd5627706e34572e9af0f61e645126d90995f1e2071364aefb2/ruff-0.1.5-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:f20dc5e5905ddb407060ca27267c7174f532375c08076d1a953cf7bb016f5a24", size = 6709618 }, + { url = "https://files.pythonhosted.org/packages/54/db/834a231e191517b0d7911147fbcb92a2206c9f74d43dd23870d81849c5fc/ruff-0.1.5-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aafb9d2b671ed934998e881e2c0f5845a4295e84e719359c71c39a5363cccc91", size = 6565491 }, + { url = "https://files.pythonhosted.org/packages/66/21/4b5bbf5cb3b9d5d1213f345eb932db0c94471d5000d602b80e2ee967c853/ruff-0.1.5-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a4894dddb476597a0ba4473d72a23151b8b3b0b5f958f2cf4d3f1c572cdb7af7", size = 7598072 }, + { url = "https://files.pythonhosted.org/packages/ae/cf/95e9a2930c1a220fb2c5769d746901eea4576cc46f1200f0178a42a863ba/ruff-0.1.5-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a00a7ec893f665ed60008c70fe9eeb58d210e6b4d83ec6654a9904871f982a2a", size = 6266450 }, + { url = "https://files.pythonhosted.org/packages/59/e8/4839e31304c9a030fb04ae0c304c488b0bd942d3589f8314e86901138fed/ruff-0.1.5-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:a8c11206b47f283cbda399a654fd0178d7a389e631f19f51da15cbe631480c5b", size = 5846163 }, + { url = "https://files.pythonhosted.org/packages/d1/2b/3a25a022bff4114206fa52c071275ee2b97aa7be7aad9559f60f6b96db39/ruff-0.1.5-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:fa29e67b3284b9a79b1a85ee66e293a94ac6b7bb068b307a8a373c3d343aa8ec", size = 5603623 }, + { url = "https://files.pythonhosted.org/packages/a1/73/40b0188a03de86b24909e665274c8bc667c609c4f0a775fcc324fd5a23b5/ruff-0.1.5-py3-none-musllinux_1_2_i686.whl", hash = "sha256:9b97fd6da44d6cceb188147b68db69a5741fbc736465b5cea3928fdac0bc1aeb", size = 5924325 }, + { url = "https://files.pythonhosted.org/packages/75/d1/018dc8535a3c2083e888b9ad32169dccca5ebd486d4fc30e29e1c488334e/ruff-0.1.5-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:721f4b9d3b4161df8dc9f09aa8562e39d14e55a4dbaa451a8e55bdc9590e20f4", size = 6327392 }, + { url = "https://files.pythonhosted.org/packages/fb/f1/f50c6ee75d53df3f763eb067213d2411a9d8fcc98740a84bc88c7c00aea9/ruff-0.1.5-py3-none-win32.whl", hash = "sha256:f80c73bba6bc69e4fdc73b3991db0b546ce641bdcd5b07210b8ad6f64c79f1ab", size = 5799683 }, + { url = "https://files.pythonhosted.org/packages/88/54/549cff12b6e98e873fcb5b4cf85418c5f8ca53d473f2084dd5616695e925/ruff-0.1.5-py3-none-win_amd64.whl", hash = "sha256:c21fe20ee7d76206d290a76271c1af7a5096bc4c73ab9383ed2ad35f852a0087", size = 6181396 }, + { url = "https://files.pythonhosted.org/packages/2e/07/648e71f330cac7954268df52ad72196a6dc18a60b263af73577641c7ac25/ruff-0.1.5-py3-none-win_arm64.whl", hash = "sha256:82bfcb9927e88c1ed50f49ac6c9728dab3ea451212693fe40d08d314663e412f", size = 5928650 }, +] + +[[package]] +name = "s3transfer" +version = "0.10.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "botocore", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cb/67/94c6730ee4c34505b14d94040e2f31edf144c230b6b49e971b4f25ff8fab/s3transfer-0.10.2.tar.gz", hash = "sha256:0711534e9356d3cc692fdde846b4a1e4b0cb6519971860796e6bc4c7aea00ef6", size = 144095 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3c/4a/b221409913760d26cf4498b7b1741d510c82d3ad38381984a3ddc135ec66/s3transfer-0.10.2-py3-none-any.whl", hash = "sha256:eca1c20de70a39daee580aef4986996620f365c4e0fda6a86100231d62f1bf69", size = 82716 }, +] + +[[package]] +name = "sacrebleu" +version = "1.5.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "portalocker", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/fb/b1/145f754099689f9efe1525753c63eb81c97c9329add30385360af9256b72/sacrebleu-1.5.1.tar.gz", hash = "sha256:e8184f0d2ec45dd7ef0883fbce3976b2b7cf581e04d0854ac5f7eb394318b84b", size = 54725 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/57/0c7ca4e31a126189dab99c19951910bd081dea5bbd25f24b77107750eae7/sacrebleu-1.5.1-py3-none-any.whl", hash = "sha256:fbe54fcc7f4e370c9ded0c7cb9bbdadabc020bcde9217daea043b4906b962fdc", size = 54519 }, +] + +[[package]] +name = "sacremoses" +version = "0.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "joblib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "regex", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1d/51/fbdc4af4f6e85d26169e28be3763fe50ddfd0d4bf8b871422b0788dcc4d2/sacremoses-0.1.1.tar.gz", hash = "sha256:b6fd5d3a766b02154ed80b962ddca91e1fd25629c0978c7efba21ebccf663934", size = 883188 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0b/f0/89ee2bc9da434bd78464f288fdb346bc2932f2ee80a90b2a4bbbac262c74/sacremoses-0.1.1-py3-none-any.whl", hash = "sha256:31e04c98b169bfd902144824d191825cd69220cdb4ae4bcf1ec58a7db5587b1a", size = 897476 }, +] + +[[package]] +name = "safetensors" +version = "0.4.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/41/5b/0e63bf736e171463481c5ea3406650dc25aa044083062d321820e7a1ef9f/safetensors-0.4.4.tar.gz", hash = "sha256:5fe3e9b705250d0172ed4e100a811543108653fb2b66b9e702a088ad03772a07", size = 69522 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cb/fa/bd12d51c70986156031c25eae2d092ad8ef8b5cadb4e684a78b620b28320/safetensors-0.4.4-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:2adb497ada13097f30e386e88c959c0fda855a5f6f98845710f5bb2c57e14f12", size = 392399 }, + { url = "https://files.pythonhosted.org/packages/b7/1e/f146555161e21918e00726b2bff1e2517faa8b2953e53a5a45c5f5bef64e/safetensors-0.4.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:7db7fdc2d71fd1444d85ca3f3d682ba2df7d61a637dfc6d80793f439eae264ab", size = 381919 }, + { url = "https://files.pythonhosted.org/packages/fb/f7/0c97595790f03ff86505c375cddf3a26b6d645ff2cbc819936287a66a744/safetensors-0.4.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8d4f0eed76b430f009fbefca1a0028ddb112891b03cb556d7440d5cd68eb89a9", size = 441235 }, + { url = "https://files.pythonhosted.org/packages/77/8b/0d1e055536f1c0ac137d446806d50d9d952bed85688d733a81913cf09367/safetensors-0.4.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:57d216fab0b5c432aabf7170883d7c11671622bde8bd1436c46d633163a703f6", size = 440000 }, + { url = "https://files.pythonhosted.org/packages/bd/85/3a73b4ff7a46dd7606f924ededc31468fd385221670d840005b8dbdb7a37/safetensors-0.4.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7d9b76322e49c056bcc819f8bdca37a2daa5a6d42c07f30927b501088db03309", size = 477919 }, + { url = "https://files.pythonhosted.org/packages/dd/41/b832227d04a8b65b32e2be13dbe8212db0135514380148c9b81c1b08c023/safetensors-0.4.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:32f0d1f6243e90ee43bc6ee3e8c30ac5b09ca63f5dd35dbc985a1fc5208c451a", size = 496838 }, + { url = "https://files.pythonhosted.org/packages/18/f3/27bf4d7112b194eea2d8401706953080692d37ace1b74b36fcc7234961cd/safetensors-0.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:44d464bdc384874601a177375028012a5f177f1505279f9456fea84bbc575c7f", size = 435539 }, + { url = "https://files.pythonhosted.org/packages/b1/98/d75bbdaca03d571e5e5e1ef600f3015cd5f9884126eb53a3377b4111fea1/safetensors-0.4.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:63144e36209ad8e4e65384dbf2d52dd5b1866986079c00a72335402a38aacdc5", size = 457051 }, + { url = "https://files.pythonhosted.org/packages/03/e1/b7849306e47234ef548c2b32e65f2ffee0640bfad8c65e4dd37b6fee981c/safetensors-0.4.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:051d5ecd490af7245258000304b812825974d5e56f14a3ff7e1b8b2ba6dc2ed4", size = 619613 }, + { url = "https://files.pythonhosted.org/packages/e9/d9/cbf1316161d0a1b4b0aceeb16ddb396f49363133618cc062e4abd66b2ea9/safetensors-0.4.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:51bc8429d9376224cd3cf7e8ce4f208b4c930cd10e515b6ac6a72cbc3370f0d9", size = 605422 }, + { url = "https://files.pythonhosted.org/packages/48/47/16ece1369794b9d3bc057a42fed0601779d21f57d0b0b1b671a78410d74d/safetensors-0.4.4-cp310-none-win32.whl", hash = "sha256:fb7b54830cee8cf9923d969e2df87ce20e625b1af2fd194222ab902d3adcc29c", size = 272398 }, + { url = "https://files.pythonhosted.org/packages/b4/a9/f28d4a8a082ef513755a1a2393a924999892142ed235aed57ab558cd1bc9/safetensors-0.4.4-cp310-none-win_amd64.whl", hash = "sha256:4b3e8aa8226d6560de8c2b9d5ff8555ea482599c670610758afdc97f3e021e9c", size = 285884 }, + { url = "https://files.pythonhosted.org/packages/0f/1b/27cea7a581019d0d674284048ff76e3a6e048bc3ae3c31cb0bfc93641180/safetensors-0.4.4-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:bbaa31f2cb49013818bde319232ccd72da62ee40f7d2aa532083eda5664e85ff", size = 392373 }, + { url = "https://files.pythonhosted.org/packages/36/46/93c39c96188a88ca15d12759bb51f52ce7365f6fd19ef09580bc096e8860/safetensors-0.4.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9fdcb80f4e9fbb33b58e9bf95e7dbbedff505d1bcd1c05f7c7ce883632710006", size = 381488 }, + { url = "https://files.pythonhosted.org/packages/37/a2/93cab60b8e2c8ea6343a04cdd2c09c860c9640eaaffbf8b771a0e8f98e7d/safetensors-0.4.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:55c14c20be247b8a1aeaf3ab4476265e3ca83096bb8e09bb1a7aa806088def4f", size = 441025 }, + { url = "https://files.pythonhosted.org/packages/19/37/2a5220dce5eff841328bfc3071f4a7063f3eb12341893b2688669fc67115/safetensors-0.4.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:949aaa1118660f992dbf0968487b3e3cfdad67f948658ab08c6b5762e90cc8b6", size = 439791 }, + { url = "https://files.pythonhosted.org/packages/f8/93/1d894ff44df26baf4c2471a5874388361390d3cb1cc4811cff40fc01373e/safetensors-0.4.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c11a4ab7debc456326a2bac67f35ee0ac792bcf812c7562a4a28559a5c795e27", size = 477752 }, + { url = "https://files.pythonhosted.org/packages/a5/17/b697f517c7ffb8d62d1ef17c6224c00edbb96b931e565d887476a51ac803/safetensors-0.4.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c0cea44bba5c5601b297bc8307e4075535b95163402e4906b2e9b82788a2a6df", size = 496019 }, + { url = "https://files.pythonhosted.org/packages/af/b9/c33f69f4dad9c65209efb76c2be6968af5219e31ccfd344a0025d972252f/safetensors-0.4.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9d752c97f6bbe327352f76e5b86442d776abc789249fc5e72eacb49e6916482", size = 435416 }, + { url = "https://files.pythonhosted.org/packages/71/59/f6480a68df2f4fb5aefae45a800d9bc043c0549210075275fef190a896ce/safetensors-0.4.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:03f2bb92e61b055ef6cc22883ad1ae898010a95730fa988c60a23800eb742c2c", size = 456771 }, + { url = "https://files.pythonhosted.org/packages/09/01/2a7507cdf7318fb68596e6537ef81e83cfc171c483b4a786b9c947368e19/safetensors-0.4.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:87bf3f91a9328a941acc44eceffd4e1f5f89b030985b2966637e582157173b98", size = 619456 }, + { url = "https://files.pythonhosted.org/packages/80/b3/4bb5b1fb025cb8c81fe8a76371334860a9c276fade616f83fd53feef2740/safetensors-0.4.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:20d218ec2b6899d29d6895419a58b6e44cc5ff8f0cc29fac8d236a8978ab702e", size = 605125 }, + { url = "https://files.pythonhosted.org/packages/09/93/0d6d54b84eff8361dc257fa306ae0ef1899025a2d9657efe8384ac8b7267/safetensors-0.4.4-cp311-none-win32.whl", hash = "sha256:8079486118919f600c603536e2490ca37b3dbd3280e3ad6eaacfe6264605ac8a", size = 272273 }, + { url = "https://files.pythonhosted.org/packages/21/4f/5ee44681c7ea827f9d3c104ca429865b41c05a4163eff7f0599152c2e682/safetensors-0.4.4-cp311-none-win_amd64.whl", hash = "sha256:2f8c2eb0615e2e64ee27d478c7c13f51e5329d7972d9e15528d3e4cfc4a08f0d", size = 285982 }, + { url = "https://files.pythonhosted.org/packages/e2/41/a491dbe3fc1c195ce648939a87d3b4b3800eaade2f05278a6dc02b575c51/safetensors-0.4.4-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:baec5675944b4a47749c93c01c73d826ef7d42d36ba8d0dba36336fa80c76426", size = 391372 }, + { url = "https://files.pythonhosted.org/packages/3a/a1/d99aa8d10fa8d82276ee2aaa87afd0a6b96e69c128eaa9f93524b52c5276/safetensors-0.4.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f15117b96866401825f3e94543145028a2947d19974429246ce59403f49e77c6", size = 381800 }, + { url = "https://files.pythonhosted.org/packages/c8/1c/4fa05b79afdd4688a357a42433565b5b09137af6b4f6cd0c9e371466e2f1/safetensors-0.4.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6a13a9caea485df164c51be4eb0c87f97f790b7c3213d635eba2314d959fe929", size = 440817 }, + { url = "https://files.pythonhosted.org/packages/65/c0/152b059debd3cee4f44b7df972e915a38f776379ea99ce4a3cbea3f78dbd/safetensors-0.4.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6b54bc4ca5f9b9bba8cd4fb91c24b2446a86b5ae7f8975cf3b7a277353c3127c", size = 439483 }, + { url = "https://files.pythonhosted.org/packages/9c/93/20c05daeecf6fa93b9403c3660df1d983d7ddd5cdb3e3710ff41b72754dd/safetensors-0.4.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:08332c22e03b651c8eb7bf5fc2de90044f3672f43403b3d9ac7e7e0f4f76495e", size = 476631 }, + { url = "https://files.pythonhosted.org/packages/84/2f/bfe3e54b7dbcaef3f10b8f3c71146790ab18b0bd79ad9ca2bc2c950b68df/safetensors-0.4.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bb62841e839ee992c37bb75e75891c7f4904e772db3691c59daaca5b4ab960e1", size = 493575 }, + { url = "https://files.pythonhosted.org/packages/1b/0b/2a1b405131f26b95acdb3ed6c8e3a8c84de72d364fd26202d43e68ec4bad/safetensors-0.4.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8e5b927acc5f2f59547270b0309a46d983edc44be64e1ca27a7fcb0474d6cd67", size = 434891 }, + { url = "https://files.pythonhosted.org/packages/31/ce/cad390a08128ebcb74be79a1e03c496a4773059b2541c6a97a52fd1705fb/safetensors-0.4.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2a69c71b1ae98a8021a09a0b43363b0143b0ce74e7c0e83cacba691b62655fb8", size = 457631 }, + { url = "https://files.pythonhosted.org/packages/9f/83/d9d6e6a45d624c27155f4336af8e7b2bcde346137f6460dcd5e1bcdc2e3f/safetensors-0.4.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:23654ad162c02a5636f0cd520a0310902c4421aab1d91a0b667722a4937cc445", size = 619367 }, + { url = "https://files.pythonhosted.org/packages/9f/20/b37e1ae87cb83a1c2fe5cf0710bab12d6f186474cbbdda4fda2d7d57d225/safetensors-0.4.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:0677c109d949cf53756859160b955b2e75b0eefe952189c184d7be30ecf7e858", size = 605302 }, + { url = "https://files.pythonhosted.org/packages/99/5a/9237f1d0adba5eec3711d7c1911b3111631a86779d692fe8ad2cd709d6a4/safetensors-0.4.4-cp312-none-win32.whl", hash = "sha256:a51d0ddd4deb8871c6de15a772ef40b3dbd26a3c0451bb9e66bc76fc5a784e5b", size = 273434 }, + { url = "https://files.pythonhosted.org/packages/b9/dd/b11f3a33fe7b6c94fde08b3de094b93d3438d67922ef90bcb5002e306e0b/safetensors-0.4.4-cp312-none-win_amd64.whl", hash = "sha256:2d065059e75a798bc1933c293b68d04d79b586bb7f8c921e0ca1e82759d0dbb1", size = 286347 }, + { url = "https://files.pythonhosted.org/packages/b3/d6/7a4db869a295b57066e1399eb467c38df86439d3766c850ca8eb75b5e3a3/safetensors-0.4.4-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:9d625692578dd40a112df30c02a1adf068027566abd8e6a74893bb13d441c150", size = 391373 }, + { url = "https://files.pythonhosted.org/packages/1e/97/de856ad42ef65822ff982e7af7fc889cd717240672b45c647af7ea05c631/safetensors-0.4.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:7cabcf39c81e5b988d0adefdaea2eb9b4fd9bd62d5ed6559988c62f36bfa9a89", size = 382523 }, + { url = "https://files.pythonhosted.org/packages/07/d2/d9316af4c15b4ca0362cb4498abe47be6e04f7119f3ccf697e38ee04d33b/safetensors-0.4.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8359bef65f49d51476e9811d59c015f0ddae618ee0e44144f5595278c9f8268c", size = 441039 }, + { url = "https://files.pythonhosted.org/packages/e8/ac/478e910c891feadb693316b31447f14929b7047a612df9b628589b89be3c/safetensors-0.4.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1a32c662e7df9226fd850f054a3ead0e4213a96a70b5ce37b2d26ba27004e013", size = 439516 }, + { url = "https://files.pythonhosted.org/packages/81/43/f9929e854c4fcca98459f03de003d9619dd5f7d10d74e03df7af9907b119/safetensors-0.4.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c329a4dcc395364a1c0d2d1574d725fe81a840783dda64c31c5a60fc7d41472c", size = 477242 }, + { url = "https://files.pythonhosted.org/packages/0a/4d/b754f59fe395ea5bd8531c090c557e161fffed1753eeb3d87c0f8eaa62c4/safetensors-0.4.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:239ee093b1db877c9f8fe2d71331a97f3b9c7c0d3ab9f09c4851004a11f44b65", size = 494615 }, + { url = "https://files.pythonhosted.org/packages/54/7d/b26801dab2ecb499eb1ebdb46be65600b49bb062fe12b298150695a6e23c/safetensors-0.4.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bd574145d930cf9405a64f9923600879a5ce51d9f315443a5f706374841327b6", size = 434933 }, + { url = "https://files.pythonhosted.org/packages/e2/40/0f6627ad98e21e620a6835f02729f6b701804d3c452f8773648cbd0b9c2c/safetensors-0.4.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f6784eed29f9e036acb0b7769d9e78a0dc2c72c2d8ba7903005350d817e287a4", size = 457646 }, + { url = "https://files.pythonhosted.org/packages/30/1e/7f7819d1be7c36fbedcb7099a461b79e0ed19631b3ca5595e0f81501bb2c/safetensors-0.4.4-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:65a4a6072436bf0a4825b1c295d248cc17e5f4651e60ee62427a5bcaa8622a7a", size = 619204 }, + { url = "https://files.pythonhosted.org/packages/b1/58/e91e8c9888303919ce56f038fcad4147431fd95630890799bf8c928d1d34/safetensors-0.4.4-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:df81e3407630de060ae8313da49509c3caa33b1a9415562284eaf3d0c7705f9f", size = 605400 }, + { url = "https://files.pythonhosted.org/packages/f1/a5/ef6bdca5a44bef3930a7d821f792ba09f259c9077202c4cb779f50bb9609/safetensors-0.4.4-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:5cf6c6f6193797372adf50c91d0171743d16299491c75acad8650107dffa9269", size = 393304 }, + { url = "https://files.pythonhosted.org/packages/58/ac/339b1c04c47b00ce8854e072f91c620a4fedf736309fbfa44762ba76dc12/safetensors-0.4.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:419010156b914a3e5da4e4adf992bee050924d0fe423c4b329e523e2c14c3547", size = 383245 }, + { url = "https://files.pythonhosted.org/packages/ea/d7/ba4f035f8aef21374b43507a1853add3f73ba6c85e36fd5825a0f17b8ff7/safetensors-0.4.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88f6fd5a5c1302ce79993cc5feeadcc795a70f953c762544d01fb02b2db4ea33", size = 442349 }, + { url = "https://files.pythonhosted.org/packages/80/c9/a263b7595f0ca9f019472f1bc1d8723e829bdb81af84e2de5dda4e14c64d/safetensors-0.4.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d468cffb82d90789696d5b4d8b6ab8843052cba58a15296691a7a3df55143cd2", size = 440677 }, + { url = "https://files.pythonhosted.org/packages/31/17/90863da8ebb65194f769c6e7b19c98839f43ab752d1922a83b05efb2e325/safetensors-0.4.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9353c2af2dd467333d4850a16edb66855e795561cd170685178f706c80d2c71e", size = 478779 }, + { url = "https://files.pythonhosted.org/packages/12/c8/8efe5c84b032b46d9986520c7d3fd9e5057f0dea7b0d3900033eb5d29af1/safetensors-0.4.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:83c155b4a33368d9b9c2543e78f2452090fb030c52401ca608ef16fa58c98353", size = 498363 }, + { url = "https://files.pythonhosted.org/packages/9a/2e/810c5db5dc49657c8a8dbaff3c10bfe15411390e7e91a914a65c74305f94/safetensors-0.4.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9850754c434e636ce3dc586f534bb23bcbd78940c304775bee9005bf610e98f1", size = 436322 }, + { url = "https://files.pythonhosted.org/packages/42/4e/9360ccd309dd3e82c00e97fc44b9e4909bedf317e3cd28dde3371a400908/safetensors-0.4.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:275f500b4d26f67b6ec05629a4600645231bd75e4ed42087a7c1801bff04f4b3", size = 458167 }, + { url = "https://files.pythonhosted.org/packages/54/d1/e8b551c703f620d2d76fe1152768bcc1982b1e1e443265e4d42d4df7d941/safetensors-0.4.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:5c2308de665b7130cd0e40a2329278226e4cf083f7400c51ca7e19ccfb3886f3", size = 620106 }, + { url = "https://files.pythonhosted.org/packages/01/46/edc9d2b5ea7eb0bc278e3c1e5a24168731be757ff9366bab1138884e880d/safetensors-0.4.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:e06a9ebc8656e030ccfe44634f2a541b4b1801cd52e390a53ad8bacbd65f8518", size = 606211 }, + { url = "https://files.pythonhosted.org/packages/b6/f8/2687e0ad6e425330e2ea9abf301574006d511acaea8791947fba54ba0c59/safetensors-0.4.4-cp39-none-win32.whl", hash = "sha256:ef73df487b7c14b477016947c92708c2d929e1dee2bacdd6fff5a82ed4539537", size = 273099 }, + { url = "https://files.pythonhosted.org/packages/f1/7b/52ce228922f3fc2b42b8d1724ff6afe74791020f11a5f93d82b4a6e1e626/safetensors-0.4.4-cp39-none-win_amd64.whl", hash = "sha256:83d054818a8d1198d8bd8bc3ea2aac112a2c19def2bf73758321976788706398", size = 286075 }, + { url = "https://files.pythonhosted.org/packages/dd/fd/7a760367b62752e8c6d57c3759eaa57e5b47f55524bba3d803e03f922f95/safetensors-0.4.4-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:1d1f34c71371f0e034004a0b583284b45d233dd0b5f64a9125e16b8a01d15067", size = 393406 }, + { url = "https://files.pythonhosted.org/packages/dd/21/628d56eeae4bd0dcb5b11a9ec4001a50d2f85b726b10a864f72f34ba486f/safetensors-0.4.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:1a8043a33d58bc9b30dfac90f75712134ca34733ec3d8267b1bd682afe7194f5", size = 383386 }, + { url = "https://files.pythonhosted.org/packages/19/27/699124b4c6c27b7860140bac7ee6c50bde104e55951f8f5163f9ad20faa9/safetensors-0.4.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8db8f0c59c84792c12661f8efa85de160f80efe16b87a9d5de91b93f9e0bce3c", size = 442158 }, + { url = "https://files.pythonhosted.org/packages/23/01/85a621bdded944d6800f654c823a00df513263f1921a96d67d7fceb2ffb9/safetensors-0.4.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cfc1fc38e37630dd12d519bdec9dcd4b345aec9930bb9ce0ed04461f49e58b52", size = 436170 }, + { url = "https://files.pythonhosted.org/packages/4f/a3/b15adfffc6c8faaae6416f5c70ee4c64e4986b630b4ada18a314228a15e2/safetensors-0.4.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e5c9d86d9b13b18aafa88303e2cd21e677f5da2a14c828d2c460fe513af2e9a5", size = 458196 }, + { url = "https://files.pythonhosted.org/packages/8c/c1/ca829972be495326b5a986fe15e2ef16ecc4c35959942555091938f457af/safetensors-0.4.4-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:43251d7f29a59120a26f5a0d9583b9e112999e500afabcfdcb91606d3c5c89e3", size = 620510 }, + { url = "https://files.pythonhosted.org/packages/e7/50/89e5eac4120b55422450d5221c86d526ace14e222ea3f6c0c005f8f011ec/safetensors-0.4.4-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:2c42e9b277513b81cf507e6121c7b432b3235f980cac04f39f435b7902857f91", size = 606993 }, + { url = "https://files.pythonhosted.org/packages/d4/d4/151f64fc310f3c98ae2006b3a13085877010ac7a683406f1f3edb5c73152/safetensors-0.4.4-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:bb1ed4fcb0b3c2f3ea2c5767434622fe5d660e5752f21ac2e8d737b1e5e480bb", size = 393088 }, + { url = "https://files.pythonhosted.org/packages/91/ea/8aea163fc4e159b906bb61b761d143bfa49b33760e8b9084b1a1aab6982e/safetensors-0.4.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:73fc9a0a4343188bdb421783e600bfaf81d0793cd4cce6bafb3c2ed567a74cd5", size = 384522 }, + { url = "https://files.pythonhosted.org/packages/58/bc/906197e033a41743ced905836db00be16962cac93096e8c00fec1189d17b/safetensors-0.4.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2c37e6b714200824c73ca6eaf007382de76f39466a46e97558b8dc4cf643cfbf", size = 442172 }, + { url = "https://files.pythonhosted.org/packages/a7/31/f37f28dc8113b3fdd168c38764357131545c288302330674fcbbb86df2b2/safetensors-0.4.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f75698c5c5c542417ac4956acfc420f7d4a2396adca63a015fd66641ea751759", size = 436121 }, + { url = "https://files.pythonhosted.org/packages/ac/65/cefeaf9a5c83130ac0125f07630cdc265334eb27b9b16e35f77ab494bce4/safetensors-0.4.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ca1a209157f242eb183e209040097118472e169f2e069bfbd40c303e24866543", size = 458503 }, + { url = "https://files.pythonhosted.org/packages/3f/1d/05c864060e3d76e354f380f90b23fe1bd2fcfde0240856933550bc859bf3/safetensors-0.4.4-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:177f2b60a058f92a3cec7a1786c9106c29eca8987ecdfb79ee88126e5f47fa31", size = 621334 }, + { url = "https://files.pythonhosted.org/packages/b2/f7/a7d1ae30e0d5e890e6b2aa89ba627e723f9f73b619313e0194df17e5c49f/safetensors-0.4.4-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:ee9622e84fe6e4cd4f020e5fda70d6206feff3157731df7151d457fdae18e541", size = 607406 }, +] + +[[package]] +name = "sagemaker" +version = "2.226.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "boto3", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "cloudpickle", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "docker", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "google-pasta", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "importlib-metadata", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jsonschema", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pandas", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pathos", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "platformdirs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "psutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "schema", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "smdebug-rulesconfig", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tblib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "urllib3", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ef/2b/24d51493505aa3c460470e5b4c12ae441325a4f998e64bb498803f1ca676/sagemaker-2.226.1.tar.gz", hash = "sha256:c4b6aede5bf800abc5de384ad4ccf1e0357bc047fd360b3254059c8cb38f5bb5", size = 1148161 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/32/7c/1716beb800e9dd2cd63974b031eba23c26d0fc67ce64f9fcaa01584996f2/sagemaker-2.226.1-py3-none-any.whl", hash = "sha256:57773fa4ce01c7ee0ec9928579073eabcea065baac23d2021db57d2afcf38ebf", size = 1529707 }, +] + +[[package]] +name = "schema" +version = "0.7.7" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d4/01/0ea2e66bad2f13271e93b729c653747614784d3ebde219679e41ccdceecd/schema-0.7.7.tar.gz", hash = "sha256:7da553abd2958a19dc2547c388cde53398b39196175a9be59ea1caf5ab0a1807", size = 44245 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ad/1b/81855a88c6db2b114d5b2e9f96339190d5ee4d1b981d217fa32127bb00e0/schema-0.7.7-py2.py3-none-any.whl", hash = "sha256:5d976a5b50f36e74e2157b47097b60002bd4d42e65425fcc9c9befadb4255dde", size = 18632 }, +] + +[[package]] +name = "scikit-learn" +version = "1.5.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "joblib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "scipy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "threadpoolctl", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/92/72/2961b9874a9ddf2b0f95f329d4e67f67c3301c1d88ba5e239ff25661bb85/scikit_learn-1.5.1.tar.gz", hash = "sha256:0ea5d40c0e3951df445721927448755d3fe1d80833b0b7308ebff5d2a45e6414", size = 6958368 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f8/59/d8ea8c05e61d2afa988dfcfe47526595b531e94d23babf58d2e00a35f646/scikit_learn-1.5.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:781586c414f8cc58e71da4f3d7af311e0505a683e112f2f62919e3019abd3745", size = 12102257 }, + { url = "https://files.pythonhosted.org/packages/1f/c6/ba8e5691acca616adc8f0d6f8f5e79d55b927530aa404ee712b077acf0cf/scikit_learn-1.5.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:f5b213bc29cc30a89a3130393b0e39c847a15d769d6e59539cd86b75d276b1a7", size = 10975310 }, + { url = "https://files.pythonhosted.org/packages/5c/c6/e362563cc7dfe37e4699cbf2b2d22c2854be227c254976de1c4854fc6e84/scikit_learn-1.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1ff4ba34c2abff5ec59c803ed1d97d61b036f659a17f55be102679e88f926fac", size = 12496508 }, + { url = "https://files.pythonhosted.org/packages/f2/60/6c589c91e474721efdcec82ea9cc5c743359e52637e46c364ee5236666ef/scikit_learn-1.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:161808750c267b77b4a9603cf9c93579c7a74ba8486b1336034c2f1579546d21", size = 13352348 }, + { url = "https://files.pythonhosted.org/packages/f1/13/de29b945fb28fc0c24159d3a83f1250c5232c1c9abac12434c7c3447e9cc/scikit_learn-1.5.1-cp310-cp310-win_amd64.whl", hash = "sha256:10e49170691514a94bb2e03787aa921b82dbc507a4ea1f20fd95557862c98dc1", size = 10966250 }, + { url = "https://files.pythonhosted.org/packages/03/86/ab9f95e338c5ef5b4e79463ee91e55aae553213835e59bf038bc0cc21bf8/scikit_learn-1.5.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:154297ee43c0b83af12464adeab378dee2d0a700ccd03979e2b821e7dd7cc1c2", size = 12087598 }, + { url = "https://files.pythonhosted.org/packages/7d/d7/fb80c63062b60b1fa5dcb2d4dd3a4e83bd8c68cdc83cf6ff8c016228f184/scikit_learn-1.5.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:b5e865e9bd59396220de49cb4a57b17016256637c61b4c5cc81aaf16bc123bbe", size = 10979067 }, + { url = "https://files.pythonhosted.org/packages/c1/f8/fd3fa610cac686952d8c78b8b44cf5263c6c03885bd8e5d5819c684b44e8/scikit_learn-1.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:909144d50f367a513cee6090873ae582dba019cb3fca063b38054fa42704c3a4", size = 12485469 }, + { url = "https://files.pythonhosted.org/packages/32/63/ed228892adad313aab0d0f9261241e7bf1efe36730a2788ad424bcad00ca/scikit_learn-1.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:689b6f74b2c880276e365fe84fe4f1befd6a774f016339c65655eaff12e10cbf", size = 13335048 }, + { url = "https://files.pythonhosted.org/packages/5d/55/0403bf2031250ac982c8053397889fbc5a3a2b3798b913dae4f51c3af6a4/scikit_learn-1.5.1-cp311-cp311-win_amd64.whl", hash = "sha256:9a07f90846313a7639af6a019d849ff72baadfa4c74c778821ae0fad07b7275b", size = 10988436 }, + { url = "https://files.pythonhosted.org/packages/b1/8d/cf392a56e24627093a467642c8b9263052372131359b570df29aaf4811ab/scikit_learn-1.5.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5944ce1faada31c55fb2ba20a5346b88e36811aab504ccafb9f0339e9f780395", size = 12102404 }, + { url = "https://files.pythonhosted.org/packages/d5/2c/734fc9269bdb6768905ac41b82d75264b26925b1e462f4ebf45fe4f17646/scikit_learn-1.5.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:0828673c5b520e879f2af6a9e99eee0eefea69a2188be1ca68a6121b809055c1", size = 11037398 }, + { url = "https://files.pythonhosted.org/packages/d3/a9/15774b178bcd1cde1c470adbdb554e1504dce7c302e02ff736c90d65e014/scikit_learn-1.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:508907e5f81390e16d754e8815f7497e52139162fd69c4fdbd2dfa5d6cc88915", size = 12089887 }, + { url = "https://files.pythonhosted.org/packages/8a/5d/047cde25131eef3a38d03317fa7d25d6f60ce6e8ccfd24ac88b3e309fc00/scikit_learn-1.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:97625f217c5c0c5d0505fa2af28ae424bd37949bb2f16ace3ff5f2f81fb4498b", size = 13079093 }, + { url = "https://files.pythonhosted.org/packages/cb/be/dec2a8d31d133034a8ec51ae68ac564ec9bde1c78a64551f1438c3690b9e/scikit_learn-1.5.1-cp312-cp312-win_amd64.whl", hash = "sha256:da3f404e9e284d2b0a157e1b56b6566a34eb2798205cba35a211df3296ab7a74", size = 10945350 }, + { url = "https://files.pythonhosted.org/packages/cb/9f/d2837e96be692f99b92a3cb192e8f46501f7ddab6c93a07a9b206f7b3297/scikit_learn-1.5.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:88e0672c7ac21eb149d409c74cc29f1d611d5158175846e7a9c2427bd12b3956", size = 12138083 }, + { url = "https://files.pythonhosted.org/packages/18/3e/b46f298305c243395b88f0f201c32946bdd448e9583315255d87706c3170/scikit_learn-1.5.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:7b073a27797a283187a4ef4ee149959defc350b46cbf63a84d8514fe16b69855", size = 11005997 }, + { url = "https://files.pythonhosted.org/packages/00/84/8d2174ef802da1b9eedc8691883ed08a16318e2189fd5377e5bc2d404c0b/scikit_learn-1.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b59e3e62d2be870e5c74af4e793293753565c7383ae82943b83383fdcf5cc5c1", size = 12532003 }, + { url = "https://files.pythonhosted.org/packages/12/f8/d6bc56d20c60b2b66e005dfed16fdf8c46dbe559d40896d06c448a65f134/scikit_learn-1.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1bd8d3a19d4bd6dc5a7d4f358c8c3a60934dc058f363c34c0ac1e9e12a31421d", size = 13393818 }, + { url = "https://files.pythonhosted.org/packages/a8/ed/941b210029c1051233b082a19c36b930f56dda34a8a5227dbbd1bc08f7eb/scikit_learn-1.5.1-cp39-cp39-win_amd64.whl", hash = "sha256:5f57428de0c900a98389c4a433d4a3cf89de979b3aa24d1c1d251802aa15e44d", size = 10993525 }, +] + +[[package]] +name = "scipy" +version = "1.13.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ae/00/48c2f661e2816ccf2ecd77982f6605b2950afe60f60a52b4cbbc2504aa8f/scipy-1.13.1.tar.gz", hash = "sha256:095a87a0312b08dfd6a6155cbbd310a8c51800fc931b8c0b84003014b874ed3c", size = 57210720 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/33/59/41b2529908c002ade869623b87eecff3e11e3ce62e996d0bdcb536984187/scipy-1.13.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:20335853b85e9a49ff7572ab453794298bcf0354d8068c5f6775a0eabf350aca", size = 39328076 }, + { url = "https://files.pythonhosted.org/packages/d5/33/f1307601f492f764062ce7dd471a14750f3360e33cd0f8c614dae208492c/scipy-1.13.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:d605e9c23906d1994f55ace80e0125c587f96c020037ea6aa98d01b4bd2e222f", size = 30306232 }, + { url = "https://files.pythonhosted.org/packages/c0/66/9cd4f501dd5ea03e4a4572ecd874936d0da296bd04d1c45ae1a4a75d9c3a/scipy-1.13.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cfa31f1def5c819b19ecc3a8b52d28ffdcc7ed52bb20c9a7589669dd3c250989", size = 33743202 }, + { url = "https://files.pythonhosted.org/packages/a3/ba/7255e5dc82a65adbe83771c72f384d99c43063648456796436c9a5585ec3/scipy-1.13.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f26264b282b9da0952a024ae34710c2aff7d27480ee91a2e82b7b7073c24722f", size = 38577335 }, + { url = "https://files.pythonhosted.org/packages/49/a5/bb9ded8326e9f0cdfdc412eeda1054b914dfea952bda2097d174f8832cc0/scipy-1.13.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:eccfa1906eacc02de42d70ef4aecea45415f5be17e72b61bafcfd329bdc52e94", size = 38820728 }, + { url = "https://files.pythonhosted.org/packages/12/30/df7a8fcc08f9b4a83f5f27cfaaa7d43f9a2d2ad0b6562cced433e5b04e31/scipy-1.13.1-cp310-cp310-win_amd64.whl", hash = "sha256:2831f0dc9c5ea9edd6e51e6e769b655f08ec6db6e2e10f86ef39bd32eb11da54", size = 46210588 }, + { url = "https://files.pythonhosted.org/packages/b4/15/4a4bb1b15bbd2cd2786c4f46e76b871b28799b67891f23f455323a0cdcfb/scipy-1.13.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:27e52b09c0d3a1d5b63e1105f24177e544a222b43611aaf5bc44d4a0979e32f9", size = 39333805 }, + { url = "https://files.pythonhosted.org/packages/ba/92/42476de1af309c27710004f5cdebc27bec62c204db42e05b23a302cb0c9a/scipy-1.13.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:54f430b00f0133e2224c3ba42b805bfd0086fe488835effa33fa291561932326", size = 30317687 }, + { url = "https://files.pythonhosted.org/packages/80/ba/8be64fe225360a4beb6840f3cbee494c107c0887f33350d0a47d55400b01/scipy-1.13.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e89369d27f9e7b0884ae559a3a956e77c02114cc60a6058b4e5011572eea9299", size = 33694638 }, + { url = "https://files.pythonhosted.org/packages/36/07/035d22ff9795129c5a847c64cb43c1fa9188826b59344fee28a3ab02e283/scipy-1.13.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a78b4b3345f1b6f68a763c6e25c0c9a23a9fd0f39f5f3d200efe8feda560a5fa", size = 38569931 }, + { url = "https://files.pythonhosted.org/packages/d9/10/f9b43de37e5ed91facc0cfff31d45ed0104f359e4f9a68416cbf4e790241/scipy-1.13.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:45484bee6d65633752c490404513b9ef02475b4284c4cfab0ef946def50b3f59", size = 38838145 }, + { url = "https://files.pythonhosted.org/packages/4a/48/4513a1a5623a23e95f94abd675ed91cfb19989c58e9f6f7d03990f6caf3d/scipy-1.13.1-cp311-cp311-win_amd64.whl", hash = "sha256:5713f62f781eebd8d597eb3f88b8bf9274e79eeabf63afb4a737abc6c84ad37b", size = 46196227 }, + { url = "https://files.pythonhosted.org/packages/f2/7b/fb6b46fbee30fc7051913068758414f2721003a89dd9a707ad49174e3843/scipy-1.13.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5d72782f39716b2b3509cd7c33cdc08c96f2f4d2b06d51e52fb45a19ca0c86a1", size = 39357301 }, + { url = "https://files.pythonhosted.org/packages/dc/5a/2043a3bde1443d94014aaa41e0b50c39d046dda8360abd3b2a1d3f79907d/scipy-1.13.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:017367484ce5498445aade74b1d5ab377acdc65e27095155e448c88497755a5d", size = 30363348 }, + { url = "https://files.pythonhosted.org/packages/e7/cb/26e4a47364bbfdb3b7fb3363be6d8a1c543bcd70a7753ab397350f5f189a/scipy-1.13.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:949ae67db5fa78a86e8fa644b9a6b07252f449dcf74247108c50e1d20d2b4627", size = 33406062 }, + { url = "https://files.pythonhosted.org/packages/88/ab/6ecdc526d509d33814835447bbbeedbebdec7cca46ef495a61b00a35b4bf/scipy-1.13.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de3ade0e53bc1f21358aa74ff4830235d716211d7d077e340c7349bc3542e884", size = 38218311 }, + { url = "https://files.pythonhosted.org/packages/0b/00/9f54554f0f8318100a71515122d8f4f503b1a2c4b4cfab3b4b68c0eb08fa/scipy-1.13.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2ac65fb503dad64218c228e2dc2d0a0193f7904747db43014645ae139c8fad16", size = 38442493 }, + { url = "https://files.pythonhosted.org/packages/3e/df/963384e90733e08eac978cd103c34df181d1fec424de383cdc443f418dd4/scipy-1.13.1-cp312-cp312-win_amd64.whl", hash = "sha256:cdd7dacfb95fea358916410ec61bbc20440f7860333aee6d882bb8046264e949", size = 45910955 }, + { url = "https://files.pythonhosted.org/packages/7f/29/c2ea58c9731b9ecb30b6738113a95d147e83922986b34c685b8f6eefde21/scipy-1.13.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:436bbb42a94a8aeef855d755ce5a465479c721e9d684de76bf61a62e7c2b81d5", size = 39352927 }, + { url = "https://files.pythonhosted.org/packages/5c/c0/e71b94b20ccf9effb38d7147c0064c08c622309fd487b1b677771a97d18c/scipy-1.13.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:8335549ebbca860c52bf3d02f80784e91a004b71b059e3eea9678ba994796a24", size = 30324538 }, + { url = "https://files.pythonhosted.org/packages/6d/0f/aaa55b06d474817cea311e7b10aab2ea1fd5d43bc6a2861ccc9caec9f418/scipy-1.13.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d533654b7d221a6a97304ab63c41c96473ff04459e404b83275b60aa8f4b7004", size = 33732190 }, + { url = "https://files.pythonhosted.org/packages/35/f5/d0ad1a96f80962ba65e2ce1de6a1e59edecd1f0a7b55990ed208848012e0/scipy-1.13.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:637e98dcf185ba7f8e663e122ebf908c4702420477ae52a04f9908707456ba4d", size = 38612244 }, + { url = "https://files.pythonhosted.org/packages/8d/02/1165905f14962174e6569076bcc3315809ae1291ed14de6448cc151eedfd/scipy-1.13.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a014c2b3697bde71724244f63de2476925596c24285c7a637364761f8710891c", size = 38845637 }, + { url = "https://files.pythonhosted.org/packages/3e/77/dab54fe647a08ee4253963bcd8f9cf17509c8ca64d6335141422fe2e2114/scipy-1.13.1-cp39-cp39-win_amd64.whl", hash = "sha256:392e4ec766654852c25ebad4f64e4e584cf19820b980bc04960bca0b0cd6eaa2", size = 46227440 }, +] + +[[package]] +name = "segments" +version = "2.2.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "clldutils", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "csvw", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "regex", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0b/a6/b678440988daa66ac151bc3ca24f2ad8dcfdb591604f5c2b83e2515b1f58/segments-2.2.1.tar.gz", hash = "sha256:515ae188f21d24e420d48ad45689edc747d961d6b52fde22e47500a8d85f2741", size = 14677 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/93/d4/74dba5011533e66becf35aae5cf1d726e760f445db052592bad70e75305c/segments-2.2.1-py2.py3-none-any.whl", hash = "sha256:069860ae5a499ad7bd86e23ee52250a16e61ba3474c17e515b16d494ac1423c1", size = 15039 }, +] + +[[package]] +name = "sentencepiece" +version = "0.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c9/d2/b9c7ca067c26d8ff085d252c89b5f69609ca93fb85a00ede95f4857865d4/sentencepiece-0.2.0.tar.gz", hash = "sha256:a52c19171daaf2e697dc6cbe67684e0fa341b1248966f6aebb541de654d15843", size = 2632106 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f6/71/98648c3b64b23edb5403f74bcc906ad21766872a6e1ada26ea3f1eb941ab/sentencepiece-0.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:188779e1298a1c8b8253c7d3ad729cb0a9891e5cef5e5d07ce4592c54869e227", size = 2408979 }, + { url = "https://files.pythonhosted.org/packages/77/9f/7efbaa6d4c0c718a9affbecc536b03ca62f99f421bdffb531c16030e2d2b/sentencepiece-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bed9cf85b296fa2b76fc2547b9cbb691a523864cebaee86304c43a7b4cb1b452", size = 1238845 }, + { url = "https://files.pythonhosted.org/packages/1c/e4/c2541027a43ec6962ba9b601805d17ba3f86b38bdeae0e8ac65a2981e248/sentencepiece-0.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d7b67e724bead13f18db6e1d10b6bbdc454af574d70efbb36f27d90387be1ca3", size = 1181472 }, + { url = "https://files.pythonhosted.org/packages/fd/46/316c1ba6c52b97de76aff7b9da678f7afbb52136afb2987c474d95630e65/sentencepiece-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2fde4b08cfe237be4484c6c7c2e2c75fb862cfeab6bd5449ce4caeafd97b767a", size = 1259151 }, + { url = "https://files.pythonhosted.org/packages/aa/5a/3c48738a0835d76dd06c62b6ac48d39c923cde78dd0f587353bdcbb99851/sentencepiece-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4c378492056202d1c48a4979650981635fd97875a00eabb1f00c6a236b013b5e", size = 1355931 }, + { url = "https://files.pythonhosted.org/packages/a6/27/33019685023221ca8ed98e8ceb7ae5e166032686fa3662c68f1f1edf334e/sentencepiece-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1380ce6540a368de2ef6d7e6ba14ba8f3258df650d39ba7d833b79ee68a52040", size = 1301537 }, + { url = "https://files.pythonhosted.org/packages/ca/e4/55f97cef14293171fef5f96e96999919ab5b4d1ce95b53547ad653d7e3bf/sentencepiece-0.2.0-cp310-cp310-win32.whl", hash = "sha256:a1151d6a6dd4b43e552394aed0edfe9292820272f0194bd56c7c1660a0c06c3d", size = 936747 }, + { url = "https://files.pythonhosted.org/packages/85/f4/4ef1a6e0e9dbd8a60780a91df8b7452ada14cfaa0e17b3b8dfa42cecae18/sentencepiece-0.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:d490142b0521ef22bc1085f061d922a2a6666175bb6b42e588ff95c0db6819b2", size = 991525 }, + { url = "https://files.pythonhosted.org/packages/32/43/8f8885168a47a02eba1455bd3f4f169f50ad5b8cebd2402d0f5e20854d04/sentencepiece-0.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:17982700c4f6dbb55fa3594f3d7e5dd1c8659a274af3738e33c987d2a27c9d5c", size = 2409036 }, + { url = "https://files.pythonhosted.org/packages/0f/35/e63ba28062af0a3d688a9f128e407a1a2608544b2f480cb49bf7f4b1cbb9/sentencepiece-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:7c867012c0e8bcd5bdad0f791609101cb5c66acb303ab3270218d6debc68a65e", size = 1238921 }, + { url = "https://files.pythonhosted.org/packages/de/42/ae30952c4a0bd773e90c9bf2579f5533037c886dfc8ec68133d5694f4dd2/sentencepiece-0.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7fd6071249c74f779c5b27183295b9202f8dedb68034e716784364443879eaa6", size = 1181477 }, + { url = "https://files.pythonhosted.org/packages/e3/ac/2f2ab1d60bb2d795d054eebe5e3f24b164bc21b5a9b75fba7968b3b91b5a/sentencepiece-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:27f90c55a65013cbb8f4d7aab0599bf925cde4adc67ae43a0d323677b5a1c6cb", size = 1259182 }, + { url = "https://files.pythonhosted.org/packages/45/fb/14633c6ecf262c468759ffcdb55c3a7ee38fe4eda6a70d75ee7c7d63c58b/sentencepiece-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b293734059ef656dcd65be62ff771507bea8fed0a711b6733976e1ed3add4553", size = 1355537 }, + { url = "https://files.pythonhosted.org/packages/fb/12/2f5c8d4764b00033cf1c935b702d3bb878d10be9f0b87f0253495832d85f/sentencepiece-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e58b47f933aca74c6a60a79dcb21d5b9e47416256c795c2d58d55cec27f9551d", size = 1301464 }, + { url = "https://files.pythonhosted.org/packages/4e/b1/67afc0bde24f6dcb3acdea0dd8dcdf4b8b0db240f6bacd39378bd32d09f8/sentencepiece-0.2.0-cp311-cp311-win32.whl", hash = "sha256:c581258cf346b327c62c4f1cebd32691826306f6a41d8c4bec43b010dee08e75", size = 936749 }, + { url = "https://files.pythonhosted.org/packages/a2/f6/587c62fd21fc988555b85351f50bbde43a51524caafd63bc69240ded14fd/sentencepiece-0.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:0993dbc665f4113017892f1b87c3904a44d0640eda510abcacdfb07f74286d36", size = 991520 }, + { url = "https://files.pythonhosted.org/packages/27/5a/141b227ed54293360a9ffbb7bf8252b4e5efc0400cdeac5809340e5d2b21/sentencepiece-0.2.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:ea5f536e32ea8ec96086ee00d7a4a131ce583a1b18d130711707c10e69601cb2", size = 2409370 }, + { url = "https://files.pythonhosted.org/packages/2e/08/a4c135ad6fc2ce26798d14ab72790d66e813efc9589fd30a5316a88ca8d5/sentencepiece-0.2.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d0cb51f53b6aae3c36bafe41e86167c71af8370a039f542c43b0cce5ef24a68c", size = 1239288 }, + { url = "https://files.pythonhosted.org/packages/49/0a/2fe387f825ac5aad5a0bfe221904882106cac58e1b693ba7818785a882b6/sentencepiece-0.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:3212121805afc58d8b00ab4e7dd1f8f76c203ddb9dc94aa4079618a31cf5da0f", size = 1181597 }, + { url = "https://files.pythonhosted.org/packages/cc/38/e4698ee2293fe4835dc033c49796a39b3eebd8752098f6bd0aa53a14af1f/sentencepiece-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2a3149e3066c2a75e0d68a43eb632d7ae728c7925b517f4c05c40f6f7280ce08", size = 1259220 }, + { url = "https://files.pythonhosted.org/packages/12/24/fd7ef967c9dad2f6e6e5386d0cadaf65cda8b7be6e3861a9ab3121035139/sentencepiece-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:632f3594d3e7ac8b367bca204cb3fd05a01d5b21455acd097ea4c0e30e2f63d7", size = 1355962 }, + { url = "https://files.pythonhosted.org/packages/4f/d2/18246f43ca730bb81918f87b7e886531eda32d835811ad9f4657c54eee35/sentencepiece-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f295105c6bdbb05bd5e1b0cafbd78ff95036f5d3641e7949455a3f4e5e7c3109", size = 1301706 }, + { url = "https://files.pythonhosted.org/packages/8a/47/ca237b562f420044ab56ddb4c278672f7e8c866e183730a20e413b38a989/sentencepiece-0.2.0-cp312-cp312-win32.whl", hash = "sha256:fb89f811e5efd18bab141afc3fea3de141c3f69f3fe9e898f710ae7fe3aab251", size = 936941 }, + { url = "https://files.pythonhosted.org/packages/c6/97/d159c32642306ee2b70732077632895438867b3b6df282354bd550cf2a67/sentencepiece-0.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:7a673a72aab81fef5ebe755c6e0cc60087d1f3a4700835d40537183c1703a45f", size = 991994 }, + { url = "https://files.pythonhosted.org/packages/e9/18/eb620d94d63f62ca69cecccf4459529864ac3fbb35ec123190bd58dadb46/sentencepiece-0.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:1e0f9c4d0a6b0af59b613175f019916e28ade076e21242fd5be24340d8a2f64a", size = 2409003 }, + { url = "https://files.pythonhosted.org/packages/6e/a6/df28bc0b6a2a86416232c0a5f0d69a9cb7244bb95cb5dcdfcbf01cced8a6/sentencepiece-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:298f21cc1366eb60311aedba3169d30f885c363ddbf44214b0a587d2908141ad", size = 1238898 }, + { url = "https://files.pythonhosted.org/packages/79/91/b54a528e0789cd7986341ed3909bec56365c3b672daef8b10aa4098238f0/sentencepiece-0.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3f1ec95aa1e5dab11f37ac7eff190493fd87770f7a8b81ebc9dd768d1a3c8704", size = 1181534 }, + { url = "https://files.pythonhosted.org/packages/a3/69/e96ef68261fa5b82379fdedb325ceaf1d353c6e839ec346d8244e0da5f2f/sentencepiece-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7b06b70af54daa4b4904cbb90b4eb6d35c9f3252fdc86c9c32d5afd4d30118d8", size = 1259161 }, + { url = "https://files.pythonhosted.org/packages/45/de/461d15856c29ba1ce778cf76e0462572661f647abc8a5373690c52e98a00/sentencepiece-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:22e37bac44dd6603388cb598c64ff7a76e41ca774646f21c23aadfbf5a2228ab", size = 1355945 }, + { url = "https://files.pythonhosted.org/packages/5f/01/c95e42eb86282b2c79305d3e0b0ca5a743f85a61262bb7130999c70b9374/sentencepiece-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0461324897735512a32d222e3d886e24ad6a499761952b6bda2a9ee6e4313ea5", size = 1301596 }, + { url = "https://files.pythonhosted.org/packages/be/47/e16f368fe6327e873e8029aa539115025e9f61a4e8ca8f0f8eaf8e6a4c1c/sentencepiece-0.2.0-cp39-cp39-win32.whl", hash = "sha256:38aed822fb76435fa1f12185f10465a94ab9e51d5e8a9159e9a540ce926f0ffd", size = 936757 }, + { url = "https://files.pythonhosted.org/packages/4b/36/497e6407700efd6b97f81bc160913a70d33b9b09227429f68fc86f387bbe/sentencepiece-0.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:d8cf876516548b5a1d6ac4745d8b554f5c07891d55da557925e5c13ff0b4e6ad", size = 991541 }, +] + +[[package]] +name = "setuptools" +version = "72.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/5e/11/487b18cc768e2ae25a919f230417983c8d5afa1b6ee0abd8b6db0b89fa1d/setuptools-72.1.0.tar.gz", hash = "sha256:8d243eff56d095e5817f796ede6ae32941278f542e0f941867cc05ae52b162ec", size = 2419487 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e1/58/e0ef3b9974a04ce9cde2a7a33881ddcb2d68450803745804545cdd8d258f/setuptools-72.1.0-py3-none-any.whl", hash = "sha256:5a03e1860cf56bb6ef48ce186b0e557fdba433237481a9a625176c2831be15d1", size = 2337965 }, +] + +[[package]] +name = "sigopt" +version = "8.8.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "backoff", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "click", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "gitpython", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pypng", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "urllib3", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/15/ca/b010da25af0fe261876a0bca8a0b0169b9c3d0feff40970233c5aa5de3dd/sigopt-8.8.3.tar.gz", hash = "sha256:89807641cb5f9142bd9d3132b8e295d19ecdba4245b4fc7abfe849c0464a44ca", size = 142229 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9e/2a/8a98da1cb91fe894fcbbe8b73371e5abf3fd1e0ae64a479b2439b6ab72fe/sigopt-8.8.3-py2.py3-none-any.whl", hash = "sha256:81437023b07f648c311b15e60bb2118b4fc9e15d5f3dd72ca519a9974a5ace0e", size = 198787 }, +] + +[[package]] +name = "six" +version = "1.16.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/71/39/171f1c67cd00715f190ba0b100d606d440a28c93c7714febeca8b79af85e/six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926", size = 34041 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d9/5a/e7c31adbe875f2abbb91bd84cf2dc52d792b5a01506781dbcf25c91daf11/six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254", size = 11053 }, +] + +[[package]] +name = "smdebug-rulesconfig" +version = "1.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cc/7d/8ad6a2098e03c1f811d1277a2cedb81265828f144f6d323b83a2392e8bb9/smdebug_rulesconfig-1.0.1.tar.gz", hash = "sha256:7a19e6eb2e6bcfefbc07e4a86ef7a88f32495001a038bf28c7d8e77ab793fcd6", size = 12060 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/26/a1/45a13a05198bbe9527bab2c5e5daa8bd02678aa825eec14783e767bfa7d1/smdebug_rulesconfig-1.0.1-py2.py3-none-any.whl", hash = "sha256:104da3e6931ecf879dfc687ca4bbb3bee5ea2bc27f4478e9dbb3ee3655f1ae61", size = 20282 }, +] + +[[package]] +name = "smmap" +version = "5.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/88/04/b5bf6d21dc4041000ccba7eb17dd3055feb237e7ffc2c20d3fae3af62baa/smmap-5.0.1.tar.gz", hash = "sha256:dceeb6c0028fdb6734471eb07c0cd2aae706ccaecab45965ee83f11c8d3b1f62", size = 22291 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/a5/10f97f73544edcdef54409f1d839f6049a0d79df68adbc1ceb24d1aaca42/smmap-5.0.1-py3-none-any.whl", hash = "sha256:e6d8668fa5f93e706934a62d7b4db19c8d9eb8cf2adbb75ef1b675aa332b69da", size = 24282 }, +] + +[[package]] +name = "sniffio" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a2/87/a6771e1546d97e7e041b6ae58d80074f81b7d5121207425c964ddf5cfdbd/sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc", size = 20372 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2", size = 10235 }, +] + +[[package]] +name = "sortedcontainers" +version = "2.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e8/c4/ba2f8066cceb6f23394729afe52f3bf7adec04bf9ed2c820b39e19299111/sortedcontainers-2.4.0.tar.gz", hash = "sha256:25caa5a06cc30b6b83d11423433f65d1f9d76c4c6a0c90e3379eaa43b9bfdb88", size = 30594 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/32/46/9cb0e58b2deb7f82b84065f37f3bffeb12413f947f9388e4cac22c4621ce/sortedcontainers-2.4.0-py2.py3-none-any.whl", hash = "sha256:a163dcaede0f1c021485e957a39245190e74249897e2ae4b2aa38595db237ee0", size = 29575 }, +] + +[[package]] +name = "soundfile" +version = "0.12.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6f/96/5ff33900998bad58d5381fd1acfcdac11cbea4f08fc72ac1dc25ffb13f6a/soundfile-0.12.1.tar.gz", hash = "sha256:e8e1017b2cf1dda767aef19d2fd9ee5ebe07e050d430f77a0a7c66ba08b8cdae", size = 43184 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/bc/cd845c2dbb4d257c744cd58a5bcdd9f6d235ca317e7e22e49564ec88dcd9/soundfile-0.12.1-py2.py3-none-any.whl", hash = "sha256:828a79c2e75abab5359f780c81dccd4953c45a2c4cd4f05ba3e233ddf984b882", size = 24030 }, + { url = "https://files.pythonhosted.org/packages/c8/73/059c84343be6509b480013bf1eeb11b96c5f9eb48deff8f83638011f6b2c/soundfile-0.12.1-py2.py3-none-macosx_10_9_x86_64.whl", hash = "sha256:d922be1563ce17a69582a352a86f28ed8c9f6a8bc951df63476ffc310c064bfa", size = 1213305 }, + { url = "https://files.pythonhosted.org/packages/71/87/31d2b9ed58975cec081858c01afaa3c43718eb0f62b5698a876d94739ad0/soundfile-0.12.1-py2.py3-none-macosx_11_0_arm64.whl", hash = "sha256:bceaab5c4febb11ea0554566784bcf4bc2e3977b53946dda2b12804b4fe524a8", size = 1075977 }, + { url = "https://files.pythonhosted.org/packages/ad/bd/0602167a213d9184fc688b1086dc6d374b7ae8c33eccf169f9b50ce6568c/soundfile-0.12.1-py2.py3-none-manylinux_2_17_x86_64.whl", hash = "sha256:2dc3685bed7187c072a46ab4ffddd38cef7de9ae5eb05c03df2ad569cf4dacbc", size = 1257765 }, + { url = "https://files.pythonhosted.org/packages/c1/07/7591f4efd29e65071c3a61b53725036ea8f73366a4920a481ebddaf8d0ca/soundfile-0.12.1-py2.py3-none-manylinux_2_31_x86_64.whl", hash = "sha256:074247b771a181859d2bc1f98b5ebf6d5153d2c397b86ee9e29ba602a8dfe2a6", size = 1174746 }, + { url = "https://files.pythonhosted.org/packages/03/0f/49941ed8a2d94e5b36ea94346fb1d2b22e847fede902e05be4c96f26be7d/soundfile-0.12.1-py2.py3-none-win32.whl", hash = "sha256:59dfd88c79b48f441bbf6994142a19ab1de3b9bb7c12863402c2bc621e49091a", size = 888234 }, + { url = "https://files.pythonhosted.org/packages/50/ff/26a4ee48d0b66625a4e4028a055b9f25bc9d7c7b2d17d21a45137621a50d/soundfile-0.12.1-py2.py3-none-win_amd64.whl", hash = "sha256:0d86924c00b62552b650ddd28af426e3ff2d4dc2e9047dae5b3d8452e0a49a77", size = 1009109 }, +] + +[[package]] +name = "soupsieve" +version = "2.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ce/21/952a240de1c196c7e3fbcd4e559681f0419b1280c617db21157a0390717b/soupsieve-2.5.tar.gz", hash = "sha256:5663d5a7b3bfaeee0bc4372e7fc48f9cff4940b3eec54a6451cc5299f1097690", size = 100943 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4c/f3/038b302fdfbe3be7da016777069f26ceefe11a681055ea1f7817546508e3/soupsieve-2.5-py3-none-any.whl", hash = "sha256:eaa337ff55a1579b6549dc679565eac1e3d000563bcb1c8ab0d0fefbc0c2cdc7", size = 36131 }, +] + +[[package]] +name = "soxr" +version = "0.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/51/42/e05dc1801462807886617c0db5a7f34287f9a46f5fbbfc64269a203f4f4f/soxr-0.4.0.tar.gz", hash = "sha256:02385e3de07e28ddbc19ab41216075d889575895e778ce2ada950d5f46cf6a52", size = 300434 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0a/29/9c39bf8e4ac6a66090941466e4b3341d0ed2e36bc07df1fb17c72beba550/soxr-0.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c0be9dbc6cb0de2e2147ad33ffe4dee0391ed38125248253f53d3f1a05b65425", size = 414891 }, + { url = "https://files.pythonhosted.org/packages/17/a3/9d63dcf5ea1371600dc9729133451e50094ddf049a69d3e7a15d89905514/soxr-0.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:46c1dce06d156f9a6563c41f97d5d6978ccc993c3682c6f8190438c0f7417d36", size = 387711 }, + { url = "https://files.pythonhosted.org/packages/0f/91/3ebe8121f7fec41f6701c04b26df578eaa1994c6f358860d8dd25cff0953/soxr-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:784d2dd6d43d2663d384ed7e1f6a1156f98395bbd889b0a9def6c61a9e17cda1", size = 1234093 }, + { url = "https://files.pythonhosted.org/packages/a4/c7/ac1219521b5af872af30d828af19d09b50cd75e4ec83be5ffb147175b299/soxr-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6ee59424f4f1c81f6a9f3d03b4bde27992272dc8c36f9b08af7f31ce720fa6ba", size = 1255672 }, + { url = "https://files.pythonhosted.org/packages/ef/b7/b9652d1c7be4c4779274e577c6ed2d941a064bc76082169aed1b1ed01cf6/soxr-0.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:2975734033e8da5a241f2498b65513a160882dd1283cf5eb7eac5b3b262ae668", size = 184468 }, + { url = "https://files.pythonhosted.org/packages/5f/d5/9130ccf0b55722def96f4a915d4d332aa4a6671b2ec53b8331bf07a67f24/soxr-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:38374140503b17b3234d0deb83dfe0319727df1dbab41e1a576b61405fc82767", size = 415220 }, + { url = "https://files.pythonhosted.org/packages/62/0a/067beb1e4487d584ba209dcb0135bbbb4b3f6fe1a58109fc56a12369b550/soxr-0.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a370f661576916e8b208990eb70e5db4e07ab025b47492a633370846bc0a9678", size = 387911 }, + { url = "https://files.pythonhosted.org/packages/9a/38/776fc4e87cce91cea284c8adb26ead2fd8c9fcb514251d090b72b4f3a50e/soxr-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4301600889696051bdb1469f8b10cace0d7e2d16a351c6b5fc947b3b41e10a58", size = 1281704 }, + { url = "https://files.pythonhosted.org/packages/08/bf/bc12314969467e6a4b649c26b1a6fecc63b67f9a127e4c9b32b3433945ef/soxr-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:12a0e460f1199aaed544a30c67f5df7a452b0647b63e0df706a17577e963e38b", size = 1298846 }, + { url = "https://files.pythonhosted.org/packages/8a/29/3bbdf1417e5da6da3ed5e35e4b3290cfc605fbe06b8513452a9447516532/soxr-0.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:2f6f55c520fb90040f604b1203f2100b70c789d973bb0fd79b221187e3841311", size = 184662 }, + { url = "https://files.pythonhosted.org/packages/1c/47/c732574ba53a864570a445b29fcbcfa4729ac42ae2b5cf8553535245a717/soxr-0.4.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:226d405c40094f5fd5dd4b80c66fc61cc108018da0216833e843d82ccffdadcb", size = 416395 }, + { url = "https://files.pythonhosted.org/packages/14/55/71d6da7aea10f607d5bb47ece8fe639ee340d2b9ee68902f0361f8a4e34d/soxr-0.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c53d4bc99908e715665b3d45f0cc06e652e4f53bf4acf9e758c1cce02977e411", size = 388475 }, + { url = "https://files.pythonhosted.org/packages/e8/e5/7ee341ac9232c9e0b91969067ccc05459a50d6c554f938fe19165f5215cd/soxr-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a9cc0620d7b1effab9d408427711d52c3db6e295b5504dfcf549f4636904ed0d", size = 1265555 }, + { url = "https://files.pythonhosted.org/packages/6b/d2/9e0e54e2ff347b87de4e0639b7e7fe3f780a4c95689d6c9b67f0e5e88831/soxr-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f99aaef14a7d268966c06cf6a06729eb98b2276493710d24a6f20fdcfc3ad26e", size = 1292012 }, + { url = "https://files.pythonhosted.org/packages/75/29/5e20f1e5f459fccc7aecff813c2757e9bda987d4f1c9c80099f067ba13c7/soxr-0.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:63a59d36b8f8f3b1501e4fca2c034aacceb9b4d6888295afd269afbce5eb2f3f", size = 183419 }, + { url = "https://files.pythonhosted.org/packages/02/c6/7ceee454214079447fefbbb3066a1882e86791d39e795d25f03100c9b70e/soxr-0.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:38e65bb8beba55d8049ecf16e73c05ed3dd5e156d6086f594c40edb3181a7900", size = 415490 }, + { url = "https://files.pythonhosted.org/packages/6e/f4/88783a6b0a9085d307d9fb50b160e5e53bb95af5694c587dfa036f598afa/soxr-0.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5fd5e43fe568451152e20e16a71a61cda6340da934c344733a26674e041ab445", size = 388527 }, + { url = "https://files.pythonhosted.org/packages/c3/c6/f3d54e8c579aa5f192d62c87cd86b88e0b1d6fcab7b541663a3816f1eb06/soxr-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b3e477ff61b3579ec2ad66fa7a9b362072d5d9a5d1e61db3d366d26afbb8c8", size = 1236992 }, + { url = "https://files.pythonhosted.org/packages/8e/0d/f5a814631c2af35174243b39c7b3d07524bfe275aa0729fa1d87f6965323/soxr-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba0989025d70c472d62bf0e68778c9bbd0c9bee111c708cf64c26406937ca6be", size = 1255237 }, + { url = "https://files.pythonhosted.org/packages/e7/59/82eb86a806392c40e86e4030ceadd948306fb7269e95e26c18bbbcffb101/soxr-0.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:5e71482f092051544b196387e3779d726f26df30cba307424eac7a96285c5b64", size = 184995 }, +] + +[[package]] +name = "sqlalchemy" +version = "2.0.32" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "greenlet", marker = "python_version < '3.13' and (platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64')" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/af/6f/967e987683908af816aa3072c1a6997ac9933cf38d66b0474fb03f253323/SQLAlchemy-2.0.32.tar.gz", hash = "sha256:c1b88cc8b02b6a5f0efb0345a03672d4c897dc7d92585176f88c67346f565ea8", size = 9546691 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b8/f4/487eaff0bc01352662be8d9b975d0850dc3e8bd282918e073cff5a73421d/SQLAlchemy-2.0.32-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0c9045ecc2e4db59bfc97b20516dfdf8e41d910ac6fb667ebd3a79ea54084619", size = 2087564 }, + { url = "https://files.pythonhosted.org/packages/91/8a/509557a8e43cf55bad70843f2de48c5247c34d47a812c04e41be33351861/SQLAlchemy-2.0.32-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1467940318e4a860afd546ef61fefb98a14d935cd6817ed07a228c7f7c62f389", size = 2078758 }, + { url = "https://files.pythonhosted.org/packages/e0/cb/b1ecd40bcbbba6ca8f35047b53a940eceda36acc9afa0db4cb0d8addd81a/SQLAlchemy-2.0.32-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5954463675cb15db8d4b521f3566a017c8789222b8316b1e6934c811018ee08b", size = 3061235 }, + { url = "https://files.pythonhosted.org/packages/3b/94/db0bc142f448627638a2962afae54c520697119c0d6e23ebd36a7c472c8f/SQLAlchemy-2.0.32-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:167e7497035c303ae50651b351c28dc22a40bb98fbdb8468cdc971821b1ae533", size = 3069497 }, + { url = "https://files.pythonhosted.org/packages/e6/cf/bf90dc56ce347697d8c549875c555f783b96406bc723de6e462490bfe880/SQLAlchemy-2.0.32-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b27dfb676ac02529fb6e343b3a482303f16e6bc3a4d868b73935b8792edb52d0", size = 3025552 }, + { url = "https://files.pythonhosted.org/packages/22/fb/393cb374013c819096f486c12596c9e8b8944b53d85e96fbca9fe7b1f14a/SQLAlchemy-2.0.32-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:bf2360a5e0f7bd75fa80431bf8ebcfb920c9f885e7956c7efde89031695cafb8", size = 3051018 }, + { url = "https://files.pythonhosted.org/packages/6d/3b/80c35cbacbbcf56bbb2befbb9e06b7e9c5f6b4a5b0cc07579d85504e5284/SQLAlchemy-2.0.32-cp310-cp310-win32.whl", hash = "sha256:306fe44e754a91cd9d600a6b070c1f2fadbb4a1a257b8781ccf33c7067fd3e4d", size = 2059441 }, + { url = "https://files.pythonhosted.org/packages/e8/86/989f4b4c47da0d9b152465f6623b6a6415179b4e6bb967f08199bdad98eb/SQLAlchemy-2.0.32-cp310-cp310-win_amd64.whl", hash = "sha256:99db65e6f3ab42e06c318f15c98f59a436f1c78179e6a6f40f529c8cc7100b22", size = 2083917 }, + { url = "https://files.pythonhosted.org/packages/fc/a9/e3bd92004095ed6796ea4ac5fdd9606b1e53117ef5b90ae79ac3fc6e225e/SQLAlchemy-2.0.32-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:21b053be28a8a414f2ddd401f1be8361e41032d2ef5884b2f31d31cb723e559f", size = 2088752 }, + { url = "https://files.pythonhosted.org/packages/a9/34/b97f4458eefbdead7ee5ce69cbf3591574c5ba44162dbe52c4386818623f/SQLAlchemy-2.0.32-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b178e875a7a25b5938b53b006598ee7645172fccafe1c291a706e93f48499ff5", size = 2079150 }, + { url = "https://files.pythonhosted.org/packages/6b/b5/95ff12f5d4eb7813dd5a59ccc8e3c68d4683fedf59801b40704593c3b757/SQLAlchemy-2.0.32-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:723a40ee2cc7ea653645bd4cf024326dea2076673fc9d3d33f20f6c81db83e1d", size = 3197551 }, + { url = "https://files.pythonhosted.org/packages/ca/af/379f8695ab751acf61868b0098c8d66e2b2ad8b11d9939d5144c82d05bc5/SQLAlchemy-2.0.32-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:295ff8689544f7ee7e819529633d058bd458c1fd7f7e3eebd0f9268ebc56c2a0", size = 3197551 }, + { url = "https://files.pythonhosted.org/packages/ff/0c/5feaea51f23b5f008f16f9dbf7eec18ee5b9b8eb2875d6e367f52daf633e/SQLAlchemy-2.0.32-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:49496b68cd190a147118af585173ee624114dfb2e0297558c460ad7495f9dfe2", size = 3134583 }, + { url = "https://files.pythonhosted.org/packages/cc/83/4eca3604f9049a2b92a9ffb818ea1cc8186f722e539a6feee58f931bad34/SQLAlchemy-2.0.32-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:acd9b73c5c15f0ec5ce18128b1fe9157ddd0044abc373e6ecd5ba376a7e5d961", size = 3154911 }, + { url = "https://files.pythonhosted.org/packages/3d/56/485ad322f148a8b70060e03b5f130e714f95d839b5e50315e5c5efd1fc05/SQLAlchemy-2.0.32-cp311-cp311-win32.whl", hash = "sha256:9365a3da32dabd3e69e06b972b1ffb0c89668994c7e8e75ce21d3e5e69ddef28", size = 2059047 }, + { url = "https://files.pythonhosted.org/packages/bb/8c/4548ae42b4ab7f3fe9f1aeb4b1f28ea795485ca44840cb0f3f57aa8ecfcc/SQLAlchemy-2.0.32-cp311-cp311-win_amd64.whl", hash = "sha256:8bd63d051f4f313b102a2af1cbc8b80f061bf78f3d5bd0843ff70b5859e27924", size = 2084480 }, + { url = "https://files.pythonhosted.org/packages/06/95/88beb07aa61c611829c9ce950f349adcf00065c1bb313090c20d80a520ca/SQLAlchemy-2.0.32-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:6bab3db192a0c35e3c9d1560eb8332463e29e5507dbd822e29a0a3c48c0a8d92", size = 2087267 }, + { url = "https://files.pythonhosted.org/packages/11/93/0b28f9d261af927eef3df472e5bbf144fb33e062de770b2c312bb516702b/SQLAlchemy-2.0.32-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:19d98f4f58b13900d8dec4ed09dd09ef292208ee44cc9c2fe01c1f0a2fe440e9", size = 2077732 }, + { url = "https://files.pythonhosted.org/packages/84/50/1ce1dec4b1cce8f1163c2c58bb1588ac5076c3dbc4bb1d3eab70e798fdd4/SQLAlchemy-2.0.32-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3cd33c61513cb1b7371fd40cf221256456d26a56284e7d19d1f0b9f1eb7dd7e8", size = 3227230 }, + { url = "https://files.pythonhosted.org/packages/9d/b8/aa822988d390cf06afa3c69d86a3a38bba79b51385207cd7cd99d0be17bb/SQLAlchemy-2.0.32-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7d6ba0497c1d066dd004e0f02a92426ca2df20fac08728d03f67f6960271feec", size = 3238118 }, + { url = "https://files.pythonhosted.org/packages/c3/d7/7a65172ed2713acf0262a65392dfcf05ca2b7a67c988ebad425eba9b3843/SQLAlchemy-2.0.32-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2b6be53e4fde0065524f1a0a7929b10e9280987b320716c1509478b712a7688c", size = 3173610 }, + { url = "https://files.pythonhosted.org/packages/a9/0f/8da0613e3f0b095ef423802943ed4b98242370736034ed5043a43c46c3d4/SQLAlchemy-2.0.32-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:916a798f62f410c0b80b63683c8061f5ebe237b0f4ad778739304253353bc1cb", size = 3200224 }, + { url = "https://files.pythonhosted.org/packages/50/ef/973e0bbf2be5c12e34dca92139ca100f51ba078e36c3c06fd1dc8480c209/SQLAlchemy-2.0.32-cp312-cp312-win32.whl", hash = "sha256:31983018b74908ebc6c996a16ad3690301a23befb643093fcfe85efd292e384d", size = 2057626 }, + { url = "https://files.pythonhosted.org/packages/db/5f/440c324aae82a2ce892ac0fe1d114b9dc9f04e934e8f0762574876a168b5/SQLAlchemy-2.0.32-cp312-cp312-win_amd64.whl", hash = "sha256:4363ed245a6231f2e2957cccdda3c776265a75851f4753c60f3004b90e69bfeb", size = 2083167 }, + { url = "https://files.pythonhosted.org/packages/51/da/0f8ead52bbcde6634c839f71d78914b7b18360a10cedf67fa9a421199dda/SQLAlchemy-2.0.32-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:52fec964fba2ef46476312a03ec8c425956b05c20220a1a03703537824b5e8e1", size = 2090444 }, + { url = "https://files.pythonhosted.org/packages/90/ea/ce1dd9cbe8bebc0573eca70b998ec34209b1a0ed9a476e158039f99519d1/SQLAlchemy-2.0.32-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:328429aecaba2aee3d71e11f2477c14eec5990fb6d0e884107935f7fb6001632", size = 2081677 }, + { url = "https://files.pythonhosted.org/packages/2a/ed/2cb2441199b518cc7dc1196600ec79d16a7cdeb3ad452569c7b077a547c8/SQLAlchemy-2.0.32-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:85a01b5599e790e76ac3fe3aa2f26e1feba56270023d6afd5550ed63c68552b3", size = 3075690 }, + { url = "https://files.pythonhosted.org/packages/9e/47/9dc7ffea9b544f3f37a4f977cf0a740ff86da49eeb3ba5a3a10b9abe891c/SQLAlchemy-2.0.32-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aaf04784797dcdf4c0aa952c8d234fa01974c4729db55c45732520ce12dd95b4", size = 3083489 }, + { url = "https://files.pythonhosted.org/packages/13/c5/619be86e3ac5de6b8ed3ad16dc121ef2acd776ed064af2305f2badd2df1f/SQLAlchemy-2.0.32-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:4488120becf9b71b3ac718f4138269a6be99a42fe023ec457896ba4f80749525", size = 3042702 }, + { url = "https://files.pythonhosted.org/packages/61/78/6a058bea63c6d9517ce0ab2a519f868e9a4012830cc4b2e486ec44262aee/SQLAlchemy-2.0.32-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:14e09e083a5796d513918a66f3d6aedbc131e39e80875afe81d98a03312889e6", size = 3069169 }, + { url = "https://files.pythonhosted.org/packages/f2/93/775f5e06ac8f3e45f0bc7ed441355d11d25d5071898b50cf6e95c53b0537/SQLAlchemy-2.0.32-cp39-cp39-win32.whl", hash = "sha256:0d322cc9c9b2154ba7e82f7bf25ecc7c36fbe2d82e2933b3642fc095a52cfc78", size = 2061986 }, + { url = "https://files.pythonhosted.org/packages/7d/95/01a59f28a5fdabbd1b4c033f21951f1f9d4153ac3f553211715134b89f55/SQLAlchemy-2.0.32-cp39-cp39-win_amd64.whl", hash = "sha256:7dd8583df2f98dea28b5cd53a1beac963f4f9d087888d75f22fcc93a07cf8d84", size = 2086514 }, + { url = "https://files.pythonhosted.org/packages/99/1b/045185a9f6481d926a451aafaa0d07c98f19ac7abe730dff9630c9ead4fa/SQLAlchemy-2.0.32-py3-none-any.whl", hash = "sha256:e567a8793a692451f706b363ccf3c45e056b67d90ead58c3bc9471af5d212202", size = 1878765 }, +] + +[[package]] +name = "starlette" +version = "0.37.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version < '3.10'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/61/b5/6bceb93ff20bd7ca36e6f7c540581abb18f53130fabb30ba526e26fd819b/starlette-0.37.2.tar.gz", hash = "sha256:9af890290133b79fc3db55474ade20f6220a364a0402e0b556e7cd5e1e093823", size = 2843736 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fd/18/31fa32ed6c68ba66220204ef0be798c349d0a20c1901f9d4a794e08c76d8/starlette-0.37.2-py3-none-any.whl", hash = "sha256:6fe59f29268538e5d0d182f2791a479a0c64638e6935d1c6989e63fb2699c6ee", size = 71908 }, +] + +[[package]] +name = "sudachidict-core" +version = "20240716" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "sudachipy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ae/35/954cb4488c42cabbe3a352482d2ce64de42b8171c54b1ad31861cbbb97e2/SudachiDict-core-20240716.tar.gz", hash = "sha256:90380263fd3e597240b38001cdcb4d7ae3781fcbf4c92f31cc4d1a4b5c41eea9", size = 9009 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/4e/7496687bb41b10b05c9f19e871e730254adf20ce1b16d695fa7cb305830f/SudachiDict_core-20240716-py3-none-any.whl", hash = "sha256:29b69eb016c5da7fcbf7cc1dee1c4bdfc323af2e9638106ba62e490f97d86cc9", size = 72043340 }, +] + +[[package]] +name = "sudachipy" +version = "0.6.8" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/49/91/fb79084df253ffce217fe10dcad6729e5263f41813b9ab7e4375e01528bd/SudachiPy-0.6.8.tar.gz", hash = "sha256:3d1c9086ff09afacc34d02fdb2112aab7cff1d78f0d4b81f78b9ba01c36d4888", size = 161941 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d2/af/b0e955be17526fccab7c6260cfe2d7d7ccb43369271e6872b0d41cd61375/SudachiPy-0.6.8-cp310-cp310-macosx_10_12_universal2.whl", hash = "sha256:85f91a6ac347d2fbf478ae96e0e08efe7b8e47fb7cdfb770e90611be5669cabb", size = 2939942 }, + { url = "https://files.pythonhosted.org/packages/bd/5e/59892dc4d962d688bd327d3e0b055c26da6c2ba5d6df8b5dac71790fb31b/SudachiPy-0.6.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:361ef3e3333ef4165b517668878dd80fbed6d3c443659b9dc3236132ea8f7fbb", size = 2572608 }, + { url = "https://files.pythonhosted.org/packages/d8/ac/3fd8daef7cd3299c0c4cc2f051592b91932b0d2a4f34ccae053214ca09ee/SudachiPy-0.6.8-cp310-cp310-win_amd64.whl", hash = "sha256:081c52918bdae35f564637db146389f0a48b3b5263f215859b4d1ae311a7a474", size = 1253887 }, + { url = "https://files.pythonhosted.org/packages/cd/20/158d7050b9abe068ab3c290fad55a445a78e8be22d752bf2fea1f82dd47c/SudachiPy-0.6.8-cp311-cp311-macosx_10_12_universal2.whl", hash = "sha256:0a6cb506e402933023ea07035fc3e81d65880392afcdb2f09676027882b09e73", size = 2966165 }, + { url = "https://files.pythonhosted.org/packages/b9/14/2f21de25cf6aad359c35ab1899098c2cbc804f0d473beeff423b46e2e74d/SudachiPy-0.6.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d19db58be100b05362d00d0ad5cd29aff6da31807967b302f35bd43dd59e141f", size = 2572928 }, + { url = "https://files.pythonhosted.org/packages/5b/5e/d4e980c12ee98b965c23981ba278b0a90e03de0f3edb19a9c383efde250c/SudachiPy-0.6.8-cp311-cp311-win_amd64.whl", hash = "sha256:27833ae472220dc46f934edd9a8839b0134279c0113f7da01d67e424bfe2d0ab", size = 1253969 }, + { url = "https://files.pythonhosted.org/packages/e8/fd/9288521653a59a8f261bc5f29a5cadea134e45a690b9f2c9ad20d5464665/SudachiPy-0.6.8-cp312-cp312-macosx_10_12_universal2.whl", hash = "sha256:7f75d4627fa141bc02951c5ce17ec7055faf2e9424d10c697e923c27b7936369", size = 2963966 }, + { url = "https://files.pythonhosted.org/packages/79/54/1da84327f26de09d865f23c7bfd30a66fb1fe078f8185ee69bfa5600e032/SudachiPy-0.6.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:33afa2efa4d98ae3cbea0ab8cc09c71b0405d188074d0c4cef2b2080a51caafe", size = 2568552 }, + { url = "https://files.pythonhosted.org/packages/57/dd/175671837c8a82c56acdaab3df4ae453f89bddc6a5537859144608469481/SudachiPy-0.6.8-cp312-cp312-win_amd64.whl", hash = "sha256:2a2f22605093ed7994eb7edced2a21c8ac71b9ecc9877e94539414b1a60d172a", size = 1250564 }, + { url = "https://files.pythonhosted.org/packages/19/ad/8ca3241f17bf665c249496991341d624ca746cfd5ec631514abc4f7569e7/SudachiPy-0.6.8-cp39-cp39-macosx_10_12_universal2.whl", hash = "sha256:d52ddc5001b0125375419409adee012f8957b15ad1a4017e18f30c54ba69f9b7", size = 2940609 }, + { url = "https://files.pythonhosted.org/packages/b0/50/6a8be2ee011d0401b382ce83bc64f2769d57aab76103ed3bfbf324bf97e5/SudachiPy-0.6.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c2a7c98f75567bd8488a1597c83f8f6abb4c15c577d0b5f92fa0c31c8304dae4", size = 2572704 }, + { url = "https://files.pythonhosted.org/packages/67/41/6748863dff329ddb1787bee767e91e1d633bdc76bd3caa155f746b39f594/SudachiPy-0.6.8-cp39-cp39-win_amd64.whl", hash = "sha256:1ae6e533f98e510e751d7355ec512aff3a7dac73539abb61c731cdcc316a183f", size = 1253208 }, +] + +[[package]] +name = "sympy" +version = "1.13.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mpmath", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ca/99/5a5b6f19ff9f083671ddf7b9632028436167cd3d33e11015754e41b249a4/sympy-1.13.1.tar.gz", hash = "sha256:9cebf7e04ff162015ce31c9c6c9144daa34a93bd082f54fd8f12deca4f47515f", size = 7533040 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b2/fe/81695a1aa331a842b582453b605175f419fe8540355886031328089d840a/sympy-1.13.1-py3-none-any.whl", hash = "sha256:db36cdc64bf61b9b24578b6f7bab1ecdd2452cf008f34faa33776680c26d66f8", size = 6189177 }, +] + +[[package]] +name = "tabulate" +version = "0.9.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ec/fe/802052aecb21e3797b8f7902564ab6ea0d60ff8ca23952079064155d1ae1/tabulate-0.9.0.tar.gz", hash = "sha256:0095b12bf5966de529c0feb1fa08671671b3368eec77d7ef7ab114be2c068b3c", size = 81090 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/40/44/4a5f08c96eb108af5cb50b41f76142f0afa346dfa99d5296fe7202a11854/tabulate-0.9.0-py3-none-any.whl", hash = "sha256:024ca478df22e9340661486f85298cff5f6dcdba14f3813e8830015b9ed1948f", size = 35252 }, +] + +[[package]] +name = "tblib" +version = "3.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1a/df/4f2cd7eaa6d41a7994d46527349569d46e34d9cdd07590b5c5b0dcf53de3/tblib-3.0.0.tar.gz", hash = "sha256:93622790a0a29e04f0346458face1e144dc4d32f493714c6c3dff82a4adb77e6", size = 30616 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9b/87/ce70db7cae60e67851eb94e1a2127d4abb573d3866d2efd302ceb0d4d2a5/tblib-3.0.0-py3-none-any.whl", hash = "sha256:80a6c77e59b55e83911e1e607c649836a69c103963c5f28a46cbeef44acf8129", size = 12478 }, +] + +[[package]] +name = "tenacity" +version = "9.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cd/94/91fccdb4b8110642462e653d5dcb27e7b674742ad68efd146367da7bdb10/tenacity-9.0.0.tar.gz", hash = "sha256:807f37ca97d62aa361264d497b0e31e92b8027044942bfa756160d908320d73b", size = 47421 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/cb/b86984bed139586d01532a587464b5805f12e397594f19f931c4c2fbfa61/tenacity-9.0.0-py3-none-any.whl", hash = "sha256:93de0c98785b27fcf659856aa9f54bfbd399e29969b0621bc7f762bd441b4539", size = 28169 }, +] + +[[package]] +name = "tensorboard" +version = "2.15.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "google-auth", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "google-auth-oauthlib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "grpcio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "markdown", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "setuptools", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorboard-data-server", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "werkzeug", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/37/12/f6e9b9dcc310263cbd3948274e286538bd6800fd0c268850788f14a0c6d0/tensorboard-2.15.2-py3-none-any.whl", hash = "sha256:a6f6443728064d962caea6d34653e220e34ef8df764cb06a8212c17e1a8f0622", size = 5539713 }, +] + +[[package]] +name = "tensorboard-data-server" +version = "0.7.2" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7a/13/e503968fefabd4c6b2650af21e110aa8466fe21432cd7c43a84577a89438/tensorboard_data_server-0.7.2-py3-none-any.whl", hash = "sha256:7e0610d205889588983836ec05dc098e80f97b7e7bbff7e994ebb78f578d0ddb", size = 2356 }, + { url = "https://files.pythonhosted.org/packages/b7/85/dabeaf902892922777492e1d253bb7e1264cadce3cea932f7ff599e53fea/tensorboard_data_server-0.7.2-py3-none-macosx_10_9_x86_64.whl", hash = "sha256:9fe5d24221b29625dbc7328b0436ca7fc1c23de4acf4d272f1180856e32f9f60", size = 4823598 }, + { url = "https://files.pythonhosted.org/packages/73/c6/825dab04195756cf8ff2e12698f22513b3db2f64925bdd41671bfb33aaa5/tensorboard_data_server-0.7.2-py3-none-manylinux_2_31_x86_64.whl", hash = "sha256:ef687163c24185ae9754ed5650eb5bc4d84ff257aabdc33f0cc6f74d8ba54530", size = 6590363 }, +] + +[[package]] +name = "tensorboardx" +version = "2.6.2.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/02/9b/c2b5aba53f5e27ffcf249fc38485836119638f97d20b978664b15f97c8a6/tensorboardX-2.6.2.2.tar.gz", hash = "sha256:c6476d7cd0d529b0b72f4acadb1269f9ed8b22f441e87a84f2a3b940bb87b666", size = 4778030 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/44/71/f3e7c9b2ab67e28c572ab4e9d5fa3499e0d252650f96d8a3a03e26677f53/tensorboardX-2.6.2.2-py2.py3-none-any.whl", hash = "sha256:160025acbf759ede23fd3526ae9d9bfbfd8b68eb16c38a010ebe326dc6395db8", size = 101700 }, +] + +[[package]] +name = "tensorflow" +version = "2.15.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "astunparse", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "flatbuffers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "gast", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "google-pasta", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "grpcio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "h5py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "keras", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "libclang", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ml-dtypes", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "opt-einsum", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "setuptools", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorboard", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-estimator", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-io-gcs-filesystem", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "termcolor", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "wrapt", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/9c/d3/904d5bf64305218ce19f81ff3b2cb872cf434a558443b4a9a5357924637a/tensorflow-2.15.1-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:91b51a507007d63a70b65be307d701088d15042a6399c0e2312b53072226e909", size = 236439313 }, + { url = "https://files.pythonhosted.org/packages/54/38/2be65dc6f47e6aa0fb0494877676774f8faa685c08a5cecf0c0040afccbc/tensorflow-2.15.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:10132acc072d59696c71ce7221d2d8e0e3ff1e6bc8688dbac6d7aed8e675b710", size = 205693732 }, + { url = "https://files.pythonhosted.org/packages/51/1b/1f6eb37c97d9998010751511308058800fc3736092aac64c3fee23cf0b35/tensorflow-2.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:30c5ef9c758ec9ff7ce2aff76b71c980bc5119b879071c2cc623b1591a497a1a", size = 2121 }, + { url = "https://files.pythonhosted.org/packages/4f/42/433c0c64c5d3b8bee696cde2006d15f03f0504c2f746d49f38e32e52e239/tensorflow-2.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea290e435464cf0794f657b48786e5fa413362abe55ed771c172c25980d070ce", size = 475215357 }, + { url = "https://files.pythonhosted.org/packages/1c/b7/604ed5e5507e3dd34b14295d5e4a762d47cc2e8cf29a23b4c20575461445/tensorflow-2.15.1-cp310-cp310-win_amd64.whl", hash = "sha256:8e5431d45ceb416c2b1b6de87378054fbac7d2ed35d45b102d89a786613fffdc", size = 2098 }, + { url = "https://files.pythonhosted.org/packages/25/72/2ede9c4b9b96650a8a7b909abf4733adf110c5907425ee252f8095385b11/tensorflow-2.15.1-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:6761efe511e6ee0f893f60738fefbcc51d6dc386eeaaafea59d21899ef369ffd", size = 236482723 }, + { url = "https://files.pythonhosted.org/packages/f1/31/3191cd83da2f213a3c4af5e40597a98996e9c84b56666f9595dad8a6e780/tensorflow-2.15.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:aa926114d1e13ffe5b2ea59c3f195216f26646d7fe36e9e5207b291e4b7902ff", size = 205736374 }, + { url = "https://files.pythonhosted.org/packages/81/40/31b27ab3f46de305475ef5160acc8a2addb8fa9ea2179777c4e9bcc5baaf/tensorflow-2.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e73d43dbc68d8c711e70edecc4ac70472799a25ec4ec18a84d479ee18033d3c5", size = 2121 }, + { url = "https://files.pythonhosted.org/packages/c1/2d/636471492d93b6c1bf5375b81be7105a313a8c91a07c37e43625b00ca5c3/tensorflow-2.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bb0edd69103c154245c5f209f0507355cc68ba7e4de350084bc31edc562478e4", size = 475258663 }, + { url = "https://files.pythonhosted.org/packages/cb/c5/f5b31ee348459d6f6c54d762488aa0a8e42ff11a7395f4d158915ad43000/tensorflow-2.15.1-cp311-cp311-win_amd64.whl", hash = "sha256:a49f8755c74a89553294a99ab25aa87ab1cddbfa40fe58387e09f64f0578cedc", size = 2096 }, + { url = "https://files.pythonhosted.org/packages/62/e7/b8db69612f401f52b510163d5a04b783c3f3440e8f86e299480095e5e76f/tensorflow-2.15.1-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:f8e85821317c9c0fbf1256e9f721cfb1400ba1e09becb844b3ddd91f744805fc", size = 236437643 }, + { url = "https://files.pythonhosted.org/packages/91/ee/1c4db1bb82d1158fdbfe024bc2331b06272cb8f4abaf7d4e2127b21fc428/tensorflow-2.15.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:b75815b6a601edad52b4181e9805c8fcd04813a6ab1d5cd8127188dfd2788e20", size = 205692241 }, + { url = "https://files.pythonhosted.org/packages/16/85/6b758898a4342b50add537e2dd50f36fe3b16451bd3a41c2dec0a1ac7548/tensorflow-2.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:432788ac5d1234b9e9b7c7f73603a5655271a28c293329c52c7c0b9434a1184e", size = 2120 }, + { url = "https://files.pythonhosted.org/packages/38/03/d509cd280c07ba34f1690b5f094cd715bec3c69a08c15a8a61cf82833cf6/tensorflow-2.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89b5aa1022dec47e567512eaf4e1271b8e6c1ff1984e30d0d9127bd1093ed4c5", size = 475214135 }, + { url = "https://files.pythonhosted.org/packages/a5/ef/a9fe22fabd5e11bda4e322daec40d8798a504fd2ee5725a56ba786503452/tensorflow-2.15.1-cp39-cp39-win_amd64.whl", hash = "sha256:aaf3cfa290597ebbdf19d1a78729e3f555e459506cd58f8d7399359ac5e02a05", size = 2095 }, +] + +[[package]] +name = "tensorflow-cpu" +version = "2.15.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "astunparse", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "flatbuffers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "gast", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "google-pasta", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "grpcio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "h5py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "keras", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "libclang", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ml-dtypes", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "opt-einsum", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "setuptools", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorboard", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-estimator", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-io-gcs-filesystem", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "termcolor", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "wrapt", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/1f/cc/dfb0195934918847611d0d1e0a2ad3f1f8a77876a9139b8976ebdd72854c/tensorflow_cpu-2.15.1-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:f211b011e812f827f5452b1d5f19865645c65df6e2a07d71118480c40887133e", size = 236439366 }, + { url = "https://files.pythonhosted.org/packages/d0/f4/058dc567de1ac67120a85119f19fe6288f45f6b08db8c03dfb38fa664874/tensorflow_cpu-2.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba9503db2c5357ea21938555323581fbdabf3d051b6bc1b5f73c5b0ae034d077", size = 207165286 }, + { url = "https://files.pythonhosted.org/packages/7b/75/d12ecfc1d04bcbd39d3617b53beb3f2f1ed6237bd877fe998eed88c6d820/tensorflow_cpu-2.15.1-cp310-cp310-win_amd64.whl", hash = "sha256:dcf2d31c59abddfe6f1a86ca3e4dee99428c59831b1939a984622e0b19b52fcf", size = 2134 }, + { url = "https://files.pythonhosted.org/packages/d8/6c/dc0642ce2656637d8f31ba9c618a41bf14e38428ba77e4e0a9359be39436/tensorflow_cpu-2.15.1-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:ee3bb114c6031d471d891c761e7eda2c80bea19bb318abcd3d5bab92ccfaf9aa", size = 236482774 }, + { url = "https://files.pythonhosted.org/packages/5b/00/af89cb211fc96ffdebb52a687dad7f83b0b1d82bc057f65309fa03a89911/tensorflow_cpu-2.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:54660c074d7241a503e81edfd9f5ef5af88f64051b72e2945f26318c790f2d26", size = 207208420 }, + { url = "https://files.pythonhosted.org/packages/51/8a/ff2fc9bad8edc68ef4cd63963c10b320de03d3496def83d2a9b1635c6831/tensorflow_cpu-2.15.1-cp311-cp311-win_amd64.whl", hash = "sha256:dc75baf4c08a6e8ab7ceec97f002bb993508a5b58f13fac5283ee976a71a3c67", size = 2133 }, + { url = "https://files.pythonhosted.org/packages/65/61/507dd4e8c092a82ea088865cf733808d71ac19b1f58810da10c957353190/tensorflow_cpu-2.15.1-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:481f3f38fac552f0915052292614c57875e44ff7e235edc11fa847e313c09c83", size = 236437695 }, + { url = "https://files.pythonhosted.org/packages/d2/4a/9ce811354ddbd63704d68fd554ecbb4b03b74e9df274bad7ffd0f2349381/tensorflow_cpu-2.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:102b27b17e5f6023886b0cb07835af56cd135b845c1b92e597018ba77e54e480", size = 207164138 }, + { url = "https://files.pythonhosted.org/packages/bd/cb/1358e60835aad684311cfab10e36375c09a8a627ed22f357ddc9f0556ca3/tensorflow_cpu-2.15.1-cp39-cp39-win_amd64.whl", hash = "sha256:951d78693b61239464bee5ae9c20b6c845d82ae0a2092ee5abebb96b5e2db02e", size = 2133 }, +] + +[[package]] +name = "tensorflow-cpu-aws" +version = "2.15.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "astunparse", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "flatbuffers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "gast", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "google-pasta", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "grpcio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "h5py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "keras", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "libclang", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ml-dtypes", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "opt-einsum", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "setuptools", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorboard", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-estimator", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-io-gcs-filesystem", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "termcolor", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "wrapt", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/9c/74e7c37e2de31fb5ada8f3a166ceedacdb99fc9bcd88f606ec97bfc2b22e/tensorflow_cpu_aws-2.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c781d95cb8c58d47cb012b7b4e77b2f3e8d4d47b45926bc54976506fa0c037cc", size = 211831219 }, + { url = "https://files.pythonhosted.org/packages/06/d5/05cd02db299821fd68ef5f8857506c21aeeddd024daf519d8643f0260952/tensorflow_cpu_aws-2.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d4c3a3a9363bf42999adedbbd514e3a133be2d62f61fee9cfa46aaefb087c09e", size = 211874120 }, + { url = "https://files.pythonhosted.org/packages/e0/b2/44b4492303ea458f1c97d1c5ebd412dd799827f6fafd7938dd45be8f70a6/tensorflow_cpu_aws-2.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e9a25f2b9da4740074fdd89bd2a4cf280a9d40b1d26a973ef079e6673c1bf7de", size = 211831639 }, +] + +[[package]] +name = "tensorflow-estimator" +version = "2.15.0" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/c8/2f823c8958d5342eafc6dd3e922f0cc4fcf8c2e0460284cc462dae3b60a0/tensorflow_estimator-2.15.0-py2.py3-none-any.whl", hash = "sha256:aedf21eec7fb2dc91150fc91a1ce12bc44dbb72278a08b58e79ff87c9e28f153", size = 441974 }, +] + +[[package]] +name = "tensorflow-hub" +version = "0.16.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tf-keras", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/e5/50/00dba77925bf2a0a1e45d7bcf8a69a1d2534fb4bb277d9010bd148d2235e/tensorflow_hub-0.16.1-py2.py3-none-any.whl", hash = "sha256:e10c184b3d08daeafada11ffea2dd46781725b6bef01fad1f74d6634ad05311f", size = 30771 }, +] + +[[package]] +name = "tensorflow-intel" +version = "2.15.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "astunparse", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "flatbuffers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "gast", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "google-pasta", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "grpcio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "h5py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "keras", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "libclang", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ml-dtypes", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "opt-einsum", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "setuptools", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorboard", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-estimator", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-io-gcs-filesystem", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "termcolor", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "wrapt", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/02/13/681487f4f5241d8213fbf3f8940988054d97e213fcc3390921682dfc691f/tensorflow_intel-2.15.1-cp310-cp310-win_amd64.whl", hash = "sha256:9f305142b3c5e239c82c463429b1f88726dd27d9f23523871f825493a9ffc5f4", size = 300872148 }, + { url = "https://files.pythonhosted.org/packages/90/32/d0ec8fe173e8e1c38cd13d23d640c46232d211fbd6f3485d17a1950f3c38/tensorflow_intel-2.15.1-cp311-cp311-win_amd64.whl", hash = "sha256:4f05059493f8203285ac5cea3b1955887a7903c1ca6f7a29e4b6ef912b1f934b", size = 300918101 }, + { url = "https://files.pythonhosted.org/packages/a9/61/c746e82becb7f14aac327220d5dd1a086b94b605cfab24b3e5991fa26cdf/tensorflow_intel-2.15.1-cp39-cp39-win_amd64.whl", hash = "sha256:921f18f7eb9cf59769e9668b3935fe178c990e2973d8013870dae5e3b58de079", size = 300800813 }, +] + +[[package]] +name = "tensorflow-io-gcs-filesystem" +version = "0.37.1" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e9/a3/12d7e7326a707919b321e2d6e4c88eb61596457940fd2b8ff3e9b7fac8a7/tensorflow_io_gcs_filesystem-0.37.1-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:249c12b830165841411ba71e08215d0e94277a49c551e6dd5d72aab54fe5491b", size = 2470224 }, + { url = "https://files.pythonhosted.org/packages/1c/55/3849a188cc15e58fefde20e9524d124a629a67a06b4dc0f6c881cb3c6e39/tensorflow_io_gcs_filesystem-0.37.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:257aab23470a0796978efc9c2bcf8b0bc80f22e6298612a4c0a50d3f4e88060c", size = 3479613 }, + { url = "https://files.pythonhosted.org/packages/e2/19/9095c69e22c879cb3896321e676c69273a549a3148c4f62aa4bc5ebdb20f/tensorflow_io_gcs_filesystem-0.37.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8febbfcc67c61e542a5ac1a98c7c20a91a5e1afc2e14b1ef0cb7c28bc3b6aa70", size = 4842078 }, + { url = "https://files.pythonhosted.org/packages/f3/48/47b7d25572961a48b1de3729b7a11e835b888e41e0203cca82df95d23b91/tensorflow_io_gcs_filesystem-0.37.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9679b36e3a80921876f31685ab6f7270f3411a4cc51bc2847e80d0e4b5291e27", size = 5085736 }, + { url = "https://files.pythonhosted.org/packages/40/9b/b2fb82d0da673b17a334f785fc19c23483165019ddc33b275ef25ca31173/tensorflow_io_gcs_filesystem-0.37.1-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:32c50ab4e29a23c1f91cd0f9ab8c381a0ab10f45ef5c5252e94965916041737c", size = 2470224 }, + { url = "https://files.pythonhosted.org/packages/5b/cc/16634e76f3647fbec18187258da3ba11184a6232dcf9073dc44579076d36/tensorflow_io_gcs_filesystem-0.37.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:b02f9c5f94fd62773954a04f69b68c4d576d076fd0db4ca25d5479f0fbfcdbad", size = 3479613 }, + { url = "https://files.pythonhosted.org/packages/de/bf/ba597d3884c77d05a78050f3c178933d69e3f80200a261df6eaa920656cd/tensorflow_io_gcs_filesystem-0.37.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6e1f2796b57e799a8ca1b75bf47c2aaa437c968408cc1a402a9862929e104cda", size = 4842079 }, + { url = "https://files.pythonhosted.org/packages/66/7f/e36ae148c2f03d61ca1bff24bc13a0fef6d6825c966abef73fc6f880a23b/tensorflow_io_gcs_filesystem-0.37.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee7c8ee5fe2fd8cb6392669ef16e71841133041fee8a330eff519ad9b36e4556", size = 5085736 }, + { url = "https://files.pythonhosted.org/packages/70/83/4422804257fe2942ae0af4ea5bcc9df59cb6cb1bd092202ef240751d16aa/tensorflow_io_gcs_filesystem-0.37.1-cp312-cp312-macosx_10_14_x86_64.whl", hash = "sha256:ffebb6666a7bfc28005f4fbbb111a455b5e7d6cd3b12752b7050863ecb27d5cc", size = 2470224 }, + { url = "https://files.pythonhosted.org/packages/43/9b/be27588352d7bd971696874db92d370f578715c17c0ccb27e4b13e16751e/tensorflow_io_gcs_filesystem-0.37.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:fe8dcc6d222258a080ac3dfcaaaa347325ce36a7a046277f6b3e19abc1efb3c5", size = 3479614 }, + { url = "https://files.pythonhosted.org/packages/d3/46/962f47af08bd39fc9feb280d3192825431a91a078c856d17a78ae4884eb1/tensorflow_io_gcs_filesystem-0.37.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fbb33f1745f218464a59cecd9a18e32ca927b0f4d77abd8f8671b645cc1a182f", size = 4842077 }, + { url = "https://files.pythonhosted.org/packages/f0/9b/790d290c232bce9b691391cf16e95a96e469669c56abfb1d9d0f35fa437c/tensorflow_io_gcs_filesystem-0.37.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:286389a203a5aee1a4fa2e53718c661091aa5fea797ff4fa6715ab8436b02e6c", size = 5085733 }, + { url = "https://files.pythonhosted.org/packages/12/4f/798df777498fab9dc683a658688e962f0af56454eb040c90f836fd9fa67c/tensorflow_io_gcs_filesystem-0.37.1-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:ee5da49019670ed364f3e5fb86b46420841a6c3cb52a300553c63841671b3e6d", size = 2470221 }, + { url = "https://files.pythonhosted.org/packages/7a/f9/ce6a0efde262a79361f0d67392fdf0d0406781a1ee4fc48d0d8b0553b311/tensorflow_io_gcs_filesystem-0.37.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:8943036bbf84e7a2be3705cb56f9c9df7c48c9e614bb941f0936c58e3ca89d6f", size = 3479613 }, + { url = "https://files.pythonhosted.org/packages/66/5f/334a011caa1eb97689274d1141df8e6b7a25e389f0390bdcd90235de9783/tensorflow_io_gcs_filesystem-0.37.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:426de1173cb81fbd62becec2012fc00322a295326d90eb6c737fab636f182aed", size = 4842075 }, + { url = "https://files.pythonhosted.org/packages/3d/cb/7dcee55fc5a7d7d8a862e12519322851cd5fe5b086f946fd71e4ae1ef281/tensorflow_io_gcs_filesystem-0.37.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0df00891669390078a003cedbdd3b8e645c718b111917535fa1d7725e95cdb95", size = 5087496 }, +] + +[[package]] +name = "tensorflow-macos" +version = "2.15.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "tensorflow-cpu-aws", marker = "platform_system == 'Linux' and (platform_machine == 'aarch64' or platform_machine == 'arm64')" }, + { name = "tensorflow-intel", marker = "platform_system == 'Windows'" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/c8/b90dc41b1eefc2894801a120cf268b1f25440981fcf966fb055febce8348/tensorflow_macos-2.15.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:b8f01d7615fe4ff3b15a12f84471bd5344fed187543c4a091da3ddca51b6dc26", size = 2158 }, + { url = "https://files.pythonhosted.org/packages/bc/11/b73387ad260614ec43c313a630d14fe5522455084abc207fce864aaa3d73/tensorflow_macos-2.15.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:58fca6399665f19e599c591c421672d9bc8b705409d43ececd0931d1d3bc6a7e", size = 2159 }, + { url = "https://files.pythonhosted.org/packages/3a/54/95b9459cd48d92a0522c8dd59955210e51747a46461bcedb64a9a77ba822/tensorflow_macos-2.15.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:cca3c9ba5b96face05716792cb1bcc70d84c5e0c34bfb7735b39c65d0334b699", size = 2158 }, +] + +[[package]] +name = "tensorflow-text" +version = "2.15.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "tensorflow", marker = "platform_machine != 'arm64' or platform_system != 'Darwin'" }, + { name = "tensorflow-hub", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-macos", marker = "platform_machine == 'arm64' and platform_system == 'Darwin'" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/63/0f/d260a5cc7d86d25eb67bb919f957106b76af4a039f064526290d9cf5d93e/tensorflow_text-2.15.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:db09ada839eb92aa23afc6c4e37257e6665d64ae048cfdce6374b5aa33f8f006", size = 6441513 }, + { url = "https://files.pythonhosted.org/packages/70/12/91be80b24a403593f9dacddabd6f7ea110373a1831f575ad2d34fe7d4f7e/tensorflow_text-2.15.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0f522ab8511f3a0cf782cd3e22bc3d863d7cbf0b4ccc02a7de92abf0deea0df4", size = 5201157 }, + { url = "https://files.pythonhosted.org/packages/8a/fe/a2f19d3d3ab834c3fa1007c970b0b86573beb929c86ca6c85cd13e86e4b2/tensorflow_text-2.15.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:751f4a260e2b1a03db1ec9871473922219d82dccabc305cc79f1dec5d8283014", size = 6441515 }, + { url = "https://files.pythonhosted.org/packages/20/a0/bdbf2a11141f1c93e572364d13c42537cfe811b747a0bbb58fdd904f3960/tensorflow_text-2.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:31e5499282e787022cb078ac182c2bbe1a30438451dafb8bce7a81258017bfbb", size = 5201204 }, + { url = "https://files.pythonhosted.org/packages/88/db/e2a10d9582704d57923c9948e42ab05aae90fb3f5a8305394ed6961f1668/tensorflow_text-2.15.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2f87b23c7dd87c9581557a3f425ded96bfc4f969c52996ac491b99c4c2bb04b0", size = 6442438 }, + { url = "https://files.pythonhosted.org/packages/fa/59/82c59ca4d26ce24b0e65a1869bbbfc8615df11c31ecf439be095206aa006/tensorflow_text-2.15.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:66dc8c11d97278f19997171b8e3f7f8d0a12a67760028646a7b3a163fab1c3d3", size = 5202117 }, +] + +[[package]] +name = "tensorstore" +version = "0.1.64" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ml-dtypes", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ce/b7/04d19901451da377f03a6e1ae3d9edf0b43af93309f558abf28b2e5aaceb/tensorstore-0.1.64.tar.gz", hash = "sha256:7fa89e90876fb5377efc54f3f37326a6fb83ec9e1326565819a75a4e80949886", size = 6510000 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2f/a8/63876bab9ca44d0b57bca6893927df90b08ff0123697216fe7b297036015/tensorstore-0.1.64-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:c369088c74c0dda30398290724513a0289f25ccc01865ed5aec62e57f1930709", size = 15366638 }, + { url = "https://files.pythonhosted.org/packages/90/3d/28b0ee2d792842d2e27be9fea5c541a77d1f8f4d4c1a3a981306acb69818/tensorstore-0.1.64-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:40cae39aca2992fdac0ed5fbcef71f72cd38a759b1a61c37d95ad395606697b4", size = 13563010 }, + { url = "https://files.pythonhosted.org/packages/b8/26/40a8cc7ffcc4abeacd196560f8d54ca2e24d2bb8ca540360bf4c7b1b5e70/tensorstore-0.1.64-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8cf64ee03c7cd62a0dde2f4d1f3f8784d50aea3a2e85a65686be0fe33ea18ed5", size = 13650288 }, + { url = "https://files.pythonhosted.org/packages/f1/3b/9e539c9d22f4eda48a9e5788d76e761f0627f249c3018d396bcdf17c7a54/tensorstore-0.1.64-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1a78aedbddccc09ea283b145496da03dbc7eb8693ae4e01074ed791d72b7eac2", size = 14926295 }, + { url = "https://files.pythonhosted.org/packages/66/f4/fb0bab70e472ce78f290222b5b1631c589a8fe9043148c0882150b28b527/tensorstore-0.1.64-cp310-cp310-win_amd64.whl", hash = "sha256:72517af8c5f9c49d0343acb7c6b0cc250f8077ca989285d471d3a64dbbfcc36b", size = 11523913 }, + { url = "https://files.pythonhosted.org/packages/4d/9c/e1ef8f867de64f36c2ec3a1cb803693736a4dcb91d5afd0741c8e11e71df/tensorstore-0.1.64-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:2b0a1e3294d2e690a9c269ea50d62f2f60f7935ca507243d8b56b2871b0e201f", size = 15367232 }, + { url = "https://files.pythonhosted.org/packages/46/a7/e6adff4ec3f622bd28a79bfa339aea3dc9d66508e87bc739f730b970098e/tensorstore-0.1.64-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3da6fa00ddf312e1b502d2ee9de39b858a78a02b396114201c67c01bc03fc382", size = 13567261 }, + { url = "https://files.pythonhosted.org/packages/19/c4/e74f4c288b429221fd2f128eb57bed62ebf4bf69739970e404d8a5b63712/tensorstore-0.1.64-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c32976f5a0e881a097b52a488fb16d33a1d94a86393115098da87894fc9c5abf", size = 13652088 }, + { url = "https://files.pythonhosted.org/packages/c8/5a/2df005251df903de0fda4d8da7e7a5081a6854d40b62b8eeaf88a86a1c7a/tensorstore-0.1.64-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:55af5ec5bd78056e4df18f4af107bac7ea84d2bdc34ff6ab6642b3a036f99390", size = 14926070 }, + { url = "https://files.pythonhosted.org/packages/e5/68/07d792f014fc3ad886a2498ebbfdaf5d6807c09c65fad5534969620846b4/tensorstore-0.1.64-cp311-cp311-win_amd64.whl", hash = "sha256:24a4cebaf9d0e75d494342948f68edc971d6bb90e23192ddf8d98397fb1ff3cb", size = 11523737 }, + { url = "https://files.pythonhosted.org/packages/00/32/e9b22f4c05ae910940fbc6c304b6570b8cf8d35b1d2e8600d8118c42a80d/tensorstore-0.1.64-cp312-cp312-macosx_10_14_x86_64.whl", hash = "sha256:80c510024cc31c4dee7f478ea67a0b4b4cacf5a6bffe8c4e446188fdbe2d7b4c", size = 15404886 }, + { url = "https://files.pythonhosted.org/packages/df/9d/01e43143ac82cdc7b87e55818f0052a63b3414bd9f731a2c991dd68ca4ba/tensorstore-0.1.64-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c90d38b552c79f0d688cc3d502a9023e3dee9821881d6727d8aa06482ccdc0c1", size = 13594439 }, + { url = "https://files.pythonhosted.org/packages/44/7e/1522b9092e396d64d84ea799ef1f9c1d7e7da3514277fa8b908e1d8d26d1/tensorstore-0.1.64-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9968f9a9b9cd7c669bfae5244307e105c006038e8dd156eebbf2146f771ba369", size = 13646074 }, + { url = "https://files.pythonhosted.org/packages/0a/eb/09210bb4a8afc991eb9cb794269ff276a62f15936aef2b64335b61412f7a/tensorstore-0.1.64-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:806774968ee4cc8809114281730e9fad5970a94a7ef9104bc54fa35a32068b2f", size = 14923761 }, + { url = "https://files.pythonhosted.org/packages/c7/70/27281fb67817d69dddc5eec9827513f8e341e3a52cb85f066a84e9274a47/tensorstore-0.1.64-cp312-cp312-win_amd64.whl", hash = "sha256:cc315029f49c0f294f0721462c221e0ef4c15360a526cc34392ac81565fd63b8", size = 11523992 }, + { url = "https://files.pythonhosted.org/packages/d6/1c/bb414f7e7a7c2fbdcb21376da3928a3f025748db08c5c88feade387185bf/tensorstore-0.1.64-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:f47597209ce11228cfe6b94999f582788aac5571e85c3e8dcaa43b1f07660589", size = 15367235 }, + { url = "https://files.pythonhosted.org/packages/20/4c/1241fdac0ff5b1e3b5aad99d861639e551685108ddb36a472e6b92ea303f/tensorstore-0.1.64-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:abbe9c65978a5423751409df9c98efb69b2093953aa37d3a1605fc60663eb1d4", size = 13562757 }, + { url = "https://files.pythonhosted.org/packages/71/98/8a9635ee39ba9ee4a1d794fbeaf481f24f07d3abc4c6ac999a775a2c7e19/tensorstore-0.1.64-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e35c6e90429e517d3debdb974cb5d42e57d8c002629343a34483efbe0d4e490", size = 13658999 }, + { url = "https://files.pythonhosted.org/packages/9b/6b/373827eec77a063d39e60eace78665f0d18cef50e67bbadea78babd10c14/tensorstore-0.1.64-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72f76231ce12bfd266358a096e9c6000a2d86c1f4f24c3891c29b2edfffc5df4", size = 14920041 }, + { url = "https://files.pythonhosted.org/packages/c0/6d/9de85fe7f7ce8d78f5228d3f2ad7826f2b1ffb0e1030f4b7364629d8cc0d/tensorstore-0.1.64-cp39-cp39-win_amd64.whl", hash = "sha256:b46296a1c1f43f472e589d2fb43b9d6549d711486be78b6e3aafaff4179d8f56", size = 11477863 }, +] + +[[package]] +name = "termcolor" +version = "2.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/10/56/d7d66a84f96d804155f6ff2873d065368b25a07222a6fd51c4f24ef6d764/termcolor-2.4.0.tar.gz", hash = "sha256:aab9e56047c8ac41ed798fa36d892a37aca6b3e9159f3e0c24bc64a9b3ac7b7a", size = 12664 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d9/5f/8c716e47b3a50cbd7c146f45881e11d9414def768b7cd9c5e6650ec2a80a/termcolor-2.4.0-py3-none-any.whl", hash = "sha256:9297c0df9c99445c2412e832e882a7884038a25617c60cea2ad69488d4040d63", size = 7719 }, +] + +[[package]] +name = "text-unidecode" +version = "1.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ab/e2/e9a00f0ccb71718418230718b3d900e71a5d16e701a3dae079a21e9cd8f8/text-unidecode-1.3.tar.gz", hash = "sha256:bad6603bb14d279193107714b288be206cac565dfa49aa5b105294dd5c4aab93", size = 76885 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a6/a5/c0b6468d3824fe3fde30dbb5e1f687b291608f9473681bbf7dabbf5a87d7/text_unidecode-1.3-py2.py3-none-any.whl", hash = "sha256:1311f10e8b895935241623731c2ba64f4c455287888b18189350b67134a822e8", size = 78154 }, +] + +[[package]] +name = "tf-keras" +version = "2.15.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "tensorflow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/03/a3/72e49c210fe545159c98842f110f024195f8efefc2e310f8eac77e3d599e/tf_keras-2.15.1.tar.gz", hash = "sha256:40ab605cecc7759c657cb2bccd9efaacd6fc2369a6c1eba8053890afeac46886", size = 1251021 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6f/23/6fd9aab5b7ef9e5614b94edce48d92db9d38d2bd2d00ef2c7a6f82a00588/tf_keras-2.15.1-py3-none-any.whl", hash = "sha256:8beaef46b8b4f1158de1410e7c0cf82f008b9e8c4ab3443f54ac1aaef9c2ad74", size = 1715031 }, +] + +[[package]] +name = "tf2onnx" +version = "1.8.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "flatbuffers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnx", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/db/32/33ce509a79c207a39cf04bfa3ec3353da15d1e6553a6ad912f117cc29130/tf2onnx-1.8.4-py3-none-any.whl", hash = "sha256:1ebabb96c914da76e23222b6107a8b248a024bf259d77f027e6690099512d457", size = 345298 }, +] + +[[package]] +name = "threadpoolctl" +version = "3.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bd/55/b5148dcbf72f5cde221f8bfe3b6a540da7aa1842f6b491ad979a6c8b84af/threadpoolctl-3.5.0.tar.gz", hash = "sha256:082433502dd922bf738de0d8bcc4fdcbf0979ff44c42bd40f5af8a282f6fa107", size = 41936 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4b/2c/ffbf7a134b9ab11a67b0cf0726453cedd9c5043a4fe7a35d1cefa9a1bcfb/threadpoolctl-3.5.0-py3-none-any.whl", hash = "sha256:56c1e26c150397e58c4926da8eeee87533b1e32bef131bd4bf6a2f45f3185467", size = 18414 }, +] + +[[package]] +name = "timeout-decorator" +version = "0.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/80/f8/0802dd14c58b5d3d72bb9caa4315535f58787a1dc50b81bbbcaaa15451be/timeout-decorator-0.5.0.tar.gz", hash = "sha256:6a2f2f58db1c5b24a2cc79de6345760377ad8bdc13813f5265f6c3e63d16b3d7", size = 4754 } + +[[package]] +name = "timm" +version = "1.0.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "huggingface-hub", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "safetensors", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torchvision", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7d/e0/f9628aab36d199c6ff1bff2d4015e6b2333e8010d6c6eaed8fbfd102fa7f/timm-1.0.8.tar.gz", hash = "sha256:f54a579f1cc39c43d99a4b03603e39c4cee87d4f0a08aba9c22e19064b30bf95", size = 2187799 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1a/02/f11f8f9178242a694cd99f3a234731d833df77bf01cbb21c0085f021e3d7/timm-1.0.8-py3-none-any.whl", hash = "sha256:2e4cf9e2224616fdb08e5f7a2972bd20e05f750236ea1f8dd53f3f326ceaee83", size = 2309959 }, +] + +[[package]] +name = "tokenizers" +version = "0.15.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "huggingface-hub", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c0/44/625db94e91c6196b6574359fa70bfe28e8eabf57a1b894f8f0ec69727fd1/tokenizers-0.15.2.tar.gz", hash = "sha256:e6e9c6e019dd5484be5beafc775ae6c925f4c69a3487040ed09b45e13df2cb91", size = 320256 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a8/6e/489419d98730b3d02381f10a8b97c5bf55b45742d1b347cdd0ffe267b827/tokenizers-0.15.2-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:52f6130c9cbf70544287575a985bf44ae1bda2da7e8c24e97716080593638012", size = 2578411 }, + { url = "https://files.pythonhosted.org/packages/01/04/45d88b8bddc09bf56ae1631721393255b75798af515c65c26389713a2072/tokenizers-0.15.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:054c1cc9c6d68f7ffa4e810b3d5131e0ba511b6e4be34157aa08ee54c2f8d9ee", size = 2412452 }, + { url = "https://files.pythonhosted.org/packages/cc/bf/819bf4445ed68ffaf73b0f6245bcbd21a5cd58e86dabbef315a6d0b707b3/tokenizers-0.15.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:a9b9b070fdad06e347563b88c278995735292ded1132f8657084989a4c84a6d5", size = 3643451 }, + { url = "https://files.pythonhosted.org/packages/31/b3/70d3fe0ad25e065322cd902624cad4ff2647484fe823360f58af6927b48c/tokenizers-0.15.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ea621a7eef4b70e1f7a4e84dd989ae3f0eeb50fc8690254eacc08acb623e82f1", size = 3534105 }, + { url = "https://files.pythonhosted.org/packages/5f/1b/58e77f2b57651e8c1b4f1b7144a1250509f2e7a1f55073d12620968ae4bb/tokenizers-0.15.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:cf7fd9a5141634fa3aa8d6b7be362e6ae1b4cda60da81388fa533e0b552c98fd", size = 3398034 }, + { url = "https://files.pythonhosted.org/packages/dc/d5/45dd421f45b3c1a446ffd9486cef29ed568b5978f66a1803fa46a44aa9be/tokenizers-0.15.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44f2a832cd0825295f7179eaf173381dc45230f9227ec4b44378322d900447c9", size = 3926740 }, + { url = "https://files.pythonhosted.org/packages/fa/6b/6b757cf6f7c30009a6759d3f7b833d974b3cd50d24d5824c695e077cb1bf/tokenizers-0.15.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8b9ec69247a23747669ec4b0ca10f8e3dfb3545d550258129bd62291aabe8605", size = 4032027 }, + { url = "https://files.pythonhosted.org/packages/1c/5d/cf5e122ce4f1a29f165b2a69dc33d1ff30bce303343d58a54775ddba5d51/tokenizers-0.15.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40b6a4c78da863ff26dbd5ad9a8ecc33d8a8d97b535172601cf00aee9d7ce9ce", size = 3577319 }, + { url = "https://files.pythonhosted.org/packages/aa/0b/dd9e5124fe73a01f36f5c7554ac97b9612af5e0bd401d6a606a3f52a060a/tokenizers-0.15.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:5ab2a4d21dcf76af60e05af8063138849eb1d6553a0d059f6534357bce8ba364", size = 9682328 }, + { url = "https://files.pythonhosted.org/packages/6a/0c/3435e3d54f825d4fa363a7ab2680b243314377eb2ed28e87ade70b861e7b/tokenizers-0.15.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a47acfac7e511f6bbfcf2d3fb8c26979c780a91e06fb5b9a43831b2c0153d024", size = 9995619 }, + { url = "https://files.pythonhosted.org/packages/ab/bf/a804747020f1b221131b74b5f29c24b47a5d2cee4b1311ce394ca9ce242a/tokenizers-0.15.2-cp310-none-win32.whl", hash = "sha256:064ff87bb6acdbd693666de9a4b692add41308a2c0ec0770d6385737117215f2", size = 2013446 }, + { url = "https://files.pythonhosted.org/packages/c9/87/0bf37626c5f1ea2462e0398be88c287f3d40c696c255ba478bf525bdc852/tokenizers-0.15.2-cp310-none-win_amd64.whl", hash = "sha256:3b919afe4df7eb6ac7cafd2bd14fb507d3f408db7a68c43117f579c984a73843", size = 2192649 }, + { url = "https://files.pythonhosted.org/packages/73/11/933d68d395f5486d935e1c15da80bc96bf3f48595652069d19e0e9894386/tokenizers-0.15.2-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:89cd1cb93e4b12ff39bb2d626ad77e35209de9309a71e4d3d4672667b4b256e7", size = 2578922 }, + { url = "https://files.pythonhosted.org/packages/5f/4f/a4c12cc058a899c1caaa1e689c3df9a698e20e891d4005aa6ec2174a9339/tokenizers-0.15.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:cfed5c64e5be23d7ee0f0e98081a25c2a46b0b77ce99a4f0605b1ec43dd481fa", size = 2412317 }, + { url = "https://files.pythonhosted.org/packages/e9/13/b86ea87b7e3b4a2ca154220dc4eb19a56a3864ec03e9630d15d1bac10da1/tokenizers-0.15.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:a907d76dcfda37023ba203ab4ceeb21bc5683436ebefbd895a0841fd52f6f6f2", size = 3643051 }, + { url = "https://files.pythonhosted.org/packages/0f/23/e4985657ea42ad432d6dc2100b2687e70a6bae730f1f8c52f81d9e6ccf3a/tokenizers-0.15.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20ea60479de6fc7b8ae756b4b097572372d7e4032e2521c1bbf3d90c90a99ff0", size = 3534327 }, + { url = "https://files.pythonhosted.org/packages/34/d5/e1ad46939d6de48d41bbd8b302f87ecde79847855210e75517a832b29490/tokenizers-0.15.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:48e2b9335be2bc0171df9281385c2ed06a15f5cf121c44094338306ab7b33f2c", size = 3398296 }, + { url = "https://files.pythonhosted.org/packages/e7/d1/4d319a035f819af3290ec5a09482ad659d9d2a0aea33890fb5720ce81841/tokenizers-0.15.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:112a1dd436d2cc06e6ffdc0b06d55ac019a35a63afd26475205cb4b1bf0bfbff", size = 3927353 }, + { url = "https://files.pythonhosted.org/packages/e5/39/facfca8e598126a0001d4295e6b1ee670d241aa6f4fcdd97016065b43c5d/tokenizers-0.15.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4620cca5c2817177ee8706f860364cc3a8845bc1e291aaf661fb899e5d1c45b0", size = 4030091 }, + { url = "https://files.pythonhosted.org/packages/15/0b/c09b2c0dc688c82adadaa0d5080983de3ce920f4a5cbadb7eaa5302ad251/tokenizers-0.15.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ccd73a82751c523b3fc31ff8194702e4af4db21dc20e55b30ecc2079c5d43cb7", size = 3577167 }, + { url = "https://files.pythonhosted.org/packages/07/3b/d8e60712e509a6f5d01bf0eb4470452b72277be4883656206d4ccd7e02de/tokenizers-0.15.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:107089f135b4ae7817affe6264f8c7a5c5b4fd9a90f9439ed495f54fcea56fb4", size = 9683503 }, + { url = "https://files.pythonhosted.org/packages/c0/61/1c26c8e54af9bab32743e0484601a60738f33797f91040da2a4104f07e70/tokenizers-0.15.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0ff110ecc57b7aa4a594396525a3451ad70988e517237fe91c540997c4e50e29", size = 9996038 }, + { url = "https://files.pythonhosted.org/packages/d1/54/451e96d8514b1afbef955f7420e1180e015c3f4eb085ad38189c0e83ee87/tokenizers-0.15.2-cp311-none-win32.whl", hash = "sha256:6d76f00f5c32da36c61f41c58346a4fa7f0a61be02f4301fd30ad59834977cc3", size = 2013591 }, + { url = "https://files.pythonhosted.org/packages/c1/02/40725eebedea8175918bd59ab80b2174d6ef3b3ef9ac8ec996e84c38d3ca/tokenizers-0.15.2-cp311-none-win_amd64.whl", hash = "sha256:cc90102ed17271cf0a1262babe5939e0134b3890345d11a19c3145184b706055", size = 2192797 }, + { url = "https://files.pythonhosted.org/packages/ae/ca/ea4b5aa70d4d26f2d05620c265b07b5a249157767c1673f5753b8bfc7db1/tokenizers-0.15.2-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:f86593c18d2e6248e72fb91c77d413a815153b8ea4e31f7cd443bdf28e467670", size = 2574444 }, + { url = "https://files.pythonhosted.org/packages/f9/99/5a55a9b6e2db274c0969ad57d989d02efae90f9e558983a561c9b2b7ea1a/tokenizers-0.15.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0774bccc6608eca23eb9d620196687c8b2360624619623cf4ba9dc9bd53e8b51", size = 2411608 }, + { url = "https://files.pythonhosted.org/packages/82/cc/29bb3a25c06b90ce82bb20ef074011481de5c44413a1e1eb10cfd93080fb/tokenizers-0.15.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:d0222c5b7c9b26c0b4822a82f6a7011de0a9d3060e1da176f66274b70f846b98", size = 3652367 }, + { url = "https://files.pythonhosted.org/packages/c0/ae/f6a974be9b2e1615f3de3cc9e4fc2897a86357400801c58143c67cbbad2e/tokenizers-0.15.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3835738be1de66624fff2f4f6f6684775da4e9c00bde053be7564cbf3545cc66", size = 3529509 }, + { url = "https://files.pythonhosted.org/packages/d6/42/340b91f675b494c4ecc0a256c5dd88b4003dbfde05afff90b970738fdfb4/tokenizers-0.15.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0143e7d9dcd811855c1ce1ab9bf5d96d29bf5e528fd6c7824d0465741e8c10fd", size = 3396516 }, + { url = "https://files.pythonhosted.org/packages/6f/b2/8a965abc17fff309eb06e98ce429a19a5e04f731a669a6113b9e182f8a79/tokenizers-0.15.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db35825f6d54215f6b6009a7ff3eedee0848c99a6271c870d2826fbbedf31a38", size = 3918811 }, + { url = "https://files.pythonhosted.org/packages/6c/16/dad7b4aa6e34a395aef7ae7b010d8b5ebefdf3df81510de53d7f17d2f0fc/tokenizers-0.15.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3f5e64b0389a2be47091d8cc53c87859783b837ea1a06edd9d8e04004df55a5c", size = 4025494 }, + { url = "https://files.pythonhosted.org/packages/f6/de/3707df0c1d7bf55e6a4dba724700353bfee8e292fdd8ccfe93416549124d/tokenizers-0.15.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e0480c452217edd35eca56fafe2029fb4d368b7c0475f8dfa3c5c9c400a7456", size = 3575314 }, + { url = "https://files.pythonhosted.org/packages/2e/dd/7b8da304d152bb46f13bc2ba5bd545480ab6ce39d94a53eef07f7624d235/tokenizers-0.15.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:a33ab881c8fe70474980577e033d0bc9a27b7ab8272896e500708b212995d834", size = 9682779 }, + { url = "https://files.pythonhosted.org/packages/07/aa/66e8a81e07a791ca6ee9d74ee6de1ffbcd3985149f13aeb530bd409baba0/tokenizers-0.15.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:a308a607ca9de2c64c1b9ba79ec9a403969715a1b8ba5f998a676826f1a7039d", size = 9995614 }, + { url = "https://files.pythonhosted.org/packages/bf/e1/aed3bc98785c54bd26bf6dd3d2f54cc00de33e8b1f922a23131372eedec8/tokenizers-0.15.2-cp312-none-win32.whl", hash = "sha256:b8fcfa81bcb9447df582c5bc96a031e6df4da2a774b8080d4f02c0c16b42be0b", size = 2011030 }, + { url = "https://files.pythonhosted.org/packages/c9/ea/5800f4941a713b2feed955b6a256aacc1ca68a6699916d2668622c075d38/tokenizers-0.15.2-cp312-none-win_amd64.whl", hash = "sha256:38d7ab43c6825abfc0b661d95f39c7f8af2449364f01d331f3b51c94dcff7221", size = 2180523 }, + { url = "https://files.pythonhosted.org/packages/6d/04/406f35822d785ccdcd740f95ba58515c739b6d57c05dd278ee64c70d1565/tokenizers-0.15.2-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:38bfb0204ff3246ca4d5e726e8cc8403bfc931090151e6eede54d0e0cf162ef0", size = 2574496 }, + { url = "https://files.pythonhosted.org/packages/6c/b4/6cc305767c9b1b97b8f5bc61fc472abf42b24ad39388e8f0c57250a7c145/tokenizers-0.15.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:9c861d35e8286a53e06e9e28d030b5a05bcbf5ac9d7229e561e53c352a85b1fc", size = 2411609 }, + { url = "https://files.pythonhosted.org/packages/6b/6c/ae2437a3e233298a962053c62b943ffabb38627fd6787ff8da62352333fa/tokenizers-0.15.2-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:936bf3842db5b2048eaa53dade907b1160f318e7c90c74bfab86f1e47720bdd6", size = 3652369 }, + { url = "https://files.pythonhosted.org/packages/00/8b/21600349146d9fa4d341c507faf8d11b7292b7f29f8def440b81e65ad1ee/tokenizers-0.15.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:620beacc3373277700d0e27718aa8b25f7b383eb8001fba94ee00aeea1459d89", size = 3529510 }, + { url = "https://files.pythonhosted.org/packages/53/cd/6ffc60fbc5eae02629d736d578a7c5ca5c20b2b84e9866d61a0c6395684a/tokenizers-0.15.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2735ecbbf37e52db4ea970e539fd2d450d213517b77745114f92867f3fc246eb", size = 3396516 }, + { url = "https://files.pythonhosted.org/packages/d5/4c/15b66eb6a47dc9345192aa77988655830c1ebd1306d2b894ecd28fbfbbca/tokenizers-0.15.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:473c83c5e2359bb81b0b6fde870b41b2764fcdd36d997485e07e72cc3a62264a", size = 3918812 }, + { url = "https://files.pythonhosted.org/packages/ed/3b/f9df83311475e456473958cce65a3709f07a1d1dd8ed046d4779ec4336c8/tokenizers-0.15.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:968fa1fb3c27398b28a4eca1cbd1e19355c4d3a6007f7398d48826bbe3a0f728", size = 4025495 }, + { url = "https://files.pythonhosted.org/packages/36/ee/2055fbeb590719393d29cea3016491fd3a6da10598541bff256cc3750349/tokenizers-0.15.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:865c60ae6eaebdde7da66191ee9b7db52e542ed8ee9d2c653b6d190a9351b980", size = 3575316 }, + { url = "https://files.pythonhosted.org/packages/93/53/ae4e5e49bdc61849b668263a1a4c398b4e33aea1bb9b0a59c9677bb5266b/tokenizers-0.15.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:7c0d8b52664ab2d4a8d6686eb5effc68b78608a9008f086a122a7b2996befbab", size = 9682779 }, + { url = "https://files.pythonhosted.org/packages/04/c6/8818b867611734889cd8faca1153ec5dbdd59c98e85e5f6980e7be338839/tokenizers-0.15.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:f33dfbdec3784093a9aebb3680d1f91336c56d86cc70ddf88708251da1fe9064", size = 9995614 }, + { url = "https://files.pythonhosted.org/packages/92/5c/7ee7e297ad9dbdcb20caae1fb506efada72dd4c7dd3aa000285901ca1c87/tokenizers-0.15.2-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:82f8652a74cc107052328b87ea8b34291c0f55b96d8fb261b3880216a9f9e48e", size = 2578164 }, + { url = "https://files.pythonhosted.org/packages/aa/fa/f75d1c113256968833768391916ef385792409b307ae5581b7476c581963/tokenizers-0.15.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:02458bee6f5f3139f1ebbb6d042b283af712c0981f5bc50edf771d6b762d5e4f", size = 2414196 }, + { url = "https://files.pythonhosted.org/packages/0b/0b/3740e5ff34da240ecef9026b0f8625edc896421fefb99bf6a8d3242f0181/tokenizers-0.15.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:c9a09cd26cca2e1c349f91aa665309ddb48d71636370749414fbf67bc83c5343", size = 3643569 }, + { url = "https://files.pythonhosted.org/packages/60/b5/b80ea7034527a268b9f8aa84c6ae9ec99edb7188aa8ffc18a42fb8546596/tokenizers-0.15.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:158be8ea8554e5ed69acc1ce3fbb23a06060bd4bbb09029431ad6b9a466a7121", size = 3534125 }, + { url = "https://files.pythonhosted.org/packages/eb/7a/f0ab9e5d0ca5619d37c65e3a474d3e41cd336c939fa79c0261ebaacc387f/tokenizers-0.15.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1ddba9a2b0c8c81633eca0bb2e1aa5b3a15362b1277f1ae64176d0f6eba78ab1", size = 3397334 }, + { url = "https://files.pythonhosted.org/packages/b1/50/49643c82a9801e09bb0d0ef9ce9cd17c0f91651cba96399af822a882a9ea/tokenizers-0.15.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3ef5dd1d39797044642dbe53eb2bc56435308432e9c7907728da74c69ee2adca", size = 3927121 }, + { url = "https://files.pythonhosted.org/packages/a2/98/65bcde2920c022feac75ee282b3041f4d12e51c2cf955ce42a928410e591/tokenizers-0.15.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:454c203164e07a860dbeb3b1f4a733be52b0edbb4dd2e5bd75023ffa8b49403a", size = 4031187 }, + { url = "https://files.pythonhosted.org/packages/a5/bc/ec39dae3b0ea00724c0fea287091d62b0ccaa45c7a947004714e882d193d/tokenizers-0.15.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0cf6b7f1d4dc59af960e6ffdc4faffe6460bbfa8dce27a58bf75755ffdb2526d", size = 3577424 }, + { url = "https://files.pythonhosted.org/packages/d2/1a/2d2470b36d57de78f2c2ceb3cc93d1a770f02d3a1a21cf2312b81519a6ad/tokenizers-0.15.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:2ef09bbc16519f6c25d0c7fc0c6a33a6f62923e263c9d7cca4e58b8c61572afb", size = 9682903 }, + { url = "https://files.pythonhosted.org/packages/ce/7a/7f260655fb27b0d47ec83239535066f5c76583c7ab4e55a71c5437f7721f/tokenizers-0.15.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c9a2ebdd2ad4ec7a68e7615086e633857c85e2f18025bd05d2a4399e6c5f7169", size = 9997873 }, + { url = "https://files.pythonhosted.org/packages/51/60/6a1d7ea4d4095753db78c250f721b9495953eb5ec88ccfc3b58604ca6544/tokenizers-0.15.2-cp39-none-win32.whl", hash = "sha256:918fbb0eab96fe08e72a8c2b5461e9cce95585d82a58688e7f01c2bd546c79d0", size = 2013308 }, + { url = "https://files.pythonhosted.org/packages/ea/a5/006f9b3133e71d5b41d6455dede48731c22d3ddf5371167fb3c28847581e/tokenizers-0.15.2-cp39-none-win_amd64.whl", hash = "sha256:524e60da0135e106b254bd71f0659be9f89d83f006ea9093ce4d1fab498c6d0d", size = 2193190 }, + { url = "https://files.pythonhosted.org/packages/a5/2c/9c2f7a0601cccc8cf169006873ed7775ad76804e98b7236d1f345faf69f8/tokenizers-0.15.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:6a9b648a58281c4672212fab04e60648fde574877d0139cd4b4f93fe28ca8944", size = 2576142 }, + { url = "https://files.pythonhosted.org/packages/2e/4f/93ccada67079065f892a2c4e7159caf0ce65084fdf60253815ca964403af/tokenizers-0.15.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:7c7d18b733be6bbca8a55084027f7be428c947ddf871c500ee603e375013ffba", size = 2412714 }, + { url = "https://files.pythonhosted.org/packages/fd/8f/1dbeaf8b2a2c00e5172d8ed000fba94edb1d424fd50dcbdcc755fbf3c0aa/tokenizers-0.15.2-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:13ca3611de8d9ddfbc4dc39ef54ab1d2d4aaa114ac8727dfdc6a6ec4be017378", size = 3646249 }, + { url = "https://files.pythonhosted.org/packages/89/ed/b055d12637754471e4344f4e85c6268ef76801b0113ce1f789c5d84eaae9/tokenizers-0.15.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:237d1bf3361cf2e6463e6c140628e6406766e8b27274f5fcc62c747ae3c6f094", size = 3534330 }, + { url = "https://files.pythonhosted.org/packages/ad/e1/d0b441575a3ac0262c2c73773f79dd50c94e13c9dfda0d953f1c79d47ef5/tokenizers-0.15.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:67a0fe1e49e60c664915e9fb6b0cb19bac082ab1f309188230e4b2920230edb3", size = 3579864 }, + { url = "https://files.pythonhosted.org/packages/a8/cd/6fe89c549d3aad886295cb9875105a75fa0d82ce80e4721cb43e6eb0830e/tokenizers-0.15.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:4e022fe65e99230b8fd89ebdfea138c24421f91c1a4f4781a8f5016fd5cdfb4d", size = 9684097 }, + { url = "https://files.pythonhosted.org/packages/9f/4d/29e5052a11d1a9f8eb156e48c123731e6219e4f3d72cd6d7787fdf4eff7a/tokenizers-0.15.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:d857be2df69763362ac699f8b251a8cd3fac9d21893de129bc788f8baaef2693", size = 9997782 }, + { url = "https://files.pythonhosted.org/packages/be/53/a104d802030e74cb88e3673a23c629518c5d3a585f485ac0d06d2c61fcef/tokenizers-0.15.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:e2ea752f2b0fe96eb6e2f3adbbf4d72aaa1272079b0dfa1145507bd6a5d537e6", size = 2576171 }, + { url = "https://files.pythonhosted.org/packages/e7/d7/bc1144ba365c1929661db8c5c729addd1e9ef029106d2bbac83970585755/tokenizers-0.15.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:4b19a808d8799fda23504a5cd31d2f58e6f52f140380082b352f877017d6342b", size = 2412554 }, + { url = "https://files.pythonhosted.org/packages/e3/0c/65356b710dce071234ddab78fd0f530ef318aa700e13b4b687eb738f21bf/tokenizers-0.15.2-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:64c86e5e068ac8b19204419ed8ca90f9d25db20578f5881e337d203b314f4104", size = 3646861 }, + { url = "https://files.pythonhosted.org/packages/23/4b/6b4bdf41b9777cd07f185c6ca015ca62d8fbccfac0e23095da3ad1315af7/tokenizers-0.15.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:de19c4dc503c612847edf833c82e9f73cd79926a384af9d801dcf93f110cea4e", size = 3534237 }, + { url = "https://files.pythonhosted.org/packages/94/d2/656ff3cf666c547aaf72c7f160465603c744adbdbfeabf274b63843a1fdd/tokenizers-0.15.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea09acd2fe3324174063d61ad620dec3bcf042b495515f27f638270a7d466e8b", size = 3579835 }, + { url = "https://files.pythonhosted.org/packages/94/b4/b46f929c65fb1bb7371300ce7ad027eb537c3871e850a7b9a92cabf3c03f/tokenizers-0.15.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:cf27fd43472e07b57cf420eee1e814549203d56de00b5af8659cb99885472f1f", size = 9683503 }, + { url = "https://files.pythonhosted.org/packages/c9/93/a2916bca30301fed0f388c2ff4aedb3a6539e4323a645b2b01321e680615/tokenizers-0.15.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:7ca22bd897537a0080521445d91a58886c8c04084a6a19e6c78c586e0cfa92a5", size = 9997752 }, +] + +[[package]] +name = "tomli" +version = "2.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c0/3f/d7af728f075fb08564c5949a9c95e44352e23dee646869fa104a3b2060a3/tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f", size = 15164 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/97/75/10a9ebee3fd790d20926a90a2547f0bf78f371b2f13aa822c759680ca7b9/tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc", size = 12757 }, +] + +[[package]] +name = "toolz" +version = "0.12.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3e/bf/5e12db234df984f6df3c7f12f1428aa680ba4e101f63f4b8b3f9e8d2e617/toolz-0.12.1.tar.gz", hash = "sha256:ecca342664893f177a13dac0e6b41cbd8ac25a358e5f215316d43e2100224f4d", size = 66550 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/8a/d82202c9f89eab30f9fc05380daae87d617e2ad11571ab23d7c13a29bb54/toolz-0.12.1-py3-none-any.whl", hash = "sha256:d22731364c07d72eea0a0ad45bafb2c2937ab6fd38a3507bf55eae8744aa7d85", size = 56121 }, +] + +[[package]] +name = "torch" +version = "2.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "filelock", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fsspec", version = "2024.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.10' and platform_machine == 'aarch64' and platform_system == 'Linux') or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fsspec", version = "2024.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "jinja2", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "networkx", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "nvidia-cublas-cu12", marker = "platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "nvidia-cuda-cupti-cu12", marker = "platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "nvidia-cuda-nvrtc-cu12", marker = "platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "nvidia-cuda-runtime-cu12", marker = "platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "nvidia-cudnn-cu12", marker = "platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "nvidia-cufft-cu12", marker = "platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "nvidia-curand-cu12", marker = "platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "nvidia-cusolver-cu12", marker = "platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "nvidia-cusparse-cu12", marker = "platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "nvidia-nccl-cu12", marker = "platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "nvidia-nvtx-cu12", marker = "platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "sympy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "triton", marker = "python_version < '3.13' and platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/9a/bd/4161ae28fb1c388a8ee30ca3aa72cf11ac3016ce62bc9e82c71ce193c410/torch-2.4.0-cp310-cp310-manylinux1_x86_64.whl", hash = "sha256:4ed94583e244af51d6a8d28701ca5a9e02d1219e782f5a01dd401f90af17d8ac", size = 797225217 }, + { url = "https://files.pythonhosted.org/packages/81/77/84a2cb46649f538ea9d317b7272476d295df9a0cfc92907145a854c8c67f/torch-2.4.0-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:c4ca297b7bd58b506bfd6e78ffd14eb97c0e7797dcd7965df62f50bb575d8954", size = 89827576 }, + { url = "https://files.pythonhosted.org/packages/19/8e/24221589eb2dc066b14e29800d2e801c446f697c2d2240a9a61c6c0c5101/torch-2.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:2497cbc7b3c951d69b276ca51fe01c2865db67040ac67f5fc20b03e41d16ea4a", size = 197856855 }, + { url = "https://files.pythonhosted.org/packages/ff/70/feb6338f48615b5a5fe8ff218c15ae9897fa7c1c996dddf9867e8306a8cf/torch-2.4.0-cp310-none-macosx_11_0_arm64.whl", hash = "sha256:685418ab93730efbee71528821ff54005596970dd497bf03c89204fb7e3f71de", size = 62138916 }, + { url = "https://files.pythonhosted.org/packages/80/83/9b7681e41e59adb6c2b042f7e8eb716515665a6eed3dda4215c6b3385b90/torch-2.4.0-cp311-cp311-manylinux1_x86_64.whl", hash = "sha256:e743adadd8c8152bb8373543964551a7cb7cc20ba898dc8f9c0cdbe47c283de0", size = 797262052 }, + { url = "https://files.pythonhosted.org/packages/84/fa/2b510a02809ddd70aed821bc2328c4effd206503df38a1328c9f1f957813/torch-2.4.0-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:7334325c0292cbd5c2eac085f449bf57d3690932eac37027e193ba775703c9e6", size = 89850473 }, + { url = "https://files.pythonhosted.org/packages/18/cf/f69dff972a748e08e1bf602ef94ea5c6d4dd2f41cea22c8ad67a607d8b41/torch-2.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:97730014da4c57ffacb3c09298c6ce05400606e890bd7a05008d13dd086e46b1", size = 197860580 }, + { url = "https://files.pythonhosted.org/packages/b7/d0/5e8f96d83889e77b478b90e7d8d24a5fc14c5c9350c6b93d071f45f39096/torch-2.4.0-cp311-none-macosx_11_0_arm64.whl", hash = "sha256:f169b4ea6dc93b3a33319611fcc47dc1406e4dd539844dcbd2dec4c1b96e166d", size = 62144370 }, + { url = "https://files.pythonhosted.org/packages/bf/55/b6c74df4695f94a9c3505021bc2bd662e271d028d055b3b2529f3442a3bd/torch-2.4.0-cp312-cp312-manylinux1_x86_64.whl", hash = "sha256:997084a0f9784d2a89095a6dc67c7925e21bf25dea0b3d069b41195016ccfcbb", size = 797168571 }, + { url = "https://files.pythonhosted.org/packages/9a/5d/327fb72044c22d68a826643abf2e220db3d7f6005a41a6b167af1ffbc708/torch-2.4.0-cp312-cp312-manylinux2014_aarch64.whl", hash = "sha256:bc3988e8b36d1e8b998d143255d9408d8c75da4ab6dd0dcfd23b623dfb0f0f57", size = 89746726 }, + { url = "https://files.pythonhosted.org/packages/dc/95/a14dd84ce65e5ce176176393a80b2f74864ee134a31f590140456a4c0959/torch-2.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:3374128bbf7e62cdaed6c237bfd39809fbcfaa576bee91e904706840c3f2195c", size = 197807123 }, + { url = "https://files.pythonhosted.org/packages/c7/87/489ebb234e75760e06fa4789fa6d4e13c125beefa1483ce35c9e43dcd395/torch-2.4.0-cp312-none-macosx_11_0_arm64.whl", hash = "sha256:91aaf00bfe1ffa44dc5b52809d9a95129fca10212eca3ac26420eb11727c6288", size = 62123112 }, + { url = "https://files.pythonhosted.org/packages/36/80/3ac18a2db50d832745c1c5db7e47c4d0e02f1a11e92185155a6b218cbbe3/torch-2.4.0-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:618808d3f610d5f180e47a697d4ec90b810953bb1e020f424b2ac7fb0884b545", size = 797245386 }, + { url = "https://files.pythonhosted.org/packages/05/38/e4ad00f4e60c9010b981e1a94d58df4a96b9b10ba6ef585be6019f54b543/torch-2.4.0-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:ed765d232d23566052ba83632ec73a4fccde00b4c94ad45d63b471b09d63b7a7", size = 89816730 }, + { url = "https://files.pythonhosted.org/packages/9f/ef/13faff7ef5770cea29ef2c06e2b87d6f34697973aef5eea4234948b46c4d/torch-2.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:a2feb98ac470109472fb10dfef38622a7ee08482a16c357863ebc7bc7db7c8f7", size = 198011542 }, + { url = "https://files.pythonhosted.org/packages/3a/4a/7441a1ab49762309146ea31fab1e55362f13f7749c1aabff41d8edc887f9/torch-2.4.0-cp39-none-macosx_11_0_arm64.whl", hash = "sha256:8940fc8b97a4c61fdb5d46a368f21f4a3a562a17879e932eb51a5ec62310cb31", size = 62138298 }, +] + +[[package]] +name = "torchaudio" +version = "2.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "torch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/e0/5b/cc0ab8d15291d4b14a2ce740c7b46483c356f060eb98dc9a68171230cadc/torchaudio-2.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:733e9d859b88dabefeaf008e3ab2b8c7885b29466068b4b79a42766be4619e46", size = 1789823 }, + { url = "https://files.pythonhosted.org/packages/2d/4a/416af600d0d47343b65dd182fb7b918a640e80385b609d94fb89a3fc527c/torchaudio-2.4.0-cp310-cp310-manylinux1_x86_64.whl", hash = "sha256:c48bab82a9ee0c67b9323c2ebbe0890a34c5815d1ff1ace77b1c9df4e6fdbbff", size = 3361296 }, + { url = "https://files.pythonhosted.org/packages/48/79/074ec23358af34fe467ac781e817c310649f19c4deb8d08770a3e6397945/torchaudio-2.4.0-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:17cb73d4336771d455cd8dda8b4891307a5346b890a4e6b1d4b73d565258fee1", size = 1659411 }, + { url = "https://files.pythonhosted.org/packages/9c/5f/fe6e84fece5e54d215a4575061bf88ad1af21c4875f0d3297b8926a2cba4/torchaudio-2.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:af19edc1c3c0ac626f594fc67f087db401016d9216af8d62b6c6ff731efbae43", size = 2416699 }, + { url = "https://files.pythonhosted.org/packages/1b/11/9c38a2da79d79611fd6950837f5389bac55c6fdfbc1b4ceab6d2afd8b0d4/torchaudio-2.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:acbcf9129ffcfce808254e2cbff103363c505ce06ed4c4231b3f436a10679d4d", size = 1797221 }, + { url = "https://files.pythonhosted.org/packages/b7/a7/6b1c6185c9aed923f64fd6c3d1cce09b21031ab36aa661f39e255535511c/torchaudio-2.4.0-cp311-cp311-manylinux1_x86_64.whl", hash = "sha256:393ee8c24110ccc8030482c10cd9d5d0b5e528f6a9dd3d60557e1151aa951b13", size = 3366732 }, + { url = "https://files.pythonhosted.org/packages/fc/d4/c038ac466f98bc615183d6d1e7f31d0306834887748f99d2ca52877cc534/torchaudio-2.4.0-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:be969c09466db35e0d79b8b09dff66caedbb9569b42c903a2d5e0db2af760e3c", size = 1666062 }, + { url = "https://files.pythonhosted.org/packages/96/9b/720bb13674234a2cc90525502a255233227e7e2a046ab96628e6b0969b07/torchaudio-2.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:2993a3288b2b451bf90c7c4d65991b5769e2614d923e295f08a10066ce79d3c0", size = 2418453 }, + { url = "https://files.pythonhosted.org/packages/cf/1e/2139b508cb4716f98b972d8fd76084277d57faa5face86b007c495da52ac/torchaudio-2.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ae13a95ef6fabcadb0eff36d85f5048d70474a2e9704fa9c86e9903cbcec0d4a", size = 1792484 }, + { url = "https://files.pythonhosted.org/packages/c8/e7/ff8dfb30f44288c01baf39603827955c7c95ddfbee732fb65acf32f571e1/torchaudio-2.4.0-cp312-cp312-manylinux1_x86_64.whl", hash = "sha256:4782a49171d94431bb815a55aa72733f5fe38034bdf6adeced28c226e2cc791b", size = 3361223 }, + { url = "https://files.pythonhosted.org/packages/6e/a7/06ee10dfeb5e8ac2fdef29a754ed100039f5d899dd21ccec4cfad614afec/torchaudio-2.4.0-cp312-cp312-manylinux2014_aarch64.whl", hash = "sha256:534d1907bb252ecd2ba9e1d61cff7220fd66090e63df7b3c109cea77a19d4cb8", size = 1659853 }, + { url = "https://files.pythonhosted.org/packages/33/56/6d6db4673ede22d814cf0f5cb6920b997d605fdff21a28b7ffa3b555c330/torchaudio-2.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:473c149c1c5288f4ce7b609c5ecb7b2528e7958ea701147a20413d65e5a8a59c", size = 2412106 }, + { url = "https://files.pythonhosted.org/packages/79/21/bb5392ce546e5d371c4a6d812d464f76066cda79757732c98fd366d104a5/torchaudio-2.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1fd670c808e322c101957a07651e29935f86ec389243c0c43a24edd7a1854841", size = 1790599 }, + { url = "https://files.pythonhosted.org/packages/bc/b0/e8754a5e6977edc030e6ae3350ea60c85e618da025fcc28092831787934d/torchaudio-2.4.0-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:1eecb83c123577779a45381de3a38e4add132a80104cff4afd816913f51ca17b", size = 3362831 }, + { url = "https://files.pythonhosted.org/packages/99/13/8428d9007aa88cd150fb80eed8c929eb8ae45e7adb673fe44c1360ebc718/torchaudio-2.4.0-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:c840894de12a6dd3ea57cbb0d0086123aaa48001ba3ad99ef714fe009eae8eb9", size = 1660759 }, + { url = "https://files.pythonhosted.org/packages/3d/d2/96520547deba32e7bf2ac61e39d7eb8254f5e471f6e4ed6b985891baa5bb/torchaudio-2.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:608fd609cdd8323ef4a50c1e984a0be7282a6c630fad22e040e957f8e376950e", size = 2409959 }, +] + +[[package]] +name = "torchvision" +version = "0.19.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pillow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/e8/a3/4c868202fa23f69f9a58bb29ecbae5f9912c5d79fa5e78db5d3de7e6434f/torchvision-0.19.0-1-cp310-cp310-win_amd64.whl", hash = "sha256:6ed066aae5c50465d7c4761357aefe5dbd2eb7075a33ab8c14b352fc2353ad4c", size = 1288390 }, + { url = "https://files.pythonhosted.org/packages/6a/38/e8257ad99ea2ec30bbb4e6d9d81f3fe796e39046bb060d80569cbf6d83e5/torchvision-0.19.0-1-cp311-cp311-win_amd64.whl", hash = "sha256:6b1bce2e4c003d890a18f14ff289528707d918e38539ff890ef02aa31dae1b56", size = 1288348 }, + { url = "https://files.pythonhosted.org/packages/a5/96/4496817e943141a8a76bbed5c45a0fe30d356b69030e4b482c915717e3b9/torchvision-0.19.0-1-cp312-cp312-win_amd64.whl", hash = "sha256:13aee7a46e049c8c1e7d35a0394b0587a7e62ff3d1a822cd2bbbacb675ac4a09", size = 1288349 }, + { url = "https://files.pythonhosted.org/packages/8c/65/8da2b47c789acee2b48b33cd7c1b06b6eb45106854d42ed43269a84df908/torchvision-0.19.0-1-cp39-cp39-win_amd64.whl", hash = "sha256:b5f70f5a8bd9c8b00a076bf466b39b5cd679ef62587c47cc048adb04d9c5f155", size = 1288391 }, + { url = "https://files.pythonhosted.org/packages/66/11/9f5ce2d6cfb55bdb18bfae6f7604f9bdc41586bed2d90ca50412a689ecba/torchvision-0.19.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ec874ef85dcb24c69e600f6e276af892c80cde3ffdaeb7275efda463242bc2a8", size = 1660223 }, + { url = "https://files.pythonhosted.org/packages/42/c2/24b4416c53445098221557e18de0de59539cbe56b580b13a4f079746f3eb/torchvision-0.19.0-cp310-cp310-manylinux1_x86_64.whl", hash = "sha256:106842b1e475b14d9a04ee0d6f5477d43100e3bb78e9d31e37422384d0d84179", size = 7026471 }, + { url = "https://files.pythonhosted.org/packages/20/5f/9bc7c6bbaf2b348474a360bffe135666892aa234946957e85cd198d815c4/torchvision-0.19.0-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:d467d434005fd05a227a2ba7af4c591bb67e6d4a97bbd06eda8da83f43e9fd07", size = 14072228 }, + { url = "https://files.pythonhosted.org/packages/6a/7d/45dddbed62d282a8041ec5744d87ea6847be12ffd1ffe8ea5f3cf3afd257/torchvision-0.19.0-cp310-cp310-win_amd64.whl", hash = "sha256:f77ac31f7337d0f6f4b58e65582c6c93b9d9eeec7dfd7478896b5cdc19a2d60d", size = 1288380 }, + { url = "https://files.pythonhosted.org/packages/b4/93/611197d5a023a33a48df656287b3e26c6e7db0fa92a9bb2259c0cdb76581/torchvision-0.19.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:dbf3aa71a3899244fc884303ed3c4604a160824fefac77e82317a5463efc1d9b", size = 1660227 }, + { url = "https://files.pythonhosted.org/packages/42/1d/efde76f826682ebe6ec97c2874f3c7e4833eb84497c521ce6cfac406ef34/torchvision-0.19.0-cp311-cp311-manylinux1_x86_64.whl", hash = "sha256:ec4162dc71d9db7f0b51d0f92491929c1419605ff436e1305e50de13504a1c30", size = 7026457 }, + { url = "https://files.pythonhosted.org/packages/6e/69/a6bfb1af58d6c608d77f1d53fe5102c5fb6f27e9de8a4d3f3e1ba9a7250a/torchvision-0.19.0-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:4e6aa4fa3f0bc3599fa071c149e651a3e6bdd67c9161794478f9f91471c406a2", size = 14072231 }, + { url = "https://files.pythonhosted.org/packages/e4/06/458d0d1495a1926729c575d7ebca956e959cfe59fa307e93d585d26aa41d/torchvision-0.19.0-cp311-cp311-win_amd64.whl", hash = "sha256:ac5525d5cc09e425b5cf5752ecf66eefbbbd8c8cd945198ce35eb01a694e6069", size = 1288337 }, + { url = "https://files.pythonhosted.org/packages/88/6f/53f55c7e390e1fd27d24fdfa36bcb6f717855f311fbea90a15a1fbdef9d4/torchvision-0.19.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c09ef8ed184fa877f6251b620226e74f682b8f1d6b341456428d4955b8d9c670", size = 1660229 }, + { url = "https://files.pythonhosted.org/packages/0d/a6/7ecba32776b22db475f3061ab2b997b3a9bda6d969ef8e4bc61aac9b78b0/torchvision-0.19.0-cp312-cp312-manylinux1_x86_64.whl", hash = "sha256:02f1dd5cfc897957535b41b0258ec452d30de044e20c2de2c75869f7708e7656", size = 7026793 }, + { url = "https://files.pythonhosted.org/packages/2f/d6/e8bf6e422cd5f8491072bdc03a6fb8c758bd517f0f4e82b537edd7d7bbdc/torchvision-0.19.0-cp312-cp312-manylinux2014_aarch64.whl", hash = "sha256:be0f27a28b8e9f2ae98a31af34a4bdd2a5bf154d92bd73a5797c8d2156fb3ab6", size = 14072008 }, + { url = "https://files.pythonhosted.org/packages/2f/3c/88471e60b3eb275f52acb2b1d43273c54323003642a75b7b4eeb3a7c4c2a/torchvision-0.19.0-cp312-cp312-win_amd64.whl", hash = "sha256:a6ba7756f75c80212e51d3576f85ea204589e0c16efdb9b835dd677bc8929a67", size = 1288336 }, + { url = "https://files.pythonhosted.org/packages/5a/37/848b25931a8dfcda0b8e51e92696fa8eb99cb743172cc875c822efaf9b42/torchvision-0.19.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:dd1279571d4b68d5a53d9b7a35aedf91c4cb1e0b08099f6a1effa7b25b8c95e7", size = 1660236 }, + { url = "https://files.pythonhosted.org/packages/4d/1b/2c34793ce68075e92ad515739bf2a2608055274b7f5838de32baad7f6f51/torchvision-0.19.0-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:4d54b5e19b7ebebca7d0b08497b4c6335264cad04c94c05fa35988d9e9eed0c4", size = 7027644 }, + { url = "https://files.pythonhosted.org/packages/4f/b8/a7c7e5321483c56d3bff82a759dd3b4439d1234fa5852fb2ef113d33874e/torchvision-0.19.0-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:5f9a598dcf82bdfc8e4436ce74763b3877dabec3b33f94613b94ede13e3e4dee", size = 1702643 }, + { url = "https://files.pythonhosted.org/packages/8b/cd/57498a8469cfaf256c13a7043e6059b28fa20d0d31734aec788d2af3642d/torchvision-0.19.0-cp39-cp39-win_amd64.whl", hash = "sha256:ec1281c10402234d470bfd4d53663d81f4364f293b2f8fe24d4a7a1adc78c90c", size = 1288378 }, +] + +[[package]] +name = "tqdm" +version = "4.66.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "platform_system == 'Windows'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/58/83/6ba9844a41128c62e810fddddd72473201f3eacde02046066142a2d96cc5/tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad", size = 169504 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/48/5d/acf5905c36149bbaec41ccf7f2b68814647347b72075ac0b1fe3022fdc73/tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd", size = 78351 }, +] + +[[package]] +name = "traitlets" +version = "5.14.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/eb/79/72064e6a701c2183016abbbfedaba506d81e30e232a68c9f0d6f6fcd1574/traitlets-5.14.3.tar.gz", hash = "sha256:9ed0579d3502c94b4b3732ac120375cda96f923114522847de4b3bb98b96b6b7", size = 161621 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl", hash = "sha256:b74e89e397b1ed28cc831db7aea759ba6640cb3de13090ca145426688ff1ac4f", size = 85359 }, +] + +[[package]] +name = "transformers" +version = "4.39.0.dev0" +source = { editable = "." } +dependencies = [ + { name = "filelock", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "huggingface-hub", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "regex", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "safetensors", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tokenizers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] + +[package.optional-dependencies] +accelerate = [ + { name = "accelerate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +agents = [ + { name = "accelerate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "datasets", version = "2.14.4", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "datasets", version = "2.20.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.10' and platform_machine == 'aarch64' and platform_system == 'Linux') or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "diffusers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "opencv-python", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pillow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sentencepiece", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +all = [ + { name = "accelerate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "av", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "codecarbon", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "decord", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "flax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jaxlib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "kenlm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "keras-nlp", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "librosa", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnxconverter-common", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "optax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "optuna", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "phonemizer", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pillow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyctcdecode", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ray", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ray", extra = ["tune"] }, + { name = "sentencepiece", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sigopt", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-text", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tf2onnx", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "timm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tokenizers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torchaudio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torchvision", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +audio = [ + { name = "kenlm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "librosa", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "phonemizer", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyctcdecode", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +codecarbon = [ + { name = "codecarbon", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +deepspeed = [ + { name = "accelerate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "deepspeed", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +deepspeed-testing = [ + { name = "accelerate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "beautifulsoup4", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "cookiecutter", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "datasets", version = "2.14.4", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "datasets", version = "2.20.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.10' and platform_machine == 'aarch64' and platform_system == 'Linux') or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "deepspeed", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "dill", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "evaluate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "faiss-cpu", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "gitpython", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "hf-doc-builder", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "nltk", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "optuna", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "parameterized", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "psutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pydantic", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pytest", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pytest-timeout", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pytest-xdist", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rjieba", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rouge-score", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ruff", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sacrebleu", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sacremoses", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sentencepiece", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorboard", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "timeout-decorator", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +dev-dependencies = [ + { name = "accelerate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "av", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "beautifulsoup4", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "codecarbon", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "cookiecutter", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "datasets", version = "2.14.4", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "datasets", version = "2.20.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.10' and platform_machine == 'aarch64' and platform_system == 'Linux') or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "decord", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "dill", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "evaluate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "faiss-cpu", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "flax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fugashi", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "gitpython", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "hf-doc-builder", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ipadic", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "isort", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jaxlib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "kenlm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "keras-nlp", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "librosa", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "nltk", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnxconverter-common", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnxruntime", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnxruntime-tools", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "optax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "optuna", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "parameterized", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "phonemizer", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pillow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "psutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyctcdecode", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pydantic", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pytest", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pytest-timeout", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pytest-xdist", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ray", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ray", extra = ["tune"] }, + { name = "rhoknp", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rjieba", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rouge-score", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ruff", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sacrebleu", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sacremoses", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "scikit-learn", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sentencepiece", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sigopt", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sudachidict-core", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sudachipy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorboard", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-text", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tf2onnx", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "timeout-decorator", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "timm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tokenizers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torchaudio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torchvision", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "unidic", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "unidic-lite", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "urllib3", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +docs = [ + { name = "accelerate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "av", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "codecarbon", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "decord", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "flax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "hf-doc-builder", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jaxlib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "kenlm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "keras-nlp", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "librosa", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnxconverter-common", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "optax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "optuna", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "phonemizer", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pillow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyctcdecode", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ray", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ray", extra = ["tune"] }, + { name = "sentencepiece", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sigopt", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-text", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tf2onnx", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "timm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tokenizers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torchaudio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torchvision", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +docs-specific = [ + { name = "hf-doc-builder", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +flax = [ + { name = "flax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jaxlib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "optax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +flax-speech = [ + { name = "kenlm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "librosa", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "phonemizer", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyctcdecode", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +ftfy = [ + { name = "ftfy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +integrations = [ + { name = "optuna", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ray", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ray", extra = ["tune"] }, + { name = "sigopt", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +ja = [ + { name = "fugashi", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ipadic", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rhoknp", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sudachidict-core", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sudachipy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "unidic", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "unidic-lite", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +modelcreation = [ + { name = "cookiecutter", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +onnx = [ + { name = "onnxconverter-common", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnxruntime", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnxruntime-tools", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tf2onnx", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +onnxruntime = [ + { name = "onnxruntime", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnxruntime-tools", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +optuna = [ + { name = "optuna", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +quality = [ + { name = "datasets", version = "2.14.4", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "datasets", version = "2.20.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.10' and platform_machine == 'aarch64' and platform_system == 'Linux') or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "gitpython", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "hf-doc-builder", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "isort", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ruff", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "urllib3", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +ray = [ + { name = "ray", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ray", extra = ["tune"] }, +] +retrieval = [ + { name = "datasets", version = "2.14.4", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "datasets", version = "2.20.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.10' and platform_machine == 'aarch64' and platform_system == 'Linux') or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "faiss-cpu", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sagemaker = [ + { name = "sagemaker", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sentencepiece = [ + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sentencepiece", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +serving = [ + { name = "fastapi", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pydantic", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "starlette", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "uvicorn", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sigopt = [ + { name = "sigopt", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sklearn = [ + { name = "scikit-learn", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +speech = [ + { name = "kenlm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "librosa", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "phonemizer", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyctcdecode", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torchaudio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +tf = [ + { name = "keras-nlp", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnxconverter-common", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-text", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tf2onnx", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +tf-cpu = [ + { name = "keras-nlp", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnxconverter-common", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-cpu", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-text", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tf2onnx", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +tf-speech = [ + { name = "kenlm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "librosa", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "phonemizer", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyctcdecode", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +timm = [ + { name = "timm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +tokenizers = [ + { name = "tokenizers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +torch = [ + { name = "accelerate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +torch-speech = [ + { name = "kenlm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "librosa", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "phonemizer", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyctcdecode", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torchaudio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +torch-vision = [ + { name = "pillow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torchvision", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +torchhub = [ + { name = "filelock", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "huggingface-hub", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "importlib-metadata", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "regex", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sentencepiece", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tokenizers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +video = [ + { name = "av", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "decord", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +vision = [ + { name = "pillow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] + +[[package]] +name = "triton" +version = "3.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "filelock", marker = "python_version == '3.11' or python_version < '3.10' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/45/27/14cc3101409b9b4b9241d2ba7deaa93535a217a211c86c4cc7151fb12181/triton-3.0.0-1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:e1efef76935b2febc365bfadf74bcb65a6f959a9872e5bddf44cc9e0adce1e1a", size = 209376304 }, + { url = "https://files.pythonhosted.org/packages/33/3e/a2f59384587eff6aeb7d37b6780de7fedd2214935e27520430ca9f5b7975/triton-3.0.0-1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:5ce8520437c602fb633f1324cc3871c47bee3b67acf9756c1a66309b60e3216c", size = 209438883 }, + { url = "https://files.pythonhosted.org/packages/fe/7b/7757205dee3628f75e7991021d15cd1bd0c9b044ca9affe99b50879fc0e1/triton-3.0.0-1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:34e509deb77f1c067d8640725ef00c5cbfcb2052a1a3cb6a6d343841f92624eb", size = 209464695 }, + { url = "https://files.pythonhosted.org/packages/6c/bf/55cccf57c14787ad81ee827526ddd48fd0aff0291fcc7b8c2e2bdf28da0a/triton-3.0.0-1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:6e5727202f7078c56f91ff13ad0c1abab14a0e7f2c87e91b12b6f64f3e8ae609", size = 209377082 }, + { url = "https://files.pythonhosted.org/packages/15/67/84e5a4b7b45bdeb11da26a67dfa2b988c512abbcbcad8cbc30aa579051b2/triton-3.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:39b052da883351fdf6be3d93cedae6db3b8e3988d3b09ed221bccecfa9612230", size = 209380247 }, + { url = "https://files.pythonhosted.org/packages/ea/6b/1d72cc8a7379822dadf050474add7d8b73b02c35057446b6f17d27cb9ea2/triton-3.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cd34f19a8582af96e6291d4afce25dac08cb2a5d218c599163761e8e0827208e", size = 209442823 }, + { url = "https://files.pythonhosted.org/packages/ae/b2/048c9ecfdba0e6b0ae3c02eed2d9dd3e9e990a6d46da98555cf0c2232168/triton-3.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0d5e10de8c011adeb7c878c6ce0dd6073b14367749e34467f1cff2bde1b78253", size = 209468633 }, + { url = "https://files.pythonhosted.org/packages/11/f6/51a08e6eca368d75768afe2d73e9e5e4255e7c8e705c744baa108bf844fc/triton-3.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:41004fb1ae9a53fcb3e970745feb87f0e3c94c6ce1ba86e95fa3b8537894bef7", size = 209381017 }, +] + +[[package]] +name = "types-python-dateutil" +version = "2.9.0.20240316" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/61/c5/c3a4d72ffa8efc2e78f7897b1c69ec760553246b67d3ce8c4431fac5d4e3/types-python-dateutil-2.9.0.20240316.tar.gz", hash = "sha256:5d2f2e240b86905e40944dd787db6da9263f0deabef1076ddaed797351ec0202", size = 9067 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c7/1b/af4f4c4f3f7339a4b7eb3c0ab13416db98f8ac09de3399129ee5fdfa282b/types_python_dateutil-2.9.0.20240316-py3-none-any.whl", hash = "sha256:6b8cb66d960771ce5ff974e9dd45e38facb81718cc1e208b10b1baccbfdbee3b", size = 9663 }, +] + +[[package]] +name = "typing-extensions" +version = "4.12.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/df/db/f35a00659bc03fec321ba8bce9420de607a1d37f8342eee1863174c69557/typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8", size = 85321 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/26/9f/ad63fc0248c5379346306f8668cda6e2e2e9c95e01216d2b8ffd9ff037d0/typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d", size = 37438 }, +] + +[[package]] +name = "tzdata" +version = "2024.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/74/5b/e025d02cb3b66b7b76093404392d4b44343c69101cc85f4d180dd5784717/tzdata-2024.1.tar.gz", hash = "sha256:2674120f8d891909751c38abcdfd386ac0a5a1127954fbc332af6b5ceae07efd", size = 190559 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/65/58/f9c9e6be752e9fcb8b6a0ee9fb87e6e7a1f6bcab2cdc73f02bb7ba91ada0/tzdata-2024.1-py2.py3-none-any.whl", hash = "sha256:9068bc196136463f5245e51efda838afa15aaeca9903f49050dfa2679db4d252", size = 345370 }, +] + +[[package]] +name = "tzlocal" +version = "5.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "tzdata", marker = "platform_system == 'Windows'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/04/d3/c19d65ae67636fe63953b20c2e4a8ced4497ea232c43ff8d01db16de8dc0/tzlocal-5.2.tar.gz", hash = "sha256:8d399205578f1a9342816409cc1e46a93ebd5755e39ea2d85334bea911bf0e6e", size = 30201 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/97/3f/c4c51c55ff8487f2e6d0e618dba917e3c3ee2caae6cf0fbb59c9b1876f2e/tzlocal-5.2-py3-none-any.whl", hash = "sha256:49816ef2fe65ea8ac19d19aa7a1ae0551c834303d5014c6d5a62e4cbda8047b8", size = 17859 }, +] + +[[package]] +name = "unidic" +version = "1.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "plac", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "wasabi", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5a/09/271dfbf8d5b56adddc70e30fa94249f5d3ab35f615bf278d65258045564a/unidic-1.1.0.tar.gz", hash = "sha256:0ab91c05de342c84d2a6314901fd3afb9061ecd7534dd4a0431dccbb87d921b7", size = 7688 } + +[[package]] +name = "unidic-lite" +version = "1.0.8" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/55/2b/8cf7514cb57d028abcef625afa847d60ff1ffbf0049c36b78faa7c35046f/unidic-lite-1.0.8.tar.gz", hash = "sha256:db9d4572d9fdd4d00a97949d4b0741ec480ee05a7e7e2e32f547500dae27b245", size = 47356746 } + +[[package]] +name = "uritemplate" +version = "4.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d2/5a/4742fdba39cd02a56226815abfa72fe0aa81c33bed16ed045647d6000eba/uritemplate-4.1.1.tar.gz", hash = "sha256:4346edfc5c3b79f694bccd6d6099a322bbeb628dbf2cd86eea55a456ce5124f0", size = 273898 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/81/c0/7461b49cd25aeece13766f02ee576d1db528f1c37ce69aee300e075b485b/uritemplate-4.1.1-py2.py3-none-any.whl", hash = "sha256:830c08b8d99bdd312ea4ead05994a38e8936266f84b9a7878232db50b044e02e", size = 10356 }, +] + +[[package]] +name = "urllib3" +version = "1.26.19" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c8/93/65e479b023bbc46dab3e092bda6b0005424ea3217d711964ccdede3f9b1b/urllib3-1.26.19.tar.gz", hash = "sha256:3e3d753a8618b86d7de333b4223005f68720bcd6a7d2bcb9fbd2229ec7c1e429", size = 306068 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ae/6a/99eaaeae8becaa17a29aeb334a18e5d582d873b6f084c11f02581b8d7f7f/urllib3-1.26.19-py2.py3-none-any.whl", hash = "sha256:37a0344459b199fce0e80b0d3569837ec6b6937435c5244e7fd73fa6006830f3", size = 143933 }, +] + +[[package]] +name = "uvicorn" +version = "0.30.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "h11", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version < '3.11'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c3/ad/02b1b412e43605aa6aac8d0392c383ff3f6ae8267b7864e48e3b5f3f601e/uvicorn-0.30.5.tar.gz", hash = "sha256:ac6fdbd4425c5fd17a9fe39daf4d4d075da6fdc80f653e5894cdc2fd98752bee", size = 42835 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/67/d8/1bcb5e6508d14c6c9912cd964b286f04392298ffb3e4218f4a1292d64e76/uvicorn-0.30.5-py3-none-any.whl", hash = "sha256:b2d86de274726e9878188fa07576c9ceeff90a839e2b6e25c917fe05f5a6c835", size = 62805 }, +] + +[[package]] +name = "wasabi" +version = "0.10.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/69/41/0c31737ee1a29c8b829690ebb4ab988b1f489aa2c3efa115a732a9dd7997/wasabi-0.10.1.tar.gz", hash = "sha256:c8e372781be19272942382b14d99314d175518d7822057cb7a97010c4259d249", size = 28380 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/34/74/bd566f876c2de097e75d525c2696fb9829009987a0d93a4fb3576778a0a8/wasabi-0.10.1-py3-none-any.whl", hash = "sha256:fe862cc24034fbc9f04717cd312ab884f71f51a8ecabebc3449b751c2a649d83", size = 26075 }, +] + +[[package]] +name = "wcwidth" +version = "0.2.13" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6c/63/53559446a878410fc5a5974feb13d31d78d752eb18aeba59c7fef1af7598/wcwidth-0.2.13.tar.gz", hash = "sha256:72ea0c06399eb286d978fdedb6923a9eb47e1c486ce63e9b4e64fc18303972b5", size = 101301 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fd/84/fd2ba7aafacbad3c4201d395674fc6348826569da3c0937e75505ead3528/wcwidth-0.2.13-py2.py3-none-any.whl", hash = "sha256:3da69048e4540d84af32131829ff948f1e022c1c6bdb8d6102117aac784f6859", size = 34166 }, +] + +[[package]] +name = "werkzeug" +version = "3.0.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/02/51/2e0fc149e7a810d300422ab543f87f2bcf64d985eb6f1228c4efd6e4f8d4/werkzeug-3.0.3.tar.gz", hash = "sha256:097e5bfda9f0aba8da6b8545146def481d06aa7d3266e7448e2cccf67dd8bd18", size = 803342 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9d/6e/e792999e816d19d7fcbfa94c730936750036d65656a76a5a688b57a656c4/werkzeug-3.0.3-py3-none-any.whl", hash = "sha256:fc9645dc43e03e4d630d23143a04a7f947a9a3b5727cd535fdfe155a17cc48c8", size = 227274 }, +] + +[[package]] +name = "wheel" +version = "0.44.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b7/a0/95e9e962c5fd9da11c1e28aa4c0d8210ab277b1ada951d2aee336b505813/wheel-0.44.0.tar.gz", hash = "sha256:a29c3f2817e95ab89aa4660681ad547c0e9547f20e75b0562fe7723c9a2a9d49", size = 100733 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1b/d1/9babe2ccaecff775992753d8686970b1e2755d21c8a63be73aba7a4e7d77/wheel-0.44.0-py3-none-any.whl", hash = "sha256:2376a90c98cc337d18623527a97c31797bd02bad0033d41547043a1cbfbe448f", size = 67059 }, +] + +[[package]] +name = "wrapt" +version = "1.14.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/11/eb/e06e77394d6cf09977d92bff310cb0392930c08a338f99af6066a5a98f92/wrapt-1.14.1.tar.gz", hash = "sha256:380a85cf89e0e69b7cfbe2ea9f765f004ff419f34194018a6827ac0e3edfed4d", size = 50890 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f7/92/121147bb2f9ed1aa35a8780c636d5da9c167545f97737f0860b4c6c92086/wrapt-1.14.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:80bb5c256f1415f747011dc3604b59bc1f91c6e7150bd7db03b19170ee06b320", size = 35236 }, + { url = "https://files.pythonhosted.org/packages/39/4d/34599a47c8a41b3ea4986e14f728c293a8a96cd6c23663fe33657c607d34/wrapt-1.14.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:07f7a7d0f388028b2df1d916e94bbb40624c59b48ecc6cbc232546706fac74c2", size = 35934 }, + { url = "https://files.pythonhosted.org/packages/50/d5/bf619c4d204fe8888460f65222b465c7ecfa43590fdb31864fe0e266da29/wrapt-1.14.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:02b41b633c6261feff8ddd8d11c711df6842aba629fdd3da10249a53211a72c4", size = 78011 }, + { url = "https://files.pythonhosted.org/packages/94/56/fd707fb8e1ea86e72503d823549fb002a0f16cb4909619748996daeb3a82/wrapt-1.14.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2fe803deacd09a233e4762a1adcea5db5d31e6be577a43352936179d14d90069", size = 70462 }, + { url = "https://files.pythonhosted.org/packages/fd/70/8a133c88a394394dd57159083b86a564247399440b63f2da0ad727593570/wrapt-1.14.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:257fd78c513e0fb5cdbe058c27a0624c9884e735bbd131935fd49e9fe719d310", size = 77901 }, + { url = "https://files.pythonhosted.org/packages/07/06/2b4aaaa4403f766c938f9780c700d7399726bce3dfd94f5a57c4e5b9dc68/wrapt-1.14.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:4fcc4649dc762cddacd193e6b55bc02edca674067f5f98166d7713b193932b7f", size = 82463 }, + { url = "https://files.pythonhosted.org/packages/cd/ec/383d9552df0641e9915454b03139571e0c6e055f5d414d8f3d04f3892f38/wrapt-1.14.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:11871514607b15cfeb87c547a49bca19fde402f32e2b1c24a632506c0a756656", size = 75352 }, + { url = "https://files.pythonhosted.org/packages/40/f4/7be7124a06c14b92be53912f93c8dc84247f1cb93b4003bed460a430d1de/wrapt-1.14.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8ad85f7f4e20964db4daadcab70b47ab05c7c1cf2a7c1e51087bfaa83831854c", size = 82443 }, + { url = "https://files.pythonhosted.org/packages/4f/83/2669bf2cb4cc2b346c40799478d29749ccd17078cb4f69b4a9f95921ff6d/wrapt-1.14.1-cp310-cp310-win32.whl", hash = "sha256:a9a52172be0b5aae932bef82a79ec0a0ce87288c7d132946d645eba03f0ad8a8", size = 33410 }, + { url = "https://files.pythonhosted.org/packages/c0/1e/e5a5ac09e92fd112d50e1793e5b9982dc9e510311ed89dacd2e801f82967/wrapt-1.14.1-cp310-cp310-win_amd64.whl", hash = "sha256:6d323e1554b3d22cfc03cd3243b5bb815a51f5249fdcbb86fda4bf62bab9e164", size = 35558 }, + { url = "https://files.pythonhosted.org/packages/e7/f9/8c078b4973604cd968b23eb3dff52028b5c48f2a02c4f1f975f4d5e344d1/wrapt-1.14.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ecee4132c6cd2ce5308e21672015ddfed1ff975ad0ac8d27168ea82e71413f55", size = 35432 }, + { url = "https://files.pythonhosted.org/packages/6e/79/aec8185eefe20e8f49e5adeb0c2e20e016d5916d10872c17705ddac41be2/wrapt-1.14.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2020f391008ef874c6d9e208b24f28e31bcb85ccff4f335f15a3251d222b92d9", size = 36219 }, + { url = "https://files.pythonhosted.org/packages/d1/71/8d68004e5d5a676177342a56808af51e1df3b0e54b203e3295a8cd96b53b/wrapt-1.14.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2feecf86e1f7a86517cab34ae6c2f081fd2d0dac860cb0c0ded96d799d20b335", size = 78509 }, + { url = "https://files.pythonhosted.org/packages/5a/27/604d6ad71fe5935446df1b7512d491b47fe2aef8c95e9813d03d78024a28/wrapt-1.14.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:240b1686f38ae665d1b15475966fe0472f78e71b1b4903c143a842659c8e4cb9", size = 70972 }, + { url = "https://files.pythonhosted.org/packages/7f/1b/e0439eec0db6520968c751bc7e12480bb80bb8d939190e0e55ed762f3c7a/wrapt-1.14.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9008dad07d71f68487c91e96579c8567c98ca4c3881b9b113bc7b33e9fd78b8", size = 78402 }, + { url = "https://files.pythonhosted.org/packages/b9/45/2cc612ff64061d4416baf8d0daf27bea7f79f0097638ddc2af51a3e647f3/wrapt-1.14.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:6447e9f3ba72f8e2b985a1da758767698efa72723d5b59accefd716e9e8272bf", size = 83373 }, + { url = "https://files.pythonhosted.org/packages/ad/b7/332692b8d0387922da0f1323ad36a14e365911def3c78ea0d102f83ac592/wrapt-1.14.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:acae32e13a4153809db37405f5eba5bac5fbe2e2ba61ab227926a22901051c0a", size = 76299 }, + { url = "https://files.pythonhosted.org/packages/f2/31/cbce966b6760e62d005c237961e839a755bf0c907199248394e2ee03ab05/wrapt-1.14.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:49ef582b7a1152ae2766557f0550a9fcbf7bbd76f43fbdc94dd3bf07cc7168be", size = 83361 }, + { url = "https://files.pythonhosted.org/packages/9a/aa/ab46fb18072b86e87e0965a402f8723217e8c0312d1b3e2a91308df924ab/wrapt-1.14.1-cp311-cp311-win32.whl", hash = "sha256:358fe87cc899c6bb0ddc185bf3dbfa4ba646f05b1b0b9b5a27c2cb92c2cea204", size = 33454 }, + { url = "https://files.pythonhosted.org/packages/ba/7e/14113996bc6ee68eb987773b4139c87afd3ceff60e27e37648aa5eb2798a/wrapt-1.14.1-cp311-cp311-win_amd64.whl", hash = "sha256:26046cd03936ae745a502abf44dac702a5e6880b2b01c29aea8ddf3353b68224", size = 35616 }, + { url = "https://files.pythonhosted.org/packages/d9/ab/3ba5816dd466ffd7242913708771d258569825ab76fd29d7fd85b9361311/wrapt-1.14.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3232822c7d98d23895ccc443bbdf57c7412c5a65996c30442ebe6ed3df335383", size = 35234 }, + { url = "https://files.pythonhosted.org/packages/bb/70/73c54e24ea69a8b06ae9649e61d5e64f2b4bdfc6f202fc7794abeac1ed20/wrapt-1.14.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:988635d122aaf2bdcef9e795435662bcd65b02f4f4c1ae37fbee7401c440b3a7", size = 35933 }, + { url = "https://files.pythonhosted.org/packages/38/38/5b338163b3b4f1ab718306984678c3d180b85a25d72654ea4c61aa6b0968/wrapt-1.14.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cca3c2cdadb362116235fdbd411735de4328c61425b0aa9f872fd76d02c4e86", size = 77892 }, + { url = "https://files.pythonhosted.org/packages/0a/61/330f24065b8f2fc02f94321092a24e0c30aefcbac89ab5c860e180366c9f/wrapt-1.14.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d52a25136894c63de15a35bc0bdc5adb4b0e173b9c0d07a2be9d3ca64a332735", size = 70318 }, + { url = "https://files.pythonhosted.org/packages/e0/6a/3c660fa34c8106aa9719f2a6636c1c3ea7afd5931ae665eb197fdf4def84/wrapt-1.14.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40e7bc81c9e2b2734ea4bc1aceb8a8f0ceaac7c5299bc5d69e37c44d9081d43b", size = 77752 }, + { url = "https://files.pythonhosted.org/packages/e0/20/9716fb522d17a726364c4d032c8806ffe312268773dd46a394436b2787cc/wrapt-1.14.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b9b7a708dd92306328117d8c4b62e2194d00c365f18eff11a9b53c6f923b01e3", size = 82284 }, + { url = "https://files.pythonhosted.org/packages/6a/12/76bbe26dc39d05f1a7be8d570d91c87bb79297e08e885148ed670ed17b7b/wrapt-1.14.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6a9a25751acb379b466ff6be78a315e2b439d4c94c1e99cb7266d40a537995d3", size = 75170 }, + { url = "https://files.pythonhosted.org/packages/f9/3c/110e52b9da396a4ef3a0521552a1af9c7875a762361f48678c1ac272fd7e/wrapt-1.14.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:34aa51c45f28ba7f12accd624225e2b1e5a3a45206aa191f6f9aac931d9d56fe", size = 82281 }, + { url = "https://files.pythonhosted.org/packages/4b/07/782463e367a7c6b418af231ded753e4b2dd3293a157d9b0bb010806fc0c0/wrapt-1.14.1-cp39-cp39-win32.whl", hash = "sha256:dee0ce50c6a2dd9056c20db781e9c1cfd33e77d2d569f5d1d9321c641bb903d5", size = 33404 }, + { url = "https://files.pythonhosted.org/packages/5b/02/5ac7ea3b6722c84a2882d349ac581a9711b4047fe7a58475903832caa295/wrapt-1.14.1-cp39-cp39-win_amd64.whl", hash = "sha256:dee60e1de1898bde3b238f18340eec6148986da0455d8ba7848d50470a7a32fb", size = 35557 }, +] + +[[package]] +name = "xmltodict" +version = "0.13.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/39/0d/40df5be1e684bbaecdb9d1e0e40d5d482465de6b00cbb92b84ee5d243c7f/xmltodict-0.13.0.tar.gz", hash = "sha256:341595a488e3e01a85a9d8911d8912fd922ede5fecc4dce437eb4b6c8d037e56", size = 33813 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/94/db/fd0326e331726f07ff7f40675cd86aa804bfd2e5016c727fa761c934990e/xmltodict-0.13.0-py2.py3-none-any.whl", hash = "sha256:aa89e8fd76320154a40d19a0df04a4695fb9dc5ba977cbb68ab3e4eb225e7852", size = 9971 }, +] + +[[package]] +name = "xxhash" +version = "3.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/04/ef/1a95dc97a71b128a7c5fd531e42574b274629a4ad1354a694087e2305467/xxhash-3.4.1.tar.gz", hash = "sha256:0379d6cf1ff987cd421609a264ce025e74f346e3e145dd106c0cc2e3ec3f99a9", size = 84220 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/36/5a/0bbf85a88e19d50e35caf55be7aa7377bafeacff6d1a78965e0fc78d7f41/xxhash-3.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:91dbfa55346ad3e18e738742236554531a621042e419b70ad8f3c1d9c7a16e7f", size = 31850 }, + { url = "https://files.pythonhosted.org/packages/ad/7f/dfdf25e416b67970e89d7b85b0e6a4860ec8a227544cb5db069617cc323e/xxhash-3.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:665a65c2a48a72068fcc4d21721510df5f51f1142541c890491afc80451636d2", size = 30383 }, + { url = "https://files.pythonhosted.org/packages/f7/6f/15612eac54ab6a4e9e441ab14a08ba4fdfe6cce48d39f3fff46bcec1fc2a/xxhash-3.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb11628470a6004dc71a09fe90c2f459ff03d611376c1debeec2d648f44cb693", size = 220888 }, + { url = "https://files.pythonhosted.org/packages/6b/db/37b282f55294813fe1d34f8219573a72a0976617a74345982be157ad7e3a/xxhash-3.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5bef2a7dc7b4f4beb45a1edbba9b9194c60a43a89598a87f1a0226d183764189", size = 200320 }, + { url = "https://files.pythonhosted.org/packages/ba/0a/e4c5057c3537884ffbcde785287927ec063d596c632ff01bb50a27728103/xxhash-3.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9c0f7b2d547d72c7eda7aa817acf8791f0146b12b9eba1d4432c531fb0352228", size = 428491 }, + { url = "https://files.pythonhosted.org/packages/80/8a/1dd41557883b6196f8f092011a5c1f72d4d44cf36d7b67d4a5efe3127949/xxhash-3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:00f2fdef6b41c9db3d2fc0e7f94cb3db86693e5c45d6de09625caad9a469635b", size = 194106 }, + { url = "https://files.pythonhosted.org/packages/cf/40/4905206cbb58737efc76dd0ea1b5d0ebf89d78afdff8ce484a20dd95bfe9/xxhash-3.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23cfd9ca09acaf07a43e5a695143d9a21bf00f5b49b15c07d5388cadf1f9ce11", size = 207663 }, + { url = "https://files.pythonhosted.org/packages/34/b0/659d17d5530768c2de58336508b8aa10f159f02b1de8ce04369e01ad1ec5/xxhash-3.4.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:6a9ff50a3cf88355ca4731682c168049af1ca222d1d2925ef7119c1a78e95b3b", size = 219944 }, + { url = "https://files.pythonhosted.org/packages/9a/c3/8cb52cc25731e304c2594b8a4749d9654817f6cb047d3b046691fa2f794c/xxhash-3.4.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:f1d7c69a1e9ca5faa75546fdd267f214f63f52f12692f9b3a2f6467c9e67d5e7", size = 216495 }, + { url = "https://files.pythonhosted.org/packages/22/37/deac36a9f7632e5ddc236df5534289ca3f387b5c174d65359c2a06ed6182/xxhash-3.4.1-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:672b273040d5d5a6864a36287f3514efcd1d4b1b6a7480f294c4b1d1ee1b8de0", size = 227171 }, + { url = "https://files.pythonhosted.org/packages/24/4a/a5b29f30280e484531895d555af9491418f3892f0c4520dc7e44209cb55c/xxhash-3.4.1-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:4178f78d70e88f1c4a89ff1ffe9f43147185930bb962ee3979dba15f2b1cc799", size = 303077 }, + { url = "https://files.pythonhosted.org/packages/92/51/2d7947145b01e648c95e1cb44d87e6047e1a25b504b9b2b441d74586980e/xxhash-3.4.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:9804b9eb254d4b8cc83ab5a2002128f7d631dd427aa873c8727dba7f1f0d1c2b", size = 196464 }, + { url = "https://files.pythonhosted.org/packages/6c/a3/d739a94f3c96b5698e15b7e1546bcd0b6e43f6e604c588ead42e6d0058c1/xxhash-3.4.1-cp310-cp310-win32.whl", hash = "sha256:c09c49473212d9c87261d22c74370457cfff5db2ddfc7fd1e35c80c31a8c14ce", size = 30064 }, + { url = "https://files.pythonhosted.org/packages/a5/b0/2950f76c07e467586d01d9a6cdd4ac668c13d20de5fde49af5364f513e54/xxhash-3.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:ebbb1616435b4a194ce3466d7247df23499475c7ed4eb2681a1fa42ff766aff6", size = 29948 }, + { url = "https://files.pythonhosted.org/packages/fb/7a/31739a48da3121efc7740f7b297804a7386f7053ea9adad834f49cb83967/xxhash-3.4.1-cp310-cp310-win_arm64.whl", hash = "sha256:25dc66be3db54f8a2d136f695b00cfe88018e59ccff0f3b8f545869f376a8a46", size = 26719 }, + { url = "https://files.pythonhosted.org/packages/38/c7/399b07b6af0c89bc96361d9058132b052770d89ae90b7e8a67241ea5a30d/xxhash-3.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:58c49083801885273e262c0f5bbeac23e520564b8357fbb18fb94ff09d3d3ea5", size = 31854 }, + { url = "https://files.pythonhosted.org/packages/9c/0a/d0fd8d78c8a2c3c3b34e7a9dccf85f01bf38f32e0228d107fa3903e0981f/xxhash-3.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b526015a973bfbe81e804a586b703f163861da36d186627e27524f5427b0d520", size = 30379 }, + { url = "https://files.pythonhosted.org/packages/ca/8a/0c89f4ea4cd93a4b2728f742ddb2315bb56206538dc893d49d9bb890c464/xxhash-3.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:36ad4457644c91a966f6fe137d7467636bdc51a6ce10a1d04f365c70d6a16d7e", size = 221530 }, + { url = "https://files.pythonhosted.org/packages/72/13/4396ee5c795264c448703655f3fbb0d39604b3de4a2a158a6835f9b113d4/xxhash-3.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:248d3e83d119770f96003271fe41e049dd4ae52da2feb8f832b7a20e791d2920", size = 201177 }, + { url = "https://files.pythonhosted.org/packages/88/b8/161b3207a0f71755e41c9b81e58ea6320e46732a7651dd2f686273cb6b9b/xxhash-3.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2070b6d5bbef5ee031666cf21d4953c16e92c2f8a24a94b5c240f8995ba3b1d0", size = 429384 }, + { url = "https://files.pythonhosted.org/packages/eb/3a/25c4aecb61a49d4415fd71d4f66a8a5b558dd44a52d7054ea9aa59ccbac1/xxhash-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b2746035f518f0410915e247877f7df43ef3372bf36cfa52cc4bc33e85242641", size = 194779 }, + { url = "https://files.pythonhosted.org/packages/4c/48/166773deae47ad9038a09d0e5628f215a06a7096861d2ef940aad0ef6bdd/xxhash-3.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2a8ba6181514681c2591840d5632fcf7356ab287d4aff1c8dea20f3c78097088", size = 208502 }, + { url = "https://files.pythonhosted.org/packages/a9/5a/25d5250b4472f478adca4773b45a859a111dc9b8ede494939f83759e0ab2/xxhash-3.4.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0aac5010869240e95f740de43cd6a05eae180c59edd182ad93bf12ee289484fa", size = 220623 }, + { url = "https://files.pythonhosted.org/packages/ef/3f/428f4c23d8f34a6b9f86f053b3a90b96b83ca3722c725064e16ee399d063/xxhash-3.4.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:4cb11d8debab1626181633d184b2372aaa09825bde709bf927704ed72765bed1", size = 217257 }, + { url = "https://files.pythonhosted.org/packages/66/d5/6d27f1bf8e949bfa7050cb0ec9aa06909994423b7225ad5e396e064472dc/xxhash-3.4.1-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:b29728cff2c12f3d9f1d940528ee83918d803c0567866e062683f300d1d2eff3", size = 228225 }, + { url = "https://files.pythonhosted.org/packages/b8/ed/50bfcd928c6e5025ea67b089da8433121fcff9d772c865238e74049dfd0c/xxhash-3.4.1-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:a15cbf3a9c40672523bdb6ea97ff74b443406ba0ab9bca10ceccd9546414bd84", size = 304013 }, + { url = "https://files.pythonhosted.org/packages/b4/18/5a280a91876147192a36419db480e6be990d462f785d4aff8090972008f7/xxhash-3.4.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:6e66df260fed01ed8ea790c2913271641c58481e807790d9fca8bfd5a3c13844", size = 197102 }, + { url = "https://files.pythonhosted.org/packages/2c/ab/861020932b8e0aee8761f32311e3af3ecbd08864348c6aff0dc7a1c596de/xxhash-3.4.1-cp311-cp311-win32.whl", hash = "sha256:e867f68a8f381ea12858e6d67378c05359d3a53a888913b5f7d35fbf68939d5f", size = 30065 }, + { url = "https://files.pythonhosted.org/packages/b7/3a/74a609706ef4430fe6d041a3b8d209882c15440b695e373fe26d48c6f35c/xxhash-3.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:200a5a3ad9c7c0c02ed1484a1d838b63edcf92ff538770ea07456a3732c577f4", size = 29954 }, + { url = "https://files.pythonhosted.org/packages/d9/a1/fc0505f9d2c8f1c8959dff7e299e43b135bddfc7e1929f580ce4cf9e2e3c/xxhash-3.4.1-cp311-cp311-win_arm64.whl", hash = "sha256:1d03f1c0d16d24ea032e99f61c552cb2b77d502e545187338bea461fde253583", size = 26718 }, + { url = "https://files.pythonhosted.org/packages/05/68/2892bbbf528793b82b8cffc4dd219e0cfc763aa17377d7b5651dd7c31319/xxhash-3.4.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c4bbba9b182697a52bc0c9f8ec0ba1acb914b4937cd4a877ad78a3b3eeabefb3", size = 31853 }, + { url = "https://files.pythonhosted.org/packages/4f/18/1a10db384eef70f8a9efbbf9ff417e3cb04c66351d192ac24e8e86622831/xxhash-3.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9fd28a9da300e64e434cfc96567a8387d9a96e824a9be1452a1e7248b7763b78", size = 30357 }, + { url = "https://files.pythonhosted.org/packages/03/bd/01ced3eb792410ce05e777bd7d79f383fd8056334575cf84b60aaa2734d2/xxhash-3.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6066d88c9329ab230e18998daec53d819daeee99d003955c8db6fc4971b45ca3", size = 220917 }, + { url = "https://files.pythonhosted.org/packages/9a/af/34452bdc52faf44ff2ef87bb4cebdb64837f8ae576d5e7b8e1ba87ee0aba/xxhash-3.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:93805bc3233ad89abf51772f2ed3355097a5dc74e6080de19706fc447da99cd3", size = 199966 }, + { url = "https://files.pythonhosted.org/packages/12/39/8eca9f98358828040cc2f8a1024d32ac2148e5d33f79fa82bd88244b0270/xxhash-3.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:64da57d5ed586ebb2ecdde1e997fa37c27fe32fe61a656b77fabbc58e6fbff6e", size = 428281 }, + { url = "https://files.pythonhosted.org/packages/ce/d4/8111e14273c0781349af8d0dae55c4e42c7196e7237e81a3db5186ab7dfe/xxhash-3.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7a97322e9a7440bf3c9805cbaac090358b43f650516486746f7fa482672593df", size = 194331 }, + { url = "https://files.pythonhosted.org/packages/82/f0/138223ac68bfb1c210050bf94b4114c7a72ffb5f3c6f5be65e1d7c185a95/xxhash-3.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bbe750d512982ee7d831838a5dee9e9848f3fb440e4734cca3f298228cc957a6", size = 207891 }, + { url = "https://files.pythonhosted.org/packages/84/12/1486a1cf1b06ceb431303daf623e4e7c2064b5fbca11b1ff996be0e39b66/xxhash-3.4.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:fd79d4087727daf4d5b8afe594b37d611ab95dc8e29fe1a7517320794837eb7d", size = 220126 }, + { url = "https://files.pythonhosted.org/packages/b4/51/650fc8885bba3d67e909cc1eb952618556687d691fed9ce5e4cd0f0670b4/xxhash-3.4.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:743612da4071ff9aa4d055f3f111ae5247342931dedb955268954ef7201a71ff", size = 216818 }, + { url = "https://files.pythonhosted.org/packages/a2/6e/c91b2e8255551bd60aff6181f4ade6dcc21d0387435645e81755a47f0ac8/xxhash-3.4.1-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:b41edaf05734092f24f48c0958b3c6cbaaa5b7e024880692078c6b1f8247e2fc", size = 227513 }, + { url = "https://files.pythonhosted.org/packages/5a/2a/c74f5e42fb4bd773768e819ac183a352c9b263bbbb65d024c1e69388f3f2/xxhash-3.4.1-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:a90356ead70d715fe64c30cd0969072de1860e56b78adf7c69d954b43e29d9fa", size = 303627 }, + { url = "https://files.pythonhosted.org/packages/9a/93/5d5f001777d71374ba78a4bc51fc722f8a0dd4195dc988fc4bd34eee57bb/xxhash-3.4.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:ac56eebb364e44c85e1d9e9cc5f6031d78a34f0092fea7fc80478139369a8b4a", size = 196855 }, + { url = "https://files.pythonhosted.org/packages/e8/4a/bf8b7f53727b3ebbebe2965586c244febf4c8b03d0caa98af97910f55e79/xxhash-3.4.1-cp312-cp312-win32.whl", hash = "sha256:911035345932a153c427107397c1518f8ce456f93c618dd1c5b54ebb22e73747", size = 30114 }, + { url = "https://files.pythonhosted.org/packages/e3/63/2627198c4c9d1f987390043bb352fef9e754ed2b11fd21b40bf430b2714e/xxhash-3.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:f31ce76489f8601cc7b8713201ce94b4bd7b7ce90ba3353dccce7e9e1fee71fa", size = 29993 }, + { url = "https://files.pythonhosted.org/packages/73/81/914efdf0a02597d769571f013f575b5672ed7f85c9fed07c7378c657bf2b/xxhash-3.4.1-cp312-cp312-win_arm64.whl", hash = "sha256:b5beb1c6a72fdc7584102f42c4d9df232ee018ddf806e8c90906547dfb43b2da", size = 26741 }, + { url = "https://files.pythonhosted.org/packages/36/c3/db95ec21d23ba87a29d18c54fcc8289ae93f97831d95b2f3b65331b9d423/xxhash-3.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6127813abc1477f3a83529b6bbcfeddc23162cece76fa69aee8f6a8a97720562", size = 31855 }, + { url = "https://files.pythonhosted.org/packages/a4/24/8092b5db6d459cb9e62409edfebb0253b3760d9ab7e4c52e5493c3b026b1/xxhash-3.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ef2e194262f5db16075caea7b3f7f49392242c688412f386d3c7b07c7733a70a", size = 30387 }, + { url = "https://files.pythonhosted.org/packages/7c/b9/93f860969093d5d1c4fa60c75ca351b212560de68f33dc0da04c89b7dc1b/xxhash-3.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:71be94265b6c6590f0018bbf73759d21a41c6bda20409782d8117e76cd0dfa8b", size = 220601 }, + { url = "https://files.pythonhosted.org/packages/95/a7/ee4fa3f044b504281955abbf264c90aff2ff3bc5722fe90de8b819016ebf/xxhash-3.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:10e0a619cdd1c0980e25eb04e30fe96cf8f4324758fa497080af9c21a6de573f", size = 199981 }, + { url = "https://files.pythonhosted.org/packages/09/23/7f67542874f768dbc9e24ed05d914451ade01cd0307d985e2a6dd2e90c83/xxhash-3.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fa122124d2e3bd36581dd78c0efa5f429f5220313479fb1072858188bc2d5ff1", size = 428172 }, + { url = "https://files.pythonhosted.org/packages/63/93/812d78f70145c68c4e64533f4d625bea01236f27698febe15f0ceebc1566/xxhash-3.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17032f5a4fea0a074717fe33477cb5ee723a5f428de7563e75af64bfc1b1e10", size = 193827 }, + { url = "https://files.pythonhosted.org/packages/49/a0/6ec53c45ce6f2df4a38d170caa5d091014304b284edd90ecb6452740932c/xxhash-3.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca7783b20e3e4f3f52f093538895863f21d18598f9a48211ad757680c3bd006f", size = 207361 }, + { url = "https://files.pythonhosted.org/packages/2d/64/fd1cc438c48fa31342509339c780ad3230bf081779ebcb889960805c7125/xxhash-3.4.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d77d09a1113899fad5f354a1eb4f0a9afcf58cefff51082c8ad643ff890e30cf", size = 219645 }, + { url = "https://files.pythonhosted.org/packages/0d/79/8a89c2320a380491288c0205d407ec720479365c26e013c292af4e0b175e/xxhash-3.4.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:21287bcdd299fdc3328cc0fbbdeaa46838a1c05391264e51ddb38a3f5b09611f", size = 216159 }, + { url = "https://files.pythonhosted.org/packages/3a/79/7c29be4a717b47ebf389087cf677b1bc6578df77f242ebf08d5e41f0c938/xxhash-3.4.1-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:dfd7a6cc483e20b4ad90224aeb589e64ec0f31e5610ab9957ff4314270b2bf31", size = 226801 }, + { url = "https://files.pythonhosted.org/packages/2d/ef/553fc2488ce12de22575b05fbf9ce5dddb2b496134a72236325abdb05674/xxhash-3.4.1-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:543c7fcbc02bbb4840ea9915134e14dc3dc15cbd5a30873a7a5bf66039db97ec", size = 302773 }, + { url = "https://files.pythonhosted.org/packages/03/7a/2ad3251eb35d25fd500454efdac85d7f51933aeda771e3e3383e9385fa73/xxhash-3.4.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:fe0a98d990e433013f41827b62be9ab43e3cf18e08b1483fcc343bda0d691182", size = 196178 }, + { url = "https://files.pythonhosted.org/packages/c9/29/892c10e0bd861385d4081b0a5de178d2b853065d717c24ab8a8d5286a6e4/xxhash-3.4.1-cp39-cp39-win32.whl", hash = "sha256:b9097af00ebf429cc7c0e7d2fdf28384e4e2e91008130ccda8d5ae653db71e54", size = 30069 }, + { url = "https://files.pythonhosted.org/packages/33/db/e07aa80e39a7ee82e9ca6f5a0fa9bf0b4465934272116a1b578eaee7f4b3/xxhash-3.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:d699b921af0dcde50ab18be76c0d832f803034d80470703700cb7df0fbec2832", size = 29972 }, + { url = "https://files.pythonhosted.org/packages/26/c6/a43beda71c2fbe4901b8a6b5a9bd1b2fe9f15877f4caed2f3034073aca72/xxhash-3.4.1-cp39-cp39-win_arm64.whl", hash = "sha256:2be491723405e15cc099ade1280133ccfbf6322d2ef568494fb7d07d280e7eee", size = 26730 }, + { url = "https://files.pythonhosted.org/packages/a0/08/9234966abb8e0ac65578442b3dc1ee9eea5fe1db5472d9425d40c838193d/xxhash-3.4.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:431625fad7ab5649368c4849d2b49a83dc711b1f20e1f7f04955aab86cd307bc", size = 29659 }, + { url = "https://files.pythonhosted.org/packages/04/73/8406875fe09d76331cdcce79e9db05699ce9bec126f060d37b540882dcd0/xxhash-3.4.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fc6dbd5fc3c9886a9e041848508b7fb65fd82f94cc793253990f81617b61fe49", size = 36174 }, + { url = "https://files.pythonhosted.org/packages/28/e0/cef7e324cb6e38c463e2b58ba88ed0ce56d1b1717b2e98fe7b692c3bb432/xxhash-3.4.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f3ff8dbd0ec97aec842476cb8ccc3e17dd288cd6ce3c8ef38bff83d6eb927817", size = 31980 }, + { url = "https://files.pythonhosted.org/packages/50/e1/5bfa7e640e2aa56550e0bcbc40594e79bf6e39721d921978a4303317be5d/xxhash-3.4.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef73a53fe90558a4096e3256752268a8bdc0322f4692ed928b6cd7ce06ad4fe3", size = 40474 }, + { url = "https://files.pythonhosted.org/packages/14/b8/5df224b343e8cef8c8a61049b42462f5b088daa3e222c90c5fdc3a184fda/xxhash-3.4.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:450401f42bbd274b519d3d8dcf3c57166913381a3d2664d6609004685039f9d3", size = 30022 }, + { url = "https://files.pythonhosted.org/packages/5d/63/87337f717c70220d711e1f3992a5e5b9ee2cf7f8980bb58418417d69ff77/xxhash-3.4.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:41ddeae47cf2828335d8d991f2d2b03b0bdc89289dc64349d712ff8ce59d0647", size = 29669 }, + { url = "https://files.pythonhosted.org/packages/da/59/bcebce98d2d367f3dfd6010ad134aaab576a5531b3a02d6137206dddf866/xxhash-3.4.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c44d584afdf3c4dbb3277e32321d1a7b01d6071c1992524b6543025fb8f4206f", size = 36178 }, + { url = "https://files.pythonhosted.org/packages/78/04/2e83720cde494ea1c72d0576c731d9381568f814e34b75104156966bab1e/xxhash-3.4.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd7bddb3a5b86213cc3f2c61500c16945a1b80ecd572f3078ddbbe68f9dabdfb", size = 32002 }, + { url = "https://files.pythonhosted.org/packages/c6/17/5e370df14fcc5abc3f2175a13554a07da48d7e9b6fe8645ba8fdd0b25105/xxhash-3.4.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9ecb6c987b62437c2f99c01e97caf8d25660bf541fe79a481d05732e5236719c", size = 40478 }, + { url = "https://files.pythonhosted.org/packages/96/c2/48fbe1319b4bf20a9cc4d93e7e6d71300ce529e0b1554c326f04d4fea40c/xxhash-3.4.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:696b4e18b7023527d5c50ed0626ac0520edac45a50ec7cf3fc265cd08b1f4c03", size = 30062 }, +] + +[[package]] +name = "yarl" +version = "1.9.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "idna", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "multidict", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and platform_machine == 'aarch64' and platform_system == 'Linux' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and platform_machine == 'arm64' and platform_system == 'Darwin' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e0/ad/bedcdccbcbf91363fd425a948994f3340924145c2bc8ccb296f4a1e52c28/yarl-1.9.4.tar.gz", hash = "sha256:566db86717cf8080b99b58b083b773a908ae40f06681e87e589a976faf8246bf", size = 141869 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6c/27/cda5a927df3a894eddfee4efacdd230c2d8486e322fc672194fd651f82c5/yarl-1.9.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a8c1df72eb746f4136fe9a2e72b0c9dc1da1cbd23b5372f94b5820ff8ae30e0e", size = 129061 }, + { url = "https://files.pythonhosted.org/packages/d5/fc/40b85bea1f5686092ea37f472c94c023d6347266852ffd55baa01c40f596/yarl-1.9.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a3a6ed1d525bfb91b3fc9b690c5a21bb52de28c018530ad85093cc488bee2dd2", size = 81246 }, + { url = "https://files.pythonhosted.org/packages/81/c6/06938036ea48fa74521713499fba1459b0eb60af9b9afbe8e0e9e1a96c36/yarl-1.9.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c38c9ddb6103ceae4e4498f9c08fac9b590c5c71b0370f98714768e22ac6fa66", size = 79176 }, + { url = "https://files.pythonhosted.org/packages/30/b5/215d586d5cb17ca9748d7a2d597c07147f210c0c0785257492094d083b65/yarl-1.9.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d9e09c9d74f4566e905a0b8fa668c58109f7624db96a2171f21747abc7524234", size = 297669 }, + { url = "https://files.pythonhosted.org/packages/dd/90/2958ae9f2e12084d616eef95b6a48c8e6d96448add04367c20dc53a33ff2/yarl-1.9.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8477c1ee4bd47c57d49621a062121c3023609f7a13b8a46953eb6c9716ca392", size = 311909 }, + { url = "https://files.pythonhosted.org/packages/0b/58/dd3c69651381a57ac991dba54b20ae2da359eb4b03a661e71c451d6525c6/yarl-1.9.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5ff2c858f5f6a42c2a8e751100f237c5e869cbde669a724f2062d4c4ef93551", size = 308690 }, + { url = "https://files.pythonhosted.org/packages/c3/a0/0ade1409d184cbc9e85acd403a386a7c0563b92ff0f26d138ff9e86e48b4/yarl-1.9.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:357495293086c5b6d34ca9616a43d329317feab7917518bc97a08f9e55648455", size = 301580 }, + { url = "https://files.pythonhosted.org/packages/6d/a1/db0bdf8cc48515e9c02daf04ae2916fc27ce6498eca21432fc9ffa63f71b/yarl-1.9.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:54525ae423d7b7a8ee81ba189f131054defdb122cde31ff17477951464c1691c", size = 291231 }, + { url = "https://files.pythonhosted.org/packages/b2/4f/796b0c73e9ff30a1047a7ee3390e157ab8424d4401b9f32a2624013a5b39/yarl-1.9.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:801e9264d19643548651b9db361ce3287176671fb0117f96b5ac0ee1c3530d53", size = 301079 }, + { url = "https://files.pythonhosted.org/packages/0b/a3/7774786ec6e2dca0bb38b286f12a11af97957546e5fbcce71752a8d2cf07/yarl-1.9.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e516dc8baf7b380e6c1c26792610230f37147bb754d6426462ab115a02944385", size = 295202 }, + { url = "https://files.pythonhosted.org/packages/70/a9/ef6d69ce9a4e82080290bcb6db735bb8a6d6db92f2bbb92b6951bde97e7c/yarl-1.9.4-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:7d5aaac37d19b2904bb9dfe12cdb08c8443e7ba7d2852894ad448d4b8f442863", size = 311784 }, + { url = "https://files.pythonhosted.org/packages/44/ae/fdbc9965ef69e650c3b5b04d60badef90ff0cde21a30770f0700e148b12f/yarl-1.9.4-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:54beabb809ffcacbd9d28ac57b0db46e42a6e341a030293fb3185c409e626b8b", size = 311134 }, + { url = "https://files.pythonhosted.org/packages/cc/2a/abbaf1460becba856e163f2a1274f5d34b1969d476da8e68a8fc2aeb5661/yarl-1.9.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bac8d525a8dbc2a1507ec731d2867025d11ceadcb4dd421423a5d42c56818541", size = 304584 }, + { url = "https://files.pythonhosted.org/packages/a3/73/dd7ced8d9731bd2ef4fdff5da23ce2f772ca04e8ddee886a6b15248d9e65/yarl-1.9.4-cp310-cp310-win32.whl", hash = "sha256:7855426dfbddac81896b6e533ebefc0af2f132d4a47340cee6d22cac7190022d", size = 70175 }, + { url = "https://files.pythonhosted.org/packages/31/d4/2085272a5ccf87af74d4e02787c242c5d60367840a4637b2835565264302/yarl-1.9.4-cp310-cp310-win_amd64.whl", hash = "sha256:848cd2a1df56ddbffeb375535fb62c9d1645dde33ca4d51341378b3f5954429b", size = 76402 }, + { url = "https://files.pythonhosted.org/packages/12/65/4c7f3676209a569405c9f0f492df2bc3a387c253f5d906e36944fdd12277/yarl-1.9.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:35a2b9396879ce32754bd457d31a51ff0a9d426fd9e0e3c33394bf4b9036b099", size = 132836 }, + { url = "https://files.pythonhosted.org/packages/3b/c5/81e3dbf5271ab1510860d2ae7a704ef43f93f7cb9326bf7ebb1949a7260b/yarl-1.9.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4c7d56b293cc071e82532f70adcbd8b61909eec973ae9d2d1f9b233f3d943f2c", size = 83215 }, + { url = "https://files.pythonhosted.org/packages/20/3d/7dabf580dfc0b588e48830486b488858122b10a61f33325e0d7cf1d6180b/yarl-1.9.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d8a1c6c0be645c745a081c192e747c5de06e944a0d21245f4cf7c05e457c36e0", size = 81237 }, + { url = "https://files.pythonhosted.org/packages/38/45/7c669999f5d350f4f8f74369b94e0f6705918eee18e38610bfe44af93d4f/yarl-1.9.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4b3c1ffe10069f655ea2d731808e76e0f452fc6c749bea04781daf18e6039525", size = 324181 }, + { url = "https://files.pythonhosted.org/packages/50/49/aa04effe2876cced8867bf9d89b620acf02b733c62adfe22a8218c35d70b/yarl-1.9.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:549d19c84c55d11687ddbd47eeb348a89df9cb30e1993f1b128f4685cd0ebbf8", size = 339412 }, + { url = "https://files.pythonhosted.org/packages/7d/95/4310771fb9c71599d8466f43347ac18fafd501621e65b93f4f4f16899b1d/yarl-1.9.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7409f968456111140c1c95301cadf071bd30a81cbd7ab829169fb9e3d72eae9", size = 337973 }, + { url = "https://files.pythonhosted.org/packages/9f/ea/94ad7d8299df89844e666e4aa8a0e9b88e02416cd6a7dd97969e9eae5212/yarl-1.9.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e23a6d84d9d1738dbc6e38167776107e63307dfc8ad108e580548d1f2c587f42", size = 328126 }, + { url = "https://files.pythonhosted.org/packages/6d/be/9d4885e2725f5860833547c9e4934b6e0f44a355b24ffc37957264761e3e/yarl-1.9.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d8b889777de69897406c9fb0b76cdf2fd0f31267861ae7501d93003d55f54fbe", size = 316677 }, + { url = "https://files.pythonhosted.org/packages/4a/70/5c744d67cad3d093e233cb02f37f2830cb89abfcbb7ad5b5af00ff21d14d/yarl-1.9.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:03caa9507d3d3c83bca08650678e25364e1843b484f19986a527630ca376ecce", size = 324243 }, + { url = "https://files.pythonhosted.org/packages/c2/80/8b38d8fed958ac37afb8b81a54bf4f767b107e2c2004dab165edb58fc51b/yarl-1.9.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:4e9035df8d0880b2f1c7f5031f33f69e071dfe72ee9310cfc76f7b605958ceb9", size = 318099 }, + { url = "https://files.pythonhosted.org/packages/59/50/715bbc7bda65291f9295e757f67854206f4d8be9746d39187724919ac14d/yarl-1.9.4-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:c0ec0ed476f77db9fb29bca17f0a8fcc7bc97ad4c6c1d8959c507decb22e8572", size = 334924 }, + { url = "https://files.pythonhosted.org/packages/a8/af/ca9962488027576d7162878a1864cbb1275d298af986ce96bdfd4807d7b2/yarl-1.9.4-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:ee04010f26d5102399bd17f8df8bc38dc7ccd7701dc77f4a68c5b8d733406958", size = 335060 }, + { url = "https://files.pythonhosted.org/packages/28/c7/249a3a903d500ca7369eb542e2847a14f12f249638dcc10371db50cd17ff/yarl-1.9.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:49a180c2e0743d5d6e0b4d1a9e5f633c62eca3f8a86ba5dd3c471060e352ca98", size = 326689 }, + { url = "https://files.pythonhosted.org/packages/ec/0c/f02dd0b875a7a460f95dc7cf18983ed43c693283d6ab92e0ad71b9e0de8f/yarl-1.9.4-cp311-cp311-win32.whl", hash = "sha256:81eb57278deb6098a5b62e88ad8281b2ba09f2f1147c4767522353eaa6260b31", size = 70407 }, + { url = "https://files.pythonhosted.org/packages/27/41/945ae9a80590e4fb0be166863c6e63d75e4b35789fa3a61ff1dbdcdc220f/yarl-1.9.4-cp311-cp311-win_amd64.whl", hash = "sha256:d1d2532b340b692880261c15aee4dc94dd22ca5d61b9db9a8a361953d36410b1", size = 76719 }, + { url = "https://files.pythonhosted.org/packages/7b/cd/a921122610dedfed94e494af18e85aae23e93274c00ca464cfc591c8f4fb/yarl-1.9.4-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0d2454f0aef65ea81037759be5ca9947539667eecebca092733b2eb43c965a81", size = 129561 }, + { url = "https://files.pythonhosted.org/packages/7c/a0/887c93020c788f249c24eaab288c46e5fed4d2846080eaf28ed3afc36e8d/yarl-1.9.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:44d8ffbb9c06e5a7f529f38f53eda23e50d1ed33c6c869e01481d3fafa6b8142", size = 81595 }, + { url = "https://files.pythonhosted.org/packages/54/99/ed3c92c38f421ba6e36caf6aa91c34118771d252dce800118fa2f44d7962/yarl-1.9.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:aaaea1e536f98754a6e5c56091baa1b6ce2f2700cc4a00b0d49eca8dea471074", size = 79400 }, + { url = "https://files.pythonhosted.org/packages/ea/45/65801be625ef939acc8b714cf86d4a198c0646e80dc8970359d080c47204/yarl-1.9.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3777ce5536d17989c91696db1d459574e9a9bd37660ea7ee4d3344579bb6f129", size = 317397 }, + { url = "https://files.pythonhosted.org/packages/06/91/9696601a8ba674c8f0c15035cc9e94ca31f541330364adcfd5a399f598bf/yarl-1.9.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fc5fc1eeb029757349ad26bbc5880557389a03fa6ada41703db5e068881e5f2", size = 327246 }, + { url = "https://files.pythonhosted.org/packages/da/3e/bf25177b3618889bf067aacf01ef54e910cd569d14e2f84f5e7bec23bb82/yarl-1.9.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ea65804b5dc88dacd4a40279af0cdadcfe74b3e5b4c897aa0d81cf86927fee78", size = 327321 }, + { url = "https://files.pythonhosted.org/packages/28/1c/bdb3411467b805737dd2720b85fd082e49f59bf0cc12dc1dfcc80ab3d274/yarl-1.9.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa102d6d280a5455ad6a0f9e6d769989638718e938a6a0a2ff3f4a7ff8c62cc4", size = 322424 }, + { url = "https://files.pythonhosted.org/packages/41/e9/53bc89f039df2824a524a2aa03ee0bfb8f0585b08949e7521f5eab607085/yarl-1.9.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09efe4615ada057ba2d30df871d2f668af661e971dfeedf0c159927d48bbeff0", size = 310868 }, + { url = "https://files.pythonhosted.org/packages/79/cd/a78c3b0304a4a970b5ae3993f4f5f649443bc8bfa5622f244aed44c810ed/yarl-1.9.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:008d3e808d03ef28542372d01057fd09168419cdc8f848efe2804f894ae03e51", size = 323452 }, + { url = "https://files.pythonhosted.org/packages/2e/5e/1c78eb05ae0efae08498fd7ab939435a29f12c7f161732e7fe327e5b8ca1/yarl-1.9.4-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:6f5cb257bc2ec58f437da2b37a8cd48f666db96d47b8a3115c29f316313654ff", size = 313554 }, + { url = "https://files.pythonhosted.org/packages/04/e0/0029563a8434472697aebb269fdd2ffc8a19e3840add1d5fa169ec7c56e3/yarl-1.9.4-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:992f18e0ea248ee03b5a6e8b3b4738850ae7dbb172cc41c966462801cbf62cf7", size = 331029 }, + { url = "https://files.pythonhosted.org/packages/de/1b/7e6b1ad42ccc0ed059066a7ae2b6fd4bce67795d109a99ccce52e9824e96/yarl-1.9.4-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:0e9d124c191d5b881060a9e5060627694c3bdd1fe24c5eecc8d5d7d0eb6faabc", size = 333839 }, + { url = "https://files.pythonhosted.org/packages/85/8a/c364d6e2eeb4e128a5ee9a346fc3a09aa76739c0c4e2a7305989b54f174b/yarl-1.9.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:3986b6f41ad22988e53d5778f91855dc0399b043fc8946d4f2e68af22ee9ff10", size = 328251 }, + { url = "https://files.pythonhosted.org/packages/ec/9d/0da94b33b9fb89041e10f95a14a55b0fef36c60b6a1d5ff85a0c2ecb1a97/yarl-1.9.4-cp312-cp312-win32.whl", hash = "sha256:4b21516d181cd77ebd06ce160ef8cc2a5e9ad35fb1c5930882baff5ac865eee7", size = 70195 }, + { url = "https://files.pythonhosted.org/packages/c5/f4/2fdc5a11503bc61818243653d836061c9ce0370e2dd9ac5917258a007675/yarl-1.9.4-cp312-cp312-win_amd64.whl", hash = "sha256:a9bd00dc3bc395a662900f33f74feb3e757429e545d831eef5bb280252631984", size = 76397 }, + { url = "https://files.pythonhosted.org/packages/34/e7/9d51111429691ffdfb6ce526b2dd2b66fc9d2746df053ecb4062a3969f65/yarl-1.9.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:604f31d97fa493083ea21bd9b92c419012531c4e17ea6da0f65cacdcf5d0bd27", size = 134018 }, + { url = "https://files.pythonhosted.org/packages/8f/0f/9fa6f044b04267d22ec29df23936ffd4bf4572ccecd889c6b2b1761c2c5c/yarl-1.9.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8a854227cf581330ffa2c4824d96e52ee621dd571078a252c25e3a3b3d94a1b1", size = 83661 }, + { url = "https://files.pythonhosted.org/packages/f9/b0/c213007560d001c9908649ff4b1dd11d1ff388235e773828e19d4637f502/yarl-1.9.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ba6f52cbc7809cd8d74604cce9c14868306ae4aa0282016b641c661f981a6e91", size = 81842 }, + { url = "https://files.pythonhosted.org/packages/c6/d6/5b30ae1d8a13104ee2ceb649f28f2db5ad42afbd5697fd0fc61528bb112c/yarl-1.9.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a6327976c7c2f4ee6816eff196e25385ccc02cb81427952414a64811037bbc8b", size = 300908 }, + { url = "https://files.pythonhosted.org/packages/d0/50/af41ddf09ff0a6a3f952288ff4ed703a1a6ecc0fbb3a6a9fe50bd33dc7cc/yarl-1.9.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8397a3817d7dcdd14bb266283cd1d6fc7264a48c186b986f32e86d86d35fbac5", size = 315681 }, + { url = "https://files.pythonhosted.org/packages/ec/17/376715c245a28f81f01e72e832d84404cffd29576fcc645ee40e3c03f5f4/yarl-1.9.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e0381b4ce23ff92f8170080c97678040fc5b08da85e9e292292aba67fdac6c34", size = 312857 }, + { url = "https://files.pythonhosted.org/packages/69/ea/d7e961ea9b1b818a43b155ee512117be6ab9ab67c1e94967b2e64126e8e4/yarl-1.9.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:23d32a2594cb5d565d358a92e151315d1b2268bc10f4610d098f96b147370136", size = 304255 }, + { url = "https://files.pythonhosted.org/packages/46/8c/02d0c2eed8c6b41de0f8f26aeefc7a285779cbb370cc7bf043285de18a75/yarl-1.9.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ddb2a5c08a4eaaba605340fdee8fc08e406c56617566d9643ad8bf6852778fc7", size = 295014 }, + { url = "https://files.pythonhosted.org/packages/c2/5c/093c1fd1d8e95b1de4feb282fa3d9c3172c6d8cb5be2cfa19ca0170f9287/yarl-1.9.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:26a1dc6285e03f3cc9e839a2da83bcbf31dcb0d004c72d0730e755b33466c30e", size = 303653 }, + { url = "https://files.pythonhosted.org/packages/96/f1/c2af401567c7b32f908195c8c1a807670f20ea62e10866b71e1d9e3860a1/yarl-1.9.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:18580f672e44ce1238b82f7fb87d727c4a131f3a9d33a5e0e82b793362bf18b4", size = 298147 }, + { url = "https://files.pythonhosted.org/packages/65/ac/b5a3cc5bf4675db5d27ec92453e562f3ee4bfef5133ed071880ac07125e9/yarl-1.9.4-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:29e0f83f37610f173eb7e7b5562dd71467993495e568e708d99e9d1944f561ec", size = 314358 }, + { url = "https://files.pythonhosted.org/packages/3d/4d/b8a950fd92a3aa5c95039731d2eda32a701ac0c789663827e67e398c166a/yarl-1.9.4-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:1f23e4fe1e8794f74b6027d7cf19dc25f8b63af1483d91d595d4a07eca1fb26c", size = 313842 }, + { url = "https://files.pythonhosted.org/packages/57/68/bfac2e16a15af85234cbd2a5c82abb33caa98e981abbfd6e0f9458b6d1a9/yarl-1.9.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:db8e58b9d79200c76956cefd14d5c90af54416ff5353c5bfd7cbe58818e26ef0", size = 306771 }, + { url = "https://files.pythonhosted.org/packages/ab/5f/156e00c7bdc6d84efc7615fe0e14b2febf8ea360a8e1307fb3ba9cc14b73/yarl-1.9.4-cp39-cp39-win32.whl", hash = "sha256:c7224cab95645c7ab53791022ae77a4509472613e839dab722a72abe5a684575", size = 70773 }, + { url = "https://files.pythonhosted.org/packages/a4/e0/5b4376d7361fe09a46dbb206131e8d85b1cb845da03c212a620d5b6b98d8/yarl-1.9.4-cp39-cp39-win_amd64.whl", hash = "sha256:824d6c50492add5da9374875ce72db7a0733b29c2394890aef23d533106e2b15", size = 76935 }, + { url = "https://files.pythonhosted.org/packages/4d/05/4d79198ae568a92159de0f89e710a8d19e3fa267b719a236582eee921f4a/yarl-1.9.4-py3-none-any.whl", hash = "sha256:928cecb0ef9d5a7946eb6ff58417ad2fe9375762382f1bf5c55e61645f2c43ad", size = 31638 }, +] + +[[package]] +name = "zipp" +version = "3.19.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d3/20/b48f58857d98dcb78f9e30ed2cfe533025e2e9827bbd36ea0a64cc00cbc1/zipp-3.19.2.tar.gz", hash = "sha256:bf1dcf6450f873a13e952a29504887c89e6de7506209e5b1bcc3460135d4de19", size = 22922 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/20/38/f5c473fe9b90c8debdd29ea68d5add0289f1936d6f923b6b9cc0b931194c/zipp-3.19.2-py3-none-any.whl", hash = "sha256:f091755f667055f2d02b32c53771a7a6c8b47e1fdbc4b72a8b9072b3eef8015c", size = 9039 }, +] diff --git a/ecosystem/transformers/old2.lock b/ecosystem/transformers/old2.lock new file mode 100644 index 000000000000..ddf70c57365a --- /dev/null +++ b/ecosystem/transformers/old2.lock @@ -0,0 +1,5683 @@ +version = 1 +requires-python = ">=3.9.0" +environment-markers = [ + "python_version >= '3.13'", + "python_version == '3.11' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version == '3.11' and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", + "python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')", + "python_version < '3.10' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.10' and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", + "python_version < '3.11' and python_version >= '3.10'", + "python_version < '3.11' and python_version >= '3.10' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", + "python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", +] + +[[package]] +name = "absl-py" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7a/8f/fc001b92ecc467cc32ab38398bd0bfb45df46e7523bf33c2ad22a505f06e/absl-py-2.1.0.tar.gz", hash = "sha256:7820790efbb316739cde8b4e19357243fc3608a152024288513dd968d7d959ff", size = 118055 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a2/ad/e0d3c824784ff121c03cc031f944bc7e139a8f1870ffd2845cc2dd76f6c4/absl_py-2.1.0-py3-none-any.whl", hash = "sha256:526a04eadab8b4ee719ce68f204172ead1027549089702d99b9059f129ff1308", size = 133706 }, +] + +[[package]] +name = "accelerate" +version = "0.33.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "huggingface-hub", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "psutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "safetensors", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d4/24/5e813a41495ec7fdbc6a0f08e38c099caccf49147b8cd84053f4c3007c35/accelerate-0.33.0.tar.gz", hash = "sha256:11ba481ed6ea09191775df55ce464aeeba67a024bd0261a44b77b30fb439e26a", size = 314567 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/15/33/b6b4ad5efa8b9f4275d4ed17ff8a44c97276171341ba565fdffb0e3dc5e8/accelerate-0.33.0-py3-none-any.whl", hash = "sha256:0a7f33d60ba09afabd028d4f0856dd19c5a734b7a596d637d9dd6e3d0eadbaf3", size = 315131 }, +] + +[[package]] +name = "aiohappyeyeballs" +version = "2.3.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b7/c3/112f2f992aeb321de483754c1c5acab08c8ac3388c9c7e6f3e4f45ec1c42/aiohappyeyeballs-2.3.5.tar.gz", hash = "sha256:6fa48b9f1317254f122a07a131a86b71ca6946ca989ce6326fff54a99a920105", size = 16791 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8b/b4/0983e94060405eb51f23be493e3f5c28003f7ebc5efcd0803c1cb23ea407/aiohappyeyeballs-2.3.5-py3-none-any.whl", hash = "sha256:4d6dea59215537dbc746e93e779caea8178c866856a721c9c660d7a5a7b8be03", size = 12139 }, +] + +[[package]] +name = "aiohttp" +version = "3.10.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "aiohappyeyeballs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "aiosignal", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "async-timeout", marker = "python_version < '3.11'" }, + { name = "attrs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "frozenlist", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "multidict", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "yarl", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/45/11/36ba898823ab19e49e6bd791d75b9185eadef45a46fc00d3c669824df8a0/aiohttp-3.10.2.tar.gz", hash = "sha256:4d1f694b5d6e459352e5e925a42e05bac66655bfde44d81c59992463d2897014", size = 7520621 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/b2/2790e4029f228c833a422741319fd512f82543a43d69791e1a4e7c6d367f/aiohttp-3.10.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:95213b3d79c7e387144e9cb7b9d2809092d6ff2c044cb59033aedc612f38fb6d", size = 585899 }, + { url = "https://files.pythonhosted.org/packages/69/66/bc0a181b409485122f9c50be2777f9276a4be670947c0b771e214a42d4ea/aiohttp-3.10.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1aa005f060aff7124cfadaa2493f00a4e28ed41b232add5869e129a2e395935a", size = 396584 }, + { url = "https://files.pythonhosted.org/packages/a3/0d/aa4bb80d59e6ebb63715334c83c8cdcb9081503fd75fd798635712b3c723/aiohttp-3.10.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:eabe6bf4c199687592f5de4ccd383945f485779c7ffb62a9b9f1f8a3f9756df8", size = 387935 }, + { url = "https://files.pythonhosted.org/packages/1e/91/f5bee0f9d016deac9deb8ae6338d89fb14b456d4aad79820e1a8bf0467cc/aiohttp-3.10.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:96e010736fc16d21125c7e2dc5c350cd43c528b85085c04bf73a77be328fe944", size = 1247508 }, + { url = "https://files.pythonhosted.org/packages/0c/23/f9b9bb0d7ec1befac8c033e9c794b2bc4b1adf539c23644336f382dc6709/aiohttp-3.10.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99f81f9c1529fd8e03be4a7bd7df32d14b4f856e90ef6e9cbad3415dbfa9166c", size = 1281824 }, + { url = "https://files.pythonhosted.org/packages/9e/4e/85809d2f4c995856bc30dc516f8a83355c9154cee7e8f049b0a1b6419acd/aiohttp-3.10.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d611d1a01c25277bcdea06879afbc11472e33ce842322496b211319aa95441bb", size = 1316141 }, + { url = "https://files.pythonhosted.org/packages/12/3e/e31c68fd01f53657f10854a8595aa6739d70d1062246fd4bc8f0b8a0a0a1/aiohttp-3.10.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e00191d38156e09e8c81ef3d75c0d70d4f209b8381e71622165f22ef7da6f101", size = 1242103 }, + { url = "https://files.pythonhosted.org/packages/e5/48/274173516dee14fdc2a20a65f4f18047e747dd6b52a5955cc22efa66954c/aiohttp-3.10.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:74c091a5ded6cb81785de2d7a8ab703731f26de910dbe0f3934eabef4ae417cc", size = 1212294 }, + { url = "https://files.pythonhosted.org/packages/73/cd/539698dd7d26f80aa2ee76e1dce9a792dba057b9cd873ec929accd9fb7ce/aiohttp-3.10.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:18186a80ec5a701816adbf1d779926e1069392cf18504528d6e52e14b5920525", size = 1211343 }, + { url = "https://files.pythonhosted.org/packages/78/7a/43d0fdac260aae46984f7f253f7f0e8c0f0e0130ca5cfc8a69132e58bbe9/aiohttp-3.10.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:5a7ceb2a0d2280f23a02c64cd0afdc922079bb950400c3dd13a1ab2988428aac", size = 1210216 }, + { url = "https://files.pythonhosted.org/packages/ef/20/dc0d72c5c4f8d0c2003bdce9b240138bf9a8b72b2002f3e5f5a1d91b4f8f/aiohttp-3.10.2-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8bd7be6ff6c162a60cb8fce65ee879a684fbb63d5466aba3fa5b9288eb04aefa", size = 1265730 }, + { url = "https://files.pythonhosted.org/packages/37/04/5f00ef79b56170323e693f35f0c4d5714aea3fdbff84206fc7a84618f315/aiohttp-3.10.2-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:fae962b62944eaebff4f4fddcf1a69de919e7b967136a318533d82d93c3c6bd1", size = 1284196 }, + { url = "https://files.pythonhosted.org/packages/42/89/ed4282addb9af968a49ead85de82a8fe31b8ed5adf4832a2bfcc460e7c36/aiohttp-3.10.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:a0fde16d284efcacbe15fb0c1013f0967b6c3e379649239d783868230bf1db42", size = 1234700 }, + { url = "https://files.pythonhosted.org/packages/c2/a5/bbac491a29aabdd9c4998c4d6f163980525502ee2fc4bf528bd029ed3eaa/aiohttp-3.10.2-cp310-cp310-win32.whl", hash = "sha256:f81cd85a0e76ec7b8e2b6636fe02952d35befda4196b8c88f3cec5b4fb512839", size = 359031 }, + { url = "https://files.pythonhosted.org/packages/b2/c7/d7a34b074a7c601b515de717b0df44b948dd177480d5607ae447e4dfa98e/aiohttp-3.10.2-cp310-cp310-win_amd64.whl", hash = "sha256:54ba10eb5a3481c28282eb6afb5f709aedf53cf9c3a31875ffbdc9fc719ffd67", size = 378044 }, + { url = "https://files.pythonhosted.org/packages/07/ef/5414e99122e15e750b1f62bca15251e277449eb1c3f9ba05965d95529c99/aiohttp-3.10.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:87fab7f948e407444c2f57088286e00e2ed0003ceaf3d8f8cc0f60544ba61d91", size = 585345 }, + { url = "https://files.pythonhosted.org/packages/52/6c/570be295a63a47f7819a820d6f208fa7c7295fa17f5a3f601262a47b2721/aiohttp-3.10.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ec6ad66ed660d46503243cbec7b2b3d8ddfa020f984209b3b8ef7d98ce69c3f2", size = 396134 }, + { url = "https://files.pythonhosted.org/packages/08/67/c3b44042e80c979bb49280dd567fb59a62b8f99cc0991b255ca1feca215d/aiohttp-3.10.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a4be88807283bd96ae7b8e401abde4ca0bab597ba73b5e9a2d98f36d451e9aac", size = 387857 }, + { url = "https://files.pythonhosted.org/packages/27/f8/1a0d0c17e9aeeaa63b7d45643c4c4f05585268089abe711c475bc5e21db8/aiohttp-3.10.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:01c98041f90927c2cbd72c22a164bb816fa3010a047d264969cf82e1d4bcf8d1", size = 1325021 }, + { url = "https://files.pythonhosted.org/packages/9d/a9/e3fa5e5f6723b19f17ea68be21eee518ebfbe30444c7fc08993fc2a25ab2/aiohttp-3.10.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:54e36c67e1a9273ecafab18d6693da0fb5ac48fd48417e4548ac24a918c20998", size = 1363434 }, + { url = "https://files.pythonhosted.org/packages/8b/92/9df276fcc101e08378f706a4a58e6b6a346756a94198d6ec68329a2b8d02/aiohttp-3.10.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7de3ddb6f424af54535424082a1b5d1ae8caf8256ebd445be68c31c662354720", size = 1398791 }, + { url = "https://files.pythonhosted.org/packages/df/fe/7b4e77cd83d4e865430e9b6f923f070f66da7effe791348b56e78358b21b/aiohttp-3.10.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7dd9c7db94b4692b827ce51dcee597d61a0e4f4661162424faf65106775b40e7", size = 1311807 }, + { url = "https://files.pythonhosted.org/packages/b4/de/571f56bad7449519ede3d0e4a0a05a056ca2db309da0bae0094a91c9a92b/aiohttp-3.10.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e57e21e1167705f8482ca29cc5d02702208d8bf4aff58f766d94bcd6ead838cd", size = 1270198 }, + { url = "https://files.pythonhosted.org/packages/c4/3a/a8a8f4e47248952d691d4265ed40f85ebf345c103b95f66022cdef10f58e/aiohttp-3.10.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:a1a50e59b720060c29e2951fd9f13c01e1ea9492e5a527b92cfe04dd64453c16", size = 1290544 }, + { url = "https://files.pythonhosted.org/packages/d4/fa/c70c250c0cd8dcf96aecf783e0926db463cdcf946915406727cc3071d780/aiohttp-3.10.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:686c87782481fda5ee6ba572d912a5c26d9f98cc5c243ebd03f95222af3f1b0f", size = 1285178 }, + { url = "https://files.pythonhosted.org/packages/89/4f/f4005be64a97c532c7d5ab2304bbeda22ba9b506cebbb6eb09834796d088/aiohttp-3.10.2-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:dafb4abb257c0ed56dc36f4e928a7341b34b1379bd87e5a15ce5d883c2c90574", size = 1340738 }, + { url = "https://files.pythonhosted.org/packages/79/f2/9f3901c4c94f9218ab3fe2231294f58cb695a3404554489c102db8376dd3/aiohttp-3.10.2-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:494a6f77560e02bd7d1ab579fdf8192390567fc96a603f21370f6e63690b7f3d", size = 1360510 }, + { url = "https://files.pythonhosted.org/packages/54/5f/956909f87d2ede49e1fc422e811c8243d5b487d423583301a14788292d89/aiohttp-3.10.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6fe8503b1b917508cc68bf44dae28823ac05e9f091021e0c41f806ebbb23f92f", size = 1319760 }, + { url = "https://files.pythonhosted.org/packages/ba/cc/560d80417a8d144d5ed7b5ce92420973b68462e99245d4e2c85f68fdd8d6/aiohttp-3.10.2-cp311-cp311-win32.whl", hash = "sha256:4ddb43d06ce786221c0dfd3c91b4892c318eaa36b903f7c4278e7e2fa0dd5102", size = 358145 }, + { url = "https://files.pythonhosted.org/packages/c1/0f/b4fa4717a7c9307e246b4d886c47cc79650fadd1c4debb0086fefd85b25c/aiohttp-3.10.2-cp311-cp311-win_amd64.whl", hash = "sha256:ca2f5abcb0a9a47e56bac173c01e9f6c6e7f27534d91451c5f22e6a35a5a2093", size = 378023 }, + { url = "https://files.pythonhosted.org/packages/ef/c3/4c11c493c69e7cc802e6aa95271b145ff17a427026b7b5cc8af091f1ce9d/aiohttp-3.10.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:14eb6b17f6246959fb0b035d4f4ae52caa870c4edfb6170aad14c0de5bfbf478", size = 582359 }, + { url = "https://files.pythonhosted.org/packages/2d/41/b0aefa65f9ed474ea1c9146109be67b11eca7a45b7f39b3ea059cf7428a2/aiohttp-3.10.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:465e445ec348d4e4bd349edd8b22db75f025da9d7b6dc1369c48e7935b85581e", size = 392955 }, + { url = "https://files.pythonhosted.org/packages/ed/f6/a605abb080c136291306e2253622eef25b5da140e03d9637f5a91f413a8f/aiohttp-3.10.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:341f8ece0276a828d95b70cd265d20e257f5132b46bf77d759d7f4e0443f2906", size = 387994 }, + { url = "https://files.pythonhosted.org/packages/c7/a4/44dfa668b7292868db9840b2c9d171576553a874ff65bd2386c04ba8b694/aiohttp-3.10.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c01fbb87b5426381cd9418b3ddcf4fc107e296fa2d3446c18ce6c76642f340a3", size = 1331633 }, + { url = "https://files.pythonhosted.org/packages/07/ce/4187db914f041492069917fc21c0bffa9264b77003b58e91400369834e6b/aiohttp-3.10.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2c474af073e1a6763e1c5522bbb2d85ff8318197e4c6c919b8d7886e16213345", size = 1371028 }, + { url = "https://files.pythonhosted.org/packages/dc/0e/9686ffc6fc9145cfe9483e7d518b7f1d867d65437dbf0615f28c43fbb20d/aiohttp-3.10.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d9076810a5621236e29b2204e67a68e1fe317c8727ee4c9abbfbb1083b442c38", size = 1413303 }, + { url = "https://files.pythonhosted.org/packages/0b/07/2b68b23ed85f4c73f12025c446127f6f55e5d9ad848bb501d6cf333cfd6c/aiohttp-3.10.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e8f515d6859e673940e08de3922b9c4a2249653b0ac181169313bd6e4b1978ac", size = 1326993 }, + { url = "https://files.pythonhosted.org/packages/99/a6/099a861d52b22a49b22e7106d750bcbade5e12fcda2e69170f6d5fd624c4/aiohttp-3.10.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:655e583afc639bef06f3b2446972c1726007a21003cd0ef57116a123e44601bc", size = 1279018 }, + { url = "https://files.pythonhosted.org/packages/ed/f3/a5203c907dc48345d9124c3e2149a322aeb3960184bf7d65dc58dfd55ca7/aiohttp-3.10.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8da9449a575133828cc99985536552ea2dcd690e848f9d41b48d8853a149a959", size = 1291552 }, + { url = "https://files.pythonhosted.org/packages/1e/ca/200cd6984acf9d4293c7b2588dc59d92c2a1b5055b3b3d55a015e215ead0/aiohttp-3.10.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:19073d57d0feb1865d12361e2a1f5a49cb764bf81a4024a3b608ab521568093a", size = 1299884 }, + { url = "https://files.pythonhosted.org/packages/f5/25/770b29e1522a71bc4a50f6268a4abc699529c88e442a593061028750cdff/aiohttp-3.10.2-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:c8e98e1845805f184d91fda6f9ab93d7c7b0dddf1c07e0255924bfdb151a8d05", size = 1338160 }, + { url = "https://files.pythonhosted.org/packages/21/79/a3f13982c363ba67f2693088717fce94a24a9c0c5d56e42df28a5ce9e3da/aiohttp-3.10.2-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:377220a5efde6f9497c5b74649b8c261d3cce8a84cb661be2ed8099a2196400a", size = 1365885 }, + { url = "https://files.pythonhosted.org/packages/7b/e8/da4dcf56429f9b29faf615378a4d7550140208cf755eb6f755f24113af59/aiohttp-3.10.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:92f7f4a4dc9cdb5980973a74d43cdbb16286dacf8d1896b6c3023b8ba8436f8e", size = 1328351 }, + { url = "https://files.pythonhosted.org/packages/bd/00/11eaebbcb406eb19dbf64e6683db53b495ee15206b4b9bc58587797b9ef4/aiohttp-3.10.2-cp312-cp312-win32.whl", hash = "sha256:9bb2834a6f11d65374ce97d366d6311a9155ef92c4f0cee543b2155d06dc921f", size = 355846 }, + { url = "https://files.pythonhosted.org/packages/77/e2/aaacbc16809ee50f71e1f2856a78f64307d9b799d36878eaf77aa053053d/aiohttp-3.10.2-cp312-cp312-win_amd64.whl", hash = "sha256:518dc3cb37365255708283d1c1c54485bbacccd84f0a0fb87ed8917ba45eda5b", size = 376527 }, + { url = "https://files.pythonhosted.org/packages/2d/1c/8f1be7e71eb5196111e7f6fa6a7595e62386b26331dd1054384744f0094e/aiohttp-3.10.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:9dfc906d656e14004c5bc672399c1cccc10db38df2b62a13fb2b6e165a81c316", size = 587596 }, + { url = "https://files.pythonhosted.org/packages/7a/a5/6f7ed32cce8ed886c747e0e3376bfc0d5ede1637b22d557d9449846d8df7/aiohttp-3.10.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:91b10208b222ddf655c3a3d5b727879d7163db12b634492df41a9182a76edaae", size = 397456 }, + { url = "https://files.pythonhosted.org/packages/87/6a/9874a7a782f18818864e9d5849629608117eb43b3a36d03a5baef546114c/aiohttp-3.10.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9fd16b5e1a7bdd14668cd6bde60a2a29b49147a535c74f50d8177d11b38433a7", size = 388746 }, + { url = "https://files.pythonhosted.org/packages/e3/bb/c559899cc8c32db8aa5b5fbf78a26693326f2a40f26d46086f30d6a5d3a8/aiohttp-3.10.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b2bfdda4971bd79201f59adbad24ec2728875237e1c83bba5221284dbbf57bda", size = 1252747 }, + { url = "https://files.pythonhosted.org/packages/fd/f2/037fc4254f0f7db223903cf04f3ba2a2368ecc4496cca873a2dbd4b1526b/aiohttp-3.10.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:69d73f869cf29e8a373127fc378014e2b17bcfbe8d89134bc6fb06a2f67f3cb3", size = 1288819 }, + { url = "https://files.pythonhosted.org/packages/61/82/0ad6c41db2c57b3a090fdb2a3c7e2f4c18762f1312cfdf580ddf080cdb8b/aiohttp-3.10.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:df59f8486507c421c0620a2c3dce81fbf1d54018dc20ff4fecdb2c106d6e6abc", size = 1323910 }, + { url = "https://files.pythonhosted.org/packages/85/40/28ec1238a6a72c0dc5882c5c2d3521e1aa7510220b418438cc8b0eac74c3/aiohttp-3.10.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0df930015db36b460aa9badbf35eccbc383f00d52d4b6f3de2ccb57d064a6ade", size = 1245241 }, + { url = "https://files.pythonhosted.org/packages/89/ab/f72aee8a1193f0ee2f51bb27c7e003769801e09b1aec0495f224f05a34fb/aiohttp-3.10.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:562b1153ab7f766ee6b8b357ec777a302770ad017cf18505d34f1c088fccc448", size = 1215200 }, + { url = "https://files.pythonhosted.org/packages/c1/73/2001b2f8a7392f3889abae8df2d1ae0956c21d2542e4e7c942b1e18f1c6d/aiohttp-3.10.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d984db6d855de58e0fde1ef908d48fe9a634cadb3cf715962722b4da1c40619d", size = 1215657 }, + { url = "https://files.pythonhosted.org/packages/e4/2e/ca2f5954637e37e6ab434db655a35c60ec673f39f37511dda270c51235aa/aiohttp-3.10.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:14dc3fcb0d877911d775d511eb617a486a8c48afca0a887276e63db04d3ee920", size = 1215079 }, + { url = "https://files.pythonhosted.org/packages/ed/a5/6b01d5f34e640a53d0a777a2f5a0b9e9e87bdab17c24c7a7fd7d5bbfd87c/aiohttp-3.10.2-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:b52a27a5c97275e254704e1049f4b96a81e67d6205f52fa37a4777d55b0e98ef", size = 1270209 }, + { url = "https://files.pythonhosted.org/packages/2d/7d/97a692de7670adb03d24cccabbf28ae83ad173a10e54e6010d146d41671a/aiohttp-3.10.2-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:cd33d9de8cfd006a0d0fe85f49b4183c57e91d18ffb7e9004ce855e81928f704", size = 1286899 }, + { url = "https://files.pythonhosted.org/packages/1f/bb/96aa4f044fc080c56f92000f39816511b6fe2ec1071be5acba8e781452fc/aiohttp-3.10.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1238fc979160bc03a92fff9ad021375ff1c8799c6aacb0d8ea1b357ea40932bb", size = 1237200 }, + { url = "https://files.pythonhosted.org/packages/26/15/d6c340ad979224dc6ad9ca7881888738e1781ae75c8116f4f6ae8fe579e4/aiohttp-3.10.2-cp39-cp39-win32.whl", hash = "sha256:e2f43d238eae4f0b04f58d4c0df4615697d4ca3e9f9b1963d49555a94f0f5a04", size = 359634 }, + { url = "https://files.pythonhosted.org/packages/62/9c/5587dbb5250ebecbe3a6258c72910f731058a7058672803c40b28286b119/aiohttp-3.10.2-cp39-cp39-win_amd64.whl", hash = "sha256:947847f07a8f81d7b39b2d0202fd73e61962ebe17ac2d8566f260679e467da7b", size = 378656 }, +] + +[[package]] +name = "aiosignal" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "frozenlist", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ae/67/0952ed97a9793b4958e5736f6d2b346b414a2cd63e82d05940032f45b32f/aiosignal-1.3.1.tar.gz", hash = "sha256:54cd96e15e1649b75d6c87526a6ff0b6c1b0dd3459f43d9ca11d48c339b68cfc", size = 19422 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/76/ac/a7305707cb852b7e16ff80eaf5692309bde30e2b1100a1fcacdc8f731d97/aiosignal-1.3.1-py3-none-any.whl", hash = "sha256:f8376fb07dd1e86a584e4fcdec80b36b7f81aac666ebc724e2c090300dd83b17", size = 7617 }, +] + +[[package]] +name = "alembic" +version = "1.13.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mako", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sqlalchemy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/66/e2/efa88e86029cada2da5941ec664d50d9a3b2a91f5066405c6f90e5016c16/alembic-1.13.2.tar.gz", hash = "sha256:1ff0ae32975f4fd96028c39ed9bb3c867fe3af956bd7bb37343b54c9fe7445ef", size = 1206463 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/df/ed/c884465c33c25451e4a5cd4acad154c29e5341e3214e220e7f3478aa4b0d/alembic-1.13.2-py3-none-any.whl", hash = "sha256:6b8733129a6224a9a711e17c99b08462dbf7cc9670ba8f2e2ae9af860ceb1953", size = 232990 }, +] + +[[package]] +name = "annotated-types" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ee/67/531ea369ba64dcff5ec9c3402f9f51bf748cec26dde048a2f973a4eea7f5/annotated_types-0.7.0.tar.gz", hash = "sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89", size = 16081 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl", hash = "sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53", size = 13643 }, +] + +[[package]] +name = "anyio" +version = "4.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "exceptiongroup", marker = "python_version < '3.11'" }, + { name = "idna", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sniffio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version < '3.11'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e6/e3/c4c8d473d6780ef1853d630d581f70d655b4f8d7553c6997958c283039a2/anyio-4.4.0.tar.gz", hash = "sha256:5aadc6a1bbb7cdb0bede386cac5e2940f5e2ff3aa20277e991cf028e0585ce94", size = 163930 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/a2/10639a79341f6c019dedc95bd48a4928eed9f1d1197f4c04f546fc7ae0ff/anyio-4.4.0-py3-none-any.whl", hash = "sha256:c1b2d8f46a8a812513012e1107cb0e68c17159a7a594208005a57dc776e1bdc7", size = 86780 }, +] + +[[package]] +name = "apscheduler" +version = "3.10.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pytz", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tzlocal", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5e/34/5dcb368cf89f93132d9a31bd3747962a9dc874480e54333b0c09fa7d56ac/APScheduler-3.10.4.tar.gz", hash = "sha256:e6df071b27d9be898e486bc7940a7be50b4af2e9da7c08f0744a96d4bd4cef4a", size = 100832 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/13/b5/7af0cb920a476dccd612fbc9a21a3745fb29b1fcd74636078db8f7ba294c/APScheduler-3.10.4-py3-none-any.whl", hash = "sha256:fb91e8a768632a4756a585f79ec834e0e27aad5860bac7eaa523d9ccefd87661", size = 59303 }, +] + +[[package]] +name = "arrow" +version = "1.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "python-dateutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "types-python-dateutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/2e/00/0f6e8fcdb23ea632c866620cc872729ff43ed91d284c866b515c6342b173/arrow-1.3.0.tar.gz", hash = "sha256:d4540617648cb5f895730f1ad8c82a65f2dad0166f57b75f3ca54759c4d67a85", size = 131960 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f8/ed/e97229a566617f2ae958a6b13e7cc0f585470eac730a73e9e82c32a3cdd2/arrow-1.3.0-py3-none-any.whl", hash = "sha256:c728b120ebc00eb84e01882a6f5e7927a53960aa990ce7dd2b10f39005a67f80", size = 66419 }, +] + +[[package]] +name = "astunparse" +version = "1.6.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "wheel", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f3/af/4182184d3c338792894f34a62672919db7ca008c89abee9b564dd34d8029/astunparse-1.6.3.tar.gz", hash = "sha256:5ad93a8456f0d084c3456d059fd9a92cce667963232cbf763eac3bc5b7940872", size = 18290 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2b/03/13dde6512ad7b4557eb792fbcf0c653af6076b81e5941d36ec61f7ce6028/astunparse-1.6.3-py2.py3-none-any.whl", hash = "sha256:c2652417f2c8b5bb325c885ae329bdf3f86424075c4fd1a128674bc6fba4b8e8", size = 12732 }, +] + +[[package]] +name = "async-timeout" +version = "4.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/87/d6/21b30a550dafea84b1b8eee21b5e23fa16d010ae006011221f33dcd8d7f8/async-timeout-4.0.3.tar.gz", hash = "sha256:4640d96be84d82d02ed59ea2b7105a0f7b33abe8703703cd0ab0bf87c427522f", size = 8345 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/fa/e01228c2938de91d47b307831c62ab9e4001e747789d0b05baf779a6488c/async_timeout-4.0.3-py3-none-any.whl", hash = "sha256:7405140ff1230c310e51dc27b3145b9092d659ce68ff733fb0cefe3ee42be028", size = 5721 }, +] + +[[package]] +name = "attrs" +version = "23.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e3/fc/f800d51204003fa8ae392c4e8278f256206e7a919b708eef054f5f4b650d/attrs-23.2.0.tar.gz", hash = "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30", size = 780820 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e0/44/827b2a91a5816512fcaf3cc4ebc465ccd5d598c45cefa6703fcf4a79018f/attrs-23.2.0-py3-none-any.whl", hash = "sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1", size = 60752 }, +] + +[[package]] +name = "audioread" +version = "3.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/db/d2/87016ca9f083acadffb2d8da59bfa3253e4da7eeb9f71fb8e7708dc97ecd/audioread-3.0.1.tar.gz", hash = "sha256:ac5460a5498c48bdf2e8e767402583a4dcd13f4414d286f42ce4379e8b35066d", size = 116513 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/57/8d/30aa32745af16af0a9a650115fbe81bde7c610ed5c21b381fca0196f3a7f/audioread-3.0.1-py3-none-any.whl", hash = "sha256:4cdce70b8adc0da0a3c9e0d85fb10b3ace30fbdf8d1670fd443929b61d117c33", size = 23492 }, +] + +[[package]] +name = "av" +version = "9.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/56/e9/8928607b46177d907deeb8a10f40156afab401b7120e63662f392074475b/av-9.2.0.tar.gz", hash = "sha256:f2a7c226724d7f7745b376b459c500d9d17bd8d0473b7ea6bf8ddb4f7957c69d", size = 2391613 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3c/44/b73cfa0e13c4cf9f8cc2ec55012417e62023e9076c8261c588fbface11fc/av-9.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:29373aa86a055a07eebb14d253cb202033f63ba98c5a4b0233d6d4c07fc7a292", size = 24333176 }, + { url = "https://files.pythonhosted.org/packages/3c/18/7653aa99623e27c78b3d52b9b34b08555eccc4b30bdea728eeca4a4ce9ff/av-9.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:343b11d9b03e71da29f3ce56bc0a6c2d40aba448225dcf8296ab53c10527fff0", size = 20087989 }, + { url = "https://files.pythonhosted.org/packages/21/e5/724ac61e407b88d289d9a1dd4a53e229b8ae147147b882556cb9a833521a/av-9.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ea180bfd89bc0a9e392c32de204cf4e51648aefe2f375d430ce39c04e3ed625", size = 27521265 }, + { url = "https://files.pythonhosted.org/packages/4f/69/1ef57d9e33764f3686c2fe1f8ce03fa9b72ecb38807946500880bd0bcec2/av-9.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b07b91f534ee7a096068149404c67c3c0e5b4c373580b016151de0fcb440cd3f", size = 27493874 }, + { url = "https://files.pythonhosted.org/packages/a8/98/07775747e406eaad457328fe38ddf8a9d169e171e08eb4dace2b6874a299/av-9.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9983bc45dab65d2416d2f8a63785caa076a751590823fc8c199617d0dbad390", size = 28762961 }, + { url = "https://files.pythonhosted.org/packages/79/43/ef9c554e3cf9ec007ee15bd0f547c74705f8400d239f2006a21487e58b53/av-9.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:0340cc68f3d222bc9438b4fde12e3d68f949eeb5de9e090db182f2cb06e23d53", size = 24396821 }, + { url = "https://files.pythonhosted.org/packages/7d/63/22b40835cd8044d67e939094339b8036d7247f84cb88726a086182488e80/av-9.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:ba3d9e3fe23fd8a14e810f291386225acbdef1c7e5376cc10c8e85c2d4280771", size = 24331156 }, + { url = "https://files.pythonhosted.org/packages/5e/95/1ed89449948fb8afed91ce3ab416ecbdfb3866e4a7c79e73457057f6db3c/av-9.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b6be9388618af978304b56d1cf6b74c811db4f220dd320da5bd79640aa443358", size = 20086261 }, + { url = "https://files.pythonhosted.org/packages/7f/62/1bdf8d3a77128c0c333edfb521ed397e373b9f580978d0c0477f52639b18/av-9.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e59e4ab0e8832bf87707e5024283b3a24cc01784604f0b0e96fbfbadbd8d9fc0", size = 27457899 }, + { url = "https://files.pythonhosted.org/packages/d6/ea/9341315ce3cfe07f1dd5e7591f08d6ffacbab7c3692c154a704f6b2fdc37/av-9.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9b0f124e335561cf4de6b7cdc461283c5eba5f05cccb1a5e1b8ceb1cd15393d8", size = 27430190 }, + { url = "https://files.pythonhosted.org/packages/ac/45/887aec42446923081693a292f1bf22879e3a02d7083e3fb0cd2e47e4538d/av-9.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:49481c2d5bc296f451ccd3f93b1cb692d7f58a804b794b99c8b7743e058cae71", size = 28701235 }, + { url = "https://files.pythonhosted.org/packages/21/18/43633a745ade96c45fa59e689c960476d12d7027ae3e9f6dd389e46b2438/av-9.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:1cbf031f650f89943023eef80e8b2c99588bf9ba26ffef8b3b54bef7102ea3dc", size = 24395186 }, + { url = "https://files.pythonhosted.org/packages/08/0f/e5ed45543d788a3c5c6cab1ee4bd452baf66be42bd929c4b705437589208/av-9.2.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:ab90aa3ac2cbdf1f22087fc0fa439f643e96979f169ecfa1d496e114c3c3a8b3", size = 23948181 }, + { url = "https://files.pythonhosted.org/packages/f6/86/3c83412ed7fbdbd613ba19f9b2c85b025692dbd160eb280abd8a0ed0dea0/av-9.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:24dac414eafcc20423f2ec7e873706489433648f0e9af08a537996880aa55979", size = 21254363 }, + { url = "https://files.pythonhosted.org/packages/7f/8a/b5cb01b68bb7c09747015b02c5243b71f5d4454d1f25053a6e8800954f6a/av-9.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:17a7b6617d4201214f3dd5f628041b4fe56f4244dcd48399ed8d0cf324ca24d1", size = 21545764 }, + { url = "https://files.pythonhosted.org/packages/a1/e1/16f4a84419bbcb57860adc54c8885a3ab5af33d19be6f43d92182e5c8478/av-9.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8671fa01648ce7aac76e71816c2421ddb1939bf706e2e14684608ab1ce9dbbbb", size = 22486864 }, + { url = "https://files.pythonhosted.org/packages/94/2d/8daf20cc6238ca4fe7f31dab473fbe1b5619dea94fc5a12ebbcb14a8dab9/av-9.2.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7a5dc26b9df656bed5e1bdeaf8bcc4ff4a2e009ee90b3b3024a86cf8476b2cbf", size = 35786899 }, +] + +[[package]] +name = "babel" +version = "2.16.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2a/74/f1bc80f23eeba13393b7222b11d95ca3af2c1e28edca18af487137eefed9/babel-2.16.0.tar.gz", hash = "sha256:d1f3554ca26605fe173f3de0c65f750f5a42f924499bf134de6423582298e316", size = 9348104 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ed/20/bc79bc575ba2e2a7f70e8a1155618bb1301eaa5132a8271373a6903f73f8/babel-2.16.0-py3-none-any.whl", hash = "sha256:368b5b98b37c06b7daf6696391c3240c938b37767d4584413e8438c5c435fa8b", size = 9587599 }, +] + +[[package]] +name = "backoff" +version = "1.11.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/27/d2/9d2d0f0d6bbe17628b031040b1dadaee616286267e660ad5286a5ed657da/backoff-1.11.1.tar.gz", hash = "sha256:ccb962a2378418c667b3c979b504fdeb7d9e0d29c0579e3b13b86467177728cb", size = 14883 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d7/dd/88df7d5b2077825d6757a674123062c6e7545cc61556b42739e8757b7b65/backoff-1.11.1-py2.py3-none-any.whl", hash = "sha256:61928f8fa48d52e4faa81875eecf308eccfb1016b018bb6bd21e05b5d90a96c5", size = 13141 }, +] + +[[package]] +name = "beautifulsoup4" +version = "4.12.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "soupsieve", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b3/ca/824b1195773ce6166d388573fc106ce56d4a805bd7427b624e063596ec58/beautifulsoup4-4.12.3.tar.gz", hash = "sha256:74e3d1928edc070d21748185c46e3fb33490f22f52a3addee9aee0f4f7781051", size = 581181 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b1/fe/e8c672695b37eecc5cbf43e1d0638d88d66ba3a44c4d321c796f4e59167f/beautifulsoup4-4.12.3-py3-none-any.whl", hash = "sha256:b80878c9f40111313e55da8ba20bdba06d8fa3969fc68304167741bbf9e082ed", size = 147925 }, +] + +[[package]] +name = "binaryornot" +version = "0.4.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "chardet", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a7/fe/7ebfec74d49f97fc55cd38240c7a7d08134002b1e14be8c3897c0dd5e49b/binaryornot-0.4.4.tar.gz", hash = "sha256:359501dfc9d40632edc9fac890e19542db1a287bbcfa58175b66658392018061", size = 371054 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/24/7e/f7b6f453e6481d1e233540262ccbfcf89adcd43606f44a028d7f5fae5eb2/binaryornot-0.4.4-py2.py3-none-any.whl", hash = "sha256:b8b71173c917bddcd2c16070412e369c3ed7f0528926f70cac18a6c97fd563e4", size = 9006 }, +] + +[[package]] +name = "black" +version = "24.8.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "mypy-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pathspec", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "platformdirs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tomli", marker = "python_version < '3.11'" }, + { name = "typing-extensions", marker = "python_version < '3.11'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/04/b0/46fb0d4e00372f4a86a6f8efa3cb193c9f64863615e39010b1477e010578/black-24.8.0.tar.gz", hash = "sha256:2500945420b6784c38b9ee885af039f5e7471ef284ab03fa35ecdde4688cd83f", size = 644810 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/47/6e/74e29edf1fba3887ed7066930a87f698ffdcd52c5dbc263eabb06061672d/black-24.8.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:09cdeb74d494ec023ded657f7092ba518e8cf78fa8386155e4a03fdcc44679e6", size = 1632092 }, + { url = "https://files.pythonhosted.org/packages/ab/49/575cb6c3faee690b05c9d11ee2e8dba8fbd6d6c134496e644c1feb1b47da/black-24.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:81c6742da39f33b08e791da38410f32e27d632260e599df7245cccee2064afeb", size = 1457529 }, + { url = "https://files.pythonhosted.org/packages/7a/b4/d34099e95c437b53d01c4aa37cf93944b233066eb034ccf7897fa4e5f286/black-24.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:707a1ca89221bc8a1a64fb5e15ef39cd755633daa672a9db7498d1c19de66a42", size = 1757443 }, + { url = "https://files.pythonhosted.org/packages/87/a0/6d2e4175ef364b8c4b64f8441ba041ed65c63ea1db2720d61494ac711c15/black-24.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:d6417535d99c37cee4091a2f24eb2b6d5ec42b144d50f1f2e436d9fe1916fe1a", size = 1418012 }, + { url = "https://files.pythonhosted.org/packages/08/a6/0a3aa89de9c283556146dc6dbda20cd63a9c94160a6fbdebaf0918e4a3e1/black-24.8.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fb6e2c0b86bbd43dee042e48059c9ad7830abd5c94b0bc518c0eeec57c3eddc1", size = 1615080 }, + { url = "https://files.pythonhosted.org/packages/db/94/b803d810e14588bb297e565821a947c108390a079e21dbdcb9ab6956cd7a/black-24.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:837fd281f1908d0076844bc2b801ad2d369c78c45cf800cad7b61686051041af", size = 1438143 }, + { url = "https://files.pythonhosted.org/packages/a5/b5/f485e1bbe31f768e2e5210f52ea3f432256201289fd1a3c0afda693776b0/black-24.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:62e8730977f0b77998029da7971fa896ceefa2c4c4933fcd593fa599ecbf97a4", size = 1738774 }, + { url = "https://files.pythonhosted.org/packages/a8/69/a000fc3736f89d1bdc7f4a879f8aaf516fb03613bb51a0154070383d95d9/black-24.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:72901b4913cbac8972ad911dc4098d5753704d1f3c56e44ae8dce99eecb0e3af", size = 1427503 }, + { url = "https://files.pythonhosted.org/packages/a2/a8/05fb14195cfef32b7c8d4585a44b7499c2a4b205e1662c427b941ed87054/black-24.8.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:7c046c1d1eeb7aea9335da62472481d3bbf3fd986e093cffd35f4385c94ae368", size = 1646132 }, + { url = "https://files.pythonhosted.org/packages/41/77/8d9ce42673e5cb9988f6df73c1c5c1d4e9e788053cccd7f5fb14ef100982/black-24.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:649f6d84ccbae73ab767e206772cc2d7a393a001070a4c814a546afd0d423aed", size = 1448665 }, + { url = "https://files.pythonhosted.org/packages/cc/94/eff1ddad2ce1d3cc26c162b3693043c6b6b575f538f602f26fe846dfdc75/black-24.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2b59b250fdba5f9a9cd9d0ece6e6d993d91ce877d121d161e4698af3eb9c1018", size = 1762458 }, + { url = "https://files.pythonhosted.org/packages/28/ea/18b8d86a9ca19a6942e4e16759b2fa5fc02bbc0eb33c1b866fcd387640ab/black-24.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:6e55d30d44bed36593c3163b9bc63bf58b3b30e4611e4d88a0c3c239930ed5b2", size = 1436109 }, + { url = "https://files.pythonhosted.org/packages/13/b2/b3f24fdbb46f0e7ef6238e131f13572ee8279b70f237f221dd168a9dba1a/black-24.8.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:eab4dd44ce80dea27dc69db40dab62d4ca96112f87996bca68cd75639aeb2e4c", size = 1631706 }, + { url = "https://files.pythonhosted.org/packages/d9/35/31010981e4a05202a84a3116423970fd1a59d2eda4ac0b3570fbb7029ddc/black-24.8.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3c4285573d4897a7610054af5a890bde7c65cb466040c5f0c8b732812d7f0e5e", size = 1457429 }, + { url = "https://files.pythonhosted.org/packages/27/25/3f706b4f044dd569a20a4835c3b733dedea38d83d2ee0beb8178a6d44945/black-24.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9e84e33b37be070ba135176c123ae52a51f82306def9f7d063ee302ecab2cf47", size = 1756488 }, + { url = "https://files.pythonhosted.org/packages/63/72/79375cd8277cbf1c5670914e6bd4c1b15dea2c8f8e906dc21c448d0535f0/black-24.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:73bbf84ed136e45d451a260c6b73ed674652f90a2b3211d6a35e78054563a9bb", size = 1417721 }, + { url = "https://files.pythonhosted.org/packages/27/1e/83fa8a787180e1632c3d831f7e58994d7aaf23a0961320d21e84f922f919/black-24.8.0-py3-none-any.whl", hash = "sha256:972085c618ee94f402da1af548a4f218c754ea7e5dc70acb168bfaca4c2542ed", size = 206504 }, +] + +[[package]] +name = "blinker" +version = "1.8.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1e/57/a6a1721eff09598fb01f3c7cda070c1b6a0f12d63c83236edf79a440abcc/blinker-1.8.2.tar.gz", hash = "sha256:8f77b09d3bf7c795e969e9486f39c2c5e9c39d4ee07424be2bc594ece9642d83", size = 23161 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bb/2a/10164ed1f31196a2f7f3799368a821765c62851ead0e630ab52b8e14b4d0/blinker-1.8.2-py3-none-any.whl", hash = "sha256:1779309f71bf239144b9399d06ae925637cf6634cf6bd131104184531bf67c01", size = 9456 }, +] + +[[package]] +name = "boto3" +version = "1.34.157" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "botocore", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jmespath", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "s3transfer", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/54/4d/ab9ef9ebda797bf162cc489756682044e293a23153eb2339aa7c7faf0ae5/boto3-1.34.157.tar.gz", hash = "sha256:7ef19ed38cba9863b58430fb4a66a72a5c250304f234bd1c16b860f9bf25677b", size = 108625 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ed/64/2083f96160b06dc565379c760b7dac4b49d827c4630828223ea81763a8a4/boto3-1.34.157-py3-none-any.whl", hash = "sha256:3cc357156df5482154a016f138d1953061a181b4c594f8b6302c9d6c024bd950", size = 139175 }, +] + +[[package]] +name = "botocore" +version = "1.34.157" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jmespath", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "python-dateutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "urllib3" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ae/d9/e04875f81b82d20ccfaa9fe7db4f794187561eb5c1c4946e999ba1590dd2/botocore-1.34.157.tar.gz", hash = "sha256:5628a36cec123cdc8c1158d05a7b06aa5e53649ad73796c50ef3fb51199785fb", size = 12666242 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9c/2d/3458eadc722bf7c9af67ff9fafe6c4bb4679314a704fe7852ebbae5f7ea9/botocore-1.34.157-py3-none-any.whl", hash = "sha256:c6cba6de8eb86ca4d2f934e009b37adbe1e7fdcfa52fbab74783f4c30676e07d", size = 12458655 }, +] + +[[package]] +name = "cachetools" +version = "5.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a7/3f/ea907ec6d15f68ea7f381546ba58adcb298417a59f01a2962cb5e486489f/cachetools-5.4.0.tar.gz", hash = "sha256:b8adc2e7c07f105ced7bc56dbb6dfbe7c4a00acce20e2227b3f355be89bc6827", size = 26975 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/e6/a1551acbaa06f3e48b311329828a34bc9c51a8cfaecdeb4d03c329a1ef85/cachetools-5.4.0-py3-none-any.whl", hash = "sha256:3ae3b49a3d5e28a77a0be2b37dbcb89005058959cb2323858c2657c4a8cab474", size = 9455 }, +] + +[[package]] +name = "certifi" +version = "2024.7.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c2/02/a95f2b11e207f68bc64d7aae9666fed2e2b3f307748d5123dffb72a1bbea/certifi-2024.7.4.tar.gz", hash = "sha256:5a1e7645bc0ec61a09e26c36f6106dd4cf40c6db3a1fb6352b0244e7fb057c7b", size = 164065 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1c/d5/c84e1a17bf61d4df64ca866a1c9a913874b4e9bdc131ec689a0ad013fb36/certifi-2024.7.4-py3-none-any.whl", hash = "sha256:c198e21b1289c2ab85ee4e67bb4b4ef3ead0892059901a8d5b622f24a1101e90", size = 162960 }, +] + +[[package]] +name = "cffi" +version = "1.17.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pycparser", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1e/bf/82c351342972702867359cfeba5693927efe0a8dd568165490144f554b18/cffi-1.17.0.tar.gz", hash = "sha256:f3157624b7558b914cb039fd1af735e5e8049a87c817cc215109ad1c8779df76", size = 516073 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/00/2a/9071bf1e20bf9f695643b6c3e0f838f340b95ee29de0d1bb7968772409be/cffi-1.17.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f9338cc05451f1942d0d8203ec2c346c830f8e86469903d5126c1f0a13a2bcbb", size = 181841 }, + { url = "https://files.pythonhosted.org/packages/4b/42/60116f10466d692b64aef32ac40fd79b11344ab6ef889ff8e3d047f2fcb2/cffi-1.17.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a0ce71725cacc9ebf839630772b07eeec220cbb5f03be1399e0457a1464f8e1a", size = 178242 }, + { url = "https://files.pythonhosted.org/packages/26/8e/a53f844454595c6e9215e56cda123db3427f8592f2c7b5ef1be782f620d6/cffi-1.17.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c815270206f983309915a6844fe994b2fa47e5d05c4c4cef267c3b30e34dbe42", size = 425676 }, + { url = "https://files.pythonhosted.org/packages/60/ac/6402563fb40b64c7ccbea87836d9c9498b374629af3449f3d8ff34df187d/cffi-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d6bdcd415ba87846fd317bee0774e412e8792832e7805938987e4ede1d13046d", size = 447842 }, + { url = "https://files.pythonhosted.org/packages/b2/e7/e2ffdb8de59f48f17b196813e9c717fbed2364e39b10bdb3836504e89486/cffi-1.17.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8a98748ed1a1df4ee1d6f927e151ed6c1a09d5ec21684de879c7ea6aa96f58f2", size = 455224 }, + { url = "https://files.pythonhosted.org/packages/59/55/3e8968e92fe35c1c368959a070a1276c10cae29cdad0fd0daa36c69e237e/cffi-1.17.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0a048d4f6630113e54bb4b77e315e1ba32a5a31512c31a273807d0027a7e69ab", size = 436341 }, + { url = "https://files.pythonhosted.org/packages/7f/df/700aaf009dfbfa04acb1ed487586c03c788c6a312f0361ad5f298c5f5a7d/cffi-1.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:24aa705a5f5bd3a8bcfa4d123f03413de5d86e497435693b638cbffb7d5d8a1b", size = 445861 }, + { url = "https://files.pythonhosted.org/packages/5a/70/637f070aae533ea11ab77708a820f3935c0edb4fbcef9393b788e6f426a5/cffi-1.17.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:856bf0924d24e7f93b8aee12a3a1095c34085600aa805693fb7f5d1962393206", size = 460982 }, + { url = "https://files.pythonhosted.org/packages/f7/1a/7d4740fa1ccc4fcc888963fc3165d69ef1a2c8d42c8911c946703ff5d4a5/cffi-1.17.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:4304d4416ff032ed50ad6bb87416d802e67139e31c0bde4628f36a47a3164bfa", size = 438434 }, + { url = "https://files.pythonhosted.org/packages/d0/d9/c48cc38aaf6f53a8b5d2dbf6fe788410fcbab33b15a69c56c01d2b08f6a2/cffi-1.17.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:331ad15c39c9fe9186ceaf87203a9ecf5ae0ba2538c9e898e3a6967e8ad3db6f", size = 461219 }, + { url = "https://files.pythonhosted.org/packages/26/ec/b6a7f660a7f27bd2bb53fe99a2ccafa279088395ec8639b25b8950985b2d/cffi-1.17.0-cp310-cp310-win32.whl", hash = "sha256:669b29a9eca6146465cc574659058ed949748f0809a2582d1f1a324eb91054dc", size = 171406 }, + { url = "https://files.pythonhosted.org/packages/08/42/8c00824787e6f5ec55194f5cd30c4ba4b9d9d5bb0d4d0007b1bb948d4ad4/cffi-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:48b389b1fd5144603d61d752afd7167dfd205973a43151ae5045b35793232aa2", size = 180809 }, + { url = "https://files.pythonhosted.org/packages/53/cc/9298fb6235522e00e47d78d6aa7f395332ef4e5f6fe124f9a03aa60600f7/cffi-1.17.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c5d97162c196ce54af6700949ddf9409e9833ef1003b4741c2b39ef46f1d9720", size = 181912 }, + { url = "https://files.pythonhosted.org/packages/e7/79/dc5334fbe60635d0846c56597a8d2af078a543ff22bc48d36551a0de62c2/cffi-1.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5ba5c243f4004c750836f81606a9fcb7841f8874ad8f3bf204ff5e56332b72b9", size = 178297 }, + { url = "https://files.pythonhosted.org/packages/39/d7/ef1b6b16b51ccbabaced90ff0d821c6c23567fc4b2e4a445aea25d3ceb92/cffi-1.17.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bb9333f58fc3a2296fb1d54576138d4cf5d496a2cc118422bd77835e6ae0b9cb", size = 444909 }, + { url = "https://files.pythonhosted.org/packages/29/b8/6e3c61885537d985c78ef7dd779b68109ba256263d74a2f615c40f44548d/cffi-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:435a22d00ec7d7ea533db494da8581b05977f9c37338c80bc86314bec2619424", size = 468854 }, + { url = "https://files.pythonhosted.org/packages/0b/49/adad1228e19b931e523c2731e6984717d5f9e33a2f9971794ab42815b29b/cffi-1.17.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d1df34588123fcc88c872f5acb6f74ae59e9d182a2707097f9e28275ec26a12d", size = 476890 }, + { url = "https://files.pythonhosted.org/packages/76/54/c00f075c3e7fd14d9011713bcdb5b4f105ad044c5ad948db7b1a0a7e4e78/cffi-1.17.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:df8bb0010fdd0a743b7542589223a2816bdde4d94bb5ad67884348fa2c1c67e8", size = 459374 }, + { url = "https://files.pythonhosted.org/packages/f3/b9/f163bb3fa4fbc636ee1f2a6a4598c096cdef279823ddfaa5734e556dd206/cffi-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8b5b9712783415695663bd463990e2f00c6750562e6ad1d28e072a611c5f2a6", size = 466891 }, + { url = "https://files.pythonhosted.org/packages/31/52/72bbc95f6d06ff2e88a6fa13786be4043e542cb24748e1351aba864cb0a7/cffi-1.17.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ffef8fd58a36fb5f1196919638f73dd3ae0db1a878982b27a9a5a176ede4ba91", size = 477658 }, + { url = "https://files.pythonhosted.org/packages/67/20/d694811457eeae0c7663fa1a7ca201ce495533b646c1180d4ac25684c69c/cffi-1.17.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:4e67d26532bfd8b7f7c05d5a766d6f437b362c1bf203a3a5ce3593a645e870b8", size = 453890 }, + { url = "https://files.pythonhosted.org/packages/dc/79/40cbf5739eb4f694833db5a27ce7f63e30a9b25b4a836c4f25fb7272aacc/cffi-1.17.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:45f7cd36186db767d803b1473b3c659d57a23b5fa491ad83c6d40f2af58e4dbb", size = 478254 }, + { url = "https://files.pythonhosted.org/packages/e9/eb/2c384c385cca5cae67ca10ac4ef685277680b8c552b99aedecf4ea23ff7e/cffi-1.17.0-cp311-cp311-win32.whl", hash = "sha256:a9015f5b8af1bb6837a3fcb0cdf3b874fe3385ff6274e8b7925d81ccaec3c5c9", size = 171285 }, + { url = "https://files.pythonhosted.org/packages/ca/42/74cb1e0f1b79cb64672f3cb46245b506239c1297a20c0d9c3aeb3929cb0c/cffi-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:b50aaac7d05c2c26dfd50c3321199f019ba76bb650e346a6ef3616306eed67b0", size = 180842 }, + { url = "https://files.pythonhosted.org/packages/1a/1f/7862231350cc959a3138889d2c8d33da7042b22e923457dfd4cd487d772a/cffi-1.17.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aec510255ce690d240f7cb23d7114f6b351c733a74c279a84def763660a2c3bc", size = 182826 }, + { url = "https://files.pythonhosted.org/packages/8b/8c/26119bf8b79e05a1c39812064e1ee7981e1f8a5372205ba5698ea4dd958d/cffi-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2770bb0d5e3cc0e31e7318db06efcbcdb7b31bcb1a70086d3177692a02256f59", size = 178494 }, + { url = "https://files.pythonhosted.org/packages/61/94/4882c47d3ad396d91f0eda6ef16d45be3d752a332663b7361933039ed66a/cffi-1.17.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:db9a30ec064129d605d0f1aedc93e00894b9334ec74ba9c6bdd08147434b33eb", size = 454459 }, + { url = "https://files.pythonhosted.org/packages/0f/7c/a6beb119ad515058c5ee1829742d96b25b2b9204ff920746f6e13bf574eb/cffi-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a47eef975d2b8b721775a0fa286f50eab535b9d56c70a6e62842134cf7841195", size = 478502 }, + { url = "https://files.pythonhosted.org/packages/61/8a/2575cd01a90e1eca96a30aec4b1ac101a6fae06c49d490ac2704fa9bc8ba/cffi-1.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f3e0992f23bbb0be00a921eae5363329253c3b86287db27092461c887b791e5e", size = 485381 }, + { url = "https://files.pythonhosted.org/packages/cd/66/85899f5a9f152db49646e0c77427173e1b77a1046de0191ab3b0b9a5e6e3/cffi-1.17.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6107e445faf057c118d5050560695e46d272e5301feffda3c41849641222a828", size = 470907 }, + { url = "https://files.pythonhosted.org/packages/00/13/150924609bf377140abe6e934ce0a57f3fc48f1fd956ec1f578ce97a4624/cffi-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eb862356ee9391dc5a0b3cbc00f416b48c1b9a52d252d898e5b7696a5f9fe150", size = 479074 }, + { url = "https://files.pythonhosted.org/packages/17/fd/7d73d7110155c036303b0a6462c56250e9bc2f4119d7591d27417329b4d1/cffi-1.17.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:c1c13185b90bbd3f8b5963cd8ce7ad4ff441924c31e23c975cb150e27c2bf67a", size = 484225 }, + { url = "https://files.pythonhosted.org/packages/fc/83/8353e5c9b01bb46332dac3dfb18e6c597a04ceb085c19c814c2f78a8c0d0/cffi-1.17.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:17c6d6d3260c7f2d94f657e6872591fe8733872a86ed1345bda872cfc8c74885", size = 488388 }, + { url = "https://files.pythonhosted.org/packages/73/0c/f9d5ca9a095b1fc88ef77d1f8b85d11151c374144e4606da33874e17b65b/cffi-1.17.0-cp312-cp312-win32.whl", hash = "sha256:c3b8bd3133cd50f6b637bb4322822c94c5ce4bf0d724ed5ae70afce62187c492", size = 172096 }, + { url = "https://files.pythonhosted.org/packages/72/21/8c5d285fe20a6e31d29325f1287bb0e55f7d93630a5a44cafdafb5922495/cffi-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:dca802c8db0720ce1c49cce1149ff7b06e91ba15fa84b1d59144fef1a1bc7ac2", size = 181478 }, + { url = "https://files.pythonhosted.org/packages/17/8f/581f2f3c3464d5f7cf87c2f7a5ba9acc6976253e02d73804240964243ec2/cffi-1.17.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:6ce01337d23884b21c03869d2f68c5523d43174d4fc405490eb0091057943118", size = 182638 }, + { url = "https://files.pythonhosted.org/packages/8d/1c/c9afa66684b7039f48018eb11b229b659dfb32b7a16b88251bac106dd1ff/cffi-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:cab2eba3830bf4f6d91e2d6718e0e1c14a2f5ad1af68a89d24ace0c6b17cced7", size = 178453 }, + { url = "https://files.pythonhosted.org/packages/cc/b6/1a134d479d3a5a1ff2fabbee551d1d3f1dd70f453e081b5f70d604aae4c0/cffi-1.17.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:14b9cbc8f7ac98a739558eb86fabc283d4d564dafed50216e7f7ee62d0d25377", size = 454441 }, + { url = "https://files.pythonhosted.org/packages/b1/b4/e1569475d63aad8042b0935dbf62ae2a54d1e9142424e2b0e924d2d4a529/cffi-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b00e7bcd71caa0282cbe3c90966f738e2db91e64092a877c3ff7f19a1628fdcb", size = 478543 }, + { url = "https://files.pythonhosted.org/packages/d2/40/a9ad03fbd64309dec5bb70bc803a9a6772602de0ee164d7b9a6ca5a89249/cffi-1.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:41f4915e09218744d8bae14759f983e466ab69b178de38066f7579892ff2a555", size = 485463 }, + { url = "https://files.pythonhosted.org/packages/a6/1a/f10be60e006dd9242a24bcc2b1cd55c34c578380100f742d8c610f7a5d26/cffi-1.17.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4760a68cab57bfaa628938e9c2971137e05ce48e762a9cb53b76c9b569f1204", size = 470854 }, + { url = "https://files.pythonhosted.org/packages/cc/b3/c035ed21aa3d39432bd749fe331ee90e4bc83ea2dbed1f71c4bc26c41084/cffi-1.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:011aff3524d578a9412c8b3cfaa50f2c0bd78e03eb7af7aa5e0df59b158efb2f", size = 479096 }, + { url = "https://files.pythonhosted.org/packages/00/cb/6f7edde01131de9382c89430b8e253b8c8754d66b63a62059663ceafeab2/cffi-1.17.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:a003ac9edc22d99ae1286b0875c460351f4e101f8c9d9d2576e78d7e048f64e0", size = 484013 }, + { url = "https://files.pythonhosted.org/packages/b9/83/8e4e8c211ea940210d293e951bf06b1bfb90f2eeee590e9778e99b4a8676/cffi-1.17.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ef9528915df81b8f4c7612b19b8628214c65c9b7f74db2e34a646a0a2a0da2d4", size = 488119 }, + { url = "https://files.pythonhosted.org/packages/5e/52/3f7cfbc4f444cb4f73ff17b28690d12436dde665f67d68f1e1687908ab6c/cffi-1.17.0-cp313-cp313-win32.whl", hash = "sha256:70d2aa9fb00cf52034feac4b913181a6e10356019b18ef89bc7c12a283bf5f5a", size = 172122 }, + { url = "https://files.pythonhosted.org/packages/94/19/cf5baa07ee0f0e55eab7382459fbddaba0fdb0ba45973dd92556ae0d02db/cffi-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:b7b6ea9e36d32582cda3465f54c4b454f62f23cb083ebc7a94e2ca6ef011c3a7", size = 181504 }, + { url = "https://files.pythonhosted.org/packages/96/22/7866bf5450d6a5b8cf4123abde25b2126fce03ac4efc1244a44367b01c65/cffi-1.17.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1a2ddbac59dc3716bc79f27906c010406155031a1c801410f1bafff17ea304d2", size = 181868 }, + { url = "https://files.pythonhosted.org/packages/0c/03/934cd50132c1637a52ab41c093ff89b93086181f6cdc40d43185083818c1/cffi-1.17.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6327b572f5770293fc062a7ec04160e89741e8552bf1c358d1a23eba68166759", size = 178261 }, + { url = "https://files.pythonhosted.org/packages/4a/1e/06c7bc7ed387e42f0ecdef2477a5b291455c2158bb7a565848ef96bba113/cffi-1.17.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dbc183e7bef690c9abe5ea67b7b60fdbca81aa8da43468287dae7b5c046107d4", size = 424564 }, + { url = "https://files.pythonhosted.org/packages/b7/9b/43f26a558d192bb0691051153add44404af0adf6e3e35d5ce83340d41a92/cffi-1.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bdc0f1f610d067c70aa3737ed06e2726fd9d6f7bfee4a351f4c40b6831f4e82", size = 446854 }, + { url = "https://files.pythonhosted.org/packages/b5/5c/7777c4b0fc212caf180b20ec51da3d9fa00910d40f042004d33679f39ec7/cffi-1.17.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6d872186c1617d143969defeadac5a904e6e374183e07977eedef9c07c8953bf", size = 454217 }, + { url = "https://files.pythonhosted.org/packages/8f/90/a40b9821755bd3dfd2dd9a341b660cd57dfa2fc3bb9d8c4499477fa27ae3/cffi-1.17.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0d46ee4764b88b91f16661a8befc6bfb24806d885e27436fdc292ed7e6f6d058", size = 435285 }, + { url = "https://files.pythonhosted.org/packages/e1/d3/36e54b85f670400ff0440ab743fa0de66bdd89b8f54b7d2370708cdcb03f/cffi-1.17.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f76a90c345796c01d85e6332e81cab6d70de83b829cf1d9762d0a3da59c7932", size = 444868 }, + { url = "https://files.pythonhosted.org/packages/15/aa/62f87ceb24b03e42061050b1139864347fd73291d2b70b3daefd0c4fdaa8/cffi-1.17.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0e60821d312f99d3e1569202518dddf10ae547e799d75aef3bca3a2d9e8ee693", size = 460136 }, + { url = "https://files.pythonhosted.org/packages/d4/b6/7abfb922035cc03d2a6c05b6e90f55d60bfea26ef97a2d10357b3f0bdbf3/cffi-1.17.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:eb09b82377233b902d4c3fbeeb7ad731cdab579c6c6fda1f763cd779139e47c3", size = 437565 }, + { url = "https://files.pythonhosted.org/packages/83/a8/306c52a4625eef30a6d7828c0c7ecaf9a11e1fc83efe506d6fcf980b68c7/cffi-1.17.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:24658baf6224d8f280e827f0a50c46ad819ec8ba380a42448e24459daf809cf4", size = 460284 }, + { url = "https://files.pythonhosted.org/packages/a8/05/4daca3a5d2af2af95828b35e65221d4f8afb6155c9d80a1ebda7a11348ab/cffi-1.17.0-cp39-cp39-win32.whl", hash = "sha256:0fdacad9e0d9fc23e519efd5ea24a70348305e8d7d85ecbb1a5fa66dc834e7fb", size = 171382 }, + { url = "https://files.pythonhosted.org/packages/89/2d/ec3ae32daf8713681ded997aa2e6d68306c11a41627fb351201111ea0d24/cffi-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:7cbc78dc018596315d4e7841c8c3a7ae31cc4d638c9b627f87d52e8abaaf2d29", size = 180820 }, +] + +[[package]] +name = "chardet" +version = "5.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f3/0d/f7b6ab21ec75897ed80c17d79b15951a719226b9fababf1e40ea74d69079/chardet-5.2.0.tar.gz", hash = "sha256:1b3b6ff479a8c414bc3fa2c0852995695c4a026dcd6d0633b2dd092ca39c1cf7", size = 2069618 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/38/6f/f5fbc992a329ee4e0f288c1fe0e2ad9485ed064cac731ed2fe47dcc38cbf/chardet-5.2.0-py3-none-any.whl", hash = "sha256:e1cf59446890a00105fe7b7912492ea04b6e6f06d4b742b2c788469e34c82970", size = 199385 }, +] + +[[package]] +name = "charset-normalizer" +version = "3.3.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/63/09/c1bc53dab74b1816a00d8d030de5bf98f724c52c1635e07681d312f20be8/charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5", size = 104809 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2b/61/095a0aa1a84d1481998b534177c8566fdc50bb1233ea9a0478cd3cc075bd/charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3", size = 194219 }, + { url = "https://files.pythonhosted.org/packages/cc/94/f7cf5e5134175de79ad2059edf2adce18e0685ebdb9227ff0139975d0e93/charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027", size = 122521 }, + { url = "https://files.pythonhosted.org/packages/46/6a/d5c26c41c49b546860cc1acabdddf48b0b3fb2685f4f5617ac59261b44ae/charset_normalizer-3.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03", size = 120383 }, + { url = "https://files.pythonhosted.org/packages/b8/60/e2f67915a51be59d4539ed189eb0a2b0d292bf79270410746becb32bc2c3/charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d", size = 138223 }, + { url = "https://files.pythonhosted.org/packages/05/8c/eb854996d5fef5e4f33ad56927ad053d04dc820e4a3d39023f35cad72617/charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e", size = 148101 }, + { url = "https://files.pythonhosted.org/packages/f6/93/bb6cbeec3bf9da9b2eba458c15966658d1daa8b982c642f81c93ad9b40e1/charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6", size = 140699 }, + { url = "https://files.pythonhosted.org/packages/da/f1/3702ba2a7470666a62fd81c58a4c40be00670e5006a67f4d626e57f013ae/charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5", size = 142065 }, + { url = "https://files.pythonhosted.org/packages/3f/ba/3f5e7be00b215fa10e13d64b1f6237eb6ebea66676a41b2bcdd09fe74323/charset_normalizer-3.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537", size = 144505 }, + { url = "https://files.pythonhosted.org/packages/33/c3/3b96a435c5109dd5b6adc8a59ba1d678b302a97938f032e3770cc84cd354/charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c", size = 139425 }, + { url = "https://files.pythonhosted.org/packages/43/05/3bf613e719efe68fb3a77f9c536a389f35b95d75424b96b426a47a45ef1d/charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12", size = 145287 }, + { url = "https://files.pythonhosted.org/packages/58/78/a0bc646900994df12e07b4ae5c713f2b3e5998f58b9d3720cce2aa45652f/charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f", size = 149929 }, + { url = "https://files.pythonhosted.org/packages/eb/5c/97d97248af4920bc68687d9c3b3c0f47c910e21a8ff80af4565a576bd2f0/charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269", size = 141605 }, + { url = "https://files.pythonhosted.org/packages/a8/31/47d018ef89f95b8aded95c589a77c072c55e94b50a41aa99c0a2008a45a4/charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519", size = 142646 }, + { url = "https://files.pythonhosted.org/packages/ae/d5/4fecf1d58bedb1340a50f165ba1c7ddc0400252d6832ff619c4568b36cc0/charset_normalizer-3.3.2-cp310-cp310-win32.whl", hash = "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73", size = 92846 }, + { url = "https://files.pythonhosted.org/packages/a2/a0/4af29e22cb5942488cf45630cbdd7cefd908768e69bdd90280842e4e8529/charset_normalizer-3.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09", size = 100343 }, + { url = "https://files.pythonhosted.org/packages/68/77/02839016f6fbbf808e8b38601df6e0e66c17bbab76dff4613f7511413597/charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db", size = 191647 }, + { url = "https://files.pythonhosted.org/packages/3e/33/21a875a61057165e92227466e54ee076b73af1e21fe1b31f1e292251aa1e/charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96", size = 121434 }, + { url = "https://files.pythonhosted.org/packages/dd/51/68b61b90b24ca35495956b718f35a9756ef7d3dd4b3c1508056fa98d1a1b/charset_normalizer-3.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e", size = 118979 }, + { url = "https://files.pythonhosted.org/packages/e4/a6/7ee57823d46331ddc37dd00749c95b0edec2c79b15fc0d6e6efb532e89ac/charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f", size = 136582 }, + { url = "https://files.pythonhosted.org/packages/74/f1/0d9fe69ac441467b737ba7f48c68241487df2f4522dd7246d9426e7c690e/charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574", size = 146645 }, + { url = "https://files.pythonhosted.org/packages/05/31/e1f51c76db7be1d4aef220d29fbfa5dbb4a99165d9833dcbf166753b6dc0/charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4", size = 139398 }, + { url = "https://files.pythonhosted.org/packages/40/26/f35951c45070edc957ba40a5b1db3cf60a9dbb1b350c2d5bef03e01e61de/charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8", size = 140273 }, + { url = "https://files.pythonhosted.org/packages/07/07/7e554f2bbce3295e191f7e653ff15d55309a9ca40d0362fcdab36f01063c/charset_normalizer-3.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc", size = 142577 }, + { url = "https://files.pythonhosted.org/packages/d8/b5/eb705c313100defa57da79277d9207dc8d8e45931035862fa64b625bfead/charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae", size = 137747 }, + { url = "https://files.pythonhosted.org/packages/19/28/573147271fd041d351b438a5665be8223f1dd92f273713cb882ddafe214c/charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887", size = 143375 }, + { url = "https://files.pythonhosted.org/packages/cf/7c/f3b682fa053cc21373c9a839e6beba7705857075686a05c72e0f8c4980ca/charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae", size = 148474 }, + { url = "https://files.pythonhosted.org/packages/1e/49/7ab74d4ac537ece3bc3334ee08645e231f39f7d6df6347b29a74b0537103/charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce", size = 140232 }, + { url = "https://files.pythonhosted.org/packages/2d/dc/9dacba68c9ac0ae781d40e1a0c0058e26302ea0660e574ddf6797a0347f7/charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f", size = 140859 }, + { url = "https://files.pythonhosted.org/packages/6c/c2/4a583f800c0708dd22096298e49f887b49d9746d0e78bfc1d7e29816614c/charset_normalizer-3.3.2-cp311-cp311-win32.whl", hash = "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab", size = 92509 }, + { url = "https://files.pythonhosted.org/packages/57/ec/80c8d48ac8b1741d5b963797b7c0c869335619e13d4744ca2f67fc11c6fc/charset_normalizer-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77", size = 99870 }, + { url = "https://files.pythonhosted.org/packages/d1/b2/fcedc8255ec42afee97f9e6f0145c734bbe104aac28300214593eb326f1d/charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8", size = 192892 }, + { url = "https://files.pythonhosted.org/packages/2e/7d/2259318c202f3d17f3fe6438149b3b9e706d1070fe3fcbb28049730bb25c/charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b", size = 122213 }, + { url = "https://files.pythonhosted.org/packages/3a/52/9f9d17c3b54dc238de384c4cb5a2ef0e27985b42a0e5cc8e8a31d918d48d/charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6", size = 119404 }, + { url = "https://files.pythonhosted.org/packages/99/b0/9c365f6d79a9f0f3c379ddb40a256a67aa69c59609608fe7feb6235896e1/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a", size = 137275 }, + { url = "https://files.pythonhosted.org/packages/91/33/749df346e93d7a30cdcb90cbfdd41a06026317bfbfb62cd68307c1a3c543/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389", size = 147518 }, + { url = "https://files.pythonhosted.org/packages/72/1a/641d5c9f59e6af4c7b53da463d07600a695b9824e20849cb6eea8a627761/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa", size = 140182 }, + { url = "https://files.pythonhosted.org/packages/ee/fb/14d30eb4956408ee3ae09ad34299131fb383c47df355ddb428a7331cfa1e/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b", size = 141869 }, + { url = "https://files.pythonhosted.org/packages/df/3e/a06b18788ca2eb6695c9b22325b6fde7dde0f1d1838b1792a0076f58fe9d/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed", size = 144042 }, + { url = "https://files.pythonhosted.org/packages/45/59/3d27019d3b447a88fe7e7d004a1e04be220227760264cc41b405e863891b/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26", size = 138275 }, + { url = "https://files.pythonhosted.org/packages/7b/ef/5eb105530b4da8ae37d506ccfa25057961b7b63d581def6f99165ea89c7e/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d", size = 144819 }, + { url = "https://files.pythonhosted.org/packages/a2/51/e5023f937d7f307c948ed3e5c29c4b7a3e42ed2ee0b8cdf8f3a706089bf0/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068", size = 149415 }, + { url = "https://files.pythonhosted.org/packages/24/9d/2e3ef673dfd5be0154b20363c5cdcc5606f35666544381bee15af3778239/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143", size = 141212 }, + { url = "https://files.pythonhosted.org/packages/5b/ae/ce2c12fcac59cb3860b2e2d76dc405253a4475436b1861d95fe75bdea520/charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4", size = 142167 }, + { url = "https://files.pythonhosted.org/packages/ed/3a/a448bf035dce5da359daf9ae8a16b8a39623cc395a2ffb1620aa1bce62b0/charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7", size = 93041 }, + { url = "https://files.pythonhosted.org/packages/b6/7c/8debebb4f90174074b827c63242c23851bdf00a532489fba57fef3416e40/charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001", size = 100397 }, + { url = "https://files.pythonhosted.org/packages/f7/9d/bcf4a449a438ed6f19790eee543a86a740c77508fbc5ddab210ab3ba3a9a/charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4", size = 194198 }, + { url = "https://files.pythonhosted.org/packages/66/fe/c7d3da40a66a6bf2920cce0f436fa1f62ee28aaf92f412f0bf3b84c8ad6c/charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d", size = 122494 }, + { url = "https://files.pythonhosted.org/packages/2a/9d/a6d15bd1e3e2914af5955c8eb15f4071997e7078419328fee93dfd497eb7/charset_normalizer-3.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0", size = 120393 }, + { url = "https://files.pythonhosted.org/packages/3d/85/5b7416b349609d20611a64718bed383b9251b5a601044550f0c8983b8900/charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269", size = 138331 }, + { url = "https://files.pythonhosted.org/packages/79/66/8946baa705c588521afe10b2d7967300e49380ded089a62d38537264aece/charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c", size = 148097 }, + { url = "https://files.pythonhosted.org/packages/44/80/b339237b4ce635b4af1c73742459eee5f97201bd92b2371c53e11958392e/charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519", size = 140711 }, + { url = "https://files.pythonhosted.org/packages/98/69/5d8751b4b670d623aa7a47bef061d69c279e9f922f6705147983aa76c3ce/charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796", size = 142251 }, + { url = "https://files.pythonhosted.org/packages/1f/8d/33c860a7032da5b93382cbe2873261f81467e7b37f4ed91e25fed62fd49b/charset_normalizer-3.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185", size = 144636 }, + { url = "https://files.pythonhosted.org/packages/c2/65/52aaf47b3dd616c11a19b1052ce7fa6321250a7a0b975f48d8c366733b9f/charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c", size = 139514 }, + { url = "https://files.pythonhosted.org/packages/51/fd/0ee5b1c2860bb3c60236d05b6e4ac240cf702b67471138571dad91bcfed8/charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458", size = 145528 }, + { url = "https://files.pythonhosted.org/packages/e1/9c/60729bf15dc82e3aaf5f71e81686e42e50715a1399770bcde1a9e43d09db/charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2", size = 149804 }, + { url = "https://files.pythonhosted.org/packages/53/cd/aa4b8a4d82eeceb872f83237b2d27e43e637cac9ffaef19a1321c3bafb67/charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8", size = 141708 }, + { url = "https://files.pythonhosted.org/packages/54/7f/cad0b328759630814fcf9d804bfabaf47776816ad4ef2e9938b7e1123d04/charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561", size = 142708 }, + { url = "https://files.pythonhosted.org/packages/c1/9d/254a2f1bcb0ce9acad838e94ed05ba71a7cb1e27affaa4d9e1ca3958cdb6/charset_normalizer-3.3.2-cp39-cp39-win32.whl", hash = "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f", size = 92830 }, + { url = "https://files.pythonhosted.org/packages/2f/0e/d7303ccae9735ff8ff01e36705ad6233ad2002962e8668a970fc000c5e1b/charset_normalizer-3.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d", size = 100376 }, + { url = "https://files.pythonhosted.org/packages/28/76/e6222113b83e3622caa4bb41032d0b1bf785250607392e1b778aca0b8a7d/charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc", size = 48543 }, +] + +[[package]] +name = "chex" +version = "0.1.82" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jaxlib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "toolz", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/48/32/8986136bcda43de50b6189bd9c3b43ecbc3cd457831dfd06679ef21ca1a3/chex-0.1.82.tar.gz", hash = "sha256:a9b151ada0b5c1bc5a8ae572617eb09f2fe4ff110fe1d75045f9083eecf5b2c1", size = 86801 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/84/c9/a2182cbf8bc066de9433930c41e76b7f4e904f155c5881235dbb54f8148b/chex-0.1.82-py3-none-any.whl", hash = "sha256:4df8f087e30c3879c15d3765f9081d5996e57682fa1fbaa8a16a1eab6f6eb2d0", size = 94804 }, +] + +[[package]] +name = "click" +version = "8.1.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "platform_system == 'Windows'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/96/d3/f04c7bfcf5c1862a2a5b845c6b2b360488cf47af55dfa79c98f6a6bf98b5/click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de", size = 336121 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/00/2e/d53fa4befbf2cfa713304affc7ca780ce4fc1fd8710527771b58311a3229/click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28", size = 97941 }, +] + +[[package]] +name = "clldutils" +version = "3.21.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "colorlog", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "lxml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "markdown", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "markupsafe", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pylatexenc", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "python-dateutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tabulate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/29/a9/20fe03d6990599fe00879f0e8adb03666a790ab9b86ebccac368ae11d2c2/clldutils-3.21.0.tar.gz", hash = "sha256:a73ab7d664b90efb87a0a057718ac4389782a59b7eb046ef312d5a60d054bf95", size = 1710419 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/52/32/f8f97b5fb1d3c14ab8b0895082f4eccc280e6787d2b9a5c9d91a34f203f4/clldutils-3.21.0-py2.py3-none-any.whl", hash = "sha256:204851d8897ab590f059e272bcce222f5e15f75e7099e2e50cdc69b388a02792", size = 1723784 }, +] + +[[package]] +name = "cloudpickle" +version = "2.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/5f/51/913ecca3970a2227cf4d5e8937df52cc28f465ac442216110b8e3323262d/cloudpickle-2.2.1.tar.gz", hash = "sha256:d89684b8de9e34a2a43b3460fbca07d09d6e25ce858df4d5a44240403b6178f5", size = 60800 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/15/80/44286939ca215e88fa827b2aeb6fa3fd2b4a7af322485c7170d6f9fd96e0/cloudpickle-2.2.1-py3-none-any.whl", hash = "sha256:61f594d1f4c295fa5cd9014ceb3a1fc4a70b0de1164b94fbc2d854ccba056f9f", size = 25944 }, +] + +[[package]] +name = "codecarbon" +version = "1.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "apscheduler", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "dash", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "dash-bootstrap-components", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fire", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pandas", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "py-cpuinfo", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pynvml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ab/42/818ec7aeca4690749e86fb9787626635ca7fba6c34b0fb4bf56b8fe4b380/codecarbon-1.2.0.tar.gz", hash = "sha256:8a89a321f6ce371abc20b9e9faf2d743d9276cdcd474c1960f194043532d0412", size = 129013 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c9/48/230b30d4e87b831b96563ac199a95e0007d4dc333fe3cffff1d5a64b6fef/codecarbon-1.2.0-py3-none-any.whl", hash = "sha256:270137da70bdf6ecec9cda9bdd0920590f7d4434f31c28bd2d31fa3c7a10a9ed", size = 135030 }, +] + +[[package]] +name = "colorama" +version = "0.4.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335 }, +] + +[[package]] +name = "coloredlogs" +version = "15.0.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "humanfriendly", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cc/c7/eed8f27100517e8c0e6b923d5f0845d0cb99763da6fdee00478f91db7325/coloredlogs-15.0.1.tar.gz", hash = "sha256:7c991aa71a4577af2f82600d8f8f3a89f936baeaf9b50a9c197da014e5bf16b0", size = 278520 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/06/3d6badcf13db419e25b07041d9c7b4a2c331d3f4e7134445ec5df57714cd/coloredlogs-15.0.1-py2.py3-none-any.whl", hash = "sha256:612ee75c546f53e92e70049c9dbfcc18c935a2b9a53b66085ce9ef6a6e5c0934", size = 46018 }, +] + +[[package]] +name = "colorlog" +version = "6.8.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/db/38/2992ff192eaa7dd5a793f8b6570d6bbe887c4fbbf7e72702eb0a693a01c8/colorlog-6.8.2.tar.gz", hash = "sha256:3e3e079a41feb5a1b64f978b5ea4f46040a94f11f0e8bbb8261e3dbbeca64d44", size = 16529 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f3/18/3e867ab37a24fdf073c1617b9c7830e06ec270b1ea4694a624038fc40a03/colorlog-6.8.2-py3-none-any.whl", hash = "sha256:4dcbb62368e2800cb3c5abd348da7e53f6c362dda502ec27c560b2e58a66bd33", size = 11357 }, +] + +[[package]] +name = "cookiecutter" +version = "1.7.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "binaryornot", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "click", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jinja2", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jinja2-time", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "poyo", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "python-slugify", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/58/f5/6f41fa38e6efe4a0e85771f99a4ad8c33b4c14f03b4cc53b459aac4a629a/cookiecutter-1.7.3.tar.gz", hash = "sha256:6b9a4d72882e243be077a7397d0f1f76fe66cf3df91f3115dbb5330e214fa457", size = 133496 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a2/62/d061b19f307455506e63825586e2e1816b71d56b4a5873c278cb315b9660/cookiecutter-1.7.3-py2.py3-none-any.whl", hash = "sha256:f8671531fa96ab14339d0c59b4f662a4f12a2ecacd94a0f70a3500843da588e2", size = 34803 }, +] + +[[package]] +name = "csvw" +version = "3.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "babel", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "colorama", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "isodate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jsonschema", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "language-tags", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "python-dateutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rdflib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rfc3986", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "uritemplate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5b/29/9613d6e9913e100f0afc489c836cd86a8b0d2d6ff6c75313ce0b1579dcce/csvw-3.3.0.tar.gz", hash = "sha256:59b6c4c725fb02138b3adb5e678e7b94f3baf7f8286c958fbd6d9d9aac5540d7", size = 71403 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0d/1b/85a62fc18a098560c5f6477dc8029ae895e913fd5d14b152ecec6143b5f6/csvw-3.3.0-py2.py3-none-any.whl", hash = "sha256:a8fc72d2a6ab36f0b9a8dab1c9a49ee5bbef1e6aa4b2a82076b0a91aa3eabb2f", size = 57837 }, +] + +[[package]] +name = "dash" +version = "2.17.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "dash-core-components", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "dash-html-components", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "dash-table", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "flask", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "importlib-metadata", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "nest-asyncio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "plotly", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "retrying", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "setuptools", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "werkzeug", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6f/5c/e5a3b9a0e90e4cfbd2bb930ea01dd1df83d21908e297a8da0e94118b57fe/dash-2.17.1.tar.gz", hash = "sha256:ee2d9c319de5dcc1314085710b72cd5fa63ff994d913bf72979b7130daeea28e", size = 7152875 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/27/ad/7047095224013ec2ae37ba8ece5956773e7953c39a3af5aa20d821ed99aa/dash-2.17.1-py3-none-any.whl", hash = "sha256:3eefc9ac67003f93a06bc3e500cae0a6787c48e6c81f6f61514239ae2da414e4", size = 7486058 }, +] + +[[package]] +name = "dash-bootstrap-components" +version = "1.6.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "dash", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a6/1e/59da44351adaaa2a747eb00993c498cadbe0f642b44ced7e7aabf368eaf6/dash_bootstrap_components-1.6.0.tar.gz", hash = "sha256:960a1ec9397574792f49a8241024fa3cecde0f5930c971a3fc81f016cbeb1095", size = 146828 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cc/72/dda12d6c6a9a2901f5549cea05c7f180e89dee6fb8c5f5f037ce7101ba24/dash_bootstrap_components-1.6.0-py3-none-any.whl", hash = "sha256:97f0f47b38363f18863e1b247462229266ce12e1e171cfb34d3c9898e6e5cd1e", size = 222526 }, +] + +[[package]] +name = "dash-core-components" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/41/55/ad4a2cf9b7d4134779bd8d3a7e5b5f8cc757f421809e07c3e73bb374fdd7/dash_core_components-2.0.0.tar.gz", hash = "sha256:c6733874af975e552f95a1398a16c2ee7df14ce43fa60bb3718a3c6e0b63ffee", size = 3427 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/00/9e/a29f726e84e531a36d56cff187e61d8c96d2cc253c5bcef9a7695acb7e6a/dash_core_components-2.0.0-py3-none-any.whl", hash = "sha256:52b8e8cce13b18d0802ee3acbc5e888cb1248a04968f962d63d070400af2e346", size = 3822 }, +] + +[[package]] +name = "dash-html-components" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/14/c6/957d5e83b620473eb3c8557a253fb01c6a817b10ca43d3ff9d31796f32a6/dash_html_components-2.0.0.tar.gz", hash = "sha256:8703a601080f02619a6390998e0b3da4a5daabe97a1fd7a9cebc09d015f26e50", size = 3840 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/75/65/1b16b853844ef59b2742a7de74a598f376ac0ab581f0dcc34db294e5c90e/dash_html_components-2.0.0-py3-none-any.whl", hash = "sha256:b42cc903713c9706af03b3f2548bda4be7307a7cf89b7d6eae3da872717d1b63", size = 4092 }, +] + +[[package]] +name = "dash-table" +version = "5.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3a/81/34983fa0c67125d7fff9d55e5d1a065127bde7ca49ca32d04dedd55f9f35/dash_table-5.0.0.tar.gz", hash = "sha256:18624d693d4c8ef2ddec99a6f167593437a7ea0bf153aa20f318c170c5bc7308", size = 3391 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/da/ce/43f77dc8e7bbad02a9f88d07bf794eaf68359df756a28bb9f2f78e255bb1/dash_table-5.0.0-py3-none-any.whl", hash = "sha256:19036fa352bb1c11baf38068ec62d172f0515f73ca3276c79dee49b95ddc16c9", size = 3912 }, +] + +[[package]] +name = "datasets" +version = "2.14.4" +source = { registry = "https://pypi.org/simple" } +environment-markers = [ + "python_version < '3.10' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.11' and python_version >= '3.10' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", +] +dependencies = [ + { name = "aiohttp", marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "dill", marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "fsspec", version = "2024.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "fsspec", version = "2024.6.1", source = { registry = "https://pypi.org/simple" }, extra = ["http"] }, + { name = "huggingface-hub", marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "multiprocess", marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "numpy", marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "packaging", marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "pandas", marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "pyarrow", marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "pyyaml", marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "requests", marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "tqdm", marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "xxhash", marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1d/69/8cc725b5d38968fd118e4ce56a483b16e75b7793854c1a392ec4a34eeb31/datasets-2.14.4.tar.gz", hash = "sha256:ef29c2b5841de488cd343cfc26ab979bff77efa4d2285af51f1ad7db5c46a83b", size = 2178719 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/66/f8/38298237d18d4b6a8ee5dfe390e97bed5adb8e01ec6f9680c0ddf3066728/datasets-2.14.4-py3-none-any.whl", hash = "sha256:29336bd316a7d827ccd4da2236596279b20ca2ac78f64c04c9483da7cbc2459b", size = 519335 }, +] + +[[package]] +name = "datasets" +version = "2.20.0" +source = { registry = "https://pypi.org/simple" } +environment-markers = [ + "python_version >= '3.13'", + "python_version == '3.11' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version == '3.11' and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", + "python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')", + "python_version < '3.10' and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", + "python_version < '3.11' and python_version >= '3.10'", + "python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", + "python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", +] +dependencies = [ + { name = "aiohttp", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "dill", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "filelock", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fsspec", version = "2024.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fsspec", version = "2024.5.0", source = { registry = "https://pypi.org/simple" }, extra = ["http"] }, + { name = "huggingface-hub", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "multiprocess", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pandas", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyarrow", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyarrow-hotfix", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "xxhash", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d5/59/b94bfb5f6225c4c931cd516390b3f006e232a036a48337f72889c6c9ab27/datasets-2.20.0.tar.gz", hash = "sha256:3c4dbcd27e0f642b9d41d20ff2efa721a5e04b32b2ca4009e0fc9139e324553f", size = 2225757 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/60/2d/963b266bb8f88492d5ab4232d74292af8beb5b6fdae97902df9e284d4c32/datasets-2.20.0-py3-none-any.whl", hash = "sha256:76ac02e3bdfff824492e20678f0b6b1b6d080515957fe834b00c2ba8d6b18e5e", size = 547777 }, +] + +[[package]] +name = "decorator" +version = "5.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/66/0c/8d907af351aa16b42caae42f9d6aa37b900c67308052d10fdce809f8d952/decorator-5.1.1.tar.gz", hash = "sha256:637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253acbc330", size = 35016 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d5/50/83c593b07763e1161326b3b8c6686f0f4b0f24d5526546bee538c89837d6/decorator-5.1.1-py3-none-any.whl", hash = "sha256:b8c3f85900b9dc423225913c5aace94729fe1fa9763b38939a95226f02d37186", size = 9073 }, +] + +[[package]] +name = "decord" +version = "0.6.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/11/79/936af42edf90a7bd4e41a6cac89c913d4b47fa48a26b042d5129a9242ee3/decord-0.6.0-py3-none-manylinux2010_x86_64.whl", hash = "sha256:51997f20be8958e23b7c4061ba45d0efcd86bffd5fe81c695d0befee0d442976", size = 13602299 }, + { url = "https://files.pythonhosted.org/packages/6c/be/e15b5b866da452e62635a7b27513f31cb581fa2ea9cc9b768b535d62a955/decord-0.6.0-py3-none-win_amd64.whl", hash = "sha256:02665d7c4f1193a330205a791bc128f7e108eb6ae5b67144437a02f700943bad", size = 24733380 }, +] + +[[package]] +name = "deepspeed" +version = "0.14.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "hjson", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ninja", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "nvidia-ml-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "psutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "py-cpuinfo", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pydantic", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/2e/06/7315113506f1804b8ba4f77cb31905c62f7080452a0af2d13eaadaa83a08/deepspeed-0.14.4.tar.gz", hash = "sha256:bb2f404b4a1d06aedd40c64d661f71307c22945d04a42d397ad39bbfeef9c8b8", size = 1340883 } + +[[package]] +name = "diffusers" +version = "0.30.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "filelock", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "huggingface-hub", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "importlib-metadata", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pillow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "regex", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "safetensors", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6b/63/bba1b32402a199c580b8b8649b75bd27834cdbb82d7c9f732608bb07ad1a/diffusers-0.30.0.tar.gz", hash = "sha256:57acd59cab035f62bde1108fc4c93e76e6988a5b3f8ae9f06051146c1cecb2aa", size = 2089547 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/74/2b/69bb842f7567cd92a540f8a9a63a20e09304ad8ff84530f26762e7e19626/diffusers-0.30.0-py3-none-any.whl", hash = "sha256:114194eb61498aff06243ade750fca6fbc179ca9df68923bb175b70030bed495", size = 2630173 }, +] + +[[package]] +name = "dill" +version = "0.3.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/57/b7/c4aa04a27040e6a3b09f5a652976ead00b66504c014425a7aad887aa8d7f/dill-0.3.4.zip", hash = "sha256:9f9734205146b2b353ab3fec9af0070237b6ddae78452af83d2fca84d739e675", size = 186823 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/c3/973676ceb86b60835bb3978c6db67a5dc06be6cfdbd14ef0f5a13e3fc9fd/dill-0.3.4-py2.py3-none-any.whl", hash = "sha256:7e40e4a70304fd9ceab3535d36e58791d9c4a776b38ec7f7ec9afc8d3dca4d4f", size = 86926 }, +] + +[[package]] +name = "dlinfo" +version = "1.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/20/08/5aa1aef097360959525443f087172046ebc3843a9601b4d9f9cdc3189657/dlinfo-1.2.1.tar.gz", hash = "sha256:5f6f43b47f3aa5fe12bd347cf536dc8fca6068c61a0a260e408bec7f6eb4bd38", size = 11814 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/f9/e014eb5740dfc6ebe6105f4c38890f361e5b0e1537a9f04bb4f34432efb9/dlinfo-1.2.1-py3-none-any.whl", hash = "sha256:a97d7cc66d997b4ac491f0e8068eb324790994834951a9beb5a4619835b361d9", size = 3559 }, +] + +[[package]] +name = "docker" +version = "7.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pywin32", marker = "sys_platform == 'win32'" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "urllib3", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/91/9b/4a2ea29aeba62471211598dac5d96825bb49348fa07e906ea930394a83ce/docker-7.1.0.tar.gz", hash = "sha256:ad8c70e6e3f8926cb8a92619b832b4ea5299e2831c14284663184e200546fa6c", size = 117834 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e3/26/57c6fb270950d476074c087527a558ccb6f4436657314bfb6cdf484114c4/docker-7.1.0-py3-none-any.whl", hash = "sha256:c96b93b7f0a746f9e77d325bcfb87422a3d8bd4f03136ae8a85b37f1898d5fc0", size = 147774 }, +] + +[[package]] +name = "etils" +version = "1.5.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ad/fa/8637c95271dd9eed00e258184295dd00ba163bb8924ba3be978ec89f093f/etils-1.5.2.tar.gz", hash = "sha256:ba6a3e1aff95c769130776aa176c11540637f5dd881f3b79172a5149b6b1c446", size = 87021 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0f/6a/d2aaebacf73d5da7126c632ec0d9dc2df99cc4bbd259bad48904a034fc1b/etils-1.5.2-py3-none-any.whl", hash = "sha256:6dc882d355e1e98a5d1a148d6323679dc47c9a5792939b9de72615aa4737eb0b", size = 140603 }, +] + +[package.optional-dependencies] +epath = [ + { name = "fsspec", version = "2024.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fsspec", version = "2024.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "importlib-resources", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "zipp", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +epy = [ + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] + +[[package]] +name = "evaluate" +version = "0.4.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "datasets", version = "2.14.4", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "datasets", version = "2.20.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "dill", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fsspec", version = "2024.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fsspec", version = "2024.5.0", source = { registry = "https://pypi.org/simple" }, extra = ["http"] }, + { name = "fsspec", version = "2024.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "fsspec", version = "2024.6.1", source = { registry = "https://pypi.org/simple" }, extra = ["http"] }, + { name = "huggingface-hub", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "multiprocess", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pandas", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "xxhash", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a5/97/5a5261a51545910ec471d3e143b74d932633320b3e3d810d838cddf440ed/evaluate-0.4.2.tar.gz", hash = "sha256:851ab767df8ec4031366c512eb88d8174adfba65d2c8c4c9bfdfe9c702212234", size = 65749 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c2/d6/ff9baefc8fc679dcd9eb21b29da3ef10c81aa36be630a7ae78e4611588e1/evaluate-0.4.2-py3-none-any.whl", hash = "sha256:5fdcaf8a086b075c2b8e2c5898f501224b020b0ac7d07be76536e47e661c0c65", size = 84135 }, +] + +[[package]] +name = "exceptiongroup" +version = "1.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/09/35/2495c4ac46b980e4ca1f6ad6db102322ef3ad2410b79fdde159a4b0f3b92/exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc", size = 28883 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/02/cc/b7e31358aac6ed1ef2bb790a9746ac2c69bcb3c8588b41616914eb106eaf/exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b", size = 16453 }, +] + +[[package]] +name = "execnet" +version = "2.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bb/ff/b4c0dc78fbe20c3e59c0c7334de0c27eb4001a2b2017999af398bf730817/execnet-2.1.1.tar.gz", hash = "sha256:5189b52c6121c24feae288166ab41b32549c7e2348652736540b9e6e7d4e72e3", size = 166524 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl", hash = "sha256:26dee51f1b80cebd6d0ca8e74dd8745419761d3bef34163928cbebbdc4749fdc", size = 40612 }, +] + +[[package]] +name = "faiss-cpu" +version = "1.8.0.post1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5e/a3/7213833216238e7dd7ef9f9a3a66bfb1ae24235e7fd32aad75afa3e78f3f/faiss_cpu-1.8.0.post1.tar.gz", hash = "sha256:5686af34414678c3d49c4fa8d774df7156e9cb48d7029071e56230e74b01cc13", size = 63668 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a3/6c/025d4b55e81c23b63ce093880afa5944f7f5cdc1a93e7a10b0f67fcc26b5/faiss_cpu-1.8.0.post1-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:fd84721eb599aa1da19b1b36345bb8705a60bb1d2887bbbc395a29e3d36a1a62", size = 7345861 }, + { url = "https://files.pythonhosted.org/packages/1f/22/231e1b30cf7d90da6a59bf6169c509ae62d3c3b1e9a88b702c267cd25e41/faiss_cpu-1.8.0.post1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b78ff9079d15fd0f156bf5dd8a2975a8abffac1854a86ece263eec1500a2e836", size = 5979513 }, + { url = "https://files.pythonhosted.org/packages/78/f1/40dc20554510728ee35d0aaa7aae1820fffd673ab04d44f76413dad55754/faiss_cpu-1.8.0.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9de25c943d1789e35fe06a20884c88cd32aedbb1a33bb8da2238cdea7bd9633f", size = 3554885 }, + { url = "https://files.pythonhosted.org/packages/87/da/d0caea09df6b6b3ef1dc6662154e095e1049c3881d841609c2438eb17e80/faiss_cpu-1.8.0.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:adae0f1b144e7216da696f14bc4991ca4300c94baaa59247c3d322588e661c95", size = 27045888 }, + { url = "https://files.pythonhosted.org/packages/42/c6/48fcc1368b3bf6a72fc4d9311d24a2d9bac2735a7de5be640b8babcd24e2/faiss_cpu-1.8.0.post1-cp310-cp310-win_amd64.whl", hash = "sha256:00345290680a444a4b4cb2d98a3844bb5c401a2160fee547c7631d759fd2ec3e", size = 14588028 }, + { url = "https://files.pythonhosted.org/packages/17/d2/c90a810b594d11f66b0162a08415029b7e056243a5023a7d5c719353a057/faiss_cpu-1.8.0.post1-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:8d4bade10cb63e9f9ff261751edd7eb097b1f4bf30be4d0d25d6f688559d795e", size = 7345873 }, + { url = "https://files.pythonhosted.org/packages/44/90/a21e37b01a302b8bcf1f30747eae1812d43f45e7f1a08bfa7da28c6647ce/faiss_cpu-1.8.0.post1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:20bd43eca3b7d77e71ea56b7a558cc28e900d8abff417eb285e2d92e95d934d4", size = 5979514 }, + { url = "https://files.pythonhosted.org/packages/c5/d2/32832d55f6ef6e4ac9316fd4169b1c62c88c4e0248b8e76499308b7d100e/faiss_cpu-1.8.0.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8542a87743a7f94ac656fd3e9592ad57e58b04d961ad2fe654a22a8ca59defdb", size = 3555039 }, + { url = "https://files.pythonhosted.org/packages/76/6c/256239bd142101cd2ce50d920622ab6d5a03742eabc462db49d7910c69c7/faiss_cpu-1.8.0.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ed46928de3dc20170b10fec89c54075a11383c2aaf4f119c63e0f6ae5a507d74", size = 27045872 }, + { url = "https://files.pythonhosted.org/packages/4c/e1/657eb537027b2d7aa0f0ccfc58aee6fe0252ea3d9e49472aecc5c7f30992/faiss_cpu-1.8.0.post1-cp311-cp311-win_amd64.whl", hash = "sha256:4fa5fc8ea210b919aa469e27d6687e50052db906e7fec3f2257178b1384fa18b", size = 14588251 }, + { url = "https://files.pythonhosted.org/packages/e5/4f/5d063231073917edfe1af57d1fcb2e281f60eca64694fb062428d80a1966/faiss_cpu-1.8.0.post1-cp312-cp312-macosx_10_14_x86_64.whl", hash = "sha256:96aec0d08a3099883af3a9b6356cfe736e8bd879318a940a27e9d1ae6f33d788", size = 7376527 }, + { url = "https://files.pythonhosted.org/packages/75/b9/eb43cbcbdc8c1177f1f275659920fb002c18e381253efb7f6431471f87df/faiss_cpu-1.8.0.post1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:92b06147fa84732ecdc965922e8ef50dc7011ef8be65821ff4abb2118cb5dce0", size = 5983954 }, + { url = "https://files.pythonhosted.org/packages/19/5e/1fd33bee1ad83c12467d2850ecb7d9a6d28afb9a2c7aa88b92dfe75f3167/faiss_cpu-1.8.0.post1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:709ef9394d1148aef70dbe890edbde8c282a4a2e06a8b69ab64f65e90f5ba572", size = 3559706 }, + { url = "https://files.pythonhosted.org/packages/ba/91/6460e628d7d1cfbce2f1a62bdd617619e2d8fb3d4428b5e4a1e2858aeb61/faiss_cpu-1.8.0.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:327a9c30971bf72cd8392b15eb4aff5d898c453212eae656dfaa3ba555b9ca0c", size = 27046631 }, + { url = "https://files.pythonhosted.org/packages/3a/0a/d18ff177cab09587918b6e67ce75b7e0a2b90ea0b4fdc7c3535cca39c5e8/faiss_cpu-1.8.0.post1-cp312-cp312-win_amd64.whl", hash = "sha256:8756f1d93faba56349883fa2f5d47fe36bb2f11f789200c6b1c691ef805485f2", size = 14591209 }, + { url = "https://files.pythonhosted.org/packages/8f/f1/e7c2e9991a4c5779742c5069fc259b7b846658c17aac7c782f997fa8363b/faiss_cpu-1.8.0.post1-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:83ef04b17b19189dd6601a941bdf4bfa9de0740dbcd80305aeba51a1b1955f80", size = 7345876 }, + { url = "https://files.pythonhosted.org/packages/c2/2a/e72ebe364754fb110cfd802aec92c2a1bb3590f55d6c1910b3c6fe3c6d18/faiss_cpu-1.8.0.post1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c50c8697077470ede7f1939ef8dc8a846ec19cf1893b543f6b67f9af03b0a122", size = 5979510 }, + { url = "https://files.pythonhosted.org/packages/f9/71/5e22c2a2e3e3edb8902c41f9d307fc989c738f45bfa120a3b92d1c71d6af/faiss_cpu-1.8.0.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:98ce428a7a67fe5c64047280e5e12a8dbdecf7002f9d127b26cf1db354e9fe76", size = 3554461 }, + { url = "https://files.pythonhosted.org/packages/9c/59/210909b9583acdc684f9a80a0882c63b2d4b0965c65a4394668b973a3c6d/faiss_cpu-1.8.0.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5f3b36b80380bae523e3198cfb4a137867055945ce7bf10d18fe9f0284f2fb47", size = 27047168 }, + { url = "https://files.pythonhosted.org/packages/c8/ad/d74139e96d50b55f280a524475e4616dcb296397764f8216d0967515626a/faiss_cpu-1.8.0.post1-cp39-cp39-win_amd64.whl", hash = "sha256:4fcc67a2353f08a20c1ab955de3cde14ef3b447761b26244a5aa849c15cbc9b3", size = 14588529 }, +] + +[[package]] +name = "fastapi" +version = "0.112.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pydantic", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "starlette", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0a/50/c535521c0cdb8b78da923bfffca7eb38429828de1770bbd8820b55f3779f/fastapi-0.112.0.tar.gz", hash = "sha256:d262bc56b7d101d1f4e8fc0ad2ac75bb9935fec504d2b7117686cec50710cf05", size = 289904 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/26/34/d0dca5f1fc0113723a425c913a886709698c4110f960c0990905804e0b2c/fastapi-0.112.0-py3-none-any.whl", hash = "sha256:3487ded9778006a45834b8c816ec4a48d522e2631ca9e75ec5a774f1b052f821", size = 93135 }, +] + +[[package]] +name = "fastjsonschema" +version = "2.20.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/03/3f/3ad5e7be13b4b8b55f4477141885ab2364f65d5f6ad5f7a9daffd634d066/fastjsonschema-2.20.0.tar.gz", hash = "sha256:3d48fc5300ee96f5d116f10fe6f28d938e6008f59a6a025c2649475b87f76a23", size = 373056 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6d/ca/086311cdfc017ec964b2436fe0c98c1f4efcb7e4c328956a22456e497655/fastjsonschema-2.20.0-py3-none-any.whl", hash = "sha256:5875f0b0fa7a0043a91e93a9b8f793bcbbba9691e7fd83dca95c28ba26d21f0a", size = 23543 }, +] + +[[package]] +name = "filelock" +version = "3.15.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/08/dd/49e06f09b6645156550fb9aee9cc1e59aba7efbc972d665a1bd6ae0435d4/filelock-3.15.4.tar.gz", hash = "sha256:2207938cbc1844345cb01a5a95524dae30f0ce089eba5b00378295a17e3e90cb", size = 18007 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ae/f0/48285f0262fe47103a4a45972ed2f9b93e4c80b8fd609fa98da78b2a5706/filelock-3.15.4-py3-none-any.whl", hash = "sha256:6ca1fffae96225dab4c6eaf1c4f4f28cd2568d3ec2a44e15a08520504de468e7", size = 16159 }, +] + +[[package]] +name = "fire" +version = "0.6.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "termcolor", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1b/1b/84c63f592ecdfbb3d77d22a8d93c9b92791e4fa35677ad71a7d6449100f8/fire-0.6.0.tar.gz", hash = "sha256:54ec5b996ecdd3c0309c800324a0703d6da512241bc73b553db959d98de0aa66", size = 88439 } + +[[package]] +name = "flask" +version = "3.0.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "blinker", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "click", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "importlib-metadata", marker = "python_version < '3.10'" }, + { name = "itsdangerous", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jinja2", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "werkzeug", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/41/e1/d104c83026f8d35dfd2c261df7d64738341067526406b40190bc063e829a/flask-3.0.3.tar.gz", hash = "sha256:ceb27b0af3823ea2737928a4d99d125a06175b8512c445cbd9a9ce200ef76842", size = 676315 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/61/80/ffe1da13ad9300f87c93af113edd0638c75138c42a0994becfacac078c06/flask-3.0.3-py3-none-any.whl", hash = "sha256:34e815dfaa43340d1d15a5c3a02b8476004037eb4840b34910c6e21679d288f3", size = 101735 }, +] + +[[package]] +name = "flatbuffers" +version = "24.3.25" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a9/74/2df95ef84b214d2bee0886d572775a6f38793f5ca6d7630c3239c91104ac/flatbuffers-24.3.25.tar.gz", hash = "sha256:de2ec5b203f21441716617f38443e0a8ebf3d25bf0d9c0bb0ce68fa00ad546a4", size = 22139 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/41/f0/7e988a019bc54b2dbd0ad4182ef2d53488bb02e58694cd79d61369e85900/flatbuffers-24.3.25-py2.py3-none-any.whl", hash = "sha256:8dbdec58f935f3765e4f7f3cf635ac3a77f83568138d6a2311f524ec96364812", size = 26784 }, +] + +[[package]] +name = "flax" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "msgpack", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "optax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "orbax-checkpoint", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rich", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorstore", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/62/fe/3a6a89c088fd055e02446a2b921d6d1f619dc7d28d578c81fc303331b587/flax-0.7.0.tar.gz", hash = "sha256:171715d7df050eb748867f14a6d42338adba060edaa1e3b4d3e978a3483db8c5", size = 2040256 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bb/1d/d9dccc3b42aab0713f72f68c0de2b3b58c8a9f81e117fa95e02e66678499/flax-0.7.0-py3-none-any.whl", hash = "sha256:c63e64124be8011b3d2f65a866d98627a5879f243e18351e85bcd0ab29228fc4", size = 225883 }, +] + +[[package]] +name = "frozenlist" +version = "1.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cf/3d/2102257e7acad73efc4a0c306ad3953f68c504c16982bbdfee3ad75d8085/frozenlist-1.4.1.tar.gz", hash = "sha256:c037a86e8513059a2613aaba4d817bb90b9d9b6b69aace3ce9c877e8c8ed402b", size = 37820 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7a/35/1328c7b0f780d34f8afc1d87ebdc2bb065a123b24766a0b475f0d67da637/frozenlist-1.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:f9aa1878d1083b276b0196f2dfbe00c9b7e752475ed3b682025ff20c1c1f51ac", size = 94315 }, + { url = "https://files.pythonhosted.org/packages/f4/d6/ca016b0adcf8327714ccef969740688808c86e0287bf3a639ff582f24e82/frozenlist-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:29acab3f66f0f24674b7dc4736477bcd4bc3ad4b896f5f45379a67bce8b96868", size = 53805 }, + { url = "https://files.pythonhosted.org/packages/ae/83/bcdaa437a9bd693ba658a0310f8cdccff26bd78e45fccf8e49897904a5cd/frozenlist-1.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:74fb4bee6880b529a0c6560885fce4dc95936920f9f20f53d99a213f7bf66776", size = 52163 }, + { url = "https://files.pythonhosted.org/packages/d4/e9/759043ab7d169b74fe05ebfbfa9ee5c881c303ebc838e308346204309cd0/frozenlist-1.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:590344787a90ae57d62511dd7c736ed56b428f04cd8c161fcc5e7232c130c69a", size = 238595 }, + { url = "https://files.pythonhosted.org/packages/f8/ce/b9de7dc61e753dc318cf0de862181b484178210c5361eae6eaf06792264d/frozenlist-1.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:068b63f23b17df8569b7fdca5517edef76171cf3897eb68beb01341131fbd2ad", size = 262428 }, + { url = "https://files.pythonhosted.org/packages/36/ce/dc6f29e0352fa34ebe45421960c8e7352ca63b31630a576e8ffb381e9c08/frozenlist-1.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c849d495bf5154cd8da18a9eb15db127d4dba2968d88831aff6f0331ea9bd4c", size = 258867 }, + { url = "https://files.pythonhosted.org/packages/51/47/159ac53faf8a11ae5ee8bb9db10327575557504e549cfd76f447b969aa91/frozenlist-1.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9750cc7fe1ae3b1611bb8cfc3f9ec11d532244235d75901fb6b8e42ce9229dfe", size = 229412 }, + { url = "https://files.pythonhosted.org/packages/ec/25/0c87df2e53c0c5d90f7517ca0ff7aca78d050a8ec4d32c4278e8c0e52e51/frozenlist-1.4.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9b2de4cf0cdd5bd2dee4c4f63a653c61d2408055ab77b151c1957f221cabf2a", size = 239539 }, + { url = "https://files.pythonhosted.org/packages/97/94/a1305fa4716726ae0abf3b1069c2d922fcfd442538cb850f1be543f58766/frozenlist-1.4.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0633c8d5337cb5c77acbccc6357ac49a1770b8c487e5b3505c57b949b4b82e98", size = 253379 }, + { url = "https://files.pythonhosted.org/packages/53/82/274e19f122e124aee6d113188615f63b0736b4242a875f482a81f91e07e2/frozenlist-1.4.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:27657df69e8801be6c3638054e202a135c7f299267f1a55ed3a598934f6c0d75", size = 245901 }, + { url = "https://files.pythonhosted.org/packages/b8/28/899931015b8cffbe155392fe9ca663f981a17e1adc69589ee0e1e7cdc9a2/frozenlist-1.4.1-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:f9a3ea26252bd92f570600098783d1371354d89d5f6b7dfd87359d669f2109b5", size = 263797 }, + { url = "https://files.pythonhosted.org/packages/6e/4f/b8a5a2f10c4a58c52a52a40cf6cf1ffcdbf3a3b64f276f41dab989bf3ab5/frozenlist-1.4.1-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:4f57dab5fe3407b6c0c1cc907ac98e8a189f9e418f3b6e54d65a718aaafe3950", size = 264415 }, + { url = "https://files.pythonhosted.org/packages/b0/2c/7be3bdc59dbae444864dbd9cde82790314390ec54636baf6b9ce212627ad/frozenlist-1.4.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:e02a0e11cf6597299b9f3bbd3f93d79217cb90cfd1411aec33848b13f5c656cc", size = 253964 }, + { url = "https://files.pythonhosted.org/packages/2e/ec/4fb5a88f6b9a352aed45ab824dd7ce4801b7bcd379adcb927c17a8f0a1a8/frozenlist-1.4.1-cp310-cp310-win32.whl", hash = "sha256:a828c57f00f729620a442881cc60e57cfcec6842ba38e1b19fd3e47ac0ff8dc1", size = 44559 }, + { url = "https://files.pythonhosted.org/packages/61/15/2b5d644d81282f00b61e54f7b00a96f9c40224107282efe4cd9d2bf1433a/frozenlist-1.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:f56e2333dda1fe0f909e7cc59f021eba0d2307bc6f012a1ccf2beca6ba362439", size = 50434 }, + { url = "https://files.pythonhosted.org/packages/01/bc/8d33f2d84b9368da83e69e42720cff01c5e199b5a868ba4486189a4d8fa9/frozenlist-1.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a0cb6f11204443f27a1628b0e460f37fb30f624be6051d490fa7d7e26d4af3d0", size = 97060 }, + { url = "https://files.pythonhosted.org/packages/af/b2/904500d6a162b98a70e510e743e7ea992241b4f9add2c8063bf666ca21df/frozenlist-1.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b46c8ae3a8f1f41a0d2ef350c0b6e65822d80772fe46b653ab6b6274f61d4a49", size = 55347 }, + { url = "https://files.pythonhosted.org/packages/5b/9c/f12b69997d3891ddc0d7895999a00b0c6a67f66f79498c0e30f27876435d/frozenlist-1.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:fde5bd59ab5357e3853313127f4d3565fc7dad314a74d7b5d43c22c6a5ed2ced", size = 53374 }, + { url = "https://files.pythonhosted.org/packages/ac/6e/e0322317b7c600ba21dec224498c0c5959b2bce3865277a7c0badae340a9/frozenlist-1.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:722e1124aec435320ae01ee3ac7bec11a5d47f25d0ed6328f2273d287bc3abb0", size = 273288 }, + { url = "https://files.pythonhosted.org/packages/a7/76/180ee1b021568dad5b35b7678616c24519af130ed3fa1e0f1ed4014e0f93/frozenlist-1.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2471c201b70d58a0f0c1f91261542a03d9a5e088ed3dc6c160d614c01649c106", size = 284737 }, + { url = "https://files.pythonhosted.org/packages/05/08/40159d706a6ed983c8aca51922a93fc69f3c27909e82c537dd4054032674/frozenlist-1.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c757a9dd70d72b076d6f68efdbb9bc943665ae954dad2801b874c8c69e185068", size = 280267 }, + { url = "https://files.pythonhosted.org/packages/e0/18/9f09f84934c2b2aa37d539a322267939770362d5495f37783440ca9c1b74/frozenlist-1.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f146e0911cb2f1da549fc58fc7bcd2b836a44b79ef871980d605ec392ff6b0d2", size = 258778 }, + { url = "https://files.pythonhosted.org/packages/b3/c9/0bc5ee7e1f5cc7358ab67da0b7dfe60fbd05c254cea5c6108e7d1ae28c63/frozenlist-1.4.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f9c515e7914626b2a2e1e311794b4c35720a0be87af52b79ff8e1429fc25f19", size = 272276 }, + { url = "https://files.pythonhosted.org/packages/12/5d/147556b73a53ad4df6da8bbb50715a66ac75c491fdedac3eca8b0b915345/frozenlist-1.4.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c302220494f5c1ebeb0912ea782bcd5e2f8308037b3c7553fad0e48ebad6ad82", size = 272424 }, + { url = "https://files.pythonhosted.org/packages/83/61/2087bbf24070b66090c0af922685f1d0596c24bb3f3b5223625bdeaf03ca/frozenlist-1.4.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:442acde1e068288a4ba7acfe05f5f343e19fac87bfc96d89eb886b0363e977ec", size = 260881 }, + { url = "https://files.pythonhosted.org/packages/a8/be/a235bc937dd803258a370fe21b5aa2dd3e7bfe0287a186a4bec30c6cccd6/frozenlist-1.4.1-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:1b280e6507ea8a4fa0c0a7150b4e526a8d113989e28eaaef946cc77ffd7efc0a", size = 282327 }, + { url = "https://files.pythonhosted.org/packages/5d/e7/b2469e71f082948066b9382c7b908c22552cc705b960363c390d2e23f587/frozenlist-1.4.1-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:fe1a06da377e3a1062ae5fe0926e12b84eceb8a50b350ddca72dc85015873f74", size = 281502 }, + { url = "https://files.pythonhosted.org/packages/db/1b/6a5b970e55dffc1a7d0bb54f57b184b2a2a2ad0b7bca16a97ca26d73c5b5/frozenlist-1.4.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:db9e724bebd621d9beca794f2a4ff1d26eed5965b004a97f1f1685a173b869c2", size = 272292 }, + { url = "https://files.pythonhosted.org/packages/1a/05/ebad68130e6b6eb9b287dacad08ea357c33849c74550c015b355b75cc714/frozenlist-1.4.1-cp311-cp311-win32.whl", hash = "sha256:e774d53b1a477a67838a904131c4b0eef6b3d8a651f8b138b04f748fccfefe17", size = 44446 }, + { url = "https://files.pythonhosted.org/packages/b3/21/c5aaffac47fd305d69df46cfbf118768cdf049a92ee6b0b5cb029d449dcf/frozenlist-1.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:fb3c2db03683b5767dedb5769b8a40ebb47d6f7f45b1b3e3b4b51ec8ad9d9825", size = 50459 }, + { url = "https://files.pythonhosted.org/packages/b4/db/4cf37556a735bcdb2582f2c3fa286aefde2322f92d3141e087b8aeb27177/frozenlist-1.4.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:1979bc0aeb89b33b588c51c54ab0161791149f2461ea7c7c946d95d5f93b56ae", size = 93937 }, + { url = "https://files.pythonhosted.org/packages/46/03/69eb64642ca8c05f30aa5931d6c55e50b43d0cd13256fdd01510a1f85221/frozenlist-1.4.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:cc7b01b3754ea68a62bd77ce6020afaffb44a590c2289089289363472d13aedb", size = 53656 }, + { url = "https://files.pythonhosted.org/packages/3f/ab/c543c13824a615955f57e082c8a5ee122d2d5368e80084f2834e6f4feced/frozenlist-1.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c9c92be9fd329ac801cc420e08452b70e7aeab94ea4233a4804f0915c14eba9b", size = 51868 }, + { url = "https://files.pythonhosted.org/packages/a9/b8/438cfd92be2a124da8259b13409224d9b19ef8f5a5b2507174fc7e7ea18f/frozenlist-1.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c3894db91f5a489fc8fa6a9991820f368f0b3cbdb9cd8849547ccfab3392d86", size = 280652 }, + { url = "https://files.pythonhosted.org/packages/54/72/716a955521b97a25d48315c6c3653f981041ce7a17ff79f701298195bca3/frozenlist-1.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ba60bb19387e13597fb059f32cd4d59445d7b18b69a745b8f8e5db0346f33480", size = 286739 }, + { url = "https://files.pythonhosted.org/packages/65/d8/934c08103637567084568e4d5b4219c1016c60b4d29353b1a5b3587827d6/frozenlist-1.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8aefbba5f69d42246543407ed2461db31006b0f76c4e32dfd6f42215a2c41d09", size = 289447 }, + { url = "https://files.pythonhosted.org/packages/70/bb/d3b98d83ec6ef88f9bd63d77104a305d68a146fd63a683569ea44c3085f6/frozenlist-1.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:780d3a35680ced9ce682fbcf4cb9c2bad3136eeff760ab33707b71db84664e3a", size = 265466 }, + { url = "https://files.pythonhosted.org/packages/0b/f2/b8158a0f06faefec33f4dff6345a575c18095a44e52d4f10c678c137d0e0/frozenlist-1.4.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9acbb16f06fe7f52f441bb6f413ebae6c37baa6ef9edd49cdd567216da8600cd", size = 281530 }, + { url = "https://files.pythonhosted.org/packages/ea/a2/20882c251e61be653764038ece62029bfb34bd5b842724fff32a5b7a2894/frozenlist-1.4.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:23b701e65c7b36e4bf15546a89279bd4d8675faabc287d06bbcfac7d3c33e1e6", size = 281295 }, + { url = "https://files.pythonhosted.org/packages/4c/f9/8894c05dc927af2a09663bdf31914d4fb5501653f240a5bbaf1e88cab1d3/frozenlist-1.4.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:3e0153a805a98f5ada7e09826255ba99fb4f7524bb81bf6b47fb702666484ae1", size = 268054 }, + { url = "https://files.pythonhosted.org/packages/37/ff/a613e58452b60166507d731812f3be253eb1229808e59980f0405d1eafbf/frozenlist-1.4.1-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:dd9b1baec094d91bf36ec729445f7769d0d0cf6b64d04d86e45baf89e2b9059b", size = 286904 }, + { url = "https://files.pythonhosted.org/packages/cc/6e/0091d785187f4c2020d5245796d04213f2261ad097e0c1cf35c44317d517/frozenlist-1.4.1-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:1a4471094e146b6790f61b98616ab8e44f72661879cc63fa1049d13ef711e71e", size = 290754 }, + { url = "https://files.pythonhosted.org/packages/a5/c2/e42ad54bae8bcffee22d1e12a8ee6c7717f7d5b5019261a8c861854f4776/frozenlist-1.4.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:5667ed53d68d91920defdf4035d1cdaa3c3121dc0b113255124bcfada1cfa1b8", size = 282602 }, + { url = "https://files.pythonhosted.org/packages/b6/61/56bad8cb94f0357c4bc134acc30822e90e203b5cb8ff82179947de90c17f/frozenlist-1.4.1-cp312-cp312-win32.whl", hash = "sha256:beee944ae828747fd7cb216a70f120767fc9f4f00bacae8543c14a6831673f89", size = 44063 }, + { url = "https://files.pythonhosted.org/packages/3e/dc/96647994a013bc72f3d453abab18340b7f5e222b7b7291e3697ca1fcfbd5/frozenlist-1.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:64536573d0a2cb6e625cf309984e2d873979709f2cf22839bf2d61790b448ad5", size = 50452 }, + { url = "https://files.pythonhosted.org/packages/d3/fb/6f2a22086065bc16797f77168728f0e59d5b89be76dd184e06b404f1e43b/frozenlist-1.4.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:bfa4a17e17ce9abf47a74ae02f32d014c5e9404b6d9ac7f729e01562bbee601e", size = 97291 }, + { url = "https://files.pythonhosted.org/packages/4d/23/7f01123d0e5adcc65cbbde5731378237dea7db467abd19e391f1ddd4130d/frozenlist-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b7e3ed87d4138356775346e6845cccbe66cd9e207f3cd11d2f0b9fd13681359d", size = 55249 }, + { url = "https://files.pythonhosted.org/packages/8b/c9/a81e9af48291954a883d35686f32308238dc968043143133b8ac9e2772af/frozenlist-1.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c99169d4ff810155ca50b4da3b075cbde79752443117d89429595c2e8e37fed8", size = 53676 }, + { url = "https://files.pythonhosted.org/packages/57/15/172af60c7e150a1d88ecc832f2590721166ae41eab582172fe1e9844eab4/frozenlist-1.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:edb678da49d9f72c9f6c609fbe41a5dfb9a9282f9e6a2253d5a91e0fc382d7c0", size = 239365 }, + { url = "https://files.pythonhosted.org/packages/8c/a4/3dc43e259960ad268ef8f2bf92912c2d2cd2e5275a4838804e03fd6f085f/frozenlist-1.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6db4667b187a6742b33afbbaf05a7bc551ffcf1ced0000a571aedbb4aa42fc7b", size = 265592 }, + { url = "https://files.pythonhosted.org/packages/a0/c1/458cf031fc8cd29a751e305b1ec773785ce486106451c93986562c62a21e/frozenlist-1.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:55fdc093b5a3cb41d420884cdaf37a1e74c3c37a31f46e66286d9145d2063bd0", size = 261274 }, + { url = "https://files.pythonhosted.org/packages/4a/32/21329084b61a119ecce0b2942d30312a34a7a0dccd01dcf7b40bda80f22c/frozenlist-1.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82e8211d69a4f4bc360ea22cd6555f8e61a1bd211d1d5d39d3d228b48c83a897", size = 230787 }, + { url = "https://files.pythonhosted.org/packages/70/b0/6f1ebdabfb604e39a0f84428986b89ab55f246b64cddaa495f2c953e1f6b/frozenlist-1.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89aa2c2eeb20957be2d950b85974b30a01a762f3308cd02bb15e1ad632e22dc7", size = 240674 }, + { url = "https://files.pythonhosted.org/packages/a3/05/50c53f1cdbfdf3d2cb9582a4ea5e12cd939ce33bd84403e6d07744563486/frozenlist-1.4.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9d3e0c25a2350080e9319724dede4f31f43a6c9779be48021a7f4ebde8b2d742", size = 255712 }, + { url = "https://files.pythonhosted.org/packages/b8/3d/cbc6f057f7d10efb7f1f410e458ac090f30526fd110ed2b29bb56ec38fe1/frozenlist-1.4.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7268252af60904bf52c26173cbadc3a071cece75f873705419c8681f24d3edea", size = 247618 }, + { url = "https://files.pythonhosted.org/packages/96/86/d5e9cd583aed98c9ee35a3aac2ce4d022ce9de93518e963aadf34a18143b/frozenlist-1.4.1-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:0c250a29735d4f15321007fb02865f0e6b6a41a6b88f1f523ca1596ab5f50bd5", size = 266868 }, + { url = "https://files.pythonhosted.org/packages/0f/6e/542af762beb9113f13614a590cafe661e0e060cddddee6107c8833605776/frozenlist-1.4.1-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:96ec70beabbd3b10e8bfe52616a13561e58fe84c0101dd031dc78f250d5128b9", size = 266439 }, + { url = "https://files.pythonhosted.org/packages/ea/db/8b611e23fda75da5311b698730a598df54cfe6236678001f449b1dedb241/frozenlist-1.4.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:23b2d7679b73fe0e5a4560b672a39f98dfc6f60df63823b0a9970525325b95f6", size = 256677 }, + { url = "https://files.pythonhosted.org/packages/eb/06/732cefc0c46c638e4426a859a372a50e4c9d62e65dbfa7ddcf0b13e6a4f2/frozenlist-1.4.1-cp39-cp39-win32.whl", hash = "sha256:a7496bfe1da7fb1a4e1cc23bb67c58fab69311cc7d32b5a99c2007b4b2a0e932", size = 44825 }, + { url = "https://files.pythonhosted.org/packages/29/eb/2110c4be2f622e87864e433efd7c4ee6e4f8a59ff2a93c1aa426ee50a8b8/frozenlist-1.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:e6a20a581f9ce92d389a8c7d7c3dd47c81fd5d6e655c8dddf341e14aa48659d0", size = 50652 }, + { url = "https://files.pythonhosted.org/packages/83/10/466fe96dae1bff622021ee687f68e5524d6392b0a2f80d05001cd3a451ba/frozenlist-1.4.1-py3-none-any.whl", hash = "sha256:04ced3e6a46b4cfffe20f9ae482818e34eba9b5fb0ce4056e4cc9b6e212d09b7", size = 11552 }, +] + +[[package]] +name = "fsspec" +version = "2024.5.0" +source = { registry = "https://pypi.org/simple" } +environment-markers = [ + "python_version >= '3.13'", + "python_version == '3.11' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version == '3.11' and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", + "python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')", + "python_version < '3.10' and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", + "python_version < '3.11' and python_version >= '3.10'", + "python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", + "python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (python_version >= '3.6' and platform_machine == 'aarch64' and platform_system == 'Linux'))", +] +sdist = { url = "https://files.pythonhosted.org/packages/71/28/cbf337fddd6f22686b7c2639b80e006accd904db152fe333fd98f4cd8d1e/fsspec-2024.5.0.tar.gz", hash = "sha256:1d021b0b0f933e3b3029ed808eb400c08ba101ca2de4b3483fbc9ca23fcee94a", size = 400066 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ba/a3/16e9fe32187e9c8bc7f9b7bcd9728529faa725231a0c96f2f98714ff2fc5/fsspec-2024.5.0-py3-none-any.whl", hash = "sha256:e0fdbc446d67e182f49a70b82cf7889028a63588fde6b222521f10937b2b670c", size = 316106 }, +] + +[package.optional-dependencies] +http = [ + { name = "aiohttp", marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] + +[[package]] +name = "fsspec" +version = "2024.6.1" +source = { registry = "https://pypi.org/simple" } +environment-markers = [ + "python_version < '3.10' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", + "python_version < '3.11' and python_version >= '3.10' and (python_version >= '3.7' or (python_version <= '3.9' and platform_machine == 'arm64' and platform_system == 'Darwin'))", +] +sdist = { url = "https://files.pythonhosted.org/packages/90/b6/eba5024a9889fcfff396db543a34bef0ab9d002278f163129f9f01005960/fsspec-2024.6.1.tar.gz", hash = "sha256:fad7d7e209dd4c1208e3bbfda706620e0da5142bebbd9c384afb95b07e798e49", size = 284584 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5e/44/73bea497ac69bafde2ee4269292fa3b41f1198f4bb7bbaaabde30ad29d4a/fsspec-2024.6.1-py3-none-any.whl", hash = "sha256:3cb443f8bcd2efb31295a5b9fdb02aee81d8452c80d28f97a6d0959e6cee101e", size = 177561 }, +] + +[package.optional-dependencies] +http = [ + { name = "aiohttp", marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, +] + +[[package]] +name = "ftfy" +version = "6.2.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "wcwidth", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/da/a9/59f4354257e8350a25be1774021991fb3a99a2fb87d0c1f367592548aed3/ftfy-6.2.3.tar.gz", hash = "sha256:79b505988f29d577a58a9069afe75553a02a46e42de6091c0660cdc67812badc", size = 64165 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ed/46/14d230ad057048aea7ccd2f96a80905830866d281ea90a6662a825490659/ftfy-6.2.3-py3-none-any.whl", hash = "sha256:f15761b023f3061a66207d33f0c0149ad40a8319fd16da91796363e2c049fdf8", size = 43011 }, +] + +[[package]] +name = "fugashi" +version = "1.3.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8e/73/5e160668189cb4d7fa671eb589886fd8afaa2fbf4c257ca77743e39dc9a9/fugashi-1.3.2.tar.gz", hash = "sha256:964980b5d227ee41af7570542aaab56b1298c44416271cba5d8ff9a58ab40748", size = 338825 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f2/d6/1bfc92a8dd39ec44d6df86a426211e8eff34c9c044613b5591a29270290e/fugashi-1.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:583e7a14e6ddf8a03b500bec30d708f72e98035ab43e2c92940dd9c36ee63de9", size = 565250 }, + { url = "https://files.pythonhosted.org/packages/40/a3/9a7826472b3753436ebc2e81ecca4eb554c2c191f09f59b87a0f22f51891/fugashi-1.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6c67023cdc1b059b05751c1785c794c24d8862f37a16cdb805e33c7d7ae0c19d", size = 521023 }, + { url = "https://files.pythonhosted.org/packages/9e/49/4d0f9a30a18021bdc06e0610e7466a889332f6880f4db3388366ee11ac33/fugashi-1.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6b2e21be33ed72621d9f4a601a33c00b38052df947f297d792b221a33337f094", size = 514783 }, + { url = "https://files.pythonhosted.org/packages/c0/9a/ab902f4ea4deae2ced08f9565bbcb7047a9a1520c0993bfc8faccad7c94b/fugashi-1.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:af7abac3037c7421b075782897766b8f453f28ef3bbadd3e7d69c9df409a48a8", size = 586946 }, + { url = "https://files.pythonhosted.org/packages/f2/67/93fe7ae8606c44ea28fd6db3edf0d490a1bc9e7ba9702b43be5a753cb8af/fugashi-1.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b915d936e3eb30d50fde86889f8ab56968e5cb4d0ceeb497ac1bb6c58531f87", size = 600931 }, + { url = "https://files.pythonhosted.org/packages/f2/fe/556f79a19d39b2c7ddc58068e7bd7744d6a8b2c77f10664c37260d31bab7/fugashi-1.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:8dc57d07809fbecdfc277d50028d5b8d23fb4c0ed12e6d6f7f565709c18848a4", size = 499117 }, + { url = "https://files.pythonhosted.org/packages/8f/5f/8f9675a04ab663f61799bb6fe2c7d6392d1103693730b03db3614e751fa1/fugashi-1.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:50243df8758f5fb90bd2801e557168e613df61fa4d488acfe364070e8a4a234c", size = 561898 }, + { url = "https://files.pythonhosted.org/packages/e8/05/1ac2398b7c1d12d024fb03586b679787ac52fe4f53c1644824b9e77e5f86/fugashi-1.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:9c9fb77c42e6b421e5c20f74179ed479255545b40a28f9983f264a8b19a30374", size = 519541 }, + { url = "https://files.pythonhosted.org/packages/27/f2/2a0498bfdb7dd8a80b8901bc059ff87495684ba17c66e59cfc980f996756/fugashi-1.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6fdef6be3489279c670459a55b2dfa876c0856b3fc96b3590aa801f37af6b827", size = 513121 }, + { url = "https://files.pythonhosted.org/packages/82/51/a5054f29165a437eedf845ed9cb1dac410ece2c2f0f16411db6be6c11319/fugashi-1.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2b2ebe0d6722e05000a959df303e06937939009f4eef0b8692018eb019496013", size = 594281 }, + { url = "https://files.pythonhosted.org/packages/24/22/7acc383ae61ea7f35705b60e76d3e527d13f0af81b3570b810da7af4470f/fugashi-1.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:85d8e3a9e9d92f555525b2719153e7d3e4ec71d0bae0b076b5495634039b8490", size = 606680 }, + { url = "https://files.pythonhosted.org/packages/20/04/67db7a11e20e12f01618e6942d6ce2a3c1c88ade0b6878edba17d8e8722d/fugashi-1.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:9774bb52930fa17ebab17f8bcf2b5d20b6ef529b425ea65affb29a3307c003f8", size = 498335 }, + { url = "https://files.pythonhosted.org/packages/34/ad/aceb8b1fef41308db782265e81d30e400957e8ec4508b25287df1af4f641/fugashi-1.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:fcfb3908059f4dd15d7fda64edd3c027b4da668bf1731f147aa888f5db01bd6c", size = 559903 }, + { url = "https://files.pythonhosted.org/packages/ad/8a/751ddea5821266135bc9e4fb0565744197180b5d91ec5cc021946020606d/fugashi-1.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:49b44261f2051c43a9e31816d85bb89e5563c3e4c03ff7830d1ebf5942888cf9", size = 518178 }, + { url = "https://files.pythonhosted.org/packages/8b/0e/785dbaa42e0e7ef2a17e6c3c6eca48ef862340d92051f2b257a660944752/fugashi-1.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:3a2d8aecb2a239de33bcb70806b7688001e72f68bde68961c6f2899155f15f87", size = 512640 }, + { url = "https://files.pythonhosted.org/packages/22/c5/ff64272679471658d6c6313f647d0ad0a1a254fe73d26c60cf263e0bd6d0/fugashi-1.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4e24864e92ad3acf3c0b8f645e33d543fe569544bb6ee9728cb281325aa76d06", size = 605926 }, + { url = "https://files.pythonhosted.org/packages/d9/0f/dfceef3b7e26da34556b8c3ab33a901977da069726da012bc57cfa2749a7/fugashi-1.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea942e45214a99844146ce0e0f1ac43bff6e2ccbf6d1cbfde4f2bed9ca0951b1", size = 622075 }, + { url = "https://files.pythonhosted.org/packages/86/d9/49484b50c6df110e1a24bc71958899ddd454e7d48227696d29503d91ed1e/fugashi-1.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:da61498017e5cbee65c6eff88a13e17b45a5e3b0428733e99168344b8ff95da5", size = 497750 }, + { url = "https://files.pythonhosted.org/packages/7c/f1/fb3e5dc9205e1bf6178a7b1fb4ac462d82aad7a0d4974215d9c02c54f8a0/fugashi-1.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7e392f2c57068bb892c45c1b69067c3dde94b633c81c725a613ee7defe09de47", size = 564866 }, + { url = "https://files.pythonhosted.org/packages/4e/7e/f23c21f72ae28e78407bd1eb2a40ce88ec6178451e1b9d595941a6b01bba/fugashi-1.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:85de463fc30390c06d985f52fcfd422acf7ada6b13f723721ca964854b9ae435", size = 520937 }, + { url = "https://files.pythonhosted.org/packages/35/98/2f84da4a4c2568de8ffcb467ac9be266c6bb11b7a8a8c2a9f65b282196f6/fugashi-1.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5a640da3824aba966209fc425b2b19c38d22a3da637f83b4a7df83cb94376b87", size = 514509 }, + { url = "https://files.pythonhosted.org/packages/cb/a6/21a71f536e61c3ec5fbcec02b43a2b20398976804f9221c34dc0503ef74e/fugashi-1.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:11e95f57b78152be3a0a1a1e77d7887cfc25c30412d5f5825711b75ea6d415be", size = 602236 }, + { url = "https://files.pythonhosted.org/packages/a8/ff/242c6925b847aeb8f3ca915acdb708c305181b461eee183269bdf514fc52/fugashi-1.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:409b83f136a3c2da805cd999bd7e1792e7c71fa8e0637f77bdec2b6fd070a3bb", size = 614525 }, + { url = "https://files.pythonhosted.org/packages/63/9b/0fd0d9daea50204b469406a36a26bcd7c73d5eafb3a268cdd32d0e7759d9/fugashi-1.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:51eed11fee767597cfe735bd01326eb06deb2283112e29e9e5bdc954750e7a24", size = 500176 }, + { url = "https://files.pythonhosted.org/packages/aa/96/7f762bd0a88b88556d1314c5244f8cd1abd76e750f35c09d9ece9f5be895/fugashi-1.3.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:bc99b6e8f003c7a0e53e0f486caa1547f0ca8f86777610ea92af6e2f40ca212a", size = 508043 }, + { url = "https://files.pythonhosted.org/packages/e6/18/b9b2db4d763e6c9a73c758ed5bc1446d30177b5b903e165a884f1d3ca406/fugashi-1.3.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:21d2dac5b085632f1f9a24edf5d7ccaeb3272be672e4aa37a0b219fc7a3b0655", size = 507921 }, +] + +[[package]] +name = "gast" +version = "0.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3c/14/c566f5ca00c115db7725263408ff952b8ae6d6a4e792ef9c84e77d9af7a1/gast-0.6.0.tar.gz", hash = "sha256:88fc5300d32c7ac6ca7b515310862f71e6fdf2c029bbec7c66c0f5dd47b6b1fb", size = 27708 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a3/61/8001b38461d751cd1a0c3a6ae84346796a5758123f3ed97a1b121dfbf4f3/gast-0.6.0-py3-none-any.whl", hash = "sha256:52b182313f7330389f72b069ba00f174cfe2a06411099547288839c6cbafbd54", size = 21173 }, +] + +[[package]] +name = "gitdb" +version = "4.0.11" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "smmap", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/19/0d/bbb5b5ee188dec84647a4664f3e11b06ade2bde568dbd489d9d64adef8ed/gitdb-4.0.11.tar.gz", hash = "sha256:bf5421126136d6d0af55bc1e7c1af1c397a34f5b7bd79e776cd3e89785c2b04b", size = 394469 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fd/5b/8f0c4a5bb9fd491c277c21eff7ccae71b47d43c4446c9d0c6cff2fe8c2c4/gitdb-4.0.11-py3-none-any.whl", hash = "sha256:81a3407ddd2ee8df444cbacea00e2d038e40150acfa3001696fe0dcf1d3adfa4", size = 62721 }, +] + +[[package]] +name = "gitpython" +version = "3.1.18" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "gitdb", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/29/22/3d591875078c1c5e7e11b478616821995053968a74b76043c55448c46381/GitPython-3.1.18.tar.gz", hash = "sha256:b838a895977b45ab6f0cc926a9045c8d1c44e2b653c1fcc39fe91f42c6e8f05b", size = 181199 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bc/91/b38c4fabb6e5092ab23492ded4f318ab7299b19263272b703478038c0fbc/GitPython-3.1.18-py3-none-any.whl", hash = "sha256:fce760879cd2aebd2991b3542876dc5c4a909b30c9d69dfc488e504a8db37ee8", size = 170100 }, +] + +[[package]] +name = "google-auth" +version = "2.33.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cachetools", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyasn1-modules", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rsa", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/28/4d/626b37c6bcc1f211aef23f47c49375072c0cb19148627d98c85e099acbc8/google_auth-2.33.0.tar.gz", hash = "sha256:d6a52342160d7290e334b4d47ba390767e4438ad0d45b7630774533e82655b95", size = 257157 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/60/57/0f37c6f35847e26b7bea7d5e4f069cf037fd792cf8b67206311761e7bb92/google_auth-2.33.0-py2.py3-none-any.whl", hash = "sha256:8eff47d0d4a34ab6265c50a106a3362de6a9975bb08998700e389f857e4d39df", size = 200537 }, +] + +[[package]] +name = "google-auth-oauthlib" +version = "1.2.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "google-auth", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests-oauthlib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cc/0f/1772edb8d75ecf6280f1c7f51cbcebe274e8b17878b382f63738fd96cee5/google_auth_oauthlib-1.2.1.tar.gz", hash = "sha256:afd0cad092a2eaa53cd8e8298557d6de1034c6cb4a740500b5357b648af97263", size = 24970 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1a/8e/22a28dfbd218033e4eeaf3a0533b2b54852b6530da0c0fe934f0cc494b29/google_auth_oauthlib-1.2.1-py2.py3-none-any.whl", hash = "sha256:2d58a27262d55aa1b87678c3ba7142a080098cbc2024f903c62355deb235d91f", size = 24930 }, +] + +[[package]] +name = "google-pasta" +version = "0.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/35/4a/0bd53b36ff0323d10d5f24ebd67af2de10a1117f5cf4d7add90df92756f1/google-pasta-0.2.0.tar.gz", hash = "sha256:c9f2c8dfc8f96d0d5808299920721be30c9eec37f2389f28904f454565c8a16e", size = 40430 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a3/de/c648ef6835192e6e2cc03f40b19eeda4382c49b5bafb43d88b931c4c74ac/google_pasta-0.2.0-py3-none-any.whl", hash = "sha256:b32482794a366b5366a32c92a9a9201b107821889935a02b3e51f6b432ea84ed", size = 57471 }, +] + +[[package]] +name = "greenlet" +version = "3.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/17/14/3bddb1298b9a6786539ac609ba4b7c9c0842e12aa73aaa4d8d73ec8f8185/greenlet-3.0.3.tar.gz", hash = "sha256:43374442353259554ce33599da8b692d5aa96f8976d567d4badf263371fbe491", size = 182013 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a6/64/bea53c592e3e45799f7c8039a8ee7d6883c518eafef1fcae60beb776070f/greenlet-3.0.3-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:9da2bd29ed9e4f15955dd1595ad7bc9320308a3b766ef7f837e23ad4b4aac31a", size = 270098 }, + { url = "https://files.pythonhosted.org/packages/a6/d6/408ad9603339db28ce334021b1403dfcfbcb7501a435d49698408d928de7/greenlet-3.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d353cadd6083fdb056bb46ed07e4340b0869c305c8ca54ef9da3421acbdf6881", size = 651930 }, + { url = "https://files.pythonhosted.org/packages/6c/90/5b14670653f7363fb3e1665f8da6d64bd4c31d53a796d09ef69f48be7273/greenlet-3.0.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dca1e2f3ca00b84a396bc1bce13dd21f680f035314d2379c4160c98153b2059b", size = 667643 }, + { url = "https://files.pythonhosted.org/packages/ef/17/e8e72cabfb5a906c0d976d7fbcc88310df292beea0f816efbefdaf694284/greenlet-3.0.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3ed7fb269f15dc662787f4119ec300ad0702fa1b19d2135a37c2c4de6fadfd4a", size = 659188 }, + { url = "https://files.pythonhosted.org/packages/1c/2f/64628f6ae48e05f585e0eb3fb7399b52e240ef99f602107b445bf6be23ef/greenlet-3.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd4f49ae60e10adbc94b45c0b5e6a179acc1736cf7a90160b404076ee283cf83", size = 662673 }, + { url = "https://files.pythonhosted.org/packages/24/35/945d5b10648fec9b20bcc6df8952d20bb3bba76413cd71c1fdbee98f5616/greenlet-3.0.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:73a411ef564e0e097dbe7e866bb2dda0f027e072b04da387282b02c308807405", size = 616002 }, + { url = "https://files.pythonhosted.org/packages/74/00/27e2da76b926e9b5a2c97d3f4c0baf1b7d8181209d3026c0171f621ae6c0/greenlet-3.0.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:7f362975f2d179f9e26928c5b517524e89dd48530a0202570d55ad6ca5d8a56f", size = 1150603 }, + { url = "https://files.pythonhosted.org/packages/e1/65/506e0a80931170b0dac1a03d36b7fc299f3fa3576235b916718602fff2c3/greenlet-3.0.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:649dde7de1a5eceb258f9cb00bdf50e978c9db1b996964cd80703614c86495eb", size = 1176756 }, + { url = "https://files.pythonhosted.org/packages/a6/76/e1ee9f290bb0d46b09704c2fb0e609cae329eb308ad404c0ee6fa1ecb8a5/greenlet-3.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:68834da854554926fbedd38c76e60c4a2e3198c6fbed520b106a8986445caaf9", size = 292349 }, + { url = "https://files.pythonhosted.org/packages/6e/20/68a278a6f93fa36e21cfc3d7599399a8a831225644eb3b6b18755cd3d6fc/greenlet-3.0.3-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:b1b5667cced97081bf57b8fa1d6bfca67814b0afd38208d52538316e9422fc61", size = 271666 }, + { url = "https://files.pythonhosted.org/packages/21/b4/90e06e07c78513ab03855768200bdb35c8e764e805b3f14fb488e56f82dc/greenlet-3.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52f59dd9c96ad2fc0d5724107444f76eb20aaccb675bf825df6435acb7703559", size = 657689 }, + { url = "https://files.pythonhosted.org/packages/f6/a2/0ed21078039072f9dc738bbf3af12b103a84106b1385ac4723841f846ce7/greenlet-3.0.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:afaff6cf5200befd5cec055b07d1c0a5a06c040fe5ad148abcd11ba6ab9b114e", size = 673009 }, + { url = "https://files.pythonhosted.org/packages/42/11/42ad6b1104c357826bbee7d7b9e4f24dbd9fde94899a03efb004aab62963/greenlet-3.0.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fe754d231288e1e64323cfad462fcee8f0288654c10bdf4f603a39ed923bef33", size = 667432 }, + { url = "https://files.pythonhosted.org/packages/bb/6b/384dee7e0121cbd1757bdc1824a5ee28e43d8d4e3f99aa59521f629442fe/greenlet-3.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2797aa5aedac23af156bbb5a6aa2cd3427ada2972c828244eb7d1b9255846379", size = 667442 }, + { url = "https://files.pythonhosted.org/packages/c6/1f/12d5a6cc26e8b483c2e7975f9c22e088ac735c0d8dcb8a8f72d31a4e5f04/greenlet-3.0.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b7f009caad047246ed379e1c4dbcb8b020f0a390667ea74d2387be2998f58a22", size = 620032 }, + { url = "https://files.pythonhosted.org/packages/c7/ec/85b647e59e0f137c7792a809156f413e38379cf7f3f2e1353c37f4be4026/greenlet-3.0.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c5e1536de2aad7bf62e27baf79225d0d64360d4168cf2e6becb91baf1ed074f3", size = 1154218 }, + { url = "https://files.pythonhosted.org/packages/94/ed/1e5f4bca691a81700e5a88e86d6f0e538acb10188cd2cc17140e523255ef/greenlet-3.0.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:894393ce10ceac937e56ec00bb71c4c2f8209ad516e96033e4b3b1de270e200d", size = 1180754 }, + { url = "https://files.pythonhosted.org/packages/47/79/26d54d7d700ef65b689fc2665a40846d13e834da0486674a8d4f0f371a47/greenlet-3.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:1ea188d4f49089fc6fb283845ab18a2518d279c7cd9da1065d7a84e991748728", size = 292822 }, + { url = "https://files.pythonhosted.org/packages/a2/2f/461615adc53ba81e99471303b15ac6b2a6daa8d2a0f7f77fd15605e16d5b/greenlet-3.0.3-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:70fb482fdf2c707765ab5f0b6655e9cfcf3780d8d87355a063547b41177599be", size = 273085 }, + { url = "https://files.pythonhosted.org/packages/e9/55/2c3cfa3cdbb940cf7321fbcf544f0e9c74898eed43bf678abf416812d132/greenlet-3.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d4d1ac74f5c0c0524e4a24335350edad7e5f03b9532da7ea4d3c54d527784f2e", size = 660514 }, + { url = "https://files.pythonhosted.org/packages/38/77/efb21ab402651896c74f24a172eb4d7479f9f53898bd5e56b9e20bb24ffd/greenlet-3.0.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:149e94a2dd82d19838fe4b2259f1b6b9957d5ba1b25640d2380bea9c5df37676", size = 674295 }, + { url = "https://files.pythonhosted.org/packages/74/3a/92f188ace0190f0066dca3636cf1b09481d0854c46e92ec5e29c7cefe5b1/greenlet-3.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:15d79dd26056573940fcb8c7413d84118086f2ec1a8acdfa854631084393efcc", size = 669395 }, + { url = "https://files.pythonhosted.org/packages/63/0f/847ed02cdfce10f0e6e3425cd054296bddb11a17ef1b34681fa01a055187/greenlet-3.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:881b7db1ebff4ba09aaaeae6aa491daeb226c8150fc20e836ad00041bcb11230", size = 670455 }, + { url = "https://files.pythonhosted.org/packages/bd/37/56b0da468a85e7704f3b2bc045015301bdf4be2184a44868c71f6dca6fe2/greenlet-3.0.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fcd2469d6a2cf298f198f0487e0a5b1a47a42ca0fa4dfd1b6862c999f018ebbf", size = 625692 }, + { url = "https://files.pythonhosted.org/packages/7c/68/b5f4084c0a252d7e9c0d95fc1cfc845d08622037adb74e05be3a49831186/greenlet-3.0.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:1f672519db1796ca0d8753f9e78ec02355e862d0998193038c7073045899f305", size = 1152597 }, + { url = "https://files.pythonhosted.org/packages/a4/fa/31e22345518adcd69d1d6ab5087a12c178aa7f3c51103f6d5d702199d243/greenlet-3.0.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2516a9957eed41dd8f1ec0c604f1cdc86758b587d964668b5b196a9db5bfcde6", size = 1181043 }, + { url = "https://files.pythonhosted.org/packages/53/80/3d94d5999b4179d91bcc93745d1b0815b073d61be79dd546b840d17adb18/greenlet-3.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:bba5387a6975598857d86de9eac14210a49d554a77eb8261cc68b7d082f78ce2", size = 293635 }, + { url = "https://files.pythonhosted.org/packages/0b/8a/f5140c8713f919af0e98e6aaa40cb20edaaf3739d18c4a077581e2422ac4/greenlet-3.0.3-cp39-cp39-macosx_11_0_universal2.whl", hash = "sha256:da70d4d51c8b306bb7a031d5cff6cc25ad253affe89b70352af5f1cb68e74b53", size = 269242 }, + { url = "https://files.pythonhosted.org/packages/cf/5b/2de4a398840d3b4d99c4a3476cda0d82badfa349f3f89846ada2e32e9500/greenlet-3.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:086152f8fbc5955df88382e8a75984e2bb1c892ad2e3c80a2508954e52295257", size = 650174 }, + { url = "https://files.pythonhosted.org/packages/dc/c3/06ca5f34b01af6d6e2fd2f97c0ad3673123a442bf4a3add548d374b1cc7c/greenlet-3.0.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d73a9fe764d77f87f8ec26a0c85144d6a951a6c438dfe50487df5595c6373eac", size = 666285 }, + { url = "https://files.pythonhosted.org/packages/a2/92/f11dbbcf33809421447b24d2eefee0575c59c8569d6d03f7ca4d2b34d56f/greenlet-3.0.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b7dcbe92cc99f08c8dd11f930de4d99ef756c3591a5377d1d9cd7dd5e896da71", size = 658521 }, + { url = "https://files.pythonhosted.org/packages/9d/ea/8bc7ed08ba274bdaff08f2cb546d832b8f44af267e03ca6e449840486915/greenlet-3.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1551a8195c0d4a68fac7a4325efac0d541b48def35feb49d803674ac32582f61", size = 660753 }, + { url = "https://files.pythonhosted.org/packages/af/05/b7e068070a6c143f34dfcd7e9144684271b8067e310f6da68269580db1d8/greenlet-3.0.3-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:64d7675ad83578e3fc149b617a444fab8efdafc9385471f868eb5ff83e446b8b", size = 614348 }, + { url = "https://files.pythonhosted.org/packages/74/82/9737e7dee4ccb9e1be2a8f17cf760458be2c36c6ff7bbaef55cbe279e729/greenlet-3.0.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b37eef18ea55f2ffd8f00ff8fe7c8d3818abd3e25fb73fae2ca3b672e333a7a6", size = 1149569 }, + { url = "https://files.pythonhosted.org/packages/54/4b/965a542baf157f23912e466b50fa9c49dd66132d9495d201e6c607ea16f2/greenlet-3.0.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:77457465d89b8263bca14759d7c1684df840b6811b2499838cc5b040a8b5b113", size = 1176361 }, + { url = "https://files.pythonhosted.org/packages/20/70/2f99bdcb4e3912d844dee279e077ee670ec43161d96670a9dfad16b89dd1/greenlet-3.0.3-cp39-cp39-win32.whl", hash = "sha256:57e8974f23e47dac22b83436bdcf23080ade568ce77df33159e019d161ce1d1e", size = 272960 }, + { url = "https://files.pythonhosted.org/packages/c3/80/01ff837bc7122d049971960123d749ed16adbd43cbc008afdb780a40e3fa/greenlet-3.0.3-cp39-cp39-win_amd64.whl", hash = "sha256:c5ee858cfe08f34712f548c3c363e807e7186f03ad7a5039ebadb29e8c6be067", size = 290843 }, +] + +[[package]] +name = "grpcio" +version = "1.65.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cf/e7/739849982ca7fa1bf5e52a472803618e4f1f2963e9a73b1ca2cb056f95c7/grpcio-1.65.4.tar.gz", hash = "sha256:2a4f476209acffec056360d3e647ae0e14ae13dcf3dfb130c227ae1c594cbe39", size = 12254082 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ae/48/1c13c0963aa714406b46739f4fa57fb467979f9f07c528cf586d270f0043/grpcio-1.65.4-cp310-cp310-linux_armv7l.whl", hash = "sha256:0e85c8766cf7f004ab01aff6a0393935a30d84388fa3c58d77849fcf27f3e98c", size = 4878764 }, + { url = "https://files.pythonhosted.org/packages/52/df/9fe3671493b3ebb9a936f477749c9bb84dc2c78b3633f475594ffbd8716e/grpcio-1.65.4-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:e4a795c02405c7dfa8affd98c14d980f4acea16ea3b539e7404c645329460e5a", size = 10411328 }, + { url = "https://files.pythonhosted.org/packages/d7/ff/fa75c686920b0c83a07658d6cc665ef8ac9b0a89057ad1e91afac995ff0d/grpcio-1.65.4-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:d7b984a8dd975d949c2042b9b5ebcf297d6d5af57dcd47f946849ee15d3c2fb8", size = 5393965 }, + { url = "https://files.pythonhosted.org/packages/7d/ed/070a968c69f5b8c8d943f9300b3aad78b4befa44408b0b3169370915b1c0/grpcio-1.65.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:644a783ce604a7d7c91412bd51cf9418b942cf71896344b6dc8d55713c71ce82", size = 5980074 }, + { url = "https://files.pythonhosted.org/packages/a5/57/f03b02c4fad8b72539ab04b8b524782e071c89a2d9c182d60b5d9ded41d7/grpcio-1.65.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5764237d751d3031a36fafd57eb7d36fd2c10c658d2b4057c516ccf114849a3e", size = 5660544 }, + { url = "https://files.pythonhosted.org/packages/4f/5a/47ca58c5c275b5d1002d8a60a9544b30f6b5ca4f3689a75a6d9df890c004/grpcio-1.65.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:ee40d058cf20e1dd4cacec9c39e9bce13fedd38ce32f9ba00f639464fcb757de", size = 6287925 }, + { url = "https://files.pythonhosted.org/packages/ff/d9/77b7ebc1b3ac905644a4ec4ad5bb605680482c3ece5966c399bca164c874/grpcio-1.65.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4482a44ce7cf577a1f8082e807a5b909236bce35b3e3897f839f2fbd9ae6982d", size = 5909355 }, + { url = "https://files.pythonhosted.org/packages/ab/77/9480f757114cea5f31e8101de74cddcd1dd1d4e4e3d814a5a384a21635b1/grpcio-1.65.4-cp310-cp310-win32.whl", hash = "sha256:66bb051881c84aa82e4f22d8ebc9d1704b2e35d7867757f0740c6ef7b902f9b1", size = 3435366 }, + { url = "https://files.pythonhosted.org/packages/89/11/2dab356785e1df6e0a8224c0e4d5f8587fba345c065c3e27f0ad4456bc08/grpcio-1.65.4-cp310-cp310-win_amd64.whl", hash = "sha256:870370524eff3144304da4d1bbe901d39bdd24f858ce849b7197e530c8c8f2ec", size = 4144806 }, + { url = "https://files.pythonhosted.org/packages/a5/cf/969a2de144666f483a0c11aa2b33bf646689062f928bb361c57db8b7c90e/grpcio-1.65.4-cp311-cp311-linux_armv7l.whl", hash = "sha256:85e9c69378af02e483bc626fc19a218451b24a402bdf44c7531e4c9253fb49ef", size = 4884884 }, + { url = "https://files.pythonhosted.org/packages/9d/ee/4ce71fac8935862bb43e4d2a30d286e3de4d9f53d0cf486daa2e379e5c8f/grpcio-1.65.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:2bd672e005afab8bf0d6aad5ad659e72a06dd713020554182a66d7c0c8f47e18", size = 10438328 }, + { url = "https://files.pythonhosted.org/packages/40/ef/c85c23ce58d55ae21d4812be8462cce91d2f271d8e174c862f1cb1f5a51e/grpcio-1.65.4-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:abccc5d73f5988e8f512eb29341ed9ced923b586bb72e785f265131c160231d8", size = 5396919 }, + { url = "https://files.pythonhosted.org/packages/9d/48/595fa809256e09d9defbbd17a92dc7ee5d36cf7392c5cbc69eb9fa5b0daf/grpcio-1.65.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:886b45b29f3793b0c2576201947258782d7e54a218fe15d4a0468d9a6e00ce17", size = 5982481 }, + { url = "https://files.pythonhosted.org/packages/a7/40/086bcaa583f1c4b80c193f9269f0270fb6e5eb384cd855ec2660e1bbcc75/grpcio-1.65.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:be952436571dacc93ccc7796db06b7daf37b3b56bb97e3420e6503dccfe2f1b4", size = 5659542 }, + { url = "https://files.pythonhosted.org/packages/13/b4/5b60479e819889834a785dfceb67a8710e78518ac154158cf745e95fe853/grpcio-1.65.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:8dc9ddc4603ec43f6238a5c95400c9a901b6d079feb824e890623da7194ff11e", size = 6292647 }, + { url = "https://files.pythonhosted.org/packages/d5/2e/791a7c1d5582068adb87e63f291758c8c8e459b8aff0fe75f96e075ba42a/grpcio-1.65.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:ade1256c98cba5a333ef54636095f2c09e6882c35f76acb04412f3b1aa3c29a5", size = 5908730 }, + { url = "https://files.pythonhosted.org/packages/f9/75/87a399e96428270c9cc6700f1451d819bc8423ff242de6387a1a1f1b857e/grpcio-1.65.4-cp311-cp311-win32.whl", hash = "sha256:280e93356fba6058cbbfc6f91a18e958062ef1bdaf5b1caf46c615ba1ae71b5b", size = 3435309 }, + { url = "https://files.pythonhosted.org/packages/74/12/257ab1687ab913aa39330092a9816014bfcf108557f05869a4d40e01ece1/grpcio-1.65.4-cp311-cp311-win_amd64.whl", hash = "sha256:d2b819f9ee27ed4e3e737a4f3920e337e00bc53f9e254377dd26fc7027c4d558", size = 4145930 }, + { url = "https://files.pythonhosted.org/packages/10/32/29329ba27ddef8d502e2c279f0beab93fb60d13c1cb7e3e6c5bf2c1ef3d7/grpcio-1.65.4-cp312-cp312-linux_armv7l.whl", hash = "sha256:926a0750a5e6fb002542e80f7fa6cab8b1a2ce5513a1c24641da33e088ca4c56", size = 4822752 }, + { url = "https://files.pythonhosted.org/packages/a3/4e/218d076b1f939d02b4738bd0b1044ec6898f3e21a9fe8b7c4876dd970195/grpcio-1.65.4-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:2a1d4c84d9e657f72bfbab8bedf31bdfc6bfc4a1efb10b8f2d28241efabfaaf2", size = 10400601 }, + { url = "https://files.pythonhosted.org/packages/62/51/46f4366183f72986071bed97caa1aa19e05a9288df7b7fb3c439bd48d5ac/grpcio-1.65.4-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:17de4fda50967679677712eec0a5c13e8904b76ec90ac845d83386b65da0ae1e", size = 5337677 }, + { url = "https://files.pythonhosted.org/packages/24/dd/8d19248f6645e3acd34d2a22d84e7b3db14135db528a3003239f8e26460d/grpcio-1.65.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3dee50c1b69754a4228e933696408ea87f7e896e8d9797a3ed2aeed8dbd04b74", size = 5922221 }, + { url = "https://files.pythonhosted.org/packages/12/75/b25d1f130db4a294214ac300a38cc1f5a853ee8ea2e0e2529a200d3e6165/grpcio-1.65.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:74c34fc7562bdd169b77966068434a93040bfca990e235f7a67cdf26e1bd5c63", size = 5603315 }, + { url = "https://files.pythonhosted.org/packages/b5/0f/72647daa8dec968c338ed8fbf904369103377de73fe10ba4456eb843bd70/grpcio-1.65.4-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:24a2246e80a059b9eb981e4c2a6d8111b1b5e03a44421adbf2736cc1d4988a8a", size = 6236055 }, + { url = "https://files.pythonhosted.org/packages/d9/56/32bdcfdab28a42207095f6d799508d135b9d072521ce322165d0599478d1/grpcio-1.65.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:18c10f0d054d2dce34dd15855fcca7cc44ec3b811139437543226776730c0f28", size = 5853581 }, + { url = "https://files.pythonhosted.org/packages/63/7f/8716a0ecc1fc1a80e5071c4de52bb8b4993032f2841670f099eb865eca88/grpcio-1.65.4-cp312-cp312-win32.whl", hash = "sha256:d72962788b6c22ddbcdb70b10c11fbb37d60ae598c51eb47ec019db66ccfdff0", size = 3418578 }, + { url = "https://files.pythonhosted.org/packages/a9/2a/b104830e8ffe183d6e648fa2b4e200e7e1582191df195beaa93d28127f5f/grpcio-1.65.4-cp312-cp312-win_amd64.whl", hash = "sha256:7656376821fed8c89e68206a522522317787a3d9ed66fb5110b1dff736a5e416", size = 4130956 }, + { url = "https://files.pythonhosted.org/packages/95/02/5a1e0d025dd831235834a0ccce2f1e9504d64a8d3a3f0881cd2a98175171/grpcio-1.65.4-cp39-cp39-linux_armv7l.whl", hash = "sha256:874acd010e60a2ec1e30d5e505b0651ab12eb968157cd244f852b27c6dbed733", size = 4897236 }, + { url = "https://files.pythonhosted.org/packages/26/15/65a1612e87ed05545c19fe6d919a1ee5bef07a35f4d959f66d805379e8bc/grpcio-1.65.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b07f36faf01fca5427d4aa23645e2d492157d56c91fab7e06fe5697d7e171ad4", size = 10506647 }, + { url = "https://files.pythonhosted.org/packages/f9/9d/cbe5275f6a316a13a0320f47162c6f4949f50e62a3a530d0ab8905b1a209/grpcio-1.65.4-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:b81711bf4ec08a3710b534e8054c7dcf90f2edc22bebe11c1775a23f145595fe", size = 5416399 }, + { url = "https://files.pythonhosted.org/packages/e9/c8/0bf10fa500316d795fa3480db4299b6b79fe998ab9942e9a376e83f4642a/grpcio-1.65.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88fcabc332a4aef8bcefadc34a02e9ab9407ab975d2c7d981a8e12c1aed92aa1", size = 5999122 }, + { url = "https://files.pythonhosted.org/packages/bc/e4/710112ef9edd51430c99c75f306cd605b94c122403be3058cc0ef5c35d13/grpcio-1.65.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c9ba3e63108a8749994f02c7c0e156afb39ba5bdf755337de8e75eb685be244b", size = 5685252 }, + { url = "https://files.pythonhosted.org/packages/ae/87/45a5682482e4bba02a34dc507c82f5c96ad0e29ec388bb4f5c7b85df63dc/grpcio-1.65.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:8eb485801957a486bf5de15f2c792d9f9c897a86f2f18db8f3f6795a094b4bb2", size = 6307285 }, + { url = "https://files.pythonhosted.org/packages/f3/29/0f901894e763807cc420ab5fbcbfcb1f3797dc5a8755a399f78b5b7df0e8/grpcio-1.65.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:075f3903bc1749ace93f2b0664f72964ee5f2da5c15d4b47e0ab68e4f442c257", size = 5930544 }, + { url = "https://files.pythonhosted.org/packages/8c/8f/2555198771997a25891c8619bc0e1023ca937f2876a041c0ba65ddf4f920/grpcio-1.65.4-cp39-cp39-win32.whl", hash = "sha256:0a0720299bdb2cc7306737295d56e41ce8827d5669d4a3cd870af832e3b17c4d", size = 3436203 }, + { url = "https://files.pythonhosted.org/packages/85/c1/514b64320820122c8f5acc116b69b5c1ba42329f6050c0e5b09f6dcfe474/grpcio-1.65.4-cp39-cp39-win_amd64.whl", hash = "sha256:a146bc40fa78769f22e1e9ff4f110ef36ad271b79707577bf2a31e3e931141b9", size = 4144542 }, +] + +[[package]] +name = "h11" +version = "0.14.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f5/38/3af3d3633a34a3316095b39c8e8fb4853a28a536e55d347bd8d8e9a14b03/h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d", size = 100418 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/95/04/ff642e65ad6b90db43e668d70ffb6736436c7ce41fcc549f4e9472234127/h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761", size = 58259 }, +] + +[[package]] +name = "h5py" +version = "3.11.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/52/8f/e557819155a282da36fb21f8de4730cfd10a964b52b3ae8d20157ac1c668/h5py-3.11.0.tar.gz", hash = "sha256:7b7e8f78072a2edec87c9836f25f34203fd492a4475709a18b417a33cfb21fa9", size = 406519 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ac/25/a1cc81b3a742b73f9409bafe4762c9de0940cce0955d4b6754698fd5ce44/h5py-3.11.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1625fd24ad6cfc9c1ccd44a66dac2396e7ee74940776792772819fc69f3a3731", size = 3477113 }, + { url = "https://files.pythonhosted.org/packages/d4/03/bbb9a992fb43d3ce46687b7c14107f0fa56e6c8704c9ca945a9392cbc8ce/h5py-3.11.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c072655ad1d5fe9ef462445d3e77a8166cbfa5e599045f8aa3c19b75315f10e5", size = 2939879 }, + { url = "https://files.pythonhosted.org/packages/94/00/94bf8573e7487b7c37f2b613fc381880d48ec2311f2e859b8a5817deb4df/h5py-3.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:77b19a40788e3e362b54af4dcf9e6fde59ca016db2c61360aa30b47c7b7cef00", size = 5306122 }, + { url = "https://files.pythonhosted.org/packages/bb/0d/fbadb9c69e2a31f641bc24e8d21671129ef3b73f0c61bb16b094fadf1385/h5py-3.11.0-cp310-cp310-win_amd64.whl", hash = "sha256:ef4e2f338fc763f50a8113890f455e1a70acd42a4d083370ceb80c463d803972", size = 2968816 }, + { url = "https://files.pythonhosted.org/packages/a0/52/38bb74cc4362738cc7ef819503fc54d70f0c3a7378519ccb0ac309389122/h5py-3.11.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:bbd732a08187a9e2a6ecf9e8af713f1d68256ee0f7c8b652a32795670fb481ba", size = 3489913 }, + { url = "https://files.pythonhosted.org/packages/f0/af/dfbea0c69fe725e9e77259d42f4e14eb582eb094200aaf697feb36f513d8/h5py-3.11.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:75bd7b3d93fbeee40860fd70cdc88df4464e06b70a5ad9ce1446f5f32eb84007", size = 2946912 }, + { url = "https://files.pythonhosted.org/packages/af/26/f231ee425c8df93c1abbead3d90ea4a5ff3d6aa49e0edfd3b4c017e74844/h5py-3.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:52c416f8eb0daae39dabe71415cb531f95dce2d81e1f61a74537a50c63b28ab3", size = 5420165 }, + { url = "https://files.pythonhosted.org/packages/d8/5e/b7b83cfe60504cc4d24746aed04353af7ea8ec104e597e5ae71b8d0390cb/h5py-3.11.0-cp311-cp311-win_amd64.whl", hash = "sha256:083e0329ae534a264940d6513f47f5ada617da536d8dccbafc3026aefc33c90e", size = 2979079 }, + { url = "https://files.pythonhosted.org/packages/58/a9/2655d4b8355d0ee783dc89dd40b5f0780e6f54a4c9b60721dc235fd6c457/h5py-3.11.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:a76cae64080210389a571c7d13c94a1a6cf8cb75153044fd1f822a962c97aeab", size = 3466468 }, + { url = "https://files.pythonhosted.org/packages/9d/3f/cf80ef55e0a9b18aae96c763fbd275c54d0723e0f2cc54f954f87cc5c69a/h5py-3.11.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f3736fe21da2b7d8a13fe8fe415f1272d2a1ccdeff4849c1421d2fb30fd533bc", size = 2943214 }, + { url = "https://files.pythonhosted.org/packages/db/7e/fedac8bb8c4729409e2dec5e4136a289116d701d54f69ce73c5617afc5f0/h5py-3.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa6ae84a14103e8dc19266ef4c3e5d7c00b68f21d07f2966f0ca7bdb6c2761fb", size = 5378375 }, + { url = "https://files.pythonhosted.org/packages/2b/b2/0ee327933ffa37af1fc7915df7fc067e6009adcd8445d55ad07a9bec11b5/h5py-3.11.0-cp312-cp312-win_amd64.whl", hash = "sha256:21dbdc5343f53b2e25404673c4f00a3335aef25521bd5fa8c707ec3833934892", size = 2970991 }, + { url = "https://files.pythonhosted.org/packages/c2/1f/36a84945616881bd47e6c40dcdca7e929bc811725d78d001eddba6864185/h5py-3.11.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f4e025e852754ca833401777c25888acb96889ee2c27e7e629a19aee288833f0", size = 3490090 }, + { url = "https://files.pythonhosted.org/packages/3c/fb/e213586de5ea56f1747a843e725c62eef350512be57452186996ba660d52/h5py-3.11.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6c4b760082626120031d7902cd983d8c1f424cdba2809f1067511ef283629d4b", size = 2951710 }, + { url = "https://files.pythonhosted.org/packages/71/28/69a881e01f198ccdb65c36f7adcfef22bfe85e38ffbfdf833af24f58eb5e/h5py-3.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:67462d0669f8f5459529de179f7771bd697389fcb3faab54d63bf788599a48ea", size = 5326481 }, + { url = "https://files.pythonhosted.org/packages/c3/61/0b35ad9aac0ab0a33365879556fdb824fc83013df69b247386690db59015/h5py-3.11.0-cp39-cp39-win_amd64.whl", hash = "sha256:d9c944d364688f827dc889cf83f1fca311caf4fa50b19f009d1f2b525edd33a3", size = 2978689 }, +] + +[[package]] +name = "hf-doc-builder" +version = "0.5.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "black", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "gitpython", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "huggingface-hub", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "nbformat", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/97/f7/3a4e5528b79891159cd428d6c6d09bd47ca6b4c26315b9bb77828b162586/hf-doc-builder-0.5.0.tar.gz", hash = "sha256:e557660f76d1d90ac79e96d7b17642eca83f16a0a89ceabde180f0437d28179b", size = 152415 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/40/89/b794a9f2708f2926d3050132541952bc44eeeb1e560dc34fd00bace47655/hf_doc_builder-0.5.0-py3-none-any.whl", hash = "sha256:bdceb44a26b7eb90a344afb3560306e23e95f0676f94fbd8a8111cf7f096e2ea", size = 67780 }, +] + +[[package]] +name = "hjson" +version = "3.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/82/e5/0b56d723a76ca67abadbf7fb71609fb0ea7e6926e94fcca6c65a85b36a0e/hjson-3.1.0.tar.gz", hash = "sha256:55af475a27cf83a7969c808399d7bccdec8fb836a07ddbd574587593b9cdcf75", size = 40541 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1f/7f/13cd798d180af4bf4c0ceddeefba2b864a63c71645abc0308b768d67bb81/hjson-3.1.0-py3-none-any.whl", hash = "sha256:65713cdcf13214fb554eb8b4ef803419733f4f5e551047c9b711098ab7186b89", size = 54018 }, +] + +[[package]] +name = "huggingface-hub" +version = "0.24.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "filelock", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fsspec", version = "2024.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fsspec", version = "2024.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ec/07/b70a5b9c3da399a54a446a4750763c9030f47fa0491ef31a3fa8de4cb0d2/huggingface_hub-0.24.5.tar.gz", hash = "sha256:7b45d6744dd53ce9cbf9880957de00e9d10a9ae837f1c9b7255fc8fa4e8264f3", size = 349225 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0b/05/31b21998f68c31e7ffcc27ff08531fb9af5506d765ce8d661fb0036e6918/huggingface_hub-0.24.5-py3-none-any.whl", hash = "sha256:d93fb63b1f1a919a22ce91a14518974e81fc4610bf344dfe7572343ce8d3aced", size = 417510 }, +] + +[[package]] +name = "humanfriendly" +version = "10.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyreadline3", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cc/3f/2c29224acb2e2df4d2046e4c73ee2662023c58ff5b113c4c1adac0886c43/humanfriendly-10.0.tar.gz", hash = "sha256:6b0b831ce8f15f7300721aa49829fc4e83921a9a301cc7f606be6686a2288ddc", size = 360702 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f0/0f/310fb31e39e2d734ccaa2c0fb981ee41f7bd5056ce9bc29b2248bd569169/humanfriendly-10.0-py2.py3-none-any.whl", hash = "sha256:1697e1a8a8f550fd43c2865cd84542fc175a61dcb779b6fee18cf6b6ccba1477", size = 86794 }, +] + +[[package]] +name = "hypothesis" +version = "6.110.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "exceptiongroup", marker = "python_version < '3.11'" }, + { name = "sortedcontainers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/af/f1/3e21fa4dab81c67ddbcf92a23dce668474d4689695e76b9988a8817083e5/hypothesis-6.110.1.tar.gz", hash = "sha256:a138bfaea11aba6daadf8effd9065251a6fec1549f25b7d72ac9881a413f76b0", size = 406779 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0b/79/06dfd9c9413a19cc0a5a2828706a2629ed74506c29486b5ca456d4d96aff/hypothesis-6.110.1-py3-none-any.whl", hash = "sha256:4b54a4ed3385c53b247b99e7b3c9630e7b665ef3cfdb2c557dd1c0b34d090481", size = 467555 }, +] + +[[package]] +name = "idna" +version = "3.7" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/21/ed/f86a79a07470cb07819390452f178b3bef1d375f2ec021ecfc709fc7cf07/idna-3.7.tar.gz", hash = "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc", size = 189575 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e5/3e/741d8c82801c347547f8a2a06aa57dbb1992be9e948df2ea0eda2c8b79e8/idna-3.7-py3-none-any.whl", hash = "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0", size = 66836 }, +] + +[[package]] +name = "importlib-metadata" +version = "6.11.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "zipp", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ee/eb/58c2ab27ee628ad801f56d4017fe62afab0293116f6d0b08f1d5bd46e06f/importlib_metadata-6.11.0.tar.gz", hash = "sha256:1231cf92d825c9e03cfc4da076a16de6422c863558229ea0b22b675657463443", size = 54593 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/59/9b/ecce94952ab5ea74c31dcf9ccf78ccd484eebebef06019bf8cb579ab4519/importlib_metadata-6.11.0-py3-none-any.whl", hash = "sha256:f0afba6205ad8f8947c7d338b5342d5db2afbfd82f9cbef7879a9539cc12eb9b", size = 23427 }, +] + +[[package]] +name = "importlib-resources" +version = "6.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "zipp", marker = "python_version < '3.10'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c8/9d/6ee73859d6be81c6ea7ebac89655e92740296419bd37e5c8abdb5b62fd55/importlib_resources-6.4.0.tar.gz", hash = "sha256:cdb2b453b8046ca4e3798eb1d84f3cce1446a0e8e7b5ef4efb600f19fc398145", size = 42040 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/75/06/4df55e1b7b112d183f65db9503bff189e97179b256e1ea450a3c365241e0/importlib_resources-6.4.0-py3-none-any.whl", hash = "sha256:50d10f043df931902d4194ea07ec57960f66a80449ff867bfe782b4c486ba78c", size = 38168 }, +] + +[[package]] +name = "iniconfig" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d7/4b/cbd8e699e64a6f16ca3a8220661b5f83792b3017d0f79807cb8708d33913/iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3", size = 4646 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374", size = 5892 }, +] + +[[package]] +name = "ipadic" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e7/4e/c459f94d62a0bef89f866857bc51b9105aff236b83928618315b41a26b7b/ipadic-1.0.0.tar.gz", hash = "sha256:f5923d31eca6131acaaf18ed28d8998665b1347b640d3a6476f64650e9a71c07", size = 13413189 } + +[[package]] +name = "isodate" +version = "0.6.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/db/7a/c0a56c7d56c7fa723988f122fa1f1ccf8c5c4ccc48efad0d214b49e5b1af/isodate-0.6.1.tar.gz", hash = "sha256:48c5881de7e8b0a0d648cb024c8062dc84e7b840ed81e864c7614fd3c127bde9", size = 28443 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/85/7882d311924cbcfc70b1890780763e36ff0b140c7e51c110fc59a532f087/isodate-0.6.1-py2.py3-none-any.whl", hash = "sha256:0751eece944162659049d35f4f549ed815792b38793f07cf73381c1c87cbed96", size = 41722 }, +] + +[[package]] +name = "isort" +version = "5.13.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/87/f9/c1eb8635a24e87ade2efce21e3ce8cd6b8630bb685ddc9cdaca1349b2eb5/isort-5.13.2.tar.gz", hash = "sha256:48fdfcb9face5d58a4f6dde2e72a1fb8dcaf8ab26f95ab49fab84c2ddefb0109", size = 175303 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/b3/8def84f539e7d2289a02f0524b944b15d7c75dab7628bedf1c4f0992029c/isort-5.13.2-py3-none-any.whl", hash = "sha256:8ca5e72a8d85860d5a3fa69b8745237f2939afe12dbf656afbcb47fe72d947a6", size = 92310 }, +] + +[[package]] +name = "itsdangerous" +version = "2.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9c/cb/8ac0172223afbccb63986cc25049b154ecfb5e85932587206f42317be31d/itsdangerous-2.2.0.tar.gz", hash = "sha256:e0050c0b7da1eea53ffaf149c0cfbb5c6e2e2b69c4bef22c81fa6eb73e5f6173", size = 54410 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/96/92447566d16df59b2a776c0fb82dbc4d9e07cd95062562af01e408583fc4/itsdangerous-2.2.0-py3-none-any.whl", hash = "sha256:c6242fc49e35958c8b15141343aa660db5fc54d4f13a1db01a3f5891b98700ef", size = 16234 }, +] + +[[package]] +name = "jax" +version = "0.4.13" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "importlib-metadata", marker = "python_version < '3.10'" }, + { name = "ml-dtypes", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "opt-einsum", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "scipy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1e/f2/03643b515aede51a812608e3fe37cbc30426241e512bb0fb8546c36ddd5b/jax-0.4.13.tar.gz", hash = "sha256:03bfe6749dfe647f16f15f6616638adae6c4a7ca7167c75c21961ecfd3a3baaa", size = 1312396 } + +[[package]] +name = "jaxlib" +version = "0.4.13" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ml-dtypes", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "scipy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/5b/3d/e6ec561f4d6dc822abbc86b6d2adb36753d6b3ba25dff2fa00cb7d7b941c/jaxlib-0.4.13-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:532ebc4fb11386282ad63b83941d4557f4038c1144acf026f1f8565f64c7e9c0", size = 75002669 }, + { url = "https://files.pythonhosted.org/packages/09/aa/7316c5df14e819cfbf6ade7c3196a731182318247e901a780708db9dfffe/jaxlib-0.4.13-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a259bb35429bfbd3b76e43019dfc8f7d6ea94bb217400b78f7d0824ce07a58ac", size = 60529784 }, + { url = "https://files.pythonhosted.org/packages/7d/69/9a71db7bac2d6543e8ec7f4236477b646b245b59b6bfcc99591cdfc76494/jaxlib-0.4.13-cp310-cp310-manylinux2014_x86_64.whl", hash = "sha256:ea1bc9811ef7d73a15e3213115e88fe7f5d14b59d95027bea9fccc98e5a14af8", size = 71571087 }, + { url = "https://files.pythonhosted.org/packages/8e/8c/c9ffca098a00bbd802a01dce5b78387a64c0e1419570c9775f42dcf1c6a3/jaxlib-0.4.13-cp310-cp310-win_amd64.whl", hash = "sha256:fde66a93e9be89d99e5792f677ed8e319667d6b2396865b1c52c1312844c47f9", size = 39121663 }, + { url = "https://files.pythonhosted.org/packages/02/e2/803075c7ad869b47b40e08b7fad35916f4536d3e6df40c02e38d7e0cf0d5/jaxlib-0.4.13-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:49690fcdd26560515fd15399fc3a44777e0bfc5db5c48fe76ff7bc7228e8b2fb", size = 75002379 }, + { url = "https://files.pythonhosted.org/packages/49/8c/986d8022a471e4a80e1f33cfab81ea3b7dc675fd2a2d210be217e64c09e3/jaxlib-0.4.13-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f4e9e34e5d8a6556f62fead14aee0b1614c2c6296f0078d8e6139d6aff109649", size = 60528240 }, + { url = "https://files.pythonhosted.org/packages/18/53/6c56ab4ab31f6f8a09fcdb9dbc8ad2dd9b08ea0718e93ec6739f81679b9e/jaxlib-0.4.13-cp311-cp311-manylinux2014_x86_64.whl", hash = "sha256:8000c0d15c107328e8f7b7b3ac91dd822f5c287a80231882b620503ed141fa89", size = 71569405 }, + { url = "https://files.pythonhosted.org/packages/ee/4a/681e13141877e3e9f367fc70cb898e16893db14c8c4abc074221ffa9b3e4/jaxlib-0.4.13-cp311-cp311-win_amd64.whl", hash = "sha256:19ae4c316b17a49342432c69f7f89f190b975333f3f9e9e175f686a651bc7347", size = 39123675 }, + { url = "https://files.pythonhosted.org/packages/cd/7c/45935fa8cd67664b492e9ad60a0fa32f6e7dde8c9909b3c3d9f4bfa4d118/jaxlib-0.4.13-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:c230ef85712e608d0f048869766a5a63afeb2e72309943db0df9f959ab17307f", size = 75004444 }, + { url = "https://files.pythonhosted.org/packages/fd/d7/c8707ac3203ef2198e1ec45b9afb62e634578cae9c54c455223846d094ab/jaxlib-0.4.13-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d19c05c15f962e098d49b45e2758aacf19330d192ec5395f9ef136f62db90edc", size = 60531230 }, + { url = "https://files.pythonhosted.org/packages/b8/29/09d0ce36bec04c1750688c6fec270df7502677f82f317f6c6b43e491b7e0/jaxlib-0.4.13-cp39-cp39-manylinux2014_x86_64.whl", hash = "sha256:b5c0a9737efd95fe18fd7715ce30dfce476546705ea8934aad6731777a9631a5", size = 71571249 }, + { url = "https://files.pythonhosted.org/packages/b5/88/574e2472005f1d3377621eeef3262282b48b322dfdc8bceddab6035c0454/jaxlib-0.4.13-cp39-cp39-win_amd64.whl", hash = "sha256:bebb4cf001f180dc431f9604daf930c2d9cc778e4dda26f401ac939b7bac912e", size = 39048355 }, +] + +[[package]] +name = "jinja2" +version = "3.1.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ed/55/39036716d19cab0747a5020fc7e907f362fbf48c984b14e62127f7e68e5d/jinja2-3.1.4.tar.gz", hash = "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369", size = 240245 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/31/80/3a54838c3fb461f6fec263ebf3a3a41771bd05190238de3486aae8540c36/jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d", size = 133271 }, +] + +[[package]] +name = "jinja2-time" +version = "0.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "arrow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jinja2", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/de/7c/ee2f2014a2a0616ad3328e58e7dac879251babdb4cb796d770b5d32c469f/jinja2-time-0.2.0.tar.gz", hash = "sha256:d14eaa4d315e7688daa4969f616f226614350c48730bfa1692d2caebd8c90d40", size = 5701 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6a/a1/d44fa38306ffa34a7e1af09632b158e13ec89670ce491f8a15af3ebcb4e4/jinja2_time-0.2.0-py2.py3-none-any.whl", hash = "sha256:d3eab6605e3ec8b7a0863df09cc1d23714908fa61aa6986a845c20ba488b4efa", size = 6360 }, +] + +[[package]] +name = "jmespath" +version = "1.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/00/2a/e867e8531cf3e36b41201936b7fa7ba7b5702dbef42922193f05c8976cd6/jmespath-1.0.1.tar.gz", hash = "sha256:90261b206d6defd58fdd5e85f478bf633a2901798906be2ad389150c5c60edbe", size = 25843 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/31/b4/b9b800c45527aadd64d5b442f9b932b00648617eb5d63d2c7a6587b7cafc/jmespath-1.0.1-py3-none-any.whl", hash = "sha256:02e2e4cc71b5bcab88332eebf907519190dd9e6e82107fa7f83b1003a6252980", size = 20256 }, +] + +[[package]] +name = "joblib" +version = "1.4.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/64/33/60135848598c076ce4b231e1b1895170f45fbcaeaa2c9d5e38b04db70c35/joblib-1.4.2.tar.gz", hash = "sha256:2382c5816b2636fbd20a09e0f4e9dad4736765fdfb7dca582943b9c1366b3f0e", size = 2116621 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/91/29/df4b9b42f2be0b623cbd5e2140cafcaa2bef0759a00b7b70104dcfe2fb51/joblib-1.4.2-py3-none-any.whl", hash = "sha256:06d478d5674cbc267e7496a410ee875abd68e4340feff4490bcb7afb88060ae6", size = 301817 }, +] + +[[package]] +name = "jsonschema" +version = "4.23.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jsonschema-specifications", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "referencing", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rpds-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/38/2e/03362ee4034a4c917f697890ccd4aec0800ccf9ded7f511971c75451deec/jsonschema-4.23.0.tar.gz", hash = "sha256:d71497fef26351a33265337fa77ffeb82423f3ea21283cd9467bb03999266bc4", size = 325778 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/69/4a/4f9dbeb84e8850557c02365a0eee0649abe5eb1d84af92a25731c6c0f922/jsonschema-4.23.0-py3-none-any.whl", hash = "sha256:fbadb6f8b144a8f8cf9f0b89ba94501d143e50411a1278633f56a7acf7fd5566", size = 88462 }, +] + +[[package]] +name = "jsonschema-specifications" +version = "2023.12.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "referencing", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f8/b9/cc0cc592e7c195fb8a650c1d5990b10175cf13b4c97465c72ec841de9e4b/jsonschema_specifications-2023.12.1.tar.gz", hash = "sha256:48a76787b3e70f5ed53f1160d2b81f586e4ca6d1548c5de7085d1682674764cc", size = 13983 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ee/07/44bd408781594c4d0a027666ef27fab1e441b109dc3b76b4f836f8fd04fe/jsonschema_specifications-2023.12.1-py3-none-any.whl", hash = "sha256:87e4fdf3a94858b8a2ba2778d9ba57d8a9cafca7c7489c46ba0d30a8bc6a9c3c", size = 18482 }, +] + +[[package]] +name = "jupyter-core" +version = "5.7.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "platformdirs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pywin32", marker = "platform_python_implementation != 'PyPy' and sys_platform == 'win32'" }, + { name = "traitlets", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/00/11/b56381fa6c3f4cc5d2cf54a7dbf98ad9aa0b339ef7a601d6053538b079a7/jupyter_core-5.7.2.tar.gz", hash = "sha256:aa5f8d32bbf6b431ac830496da7392035d6f61b4f54872f15c4bd2a9c3f536d9", size = 87629 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c9/fb/108ecd1fe961941959ad0ee4e12ee7b8b1477247f30b1fdfd83ceaf017f0/jupyter_core-5.7.2-py3-none-any.whl", hash = "sha256:4f7315d2f6b4bcf2e3e7cb6e46772eba760ae459cd1f59d29eb57b0a01bd7409", size = 28965 }, +] + +[[package]] +name = "kagglehub" +version = "0.2.9" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/3f/9d/a3bbd76a48c8e06cc8c6817549c52148c7bc9d4ead9626cfb3e1093a0786/kagglehub-0.2.9.tar.gz", hash = "sha256:761366c7349910612c9df879fae0a305a2146bf3b3f90e8be8434ab823d53687", size = 55678 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5c/e7/71927b088047132317c14eb513d69c8375ddba3c9029d4154a054f6c8765/kagglehub-0.2.9-py3-none-any.whl", hash = "sha256:4689019c69f52a86130e3b8c02e41ba521d17ac1d2644d8178a9eb32bbc74ea9", size = 39787 }, +] + +[[package]] +name = "kenlm" +version = "0.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/97/76/6a7479e3546d34ee46fc960c8d0ccf281f26ed18956d17f4ec5dcb1fa377/kenlm-0.2.0.tar.gz", hash = "sha256:c2dc1dc09d3c150e6a1777ef0fd5cac3688e1dc1cc13e41472d0284e5e88ac7f", size = 427425 } + +[[package]] +name = "keras" +version = "2.15.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b5/03/80072f4ee46e3c77e95b06d684fadf90a67759e4e9f1d86a563e0965c71a/keras-2.15.0.tar.gz", hash = "sha256:81871d298c064dc4ac6b58440fdae67bfcf47c8d7ad28580fab401834c06a575", size = 1252015 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fc/a7/0d4490de967a67f68a538cc9cdb259bff971c4b5787f7765dc7c8f118f71/keras-2.15.0-py3-none-any.whl", hash = "sha256:2dcc6d2e30cf9c951064b63c1f4c404b966c59caf09e01f3549138ec8ee0dd1f", size = 1710438 }, +] + +[[package]] +name = "keras-nlp" +version = "0.14.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "kagglehub", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "regex", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rich", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-text", marker = "platform_system != 'Darwin'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/da/bf/7f34bfd78555f8ce68f51f6583b4a91a279e34dee2013047e338529c3f8a/keras_nlp-0.14.4.tar.gz", hash = "sha256:abd5886efc60d52f0970ac43d3791c87624bfa8f7a7048a66f9dbcb2d1d28771", size = 331838 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0e/e9/abbca8edef533acc7deec437742eb9c8c542d03534cab3bee7835bd97f3f/keras_nlp-0.14.4-py3-none-any.whl", hash = "sha256:13664b96c4551f4734074d502a961e8f994ee2ce15c7e94e472b33f1d4bf109c", size = 572242 }, +] + +[[package]] +name = "language-tags" +version = "1.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e0/7e/b6a0efe4fee11e9742c1baaedf7c574084238a70b03c1d8eb2761383848f/language_tags-1.2.0.tar.gz", hash = "sha256:e934acba3e3dc85f867703eca421847a9ab7b7679b11b5d5cfd096febbf8bde6", size = 207901 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b0/42/327554649ed2dd5ce59d3f5da176c7be20f9352c7c6c51597293660b7b08/language_tags-1.2.0-py3-none-any.whl", hash = "sha256:d815604622242fdfbbfd747b40c31213617fd03734a267f2e39ee4bd73c88722", size = 213449 }, +] + +[[package]] +name = "lazy-loader" +version = "0.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6f/6b/c875b30a1ba490860c93da4cabf479e03f584eba06fe5963f6f6644653d8/lazy_loader-0.4.tar.gz", hash = "sha256:47c75182589b91a4e1a85a136c074285a5ad4d9f39c63e0d7fb76391c4574cd1", size = 15431 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/83/60/d497a310bde3f01cb805196ac61b7ad6dc5dcf8dce66634dc34364b20b4f/lazy_loader-0.4-py3-none-any.whl", hash = "sha256:342aa8e14d543a154047afb4ba8ef17f5563baad3fc610d7b15b213b0f119efc", size = 12097 }, +] + +[[package]] +name = "libclang" +version = "18.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6e/5c/ca35e19a4f142adffa27e3d652196b7362fa612243e2b916845d801454fc/libclang-18.1.1.tar.gz", hash = "sha256:a1214966d08d73d971287fc3ead8dfaf82eb07fb197680d8b3859dbbbbf78250", size = 39612 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4b/49/f5e3e7e1419872b69f6f5e82ba56e33955a74bd537d8a1f5f1eff2f3668a/libclang-18.1.1-1-py2.py3-none-macosx_11_0_arm64.whl", hash = "sha256:0b2e143f0fac830156feb56f9231ff8338c20aecfe72b4ffe96f19e5a1dbb69a", size = 25836045 }, + { url = "https://files.pythonhosted.org/packages/e2/e5/fc61bbded91a8830ccce94c5294ecd6e88e496cc85f6704bf350c0634b70/libclang-18.1.1-py2.py3-none-macosx_10_9_x86_64.whl", hash = "sha256:6f14c3f194704e5d09769108f03185fce7acaf1d1ae4bbb2f30a72c2400cb7c5", size = 26502641 }, + { url = "https://files.pythonhosted.org/packages/db/ed/1df62b44db2583375f6a8a5e2ca5432bbdc3edb477942b9b7c848c720055/libclang-18.1.1-py2.py3-none-macosx_11_0_arm64.whl", hash = "sha256:83ce5045d101b669ac38e6da8e58765f12da2d3aafb3b9b98d88b286a60964d8", size = 26420207 }, + { url = "https://files.pythonhosted.org/packages/1d/fc/716c1e62e512ef1c160e7984a73a5fc7df45166f2ff3f254e71c58076f7c/libclang-18.1.1-py2.py3-none-manylinux2010_x86_64.whl", hash = "sha256:c533091d8a3bbf7460a00cb6c1a71da93bffe148f172c7d03b1c31fbf8aa2a0b", size = 24515943 }, + { url = "https://files.pythonhosted.org/packages/3c/3d/f0ac1150280d8d20d059608cf2d5ff61b7c3b7f7bcf9c0f425ab92df769a/libclang-18.1.1-py2.py3-none-manylinux2014_aarch64.whl", hash = "sha256:54dda940a4a0491a9d1532bf071ea3ef26e6dbaf03b5000ed94dd7174e8f9592", size = 23784972 }, + { url = "https://files.pythonhosted.org/packages/fe/2f/d920822c2b1ce9326a4c78c0c2b4aa3fde610c7ee9f631b600acb5376c26/libclang-18.1.1-py2.py3-none-manylinux2014_armv7l.whl", hash = "sha256:cf4a99b05376513717ab5d82a0db832c56ccea4fd61a69dbb7bccf2dfb207dbe", size = 20259606 }, + { url = "https://files.pythonhosted.org/packages/2d/c2/de1db8c6d413597076a4259cea409b83459b2db997c003578affdd32bf66/libclang-18.1.1-py2.py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:69f8eb8f65c279e765ffd28aaa7e9e364c776c17618af8bff22a8df58677ff4f", size = 24921494 }, + { url = "https://files.pythonhosted.org/packages/0b/2d/3f480b1e1d31eb3d6de5e3ef641954e5c67430d5ac93b7fa7e07589576c7/libclang-18.1.1-py2.py3-none-win_amd64.whl", hash = "sha256:4dd2d3b82fab35e2bf9ca717d7b63ac990a3519c7e312f19fa8e86dcc712f7fb", size = 26415083 }, + { url = "https://files.pythonhosted.org/packages/71/cf/e01dc4cc79779cd82d77888a88ae2fa424d93b445ad4f6c02bfc18335b70/libclang-18.1.1-py2.py3-none-win_arm64.whl", hash = "sha256:3f0e1f49f04d3cd198985fea0511576b0aee16f9ff0e0f0cad7f9c57ec3c20e8", size = 22361112 }, +] + +[[package]] +name = "librosa" +version = "0.10.2.post1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "audioread", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "decorator", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "joblib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "lazy-loader", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "msgpack", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numba", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pooch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "scikit-learn", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "scipy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "soundfile", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "soxr", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0e/2d/77783a52641a21ff7e2230aa588e4fb4a61422a64673096a36776b7e5bd9/librosa-0.10.2.post1.tar.gz", hash = "sha256:cd99f16717cbcd1e0983e37308d1db46a6f7dfc2e396e5a9e61e6821e44bd2e7", size = 325533 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8c/8a/2d231b35456506b7c98b3ab9bbf07917b205fed8615d2e59e976ab497fff/librosa-0.10.2.post1-py3-none-any.whl", hash = "sha256:dc882750e8b577a63039f25661b7e39ec4cfbacc99c1cffba666cd664fb0a7a0", size = 260089 }, +] + +[[package]] +name = "llvmlite" +version = "0.43.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9f/3d/f513755f285db51ab363a53e898b85562e950f79a2e6767a364530c2f645/llvmlite-0.43.0.tar.gz", hash = "sha256:ae2b5b5c3ef67354824fb75517c8db5fbe93bc02cd9671f3c62271626bc041d5", size = 157069 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/23/ff/6ca7e98998b573b4bd6566f15c35e5c8bea829663a6df0c7aa55ab559da9/llvmlite-0.43.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a289af9a1687c6cf463478f0fa8e8aa3b6fb813317b0d70bf1ed0759eab6f761", size = 31064408 }, + { url = "https://files.pythonhosted.org/packages/ca/5c/a27f9257f86f0cda3f764ff21d9f4217b9f6a0d45e7a39ecfa7905f524ce/llvmlite-0.43.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6d4fd101f571a31acb1559ae1af30f30b1dc4b3186669f92ad780e17c81e91bc", size = 28793153 }, + { url = "https://files.pythonhosted.org/packages/7e/3c/4410f670ad0a911227ea2ecfcba9f672a77cf1924df5280c4562032ec32d/llvmlite-0.43.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7d434ec7e2ce3cc8f452d1cd9a28591745de022f931d67be688a737320dfcead", size = 42857276 }, + { url = "https://files.pythonhosted.org/packages/c6/21/2ffbab5714e72f2483207b4a1de79b2eecd9debbf666ff4e7067bcc5c134/llvmlite-0.43.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6912a87782acdff6eb8bf01675ed01d60ca1f2551f8176a300a886f09e836a6a", size = 43871781 }, + { url = "https://files.pythonhosted.org/packages/f2/26/b5478037c453554a61625ef1125f7e12bb1429ae11c6376f47beba9b0179/llvmlite-0.43.0-cp310-cp310-win_amd64.whl", hash = "sha256:14f0e4bf2fd2d9a75a3534111e8ebeb08eda2f33e9bdd6dfa13282afacdde0ed", size = 28123487 }, + { url = "https://files.pythonhosted.org/packages/95/8c/de3276d773ab6ce3ad676df5fab5aac19696b2956319d65d7dd88fb10f19/llvmlite-0.43.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3e8d0618cb9bfe40ac38a9633f2493d4d4e9fcc2f438d39a4e854f39cc0f5f98", size = 31064409 }, + { url = "https://files.pythonhosted.org/packages/ee/e1/38deed89ced4cf378c61e232265cfe933ccde56ae83c901aa68b477d14b1/llvmlite-0.43.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e0a9a1a39d4bf3517f2af9d23d479b4175ead205c592ceeb8b89af48a327ea57", size = 28793149 }, + { url = "https://files.pythonhosted.org/packages/2f/b2/4429433eb2dc8379e2cb582502dca074c23837f8fd009907f78a24de4c25/llvmlite-0.43.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c1da416ab53e4f7f3bc8d4eeba36d801cc1894b9fbfbf2022b29b6bad34a7df2", size = 42857277 }, + { url = "https://files.pythonhosted.org/packages/6b/99/5d00a7d671b1ba1751fc9f19d3b36f3300774c6eebe2bcdb5f6191763eb4/llvmlite-0.43.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:977525a1e5f4059316b183fb4fd34fa858c9eade31f165427a3977c95e3ee749", size = 43871781 }, + { url = "https://files.pythonhosted.org/packages/20/ab/ed5ed3688c6ba4f0b8d789da19fd8e30a9cf7fc5852effe311bc5aefe73e/llvmlite-0.43.0-cp311-cp311-win_amd64.whl", hash = "sha256:d5bd550001d26450bd90777736c69d68c487d17bf371438f975229b2b8241a91", size = 28107433 }, + { url = "https://files.pythonhosted.org/packages/0b/67/9443509e5d2b6d8587bae3ede5598fa8bd586b1c7701696663ea8af15b5b/llvmlite-0.43.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f99b600aa7f65235a5a05d0b9a9f31150c390f31261f2a0ba678e26823ec38f7", size = 31064409 }, + { url = "https://files.pythonhosted.org/packages/a2/9c/24139d3712d2d352e300c39c0e00d167472c08b3bd350c3c33d72c88ff8d/llvmlite-0.43.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:35d80d61d0cda2d767f72de99450766250560399edc309da16937b93d3b676e7", size = 28793145 }, + { url = "https://files.pythonhosted.org/packages/bf/f1/4c205a48488e574ee9f6505d50e84370a978c90f08dab41a42d8f2c576b6/llvmlite-0.43.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eccce86bba940bae0d8d48ed925f21dbb813519169246e2ab292b5092aba121f", size = 42857276 }, + { url = "https://files.pythonhosted.org/packages/00/5f/323c4d56e8401c50185fd0e875fcf06b71bf825a863699be1eb10aa2a9cb/llvmlite-0.43.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:df6509e1507ca0760787a199d19439cc887bfd82226f5af746d6977bd9f66844", size = 43871781 }, + { url = "https://files.pythonhosted.org/packages/c6/94/dea10e263655ce78d777e78d904903faae39d1fc440762be4a9dc46bed49/llvmlite-0.43.0-cp312-cp312-win_amd64.whl", hash = "sha256:7a2872ee80dcf6b5dbdc838763d26554c2a18aa833d31a2635bff16aafefb9c9", size = 28107442 }, + { url = "https://files.pythonhosted.org/packages/2a/73/12925b1bbb3c2beb6d96f892ef5b4d742c34f00ddb9f4a125e9e87b22f52/llvmlite-0.43.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9cd2a7376f7b3367019b664c21f0c61766219faa3b03731113ead75107f3b66c", size = 31064410 }, + { url = "https://files.pythonhosted.org/packages/cc/61/58c70aa0808a8cba825a7d98cc65bef4801b99328fba80837bfcb5fc767f/llvmlite-0.43.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:18e9953c748b105668487b7c81a3e97b046d8abf95c4ddc0cd3c94f4e4651ae8", size = 28793145 }, + { url = "https://files.pythonhosted.org/packages/c8/c6/9324eb5de2ba9d99cbed853d85ba7a318652a48e077797bec27cf40f911d/llvmlite-0.43.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:74937acd22dc11b33946b67dca7680e6d103d6e90eeaaaf932603bec6fe7b03a", size = 42857276 }, + { url = "https://files.pythonhosted.org/packages/e0/d0/889e9705107db7b1ec0767b03f15d7b95b4c4f9fdf91928ab1c7e9ffacf6/llvmlite-0.43.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc9efc739cc6ed760f795806f67889923f7274276f0eb45092a1473e40d9b867", size = 43871777 }, + { url = "https://files.pythonhosted.org/packages/df/41/73cc26a2634b538cfe813f618c91e7e9960b8c163f8f0c94a2b0f008b9da/llvmlite-0.43.0-cp39-cp39-win_amd64.whl", hash = "sha256:47e147cdda9037f94b399bf03bfd8a6b6b1f2f90be94a454e3386f006455a9b4", size = 28123489 }, +] + +[[package]] +name = "lxml" +version = "5.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/63/f7/ffbb6d2eb67b80a45b8a0834baa5557a14a5ffce0979439e7cd7f0c4055b/lxml-5.2.2.tar.gz", hash = "sha256:bb2dc4898180bea79863d5487e5f9c7c34297414bad54bcd0f0852aee9cfdb87", size = 3678631 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9b/e9/73c7e6f9a933ee82cd68599d6291c875379cbce2c47717b811744cfd2256/lxml-5.2.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:364d03207f3e603922d0d3932ef363d55bbf48e3647395765f9bfcbdf6d23632", size = 8124248 }, + { url = "https://files.pythonhosted.org/packages/f2/1e/364a7e4afe9d27cef4f7a684ace409a379c953fe0881b0f2ff67380ed9ea/lxml-5.2.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:50127c186f191b8917ea2fb8b206fbebe87fd414a6084d15568c27d0a21d60db", size = 4412062 }, + { url = "https://files.pythonhosted.org/packages/06/0f/fd5d42f906eff843c9080fba7fdd005cdf1be697e19517013938c0581eed/lxml-5.2.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:74e4f025ef3db1c6da4460dd27c118d8cd136d0391da4e387a15e48e5c975147", size = 5138539 }, + { url = "https://files.pythonhosted.org/packages/06/53/6994084d29251e9ee0e8486d82416836a9d009208853e8216cbc4c924c8c/lxml-5.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:981a06a3076997adf7c743dcd0d7a0415582661e2517c7d961493572e909aa1d", size = 4839289 }, + { url = "https://files.pythonhosted.org/packages/68/ad/3cbe5b7005722cae504f3cc2879f444f6407fb1a8a1f53050f03ca784c46/lxml-5.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aef5474d913d3b05e613906ba4090433c515e13ea49c837aca18bde190853dff", size = 5420758 }, + { url = "https://files.pythonhosted.org/packages/6b/2d/ea82f53acc12e7245a1927de78093654d140e6ef12bd2fcae41436c936da/lxml-5.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1e275ea572389e41e8b039ac076a46cb87ee6b8542df3fff26f5baab43713bca", size = 4874778 }, + { url = "https://files.pythonhosted.org/packages/98/59/3877fd55ebc6d0f426583137bedeee21c9f6d5d5c829664a14103f5279a7/lxml-5.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5b65529bb2f21ac7861a0e94fdbf5dc0daab41497d18223b46ee8515e5ad297", size = 5013017 }, + { url = "https://files.pythonhosted.org/packages/84/2e/dac726231781599429ea0b3faf018c081334a68c68708e7381077f447033/lxml-5.2.2-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:bcc98f911f10278d1daf14b87d65325851a1d29153caaf146877ec37031d5f36", size = 4816824 }, + { url = "https://files.pythonhosted.org/packages/54/4d/47eb532c0472bb5495efe899740e3d928ddb79599e73d156d4cfa8e126a3/lxml-5.2.2-cp310-cp310-manylinux_2_28_ppc64le.whl", hash = "sha256:b47633251727c8fe279f34025844b3b3a3e40cd1b198356d003aa146258d13a2", size = 5468541 }, + { url = "https://files.pythonhosted.org/packages/78/73/82a00717a29330cf56a4a7f3077aa7ee4d5171e79fcdd7d161d90df53122/lxml-5.2.2-cp310-cp310-manylinux_2_28_s390x.whl", hash = "sha256:fbc9d316552f9ef7bba39f4edfad4a734d3d6f93341232a9dddadec4f15d425f", size = 4977853 }, + { url = "https://files.pythonhosted.org/packages/c6/24/8ddb86ab14428d4d222a383a5260eea93728192359a1fff5de8f7fa13374/lxml-5.2.2-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:13e69be35391ce72712184f69000cda04fc89689429179bc4c0ae5f0b7a8c21b", size = 5030426 }, + { url = "https://files.pythonhosted.org/packages/1f/fb/510777421d0231b3f601d7d6a9a494717bac3a206eca1518b38a869f5289/lxml-5.2.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:3b6a30a9ab040b3f545b697cb3adbf3696c05a3a68aad172e3fd7ca73ab3c835", size = 4865825 }, + { url = "https://files.pythonhosted.org/packages/27/0a/82b3f5b375d3252a76e73efb56857424804f5dabce62712e256f96d0fa69/lxml-5.2.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:a233bb68625a85126ac9f1fc66d24337d6e8a0f9207b688eec2e7c880f012ec0", size = 5417133 }, + { url = "https://files.pythonhosted.org/packages/03/f4/73ea84c176aaff04ca10093fc7ac3912c4aa4793ef1c3f5a963a40db0a6f/lxml-5.2.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:dfa7c241073d8f2b8e8dbc7803c434f57dbb83ae2a3d7892dd068d99e96efe2c", size = 4838827 }, + { url = "https://files.pythonhosted.org/packages/38/bc/e9269ba955b66ef2af8559d405514d8c055b5dfa58cec71f78f0bc4d7493/lxml-5.2.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:1a7aca7964ac4bb07680d5c9d63b9d7028cace3e2d43175cb50bba8c5ad33316", size = 5004832 }, + { url = "https://files.pythonhosted.org/packages/0a/99/a3abdfcde8f2a171a9e5f63b97bf2a6a6612c2356af151fb2bdc949e77ba/lxml-5.2.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ae4073a60ab98529ab8a72ebf429f2a8cc612619a8c04e08bed27450d52103c0", size = 4860569 }, + { url = "https://files.pythonhosted.org/packages/1e/3c/ba4aa85a49a7bb9fef7062cd7f584b3da59d4bba82cef375164b95f60834/lxml-5.2.2-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:ffb2be176fed4457e445fe540617f0252a72a8bc56208fd65a690fdb1f57660b", size = 5506124 }, + { url = "https://files.pythonhosted.org/packages/5c/5d/faebbdaae16a40eb559b3e1bf0548e23ad43716f1c5e781c1d2f9ac900ec/lxml-5.2.2-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:e290d79a4107d7d794634ce3e985b9ae4f920380a813717adf61804904dc4393", size = 4946883 }, + { url = "https://files.pythonhosted.org/packages/31/47/64914d8e752c9dd13b7da69ca7b9f645983412206936058b5261c2c9e093/lxml-5.2.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:96e85aa09274955bb6bd483eaf5b12abadade01010478154b0ec70284c1b1526", size = 5046267 }, + { url = "https://files.pythonhosted.org/packages/54/c2/cc28433f429a6767e0de7b9f908ed0c88dc5c60195330d15686d6ba623a4/lxml-5.2.2-cp310-cp310-win32.whl", hash = "sha256:f956196ef61369f1685d14dad80611488d8dc1ef00be57c0c5a03064005b0f30", size = 3478736 }, + { url = "https://files.pythonhosted.org/packages/5b/bc/51530ee31e3ce25634ed790e38a62ffaea6507befd73b51926e19ce794f9/lxml-5.2.2-cp310-cp310-win_amd64.whl", hash = "sha256:875a3f90d7eb5c5d77e529080d95140eacb3c6d13ad5b616ee8095447b1d22e7", size = 3807856 }, + { url = "https://files.pythonhosted.org/packages/da/6a/24e9f77d17668dd4ac0a6c2a56113fd3e0db07cee51e3a67afcd47c597e5/lxml-5.2.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:45f9494613160d0405682f9eee781c7e6d1bf45f819654eb249f8f46a2c22545", size = 8137962 }, + { url = "https://files.pythonhosted.org/packages/4e/42/3bfe92749715c819763d2205370ecc7f586b44e277f38839e27cce7d6bb8/lxml-5.2.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b0b3f2df149efb242cee2ffdeb6674b7f30d23c9a7af26595099afaf46ef4e88", size = 4424403 }, + { url = "https://files.pythonhosted.org/packages/d5/fd/4899215277e3ef1767019fab178fad8a149081f80cf886a73dc0ba1badae/lxml-5.2.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d28cb356f119a437cc58a13f8135ab8a4c8ece18159eb9194b0d269ec4e28083", size = 5099309 }, + { url = "https://files.pythonhosted.org/packages/15/3d/d84d07fc450af34ce49b88a5aac805b486f38c9f9305fba647a39367c51c/lxml-5.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:657a972f46bbefdbba2d4f14413c0d079f9ae243bd68193cb5061b9732fa54c1", size = 4810147 }, + { url = "https://files.pythonhosted.org/packages/bc/c6/32af0ec3e8323e12212c064f924ddf993017e68d1f50e03da2a3be1289c1/lxml-5.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b74b9ea10063efb77a965a8d5f4182806fbf59ed068b3c3fd6f30d2ac7bee734", size = 5406165 }, + { url = "https://files.pythonhosted.org/packages/67/c7/6060ea3efbd1a60a10963b1b09f493fc8f6f6728310a7a77479a3f9ab20a/lxml-5.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:07542787f86112d46d07d4f3c4e7c760282011b354d012dc4141cc12a68cef5f", size = 4866924 }, + { url = "https://files.pythonhosted.org/packages/8a/f7/f5df71c70c4d14d186dd86fd0e9ebeffdb63b9b86fb19fe9315f9576266b/lxml-5.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:303f540ad2dddd35b92415b74b900c749ec2010e703ab3bfd6660979d01fd4ed", size = 4967116 }, + { url = "https://files.pythonhosted.org/packages/4e/56/c35969591789763657eb16c2fa79c924823b97da5536da8b89e11582da89/lxml-5.2.2-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:2eb2227ce1ff998faf0cd7fe85bbf086aa41dfc5af3b1d80867ecfe75fb68df3", size = 4811365 }, + { url = "https://files.pythonhosted.org/packages/e7/28/1809a5406282c03df561a3c8143c143bd515d5668f1a138f51aec6d2618e/lxml-5.2.2-cp311-cp311-manylinux_2_28_ppc64le.whl", hash = "sha256:1d8a701774dfc42a2f0b8ccdfe7dbc140500d1049e0632a611985d943fcf12df", size = 5452505 }, + { url = "https://files.pythonhosted.org/packages/99/a1/d91217a8d7fef5ac41af87c916d322c273a9b2047c735ea1dafa2ac46d16/lxml-5.2.2-cp311-cp311-manylinux_2_28_s390x.whl", hash = "sha256:56793b7a1a091a7c286b5f4aa1fe4ae5d1446fe742d00cdf2ffb1077865db10d", size = 4973479 }, + { url = "https://files.pythonhosted.org/packages/ad/b7/0dc82afed00c4c189cfd0b83464f9a431c66de8e73d911063956a147276a/lxml-5.2.2-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:eb00b549b13bd6d884c863554566095bf6fa9c3cecb2e7b399c4bc7904cb33b5", size = 5013920 }, + { url = "https://files.pythonhosted.org/packages/5f/e0/4cd021850f2e8ab5ce6ce294556300bd4b5c1eb7def88b5f859449dc883c/lxml-5.2.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:1a2569a1f15ae6c8c64108a2cd2b4a858fc1e13d25846be0666fc144715e32ab", size = 4849156 }, + { url = "https://files.pythonhosted.org/packages/f0/f4/fb01451fda1e121eb8f117a00040454ca05a9c9d82b308272042eebd05f3/lxml-5.2.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:8cf85a6e40ff1f37fe0f25719aadf443686b1ac7652593dc53c7ef9b8492b115", size = 5408551 }, + { url = "https://files.pythonhosted.org/packages/2f/ca/0376418e202e9423d47f86ae09db885fa6e109d0efb602f6468e6d1e8e77/lxml-5.2.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:d237ba6664b8e60fd90b8549a149a74fcc675272e0e95539a00522e4ca688b04", size = 4829966 }, + { url = "https://files.pythonhosted.org/packages/74/c4/4e6f5e2be18f8eb76dff5bff3619c2c654650fee93aea37a92866efe90bc/lxml-5.2.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0b3f5016e00ae7630a4b83d0868fca1e3d494c78a75b1c7252606a3a1c5fc2ad", size = 4976003 }, + { url = "https://files.pythonhosted.org/packages/3b/ca/5d74a0572c911f8dbf12d89abe0fdcbe0409c18978b5694392becd4d56fb/lxml-5.2.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:23441e2b5339bc54dc949e9e675fa35efe858108404ef9aa92f0456929ef6fe8", size = 4852709 }, + { url = "https://files.pythonhosted.org/packages/83/07/d95e9663ad8d875f344930e4fb52a0a6f56225267d3cc6e3e9bfa44ca736/lxml-5.2.2-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:2fb0ba3e8566548d6c8e7dd82a8229ff47bd8fb8c2da237607ac8e5a1b8312e5", size = 5479261 }, + { url = "https://files.pythonhosted.org/packages/df/e1/9ebae8d05492a8e9f632f2add15199e7bca5c1b063444e360a7bde685718/lxml-5.2.2-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:79d1fb9252e7e2cfe4de6e9a6610c7cbb99b9708e2c3e29057f487de5a9eaefa", size = 4944199 }, + { url = "https://files.pythonhosted.org/packages/ec/ab/189f571450e3393d4d442f88683d11b5a47c88e66a4e6b0d467500360483/lxml-5.2.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6dcc3d17eac1df7859ae01202e9bb11ffa8c98949dcbeb1069c8b9a75917e01b", size = 5033723 }, + { url = "https://files.pythonhosted.org/packages/80/d7/f28ccad4f08596592a58ad945c636140268bb4de9dcf4d10c9f72108d8a5/lxml-5.2.2-cp311-cp311-win32.whl", hash = "sha256:4c30a2f83677876465f44c018830f608fa3c6a8a466eb223535035fbc16f3438", size = 3475657 }, + { url = "https://files.pythonhosted.org/packages/04/19/d6aa2d980f220a04c91d4de538d2fea1a65535e7b0a4aec0998ce46e3667/lxml-5.2.2-cp311-cp311-win_amd64.whl", hash = "sha256:49095a38eb333aaf44c06052fd2ec3b8f23e19747ca7ec6f6c954ffea6dbf7be", size = 3816665 }, + { url = "https://files.pythonhosted.org/packages/26/36/6e00905cb4de2d014f4a62df58f0e82d262b5461245d951a6e7442b0222a/lxml-5.2.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:7429e7faa1a60cad26ae4227f4dd0459efde239e494c7312624ce228e04f6391", size = 8171540 }, + { url = "https://files.pythonhosted.org/packages/d6/68/7e9de19d47cd5430414063cd7739e8c8d8386016740c18af5ff13b64ff5c/lxml-5.2.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:50ccb5d355961c0f12f6cf24b7187dbabd5433f29e15147a67995474f27d1776", size = 4441241 }, + { url = "https://files.pythonhosted.org/packages/b4/1f/6a88a8e1b6a9be644c74e5f72cf581cb342a392e020c60a389cd194ebba1/lxml-5.2.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dc911208b18842a3a57266d8e51fc3cfaccee90a5351b92079beed912a7914c2", size = 5052926 }, + { url = "https://files.pythonhosted.org/packages/6b/cc/8e73a63c2aeb205fbed44272fea8c5ded07920233b9956e8e304e2516931/lxml-5.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:33ce9e786753743159799fdf8e92a5da351158c4bfb6f2db0bf31e7892a1feb5", size = 4748543 }, + { url = "https://files.pythonhosted.org/packages/ae/fc/6020fe1468fccb684619df6765a79b67229091631e5f14b97c3efcd75ca7/lxml-5.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec87c44f619380878bd49ca109669c9f221d9ae6883a5bcb3616785fa8f94c97", size = 5320915 }, + { url = "https://files.pythonhosted.org/packages/25/6c/02cecb6a26b0baec373baa3f4fb55343cf0d8710d6a853ff4c4b12a9cf16/lxml-5.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08ea0f606808354eb8f2dfaac095963cb25d9d28e27edcc375d7b30ab01abbf6", size = 4814179 }, + { url = "https://files.pythonhosted.org/packages/de/12/0253de661bb9f8c26b47059be4ed2ec5b9e4411fd2b1d45a2f4b399a7616/lxml-5.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75a9632f1d4f698b2e6e2e1ada40e71f369b15d69baddb8968dcc8e683839b18", size = 4923168 }, + { url = "https://files.pythonhosted.org/packages/cd/e7/63435cfa76534fb33a9656507057b96a25bb850ae932424b9724c9fe379e/lxml-5.2.2-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:74da9f97daec6928567b48c90ea2c82a106b2d500f397eeb8941e47d30b1ca85", size = 4741798 }, + { url = "https://files.pythonhosted.org/packages/27/7f/9e203e850609fa12c8b347fcceaba8655f062bc19ace7a837bb7fcf64b8f/lxml-5.2.2-cp312-cp312-manylinux_2_28_ppc64le.whl", hash = "sha256:0969e92af09c5687d769731e3f39ed62427cc72176cebb54b7a9d52cc4fa3b73", size = 5347143 }, + { url = "https://files.pythonhosted.org/packages/d9/d2/089fcb90e6bdd16639656c2632573508ae02f42a3b034376d3e32efd2ccc/lxml-5.2.2-cp312-cp312-manylinux_2_28_s390x.whl", hash = "sha256:9164361769b6ca7769079f4d426a41df6164879f7f3568be9086e15baca61466", size = 4901745 }, + { url = "https://files.pythonhosted.org/packages/9a/87/cff3c63ebe067ec9a7cc1948c379b8a16e7990c29bd5baf77c0a1dbd03c0/lxml-5.2.2-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:d26a618ae1766279f2660aca0081b2220aca6bd1aa06b2cf73f07383faf48927", size = 4947584 }, + { url = "https://files.pythonhosted.org/packages/73/3f/5a22be26edce482cb5dbdc5cf75544cfd1d3fb1389124d06995395829617/lxml-5.2.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ab67ed772c584b7ef2379797bf14b82df9aa5f7438c5b9a09624dd834c1c1aaf", size = 4790271 }, + { url = "https://files.pythonhosted.org/packages/b5/66/007666e7878ca746e44da3b4c2acf9d5c617dd51e152e89589e7eeb59f87/lxml-5.2.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:3d1e35572a56941b32c239774d7e9ad724074d37f90c7a7d499ab98761bd80cf", size = 5340401 }, + { url = "https://files.pythonhosted.org/packages/9d/3e/b7464d5c06a57cb206fd14a9251bfa75ae03d4f6b1c0c41cf82111bdfa3b/lxml-5.2.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:8268cbcd48c5375f46e000adb1390572c98879eb4f77910c6053d25cc3ac2c67", size = 4784839 }, + { url = "https://files.pythonhosted.org/packages/5b/70/1c45927de1cd7dc47292cfa8a9eb7928b38ce5647d66601bd169b25af4a7/lxml-5.2.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:e282aedd63c639c07c3857097fc0e236f984ceb4089a8b284da1c526491e3f3d", size = 4933979 }, + { url = "https://files.pythonhosted.org/packages/08/e1/51f6ad2bdb5f28fceeb6bd591d4a0ed5de42ffc6741fd88eb2209c6a46f2/lxml-5.2.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6dfdc2bfe69e9adf0df4915949c22a25b39d175d599bf98e7ddf620a13678585", size = 4782412 }, + { url = "https://files.pythonhosted.org/packages/81/13/7df8804d4fb678e0216f6f4532754fd471856b5cb24726dab55a3b65f527/lxml-5.2.2-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:4aefd911793b5d2d7a921233a54c90329bf3d4a6817dc465f12ffdfe4fc7b8fe", size = 5371318 }, + { url = "https://files.pythonhosted.org/packages/d7/7d/c98b7ef3e496a9c371057dc955be1fda04dab4e8af488b01bec254e1b59b/lxml-5.2.2-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:8b8df03a9e995b6211dafa63b32f9d405881518ff1ddd775db4e7b98fb545e1c", size = 4871432 }, + { url = "https://files.pythonhosted.org/packages/3e/fa/b361d670ffa8f477504b7fc0e5734a7878815c7e0b6769f3a5a903a94aee/lxml-5.2.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f11ae142f3a322d44513de1018b50f474f8f736bc3cd91d969f464b5bfef8836", size = 4972719 }, + { url = "https://files.pythonhosted.org/packages/fc/43/70e469a190a8f39ca5829b4ef4f2f7299ce65243abe46ba4a73dc58c1365/lxml-5.2.2-cp312-cp312-win32.whl", hash = "sha256:16a8326e51fcdffc886294c1e70b11ddccec836516a343f9ed0f82aac043c24a", size = 3487299 }, + { url = "https://files.pythonhosted.org/packages/58/16/99b03974974537c8c786fb98183d7c213ceb16e71205174a29ae869ca988/lxml-5.2.2-cp312-cp312-win_amd64.whl", hash = "sha256:bbc4b80af581e18568ff07f6395c02114d05f4865c2812a1f02f2eaecf0bfd48", size = 3817779 }, + { url = "https://files.pythonhosted.org/packages/51/79/9f7d249850c9f8357538055359bffa91cc9f0606fcea72b6881fdea9ee39/lxml-5.2.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:fb91819461b1b56d06fa4bcf86617fac795f6a99d12239fb0c68dbeba41a0a30", size = 8129295 }, + { url = "https://files.pythonhosted.org/packages/40/94/cc5a570ae1dcd337a6b63330d8fd6ff81dc27310574157129faca3ddbfe7/lxml-5.2.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d4ed0c7cbecde7194cd3228c044e86bf73e30a23505af852857c09c24e77ec5d", size = 4415097 }, + { url = "https://files.pythonhosted.org/packages/bc/41/38d7e67e72f87fea0d9f2fd37e394484eb32b102d3a0520611a65e992602/lxml-5.2.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:54401c77a63cc7d6dc4b4e173bb484f28a5607f3df71484709fe037c92d4f0ed", size = 5139658 }, + { url = "https://files.pythonhosted.org/packages/6f/3f/66f7869f12bf6f21af6b24b0b29e4bccc162efa276ee46a58e6993b63f5a/lxml-5.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:625e3ef310e7fa3a761d48ca7ea1f9d8718a32b1542e727d584d82f4453d5eeb", size = 4839453 }, + { url = "https://files.pythonhosted.org/packages/f5/67/5dd78932c10e49f5fd3d0cd63d27bcaa801fae8f64c643a931e0391c56e2/lxml-5.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:519895c99c815a1a24a926d5b60627ce5ea48e9f639a5cd328bda0515ea0f10c", size = 5422704 }, + { url = "https://files.pythonhosted.org/packages/0f/e8/c0dd37abb15dd982e348c666ae02a7767d7a70acf143d5e24a906de2b29f/lxml-5.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c7079d5eb1c1315a858bbf180000757db8ad904a89476653232db835c3114001", size = 4875536 }, + { url = "https://files.pythonhosted.org/packages/e5/43/d60da0fe90a9a48198a23268dd2dafeac46f880adda6739b4cbbcec65a02/lxml-5.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:343ab62e9ca78094f2306aefed67dcfad61c4683f87eee48ff2fd74902447726", size = 5013656 }, + { url = "https://files.pythonhosted.org/packages/f6/59/74549a8c486d60c24c8cae942325e60916fb2699b1cbec89025ceeb49e51/lxml-5.2.2-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:cd9e78285da6c9ba2d5c769628f43ef66d96ac3085e59b10ad4f3707980710d3", size = 4818873 }, + { url = "https://files.pythonhosted.org/packages/9b/d5/469cc5b87f704d951d558ab8dcf4a6a1e339dbfd4cf82788d6c5f76daa55/lxml-5.2.2-cp39-cp39-manylinux_2_28_ppc64le.whl", hash = "sha256:546cf886f6242dff9ec206331209db9c8e1643ae642dea5fdbecae2453cb50fd", size = 5470990 }, + { url = "https://files.pythonhosted.org/packages/0d/89/d2f6f90e30cf7eb4477554a13f8a7b8aadaf762d595c76a434eb26d0947c/lxml-5.2.2-cp39-cp39-manylinux_2_28_s390x.whl", hash = "sha256:02f6a8eb6512fdc2fd4ca10a49c341c4e109aa6e9448cc4859af5b949622715a", size = 4979955 }, + { url = "https://files.pythonhosted.org/packages/c4/34/11d8b7bacec6b9af6305a266cc5a2695f81427dba9a4c2d59791b5b156e5/lxml-5.2.2-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:339ee4a4704bc724757cd5dd9dc8cf4d00980f5d3e6e06d5847c1b594ace68ab", size = 5028329 }, + { url = "https://files.pythonhosted.org/packages/2b/40/9a1782445756e1c3b028a26d8ce1864042d13ba8c7e5aa1eeb12a6b3b410/lxml-5.2.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0a028b61a2e357ace98b1615fc03f76eb517cc028993964fe08ad514b1e8892d", size = 4866331 }, + { url = "https://files.pythonhosted.org/packages/b4/10/741b8edfacede7a3bcec3f0f781fcc9270efe276b0fe73aa0330217c41fa/lxml-5.2.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:f90e552ecbad426eab352e7b2933091f2be77115bb16f09f78404861c8322981", size = 5420205 }, + { url = "https://files.pythonhosted.org/packages/88/8f/320abad6e805b6bff2920ce99fea4e818598bee771e10744a2a173402a4d/lxml-5.2.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:d83e2d94b69bf31ead2fa45f0acdef0757fa0458a129734f59f67f3d2eb7ef32", size = 4841182 }, + { url = "https://files.pythonhosted.org/packages/2b/94/fc50d1b8b8dcd75e3020b420339d650657fc2f6fcdeadbfcd39f63ee4292/lxml-5.2.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a02d3c48f9bb1e10c7788d92c0c7db6f2002d024ab6e74d6f45ae33e3d0288a3", size = 5006820 }, + { url = "https://files.pythonhosted.org/packages/21/83/46e40a901e00105a3520d57d6726ac1e5c8a9276f5972ef26b4be54789f1/lxml-5.2.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:6d68ce8e7b2075390e8ac1e1d3a99e8b6372c694bbe612632606d1d546794207", size = 4861349 }, + { url = "https://files.pythonhosted.org/packages/ee/92/a5a02b2b556b8736061532588a07dafdd0fa3bd34c515d600790ff931a5b/lxml-5.2.2-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:453d037e09a5176d92ec0fd282e934ed26d806331a8b70ab431a81e2fbabf56d", size = 5507842 }, + { url = "https://files.pythonhosted.org/packages/ab/a1/4c25151d56943c76937a976d5f5cc5047e4e60322e3af189d76d1a09e021/lxml-5.2.2-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:3b019d4ee84b683342af793b56bb35034bd749e4cbdd3d33f7d1107790f8c472", size = 4949210 }, + { url = "https://files.pythonhosted.org/packages/bc/7a/6b40c5bca97a9b685d1db5217cd51f829c5ed16fe797b0c40eb6e33f7cb5/lxml-5.2.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:cb3942960f0beb9f46e2a71a3aca220d1ca32feb5a398656be934320804c0df9", size = 5047392 }, + { url = "https://files.pythonhosted.org/packages/fb/53/7b3959a5d41c696db8cf7e4481bf1ac630f7a882215b332e795107d10d19/lxml-5.2.2-cp39-cp39-win32.whl", hash = "sha256:ac6540c9fff6e3813d29d0403ee7a81897f1d8ecc09a8ff84d2eea70ede1cdbf", size = 3479661 }, + { url = "https://files.pythonhosted.org/packages/78/c7/0479936ae05ec99a855cea94fcedfa6b3b2d642689e52122722811f54afe/lxml-5.2.2-cp39-cp39-win_amd64.whl", hash = "sha256:610b5c77428a50269f38a534057444c249976433f40f53e3b47e68349cca1425", size = 3809160 }, + { url = "https://files.pythonhosted.org/packages/00/68/cd5637510441ab4556f087b342000e4ae2d0cf3bea67b073a4327f31020c/lxml-5.2.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:b537bd04d7ccd7c6350cdaaaad911f6312cbd61e6e6045542f781c7f8b2e99d2", size = 3927145 }, + { url = "https://files.pythonhosted.org/packages/f6/e0/1122d5b6a10eb71fac4276a0d3b1f5cf1ef0a29f774601d4740e80a70e1a/lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4820c02195d6dfb7b8508ff276752f6b2ff8b64ae5d13ebe02e7667e035000b9", size = 4215917 }, + { url = "https://files.pythonhosted.org/packages/95/d1/ff0c68a61a385f6dffd4c099bc9720cb127bb94f0df8e71f52fe539f85b7/lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2a09f6184f17a80897172863a655467da2b11151ec98ba8d7af89f17bf63dae", size = 4326313 }, + { url = "https://files.pythonhosted.org/packages/a8/3c/c9ce5ba91764aaea8944b8e90543ba2e8fc2610d4c5c052160e83ac100b6/lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:76acba4c66c47d27c8365e7c10b3d8016a7da83d3191d053a58382311a8bf4e1", size = 4218518 }, + { url = "https://files.pythonhosted.org/packages/59/03/df1fc5b9f1db8502863ebef8f6a6f37131d7e7c432e997724689221052d9/lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b128092c927eaf485928cec0c28f6b8bead277e28acf56800e972aa2c2abd7a2", size = 4351481 }, + { url = "https://files.pythonhosted.org/packages/f0/ca/8f3b5500119f2651e45d261506e2246b960691239aa499411b763aa79a61/lxml-5.2.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:ae791f6bd43305aade8c0e22f816b34f3b72b6c820477aab4d18473a37e8090b", size = 3488498 }, + { url = "https://files.pythonhosted.org/packages/37/ee/4e2c2d6b86c448a39f4d8bfdce5fa65a116c716dc6bfb257f404ebf5f222/lxml-5.2.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:34e17913c431f5ae01d8658dbf792fdc457073dcdfbb31dc0cc6ab256e664a8d", size = 3924281 }, + { url = "https://files.pythonhosted.org/packages/76/51/0e53d8b7dfce944b6f9136ec4346f910c507ced0b16b520b61f2e98cbc55/lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:05f8757b03208c3f50097761be2dea0aba02e94f0dc7023ed73a7bb14ff11eb0", size = 4214485 }, + { url = "https://files.pythonhosted.org/packages/b1/d9/7a3aebdf5eb50b8a1e3b70c8b693fdc314b5e41b289d31c9c6d383b1aa44/lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6a520b4f9974b0a0a6ed73c2154de57cdfd0c8800f4f15ab2b73238ffed0b36e", size = 4324516 }, + { url = "https://files.pythonhosted.org/packages/a0/f9/c079a1690bfab601122e9355f34a71c17e2d7c74b0ea460c42288b68f96c/lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:5e097646944b66207023bc3c634827de858aebc226d5d4d6d16f0b77566ea182", size = 4215143 }, + { url = "https://files.pythonhosted.org/packages/c6/63/27d3d039276e87ac956cb1c3ddc3a2f949512630de6ecf202a9780588927/lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b5e4ef22ff25bfd4ede5f8fb30f7b24446345f3e79d9b7455aef2836437bc38a", size = 4347095 }, + { url = "https://files.pythonhosted.org/packages/2a/a6/86ef80e010cb757107ff079990b0e07d41b0b60c9eae20423be809877355/lxml-5.2.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:ff69a9a0b4b17d78170c73abe2ab12084bdf1691550c5629ad1fe7849433f324", size = 3487478 }, +] + +[[package]] +name = "mako" +version = "1.3.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/67/03/fb5ba97ff65ce64f6d35b582aacffc26b693a98053fa831ab43a437cbddb/Mako-1.3.5.tar.gz", hash = "sha256:48dbc20568c1d276a2698b36d968fa76161bf127194907ea6fc594fa81f943bc", size = 392738 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/03/62/70f5a0c2dd208f9f3f2f9afd103aec42ee4d9ad2401d78342f75e9b8da36/Mako-1.3.5-py3-none-any.whl", hash = "sha256:260f1dbc3a519453a9c856dedfe4beb4e50bd5a26d96386cb6c80856556bb91a", size = 78565 }, +] + +[[package]] +name = "markdown" +version = "3.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "importlib-metadata", marker = "python_version < '3.10'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/22/02/4785861427848cc11e452cc62bb541006a1087cf04a1de83aedd5530b948/Markdown-3.6.tar.gz", hash = "sha256:ed4f41f6daecbeeb96e576ce414c41d2d876daa9a16cb35fa8ed8c2ddfad0224", size = 354715 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fc/b3/0c0c994fe49cd661084f8d5dc06562af53818cc0abefaca35bdc894577c3/Markdown-3.6-py3-none-any.whl", hash = "sha256:48f276f4d8cfb8ce6527c8f79e2ee29708508bf4d40aa410fbc3b4ee832c850f", size = 105381 }, +] + +[[package]] +name = "markdown-it-py" +version = "3.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mdurl", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/38/71/3b932df36c1a044d397a1f92d1cf91ee0a503d91e470cbd670aa66b07ed0/markdown-it-py-3.0.0.tar.gz", hash = "sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb", size = 74596 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl", hash = "sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1", size = 87528 }, +] + +[[package]] +name = "markupsafe" +version = "2.1.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/87/5b/aae44c6655f3801e81aa3eef09dbbf012431987ba564d7231722f68df02d/MarkupSafe-2.1.5.tar.gz", hash = "sha256:d283d37a890ba4c1ae73ffadf8046435c76e7bc2247bbb63c00bd1a709c6544b", size = 19384 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e4/54/ad5eb37bf9d51800010a74e4665425831a9db4e7c4e0fde4352e391e808e/MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a17a92de5231666cfbe003f0e4b9b3a7ae3afb1ec2845aadc2bacc93ff85febc", size = 18206 }, + { url = "https://files.pythonhosted.org/packages/6a/4a/a4d49415e600bacae038c67f9fecc1d5433b9d3c71a4de6f33537b89654c/MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:72b6be590cc35924b02c78ef34b467da4ba07e4e0f0454a2c5907f473fc50ce5", size = 14079 }, + { url = "https://files.pythonhosted.org/packages/0a/7b/85681ae3c33c385b10ac0f8dd025c30af83c78cec1c37a6aa3b55e67f5ec/MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e61659ba32cf2cf1481e575d0462554625196a1f2fc06a1c777d3f48e8865d46", size = 26620 }, + { url = "https://files.pythonhosted.org/packages/7c/52/2b1b570f6b8b803cef5ac28fdf78c0da318916c7d2fe9402a84d591b394c/MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2174c595a0d73a3080ca3257b40096db99799265e1c27cc5a610743acd86d62f", size = 25818 }, + { url = "https://files.pythonhosted.org/packages/29/fe/a36ba8c7ca55621620b2d7c585313efd10729e63ef81e4e61f52330da781/MarkupSafe-2.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae2ad8ae6ebee9d2d94b17fb62763125f3f374c25618198f40cbb8b525411900", size = 25493 }, + { url = "https://files.pythonhosted.org/packages/60/ae/9c60231cdfda003434e8bd27282b1f4e197ad5a710c14bee8bea8a9ca4f0/MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:075202fa5b72c86ad32dc7d0b56024ebdbcf2048c0ba09f1cde31bfdd57bcfff", size = 30630 }, + { url = "https://files.pythonhosted.org/packages/65/dc/1510be4d179869f5dafe071aecb3f1f41b45d37c02329dfba01ff59e5ac5/MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:598e3276b64aff0e7b3451b72e94fa3c238d452e7ddcd893c3ab324717456bad", size = 29745 }, + { url = "https://files.pythonhosted.org/packages/30/39/8d845dd7d0b0613d86e0ef89549bfb5f61ed781f59af45fc96496e897f3a/MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fce659a462a1be54d2ffcacea5e3ba2d74daa74f30f5f143fe0c58636e355fdd", size = 30021 }, + { url = "https://files.pythonhosted.org/packages/c7/5c/356a6f62e4f3c5fbf2602b4771376af22a3b16efa74eb8716fb4e328e01e/MarkupSafe-2.1.5-cp310-cp310-win32.whl", hash = "sha256:d9fad5155d72433c921b782e58892377c44bd6252b5af2f67f16b194987338a4", size = 16659 }, + { url = "https://files.pythonhosted.org/packages/69/48/acbf292615c65f0604a0c6fc402ce6d8c991276e16c80c46a8f758fbd30c/MarkupSafe-2.1.5-cp310-cp310-win_amd64.whl", hash = "sha256:bf50cd79a75d181c9181df03572cdce0fbb75cc353bc350712073108cba98de5", size = 17213 }, + { url = "https://files.pythonhosted.org/packages/11/e7/291e55127bb2ae67c64d66cef01432b5933859dfb7d6949daa721b89d0b3/MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:629ddd2ca402ae6dbedfceeba9c46d5f7b2a61d9749597d4307f943ef198fc1f", size = 18219 }, + { url = "https://files.pythonhosted.org/packages/6b/cb/aed7a284c00dfa7c0682d14df85ad4955a350a21d2e3b06d8240497359bf/MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b7b716f97b52c5a14bffdf688f971b2d5ef4029127f1ad7a513973cfd818df2", size = 14098 }, + { url = "https://files.pythonhosted.org/packages/1c/cf/35fe557e53709e93feb65575c93927942087e9b97213eabc3fe9d5b25a55/MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ec585f69cec0aa07d945b20805be741395e28ac1627333b1c5b0105962ffced", size = 29014 }, + { url = "https://files.pythonhosted.org/packages/97/18/c30da5e7a0e7f4603abfc6780574131221d9148f323752c2755d48abad30/MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b91c037585eba9095565a3556f611e3cbfaa42ca1e865f7b8015fe5c7336d5a5", size = 28220 }, + { url = "https://files.pythonhosted.org/packages/0c/40/2e73e7d532d030b1e41180807a80d564eda53babaf04d65e15c1cf897e40/MarkupSafe-2.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7502934a33b54030eaf1194c21c692a534196063db72176b0c4028e140f8f32c", size = 27756 }, + { url = "https://files.pythonhosted.org/packages/18/46/5dca760547e8c59c5311b332f70605d24c99d1303dd9a6e1fc3ed0d73561/MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0e397ac966fdf721b2c528cf028494e86172b4feba51d65f81ffd65c63798f3f", size = 33988 }, + { url = "https://files.pythonhosted.org/packages/6d/c5/27febe918ac36397919cd4a67d5579cbbfa8da027fa1238af6285bb368ea/MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c061bb86a71b42465156a3ee7bd58c8c2ceacdbeb95d05a99893e08b8467359a", size = 32718 }, + { url = "https://files.pythonhosted.org/packages/f8/81/56e567126a2c2bc2684d6391332e357589a96a76cb9f8e5052d85cb0ead8/MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3a57fdd7ce31c7ff06cdfbf31dafa96cc533c21e443d57f5b1ecc6cdc668ec7f", size = 33317 }, + { url = "https://files.pythonhosted.org/packages/00/0b/23f4b2470accb53285c613a3ab9ec19dc944eaf53592cb6d9e2af8aa24cc/MarkupSafe-2.1.5-cp311-cp311-win32.whl", hash = "sha256:397081c1a0bfb5124355710fe79478cdbeb39626492b15d399526ae53422b906", size = 16670 }, + { url = "https://files.pythonhosted.org/packages/b7/a2/c78a06a9ec6d04b3445a949615c4c7ed86a0b2eb68e44e7541b9d57067cc/MarkupSafe-2.1.5-cp311-cp311-win_amd64.whl", hash = "sha256:2b7c57a4dfc4f16f7142221afe5ba4e093e09e728ca65c51f5620c9aaeb9a617", size = 17224 }, + { url = "https://files.pythonhosted.org/packages/53/bd/583bf3e4c8d6a321938c13f49d44024dbe5ed63e0a7ba127e454a66da974/MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:8dec4936e9c3100156f8a2dc89c4b88d5c435175ff03413b443469c7c8c5f4d1", size = 18215 }, + { url = "https://files.pythonhosted.org/packages/48/d6/e7cd795fc710292c3af3a06d80868ce4b02bfbbf370b7cee11d282815a2a/MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:3c6b973f22eb18a789b1460b4b91bf04ae3f0c4234a0a6aa6b0a92f6f7b951d4", size = 14069 }, + { url = "https://files.pythonhosted.org/packages/51/b5/5d8ec796e2a08fc814a2c7d2584b55f889a55cf17dd1a90f2beb70744e5c/MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac07bad82163452a6884fe8fa0963fb98c2346ba78d779ec06bd7a6262132aee", size = 29452 }, + { url = "https://files.pythonhosted.org/packages/0a/0d/2454f072fae3b5a137c119abf15465d1771319dfe9e4acbb31722a0fff91/MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5dfb42c4604dddc8e4305050aa6deb084540643ed5804d7455b5df8fe16f5e5", size = 28462 }, + { url = "https://files.pythonhosted.org/packages/2d/75/fd6cb2e68780f72d47e6671840ca517bda5ef663d30ada7616b0462ad1e3/MarkupSafe-2.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ea3d8a3d18833cf4304cd2fc9cbb1efe188ca9b5efef2bdac7adc20594a0e46b", size = 27869 }, + { url = "https://files.pythonhosted.org/packages/b0/81/147c477391c2750e8fc7705829f7351cf1cd3be64406edcf900dc633feb2/MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d050b3361367a06d752db6ead6e7edeb0009be66bc3bae0ee9d97fb326badc2a", size = 33906 }, + { url = "https://files.pythonhosted.org/packages/8b/ff/9a52b71839d7a256b563e85d11050e307121000dcebc97df120176b3ad93/MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:bec0a414d016ac1a18862a519e54b2fd0fc8bbfd6890376898a6c0891dd82e9f", size = 32296 }, + { url = "https://files.pythonhosted.org/packages/88/07/2dc76aa51b481eb96a4c3198894f38b480490e834479611a4053fbf08623/MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:58c98fee265677f63a4385256a6d7683ab1832f3ddd1e66fe948d5880c21a169", size = 33038 }, + { url = "https://files.pythonhosted.org/packages/96/0c/620c1fb3661858c0e37eb3cbffd8c6f732a67cd97296f725789679801b31/MarkupSafe-2.1.5-cp312-cp312-win32.whl", hash = "sha256:8590b4ae07a35970728874632fed7bd57b26b0102df2d2b233b6d9d82f6c62ad", size = 16572 }, + { url = "https://files.pythonhosted.org/packages/3f/14/c3554d512d5f9100a95e737502f4a2323a1959f6d0d01e0d0997b35f7b10/MarkupSafe-2.1.5-cp312-cp312-win_amd64.whl", hash = "sha256:823b65d8706e32ad2df51ed89496147a42a2a6e01c13cfb6ffb8b1e92bc910bb", size = 17127 }, + { url = "https://files.pythonhosted.org/packages/0f/31/780bb297db036ba7b7bbede5e1d7f1e14d704ad4beb3ce53fb495d22bc62/MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7a68b554d356a91cce1236aa7682dc01df0edba8d043fd1ce607c49dd3c1edcf", size = 18193 }, + { url = "https://files.pythonhosted.org/packages/6c/77/d77701bbef72892affe060cdacb7a2ed7fd68dae3b477a8642f15ad3b132/MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:db0b55e0f3cc0be60c1f19efdde9a637c32740486004f20d1cff53c3c0ece4d2", size = 14073 }, + { url = "https://files.pythonhosted.org/packages/d9/a7/1e558b4f78454c8a3a0199292d96159eb4d091f983bc35ef258314fe7269/MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e53af139f8579a6d5f7b76549125f0d94d7e630761a2111bc431fd820e163b8", size = 26486 }, + { url = "https://files.pythonhosted.org/packages/5f/5a/360da85076688755ea0cceb92472923086993e86b5613bbae9fbc14136b0/MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17b950fccb810b3293638215058e432159d2b71005c74371d784862b7e4683f3", size = 25685 }, + { url = "https://files.pythonhosted.org/packages/6a/18/ae5a258e3401f9b8312f92b028c54d7026a97ec3ab20bfaddbdfa7d8cce8/MarkupSafe-2.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4c31f53cdae6ecfa91a77820e8b151dba54ab528ba65dfd235c80b086d68a465", size = 25338 }, + { url = "https://files.pythonhosted.org/packages/0b/cc/48206bd61c5b9d0129f4d75243b156929b04c94c09041321456fd06a876d/MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bff1b4290a66b490a2f4719358c0cdcd9bafb6b8f061e45c7a2460866bf50c2e", size = 30439 }, + { url = "https://files.pythonhosted.org/packages/d1/06/a41c112ab9ffdeeb5f77bc3e331fdadf97fa65e52e44ba31880f4e7f983c/MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bc1667f8b83f48511b94671e0e441401371dfd0f0a795c7daa4a3cd1dde55bea", size = 29531 }, + { url = "https://files.pythonhosted.org/packages/02/8c/ab9a463301a50dab04d5472e998acbd4080597abc048166ded5c7aa768c8/MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5049256f536511ee3f7e1b3f87d1d1209d327e818e6ae1365e8653d7e3abb6a6", size = 29823 }, + { url = "https://files.pythonhosted.org/packages/bc/29/9bc18da763496b055d8e98ce476c8e718dcfd78157e17f555ce6dd7d0895/MarkupSafe-2.1.5-cp39-cp39-win32.whl", hash = "sha256:00e046b6dd71aa03a41079792f8473dc494d564611a8f89bbbd7cb93295ebdcf", size = 16658 }, + { url = "https://files.pythonhosted.org/packages/f6/f8/4da07de16f10551ca1f640c92b5f316f9394088b183c6a57183df6de5ae4/MarkupSafe-2.1.5-cp39-cp39-win_amd64.whl", hash = "sha256:fa173ec60341d6bb97a89f5ea19c85c5643c1e7dedebc22f5181eb73573142c5", size = 17211 }, +] + +[[package]] +name = "mdurl" +version = "0.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba", size = 8729 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979 }, +] + +[[package]] +name = "ml-dtypes" +version = "0.3.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "(python_version == '3.11' and platform_machine == 'aarch64' and platform_system == 'Linux') or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and platform_machine == 'aarch64' and platform_system == 'Linux')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/39/7d/8d85fcba868758b3a546e6914e727abd8f29ea6918079f816975c9eecd63/ml_dtypes-0.3.2.tar.gz", hash = "sha256:533059bc5f1764fac071ef54598db358c167c51a718f68f5bb55e3dee79d2967", size = 692014 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/62/0a/2b586fd10be7b8311068f4078623a73376fc49c8b3768be9965034062982/ml_dtypes-0.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7afde548890a92b41c0fed3a6c525f1200a5727205f73dc21181a2726571bb53", size = 389797 }, + { url = "https://files.pythonhosted.org/packages/bc/6d/de99642d98feb7e83ccfbc5eb2b5970ff19ec6834094b690205bebe1c22d/ml_dtypes-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d1a746fe5fb9cd974a91070174258f0be129c592b93f9ce7df6cc336416c3fbd", size = 2182877 }, + { url = "https://files.pythonhosted.org/packages/71/01/7dc0e2cdead686a758810d08fd4111602088fe3f0d88064a83cbfb635593/ml_dtypes-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:961134ea44c7b8ca63eda902a44b58cd8bd670e21d62e255c81fba0a8e70d9b7", size = 2160459 }, + { url = "https://files.pythonhosted.org/packages/30/a5/0480b23b2213c746cd874894bc485eb49310d7045159a36c7c03cab729ce/ml_dtypes-0.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:6b35c4e8ca957c877ac35c79ffa77724ecc3702a1e4b18b08306c03feae597bb", size = 127768 }, + { url = "https://files.pythonhosted.org/packages/6e/a4/6aabb78f1569550fd77c74d2c1d008b502c8ce72776bd88b14ea6c182c9e/ml_dtypes-0.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:763697ab8a88d47443997a7cdf3aac7340049aed45f7521f6b0ec8a0594821fe", size = 389791 }, + { url = "https://files.pythonhosted.org/packages/d1/ed/211bf2e1c66e4ec9b712c3be848a876185c7f0d5e94bf647b60e64ef32eb/ml_dtypes-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b89b194e9501a92d289c1ffd411380baf5daafb9818109a4f49b0a1b6dce4462", size = 2185796 }, + { url = "https://files.pythonhosted.org/packages/77/a0/d4ee9e3aca5b9101c590b58555820618e8201c2ccb7004eabb417ec046ac/ml_dtypes-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2c34f2ba9660b21fe1034b608308a01be82bbef2a92fb8199f24dc6bad0d5226", size = 2164071 }, + { url = "https://files.pythonhosted.org/packages/a4/db/1784b87285588788170f87e987bfb4bda218d62a70a81ebb66c94e7f9b95/ml_dtypes-0.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:6604877d567a29bfe7cc02969ae0f2425260e5335505cf5e7fefc3e5465f5655", size = 127681 }, + { url = "https://files.pythonhosted.org/packages/ad/2d/57a8aa1ba7472a93a675bfba3f0c90d9396d01d040617a5345ce87884330/ml_dtypes-0.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:93b78f53431c93953f7850bb1b925a17f0ab5d97527e38a7e865b5b4bc5cfc18", size = 393571 }, + { url = "https://files.pythonhosted.org/packages/6a/05/ec30199c791cf0d788a26f56d8efb8ee4133ede79a9680fd8cc05e706404/ml_dtypes-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3a17ef2322e60858d93584e9c52a5be7dd6236b056b7fa1ec57f1bb6ba043e33", size = 2180925 }, + { url = "https://files.pythonhosted.org/packages/e5/f1/93219c44bae4017e6e43391fa4433592de08e05def9d885227d3596f21a5/ml_dtypes-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e8505946df1665db01332d885c2020b4cb9e84a8b1241eb4ba69d59591f65855", size = 2160573 }, + { url = "https://files.pythonhosted.org/packages/47/f3/847da54c3d243ff2aa778078ecf09da199194d282744718ef325dd8afd41/ml_dtypes-0.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:f47619d978ab1ae7dfdc4052ea97c636c6263e1f19bd1be0e42c346b98d15ff4", size = 128649 }, + { url = "https://files.pythonhosted.org/packages/7b/bb/4513133bccda7e66eb56ee38f68d1a8bbc81f072d00a40ee369c43f25ba9/ml_dtypes-0.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c7b3fb3d4f6b39bcd4f6c4b98f406291f0d681a895490ee29a0f95bab850d53c", size = 389810 }, + { url = "https://files.pythonhosted.org/packages/ea/58/c56da71b1d9f9c6c1e61f63d27f901c3526e13da0589ec2ff993e9a72c04/ml_dtypes-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7a4c3fcbf86fa52d0204f07cfd23947ef05b4ad743a1a988e163caa34a201e5e", size = 2180720 }, + { url = "https://files.pythonhosted.org/packages/86/29/b389f235add26220bc7b7f100362f4e3a84e14f7c837abd34a11347df1b0/ml_dtypes-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:91f8783fd1f2c23fd3b9ee5ad66b785dafa58ba3cdb050c4458021fa4d1eb226", size = 2158181 }, + { url = "https://files.pythonhosted.org/packages/38/3c/5d058a50340759423b25cb99f930cb3691fc30ebe86d53fdf1bff55c2d71/ml_dtypes-0.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:7ba8e1fafc7fff3e643f453bffa7d082df1678a73286ce8187d3e825e776eb94", size = 127704 }, +] + +[[package]] +name = "mpmath" +version = "1.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e0/47/dd32fa426cc72114383ac549964eecb20ecfd886d1e5ccf5340b55b02f57/mpmath-1.3.0.tar.gz", hash = "sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f", size = 508106 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/43/e3/7d92a15f894aa0c9c4b49b8ee9ac9850d6e63b03c9c32c0367a13ae62209/mpmath-1.3.0-py3-none-any.whl", hash = "sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c", size = 536198 }, +] + +[[package]] +name = "msgpack" +version = "1.0.8" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/08/4c/17adf86a8fbb02c144c7569dc4919483c01a2ac270307e2d59e1ce394087/msgpack-1.0.8.tar.gz", hash = "sha256:95c02b0e27e706e48d0e5426d1710ca78e0f0628d6e89d5b5a5b91a5f12274f3", size = 167014 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/c2/8ecbafd6d3178ad408989c82d6d518fec76e053bae20c0fd9f47bffe7dda/msgpack-1.0.8-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:505fe3d03856ac7d215dbe005414bc28505d26f0c128906037e66d98c4e95868", size = 157691 }, + { url = "https://files.pythonhosted.org/packages/0d/7e/93373ffbe6561e719996a90b6d112604f52da3ab46e7c395db7607458553/msgpack-1.0.8-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e6b7842518a63a9f17107eb176320960ec095a8ee3b4420b5f688e24bf50c53c", size = 87954 }, + { url = "https://files.pythonhosted.org/packages/ba/13/d000e53b067aee19d57a4f26d5bffed7890e6896538ac5f97605b0f64985/msgpack-1.0.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:376081f471a2ef24828b83a641a02c575d6103a3ad7fd7dade5486cad10ea659", size = 84945 }, + { url = "https://files.pythonhosted.org/packages/2b/6e/3dcd4f7d8b978277393fd5b7c0abd9d2b6ef7ba8eb12834bed59158ecf5f/msgpack-1.0.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e390971d082dba073c05dbd56322427d3280b7cc8b53484c9377adfbae67dc2", size = 376004 }, + { url = "https://files.pythonhosted.org/packages/d9/96/a1868dd8997d65732476dfc70fef44d046c1b4dbe36ec1481ab744d87775/msgpack-1.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:00e073efcba9ea99db5acef3959efa45b52bc67b61b00823d2a1a6944bf45982", size = 385107 }, + { url = "https://files.pythonhosted.org/packages/9b/db/8d629233bba3cbe6d7a6e0fd018ed684c5f0befea4428d4217ce066d2f20/msgpack-1.0.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82d92c773fbc6942a7a8b520d22c11cfc8fd83bba86116bfcf962c2f5c2ecdaa", size = 374290 }, + { url = "https://files.pythonhosted.org/packages/f0/75/553cc9ddfe59c62654dd398c16cd8ab1b3eeb145e56805f52115cbe9f5a0/msgpack-1.0.8-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:9ee32dcb8e531adae1f1ca568822e9b3a738369b3b686d1477cbc643c4a9c128", size = 380759 }, + { url = "https://files.pythonhosted.org/packages/7c/40/c6f31cef899b54e3f6a759204d0b152c9205aef7219c9d2279f608c421eb/msgpack-1.0.8-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e3aa7e51d738e0ec0afbed661261513b38b3014754c9459508399baf14ae0c9d", size = 413943 }, + { url = "https://files.pythonhosted.org/packages/b0/a8/29426f7af85406116e1cdbd21d8f02e30ef8f4afe3cfcbb43c498cbadadf/msgpack-1.0.8-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:69284049d07fce531c17404fcba2bb1df472bc2dcdac642ae71a2d079d950653", size = 385405 }, + { url = "https://files.pythonhosted.org/packages/98/b4/a32559cd8604402f55560ab7e5ebf20a92b533f376d693bb67a9c0aff41e/msgpack-1.0.8-cp310-cp310-win32.whl", hash = "sha256:13577ec9e247f8741c84d06b9ece5f654920d8365a4b636ce0e44f15e07ec693", size = 69043 }, + { url = "https://files.pythonhosted.org/packages/21/47/b7217d54e15dbae5492b845364427fa3cb1b0ccb58160b04ba47b551d7d9/msgpack-1.0.8-cp310-cp310-win_amd64.whl", hash = "sha256:e532dbd6ddfe13946de050d7474e3f5fb6ec774fbb1a188aaf469b08cf04189a", size = 75106 }, + { url = "https://files.pythonhosted.org/packages/3e/0e/96477b0448c593cc5c679e855c7bb58bb6543a065760e67cad0c3f90deb1/msgpack-1.0.8-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9517004e21664f2b5a5fd6333b0731b9cf0817403a941b393d89a2f1dc2bd836", size = 157669 }, + { url = "https://files.pythonhosted.org/packages/46/ca/96051d40050cd17bf054996662dbf8900da9995fa0a3308f2597a47bedad/msgpack-1.0.8-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d16a786905034e7e34098634b184a7d81f91d4c3d246edc6bd7aefb2fd8ea6ad", size = 87994 }, + { url = "https://files.pythonhosted.org/packages/17/29/7f3f30dd40bf1c2599350099645d3664b3aadb803583cbfce57a28047c4d/msgpack-1.0.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e2872993e209f7ed04d963e4b4fbae72d034844ec66bc4ca403329db2074377b", size = 84887 }, + { url = "https://files.pythonhosted.org/packages/1a/01/01a88f7971c68037dab4be2737b50e00557bbdaf179ab988803c736043ed/msgpack-1.0.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c330eace3dd100bdb54b5653b966de7f51c26ec4a7d4e87132d9b4f738220ba", size = 400836 }, + { url = "https://files.pythonhosted.org/packages/f6/f0/a7bdb48223cd21b9abed814b08fca8fe6a40931e70ec97c24d2f15d68ef3/msgpack-1.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:83b5c044f3eff2a6534768ccfd50425939e7a8b5cf9a7261c385de1e20dcfc85", size = 409267 }, + { url = "https://files.pythonhosted.org/packages/f5/9a/88388f7960930a7dc0bbcde3d1db1bd543c9645483f3172c64853f4cab67/msgpack-1.0.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1876b0b653a808fcd50123b953af170c535027bf1d053b59790eebb0aeb38950", size = 397264 }, + { url = "https://files.pythonhosted.org/packages/43/7c/82b729d105dae9f8be500228fdd8cfc1f918a18e285afcbf6d6915146037/msgpack-1.0.8-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:dfe1f0f0ed5785c187144c46a292b8c34c1295c01da12e10ccddfc16def4448a", size = 404763 }, + { url = "https://files.pythonhosted.org/packages/e0/3f/978df03be94c2198be22df5d6e31b69ef7a9759c6cc0cce4ed1d08e2b27b/msgpack-1.0.8-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3528807cbbb7f315bb81959d5961855e7ba52aa60a3097151cb21956fbc7502b", size = 434775 }, + { url = "https://files.pythonhosted.org/packages/dd/06/adb6c8cdea18f9ba09b7dc1442b50ce222858ae4a85703420349784429d0/msgpack-1.0.8-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e2f879ab92ce502a1e65fce390eab619774dda6a6ff719718069ac94084098ce", size = 409109 }, + { url = "https://files.pythonhosted.org/packages/c6/d6/46eec1866b1ff58001a4be192ec43675620392de078fd4baf394f7d03552/msgpack-1.0.8-cp311-cp311-win32.whl", hash = "sha256:26ee97a8261e6e35885c2ecd2fd4a6d38252246f94a2aec23665a4e66d066305", size = 68779 }, + { url = "https://files.pythonhosted.org/packages/33/e9/f450b8e1243704c0ab656dcd37f6146881d11bbb68588132d8ae673c455b/msgpack-1.0.8-cp311-cp311-win_amd64.whl", hash = "sha256:eadb9f826c138e6cf3c49d6f8de88225a3c0ab181a9b4ba792e006e5292d150e", size = 75180 }, + { url = "https://files.pythonhosted.org/packages/97/73/757eeca26527ebac31d86d35bf4ba20155ee14d35c8619dd96bc80a037f3/msgpack-1.0.8-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:114be227f5213ef8b215c22dde19532f5da9652e56e8ce969bf0a26d7c419fee", size = 158948 }, + { url = "https://files.pythonhosted.org/packages/11/df/558899a5f90d450e988484be25be0b49c6930858d6fe44ea6f1f66502fe5/msgpack-1.0.8-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d661dc4785affa9d0edfdd1e59ec056a58b3dbb9f196fa43587f3ddac654ac7b", size = 88696 }, + { url = "https://files.pythonhosted.org/packages/99/3e/49d430df1e9abf06bb91e9824422cd6ceead2114662417286da3ddcdd295/msgpack-1.0.8-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d56fd9f1f1cdc8227d7b7918f55091349741904d9520c65f0139a9755952c9e8", size = 85428 }, + { url = "https://files.pythonhosted.org/packages/54/f7/84828d0c6be6b7f0770777f1a7b1f76f3a78e8b6afb5e4e9c1c9350242be/msgpack-1.0.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0726c282d188e204281ebd8de31724b7d749adebc086873a59efb8cf7ae27df3", size = 396116 }, + { url = "https://files.pythonhosted.org/packages/04/2a/c833a8503be9030083f0469e7a3c74d3622a3b4eae676c3934d3ccc01036/msgpack-1.0.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8db8e423192303ed77cff4dce3a4b88dbfaf43979d280181558af5e2c3c71afc", size = 408331 }, + { url = "https://files.pythonhosted.org/packages/04/50/b988d0a8e8835f705e4bbcb6433845ff11dd50083c0aa43e607bb7b2ff96/msgpack-1.0.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:99881222f4a8c2f641f25703963a5cefb076adffd959e0558dc9f803a52d6a58", size = 394182 }, + { url = "https://files.pythonhosted.org/packages/98/e1/0d18496cbeef771db605b6a14794f9b4235d371f36b43f7223c1613969ec/msgpack-1.0.8-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:b5505774ea2a73a86ea176e8a9a4a7c8bf5d521050f0f6f8426afe798689243f", size = 401226 }, + { url = "https://files.pythonhosted.org/packages/03/79/ae000bde2aee4b9f0d50c1ca1ab301ade873b59dd6968c28f918d1cf8be4/msgpack-1.0.8-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:ef254a06bcea461e65ff0373d8a0dd1ed3aa004af48839f002a0c994a6f72d04", size = 432994 }, + { url = "https://files.pythonhosted.org/packages/cb/46/f97bedf3ab16d38eeea0aafa3ad93cc7b9adf898218961faaea9c3c639f1/msgpack-1.0.8-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:e1dd7839443592d00e96db831eddb4111a2a81a46b028f0facd60a09ebbdd543", size = 410432 }, + { url = "https://files.pythonhosted.org/packages/8f/59/db5b61c74341b6fdf2c8a5743bb242c395d728666cf3105ff17290eb421a/msgpack-1.0.8-cp312-cp312-win32.whl", hash = "sha256:64d0fcd436c5683fdd7c907eeae5e2cbb5eb872fafbc03a43609d7941840995c", size = 69255 }, + { url = "https://files.pythonhosted.org/packages/72/5c/5facaa9b5d1b3ead831697daacf37d485af312bbe483ac6ecf43a3dd777f/msgpack-1.0.8-cp312-cp312-win_amd64.whl", hash = "sha256:74398a4cf19de42e1498368c36eed45d9528f5fd0155241e82c4082b7e16cffd", size = 75348 }, + { url = "https://files.pythonhosted.org/packages/76/2f/a06b5ca0ba80aeb5f0b50449fb57a55c2c70bc495f2569442c743ed8478d/msgpack-1.0.8-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:f51bab98d52739c50c56658cc303f190785f9a2cd97b823357e7aeae54c8f68a", size = 157945 }, + { url = "https://files.pythonhosted.org/packages/7a/c7/c95fe31dd0d7bf49fd3590df8e0089a8b9b18222909439d68dcc7973fd13/msgpack-1.0.8-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:73ee792784d48aa338bba28063e19a27e8d989344f34aad14ea6e1b9bd83f596", size = 88030 }, + { url = "https://files.pythonhosted.org/packages/42/fa/9379d11dd1b83570b2e9dc0d7c7e45aec2fb99d80540170f82d79f83132a/msgpack-1.0.8-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f9904e24646570539a8950400602d66d2b2c492b9010ea7e965025cb71d0c86d", size = 85101 }, + { url = "https://files.pythonhosted.org/packages/ad/61/225d64e983e51f960cac41fd1084188764fcc7430e75f609ad9d86e47839/msgpack-1.0.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e75753aeda0ddc4c28dce4c32ba2f6ec30b1b02f6c0b14e547841ba5b24f753f", size = 375971 }, + { url = "https://files.pythonhosted.org/packages/09/b1/d80b0a71ac05655f73146492601e91b1dbb7eb0d95d8261bec1c981e8a36/msgpack-1.0.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5dbf059fb4b7c240c873c1245ee112505be27497e90f7c6591261c7d3c3a8228", size = 385062 }, + { url = "https://files.pythonhosted.org/packages/20/40/4eb8e9dc0e949bf22e5bcd74d16996ad61eb87220a1d719d6badd169be1a/msgpack-1.0.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4916727e31c28be8beaf11cf117d6f6f188dcc36daae4e851fee88646f5b6b18", size = 373871 }, + { url = "https://files.pythonhosted.org/packages/39/e2/cac717fd842a6d0d321b2f34add877033aede4f2e6321d93799ab68c6aea/msgpack-1.0.8-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:7938111ed1358f536daf311be244f34df7bf3cdedb3ed883787aca97778b28d8", size = 379532 }, + { url = "https://files.pythonhosted.org/packages/56/7a/2a9b40ca2d9ff8f9b5628b15b820676d830b006cff6ca6b3bdffbafd2142/msgpack-1.0.8-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:493c5c5e44b06d6c9268ce21b302c9ca055c1fd3484c25ba41d34476c76ee746", size = 413708 }, + { url = "https://files.pythonhosted.org/packages/ff/21/1b3545b88fe47526925b37217729036df4088340cad6e665609cb36ba84e/msgpack-1.0.8-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5fbb160554e319f7b22ecf530a80a3ff496d38e8e07ae763b9e82fadfe96f273", size = 383553 }, + { url = "https://files.pythonhosted.org/packages/aa/ef/bde2160092b87c76e3733b94bb4fba5fbd7937173a9d4a4bf0f78c246cc2/msgpack-1.0.8-cp39-cp39-win32.whl", hash = "sha256:f9af38a89b6a5c04b7d18c492c8ccf2aee7048aff1ce8437c4683bb5a1df893d", size = 69215 }, + { url = "https://files.pythonhosted.org/packages/c8/03/5ded16a0da44662b131af259fb2f95cd9b11a5850e57d290a5341b16d9ca/msgpack-1.0.8-cp39-cp39-win_amd64.whl", hash = "sha256:ed59dd52075f8fc91da6053b12e8c89e37aa043f8986efd89e61fae69dc1b011", size = 75081 }, +] + +[[package]] +name = "multidict" +version = "6.0.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f9/79/722ca999a3a09a63b35aac12ec27dfa8e5bb3a38b0f857f7a1a209a88836/multidict-6.0.5.tar.gz", hash = "sha256:f7e301075edaf50500f0b341543c41194d8df3ae5caf4702f2095f3ca73dd8da", size = 59867 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/36/48097b96135017ed1b806c5ea27b6cdc2ed3a6861c5372b793563206c586/multidict-6.0.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:228b644ae063c10e7f324ab1ab6b548bdf6f8b47f3ec234fef1093bc2735e5f9", size = 50955 }, + { url = "https://files.pythonhosted.org/packages/d9/48/037440edb5d4a1c65e002925b2f24071d6c27754e6f4734f63037e3169d6/multidict-6.0.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:896ebdcf62683551312c30e20614305f53125750803b614e9e6ce74a96232604", size = 30361 }, + { url = "https://files.pythonhosted.org/packages/a4/eb/d8e7693c9064554a1585698d1902839440c6c695b0f53c9a8be5d9d4a3b8/multidict-6.0.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:411bf8515f3be9813d06004cac41ccf7d1cd46dfe233705933dd163b60e37600", size = 30508 }, + { url = "https://files.pythonhosted.org/packages/f3/7d/fe7648d4b2f200f8854066ce6e56bf51889abfaf859814c62160dd0e32a9/multidict-6.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1d147090048129ce3c453f0292e7697d333db95e52616b3793922945804a433c", size = 126318 }, + { url = "https://files.pythonhosted.org/packages/8d/ea/0230b6faa9a5bc10650fd50afcc4a86e6c37af2fe05bc679b74d79253732/multidict-6.0.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:215ed703caf15f578dca76ee6f6b21b7603791ae090fbf1ef9d865571039ade5", size = 133998 }, + { url = "https://files.pythonhosted.org/packages/36/6d/d2f982fb485175727a193b4900b5f929d461e7aa87d6fb5a91a377fcc9c0/multidict-6.0.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c6390cf87ff6234643428991b7359b5f59cc15155695deb4eda5c777d2b880f", size = 129150 }, + { url = "https://files.pythonhosted.org/packages/33/62/2c9085e571318d51212a6914566fe41dd0e33d7f268f7e2f23dcd3f06c56/multidict-6.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21fd81c4ebdb4f214161be351eb5bcf385426bf023041da2fd9e60681f3cebae", size = 124266 }, + { url = "https://files.pythonhosted.org/packages/ce/e2/88cdfeaf03eab3498f688a19b62ca704d371cd904cb74b682541ca7b20a7/multidict-6.0.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3cc2ad10255f903656017363cd59436f2111443a76f996584d1077e43ee51182", size = 116637 }, + { url = "https://files.pythonhosted.org/packages/12/4d/99dfc36872dcc53956879f5da80a6505bbd29214cce90ce792a86e15fddf/multidict-6.0.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:6939c95381e003f54cd4c5516740faba40cf5ad3eeff460c3ad1d3e0ea2549bf", size = 155908 }, + { url = "https://files.pythonhosted.org/packages/c2/5c/1e76b2c742cb9e0248d1e8c4ed420817879230c833fa27d890b5fd22290b/multidict-6.0.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:220dd781e3f7af2c2c1053da9fa96d9cf3072ca58f057f4c5adaaa1cab8fc442", size = 147111 }, + { url = "https://files.pythonhosted.org/packages/bc/84/9579004267e1cc5968ef2ef8718dab9d8950d99354d85b739dd67b09c273/multidict-6.0.5-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:766c8f7511df26d9f11cd3a8be623e59cca73d44643abab3f8c8c07620524e4a", size = 160502 }, + { url = "https://files.pythonhosted.org/packages/11/b7/bef33e84e3722bc42531af020d7ae8c31235ce8846bacaa852b6484cf868/multidict-6.0.5-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:fe5d7785250541f7f5019ab9cba2c71169dc7d74d0f45253f8313f436458a4ef", size = 156587 }, + { url = "https://files.pythonhosted.org/packages/26/ce/f745a2d6104e56f7fa0d7d0756bb9ed27b771dd7b8d9d7348cd7f0f7b9de/multidict-6.0.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c1c1496e73051918fcd4f58ff2e0f2f3066d1c76a0c6aeffd9b45d53243702cc", size = 151948 }, + { url = "https://files.pythonhosted.org/packages/f1/50/714da64281d2b2b3b4068e84f115e1ef3bd3ed3715b39503ff3c59e8d30d/multidict-6.0.5-cp310-cp310-win32.whl", hash = "sha256:7afcdd1fc07befad18ec4523a782cde4e93e0a2bf71239894b8d61ee578c1319", size = 25734 }, + { url = "https://files.pythonhosted.org/packages/ef/3d/ba0dc18e96c5d83731c54129819d5892389e180f54ebb045c6124b2e8b87/multidict-6.0.5-cp310-cp310-win_amd64.whl", hash = "sha256:99f60d34c048c5c2fabc766108c103612344c46e35d4ed9ae0673d33c8fb26e8", size = 28182 }, + { url = "https://files.pythonhosted.org/packages/5f/da/b10ea65b850b54f44a6479177c6987f456bc2d38f8dc73009b78afcf0ede/multidict-6.0.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f285e862d2f153a70586579c15c44656f888806ed0e5b56b64489afe4a2dbfba", size = 50815 }, + { url = "https://files.pythonhosted.org/packages/21/db/3403263f158b0bc7b0d4653766d71cb39498973f2042eead27b2e9758782/multidict-6.0.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:53689bb4e102200a4fafa9de9c7c3c212ab40a7ab2c8e474491914d2305f187e", size = 30269 }, + { url = "https://files.pythonhosted.org/packages/02/c1/b15ecceb6ffa5081ed2ed450aea58d65b0e0358001f2b426705f9f41f4c2/multidict-6.0.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:612d1156111ae11d14afaf3a0669ebf6c170dbb735e510a7438ffe2369a847fd", size = 30500 }, + { url = "https://files.pythonhosted.org/packages/3f/e1/7fdd0f39565df3af87d6c2903fb66a7d529fbd0a8a066045d7a5b6ad1145/multidict-6.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7be7047bd08accdb7487737631d25735c9a04327911de89ff1b26b81745bd4e3", size = 130751 }, + { url = "https://files.pythonhosted.org/packages/76/bc/9f593f9e38c6c09bbf0344b56ad67dd53c69167937c2edadee9719a5e17d/multidict-6.0.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de170c7b4fe6859beb8926e84f7d7d6c693dfe8e27372ce3b76f01c46e489fcf", size = 138185 }, + { url = "https://files.pythonhosted.org/packages/28/32/d7799a208701d537b92705f46c777ded812a6dc139c18d8ed599908f6b1c/multidict-6.0.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:04bde7a7b3de05732a4eb39c94574db1ec99abb56162d6c520ad26f83267de29", size = 133585 }, + { url = "https://files.pythonhosted.org/packages/52/ec/be54a3ad110f386d5bd7a9a42a4ff36b3cd723ebe597f41073a73ffa16b8/multidict-6.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:85f67aed7bb647f93e7520633d8f51d3cbc6ab96957c71272b286b2f30dc70ed", size = 128684 }, + { url = "https://files.pythonhosted.org/packages/36/e1/a680eabeb71e25d4733276d917658dfa1cd3a99b1223625dbc247d266c98/multidict-6.0.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:425bf820055005bfc8aa9a0b99ccb52cc2f4070153e34b701acc98d201693733", size = 120994 }, + { url = "https://files.pythonhosted.org/packages/ef/08/08f4f44a8a43ea4cee13aa9cdbbf4a639af8db49310a0637ca389c4cf817/multidict-6.0.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d3eb1ceec286eba8220c26f3b0096cf189aea7057b6e7b7a2e60ed36b373b77f", size = 159689 }, + { url = "https://files.pythonhosted.org/packages/aa/a9/46cdb4cb40bbd4b732169413f56b04a6553460b22bd914f9729c9ba63761/multidict-6.0.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:7901c05ead4b3fb75113fb1dd33eb1253c6d3ee37ce93305acd9d38e0b5f21a4", size = 150611 }, + { url = "https://files.pythonhosted.org/packages/e9/32/35668bb3e6ab2f12f4e4f7f4000f72f714882a94f904d4c3633fbd036753/multidict-6.0.5-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:e0e79d91e71b9867c73323a3444724d496c037e578a0e1755ae159ba14f4f3d1", size = 164444 }, + { url = "https://files.pythonhosted.org/packages/fa/10/f1388a91552af732d8ec48dab928abc209e732767e9e8f92d24c3544353c/multidict-6.0.5-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:29bfeb0dff5cb5fdab2023a7a9947b3b4af63e9c47cae2a10ad58394b517fddc", size = 160158 }, + { url = "https://files.pythonhosted.org/packages/14/c3/f602601f1819983e018156e728e57b3f19726cb424b543667faab82f6939/multidict-6.0.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e030047e85cbcedbfc073f71836d62dd5dadfbe7531cae27789ff66bc551bd5e", size = 156072 }, + { url = "https://files.pythonhosted.org/packages/82/a6/0290af8487326108c0d03d14f8a0b8b1001d71e4494df5f96ab0c88c0b88/multidict-6.0.5-cp311-cp311-win32.whl", hash = "sha256:2f4848aa3baa109e6ab81fe2006c77ed4d3cd1e0ac2c1fbddb7b1277c168788c", size = 25731 }, + { url = "https://files.pythonhosted.org/packages/88/aa/ea217cb18325aa05cb3e3111c19715f1e97c50a4a900cbc20e54648de5f5/multidict-6.0.5-cp311-cp311-win_amd64.whl", hash = "sha256:2faa5ae9376faba05f630d7e5e6be05be22913782b927b19d12b8145968a85ea", size = 28176 }, + { url = "https://files.pythonhosted.org/packages/90/9c/7fda9c0defa09538c97b1f195394be82a1f53238536f70b32eb5399dfd4e/multidict-6.0.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:51d035609b86722963404f711db441cf7134f1889107fb171a970c9701f92e1e", size = 49575 }, + { url = "https://files.pythonhosted.org/packages/be/21/d6ca80dd1b9b2c5605ff7475699a8ff5dc6ea958cd71fb2ff234afc13d79/multidict-6.0.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:cbebcd5bcaf1eaf302617c114aa67569dd3f090dd0ce8ba9e35e9985b41ac35b", size = 29638 }, + { url = "https://files.pythonhosted.org/packages/9c/18/9565f32c19d186168731e859692dfbc0e98f66a1dcf9e14d69c02a78b75a/multidict-6.0.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2ffc42c922dbfddb4a4c3b438eb056828719f07608af27d163191cb3e3aa6cc5", size = 29874 }, + { url = "https://files.pythonhosted.org/packages/4e/4e/3815190e73e6ef101b5681c174c541bf972a1b064e926e56eea78d06e858/multidict-6.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ceb3b7e6a0135e092de86110c5a74e46bda4bd4fbfeeb3a3bcec79c0f861e450", size = 129914 }, + { url = "https://files.pythonhosted.org/packages/0c/08/bb47f886457e2259aefc10044e45c8a1b62f0c27228557e17775869d0341/multidict-6.0.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:79660376075cfd4b2c80f295528aa6beb2058fd289f4c9252f986751a4cd0496", size = 134589 }, + { url = "https://files.pythonhosted.org/packages/d5/2f/952f79b5f0795cf4e34852fc5cf4dfda6166f63c06c798361215b69c131d/multidict-6.0.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4428b29611e989719874670fd152b6625500ad6c686d464e99f5aaeeaca175a", size = 133259 }, + { url = "https://files.pythonhosted.org/packages/24/1f/af976383b0b772dd351210af5b60ff9927e3abb2f4a103e93da19a957da0/multidict-6.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d84a5c3a5f7ce6db1f999fb9438f686bc2e09d38143f2d93d8406ed2dd6b9226", size = 130779 }, + { url = "https://files.pythonhosted.org/packages/fc/b1/b0a7744be00b0f5045c7ed4e4a6b8ee6bde4672b2c620474712299df5979/multidict-6.0.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:76c0de87358b192de7ea9649beb392f107dcad9ad27276324c24c91774ca5271", size = 120125 }, + { url = "https://files.pythonhosted.org/packages/d0/bf/2a1d667acf11231cdf0b97a6cd9f30e7a5cf847037b5cf6da44884284bd0/multidict-6.0.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:79a6d2ba910adb2cbafc95dad936f8b9386e77c84c35bc0add315b856d7c3abb", size = 167095 }, + { url = "https://files.pythonhosted.org/packages/5e/e8/ad6ee74b1a2050d3bc78f566dabcc14c8bf89cbe87eecec866c011479815/multidict-6.0.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:92d16a3e275e38293623ebf639c471d3e03bb20b8ebb845237e0d3664914caef", size = 155823 }, + { url = "https://files.pythonhosted.org/packages/45/7c/06926bb91752c52abca3edbfefac1ea90d9d1bc00c84d0658c137589b920/multidict-6.0.5-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:fb616be3538599e797a2017cccca78e354c767165e8858ab5116813146041a24", size = 170233 }, + { url = "https://files.pythonhosted.org/packages/3c/29/3dd36cf6b9c5abba8b97bba84eb499a168ba59c3faec8829327b3887d123/multidict-6.0.5-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:14c2976aa9038c2629efa2c148022ed5eb4cb939e15ec7aace7ca932f48f9ba6", size = 169035 }, + { url = "https://files.pythonhosted.org/packages/60/47/9a0f43470c70bbf6e148311f78ef5a3d4996b0226b6d295bdd50fdcfe387/multidict-6.0.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:435a0984199d81ca178b9ae2c26ec3d49692d20ee29bc4c11a2a8d4514c67eda", size = 166229 }, + { url = "https://files.pythonhosted.org/packages/1d/23/c1b7ae7a0b8a3e08225284ef3ecbcf014b292a3ee821bc4ed2185fd4ce7d/multidict-6.0.5-cp312-cp312-win32.whl", hash = "sha256:9fe7b0653ba3d9d65cbe7698cca585bf0f8c83dbbcc710db9c90f478e175f2d5", size = 25840 }, + { url = "https://files.pythonhosted.org/packages/4a/68/66fceb758ad7a88993940dbdf3ac59911ba9dc46d7798bf6c8652f89f853/multidict-6.0.5-cp312-cp312-win_amd64.whl", hash = "sha256:01265f5e40f5a17f8241d52656ed27192be03bfa8764d88e8220141d1e4b3556", size = 27905 }, + { url = "https://files.pythonhosted.org/packages/c6/7c/c8f4445389c0bbc5ea85d1e737233c257f314d0f836a6644e097a5ef512f/multidict-6.0.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:e7be68734bd8c9a513f2b0cfd508802d6609da068f40dc57d4e3494cefc92929", size = 50828 }, + { url = "https://files.pythonhosted.org/packages/7d/5c/c364a77b37f580cc28da4194b77ed04286c7631933d3e64fdae40f1972e2/multidict-6.0.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1d9ea7a7e779d7a3561aade7d596649fbecfa5c08a7674b11b423783217933f9", size = 30315 }, + { url = "https://files.pythonhosted.org/packages/1a/25/f4b60a34dde70c475f4dcaeb4796c256db80d2e03198052d0c3cee5d5fbb/multidict-6.0.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ea1456df2a27c73ce51120fa2f519f1bea2f4a03a917f4a43c8707cf4cbbae1a", size = 30451 }, + { url = "https://files.pythonhosted.org/packages/d0/10/2ff646c471e84af25fe8111985ffb8ec85a3f6e1ade8643bfcfcc0f4d2b1/multidict-6.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cf590b134eb70629e350691ecca88eac3e3b8b3c86992042fb82e3cb1830d5e1", size = 125880 }, + { url = "https://files.pythonhosted.org/packages/c9/ee/a4775297550dfb127641bd335d00d6d896e4ba5cf0216f78654e5ad6ac80/multidict-6.0.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5c0631926c4f58e9a5ccce555ad7747d9a9f8b10619621f22f9635f069f6233e", size = 133606 }, + { url = "https://files.pythonhosted.org/packages/7d/e9/95746d0c7c40bb0f43fc5424b7d7cf783e8638ce67f05fa677fff9ad76bb/multidict-6.0.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dce1c6912ab9ff5f179eaf6efe7365c1f425ed690b03341911bf4939ef2f3046", size = 128720 }, + { url = "https://files.pythonhosted.org/packages/39/a9/1f8d42c8103bcb1da6bb719f1bc018594b5acc8eae56b3fec4720ebee225/multidict-6.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0868d64af83169e4d4152ec612637a543f7a336e4a307b119e98042e852ad9c", size = 123750 }, + { url = "https://files.pythonhosted.org/packages/b5/f8/c8abbe7c425497d8bf997b1fffd9650ca175325ff397fadc9d63ae5dc027/multidict-6.0.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:141b43360bfd3bdd75f15ed811850763555a251e38b2405967f8e25fb43f7d40", size = 116213 }, + { url = "https://files.pythonhosted.org/packages/c2/bb/242664de860cd1201f4d207f0bd2011c1a730877e1dbffbe5d6ec4089e2d/multidict-6.0.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:7df704ca8cf4a073334e0427ae2345323613e4df18cc224f647f251e5e75a527", size = 155410 }, + { url = "https://files.pythonhosted.org/packages/f6/5b/35d20c85b8ccd0c9afc47b8dd46e028b6650ad9660a4b6ad191301d220f5/multidict-6.0.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6214c5a5571802c33f80e6c84713b2c79e024995b9c5897f794b43e714daeec9", size = 146668 }, + { url = "https://files.pythonhosted.org/packages/1b/52/6e984685d048f6728807c3fd9b8a6e3e3d51a06a4d6665d6e0102115455d/multidict-6.0.5-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:cd6c8fca38178e12c00418de737aef1261576bd1b6e8c6134d3e729a4e858b38", size = 160140 }, + { url = "https://files.pythonhosted.org/packages/76/c0/3aa6238557ed1d235be70d9c3f86d63a835c421b76073b8ce06bf32725e8/multidict-6.0.5-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:e02021f87a5b6932fa6ce916ca004c4d441509d33bbdbeca70d05dff5e9d2479", size = 156185 }, + { url = "https://files.pythonhosted.org/packages/85/82/02ed81023b5812582bf7c46e8e2868ffd6a29f8c313af1dd76e82e243c39/multidict-6.0.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ebd8d160f91a764652d3e51ce0d2956b38efe37c9231cd82cfc0bed2e40b581c", size = 151518 }, + { url = "https://files.pythonhosted.org/packages/d8/00/fd6eef9830046c063939cbf119c101898cbb611ea20301ae911b74caca19/multidict-6.0.5-cp39-cp39-win32.whl", hash = "sha256:04da1bb8c8dbadf2a18a452639771951c662c5ad03aefe4884775454be322c9b", size = 25732 }, + { url = "https://files.pythonhosted.org/packages/58/a3/4d2c1b4d1859c89d9ce48a4ae410ee019485e324e484b0160afdba8cc42b/multidict-6.0.5-cp39-cp39-win_amd64.whl", hash = "sha256:d6f6d4f185481c9669b9447bf9d9cf3b95a0e9df9d169bbc17e363b7d5487755", size = 28181 }, + { url = "https://files.pythonhosted.org/packages/fa/a2/17e1e23c6be0a916219c5292f509360c345b5fa6beeb50d743203c27532c/multidict-6.0.5-py3-none-any.whl", hash = "sha256:0d63c74e3d7ab26de115c49bffc92cc77ed23395303d496eae515d4204a625e7", size = 9729 }, +] + +[[package]] +name = "multiprocess" +version = "0.70.12.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "dill", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/99/1a/472900644359cdd208d1fbe71706bdeecbc6e8db2e39c35ebe89459e9172/multiprocess-0.70.12.2.zip", hash = "sha256:206bb9b97b73f87fec1ed15a19f8762950256aa84225450abc7150d02855a083", size = 3308461 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/97/0a/c9e66e0c3fd4f2a9404c91ba1a967858041c865c958746bb6939454eed10/multiprocess-0.70.12.2-pp27-none-any.whl", hash = "sha256:a9f58945edb234591684c0a181b744a3231643814ef3a8f47cea9a2073b4b2bb", size = 82019 }, + { url = "https://files.pythonhosted.org/packages/e3/12/c1c7b5574a574a5bc898c8656b0ab8514d0609356b3ca18180e2ae94c2f7/multiprocess-0.70.12.2-py39-none-any.whl", hash = "sha256:6f812a1d3f198b7cacd63983f60e2dc1338bd4450893f90c435067b5a3127e6f", size = 128693 }, +] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/98/a4/1ab47638b92648243faf97a5aeb6ea83059cc3624972ab6b8d2316078d3f/mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782", size = 4433 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2a/e2/5d3f6ada4297caebe1a2add3b126fe800c96f56dbe5d1988a2cbe0b267aa/mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d", size = 4695 }, +] + +[[package]] +name = "nbformat" +version = "5.10.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "fastjsonschema", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jsonschema", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jupyter-core", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "traitlets", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6d/fd/91545e604bc3dad7dca9ed03284086039b294c6b3d75c0d2fa45f9e9caf3/nbformat-5.10.4.tar.gz", hash = "sha256:322168b14f937a5d11362988ecac2a4952d3d8e3a2cbeb2319584631226d5b3a", size = 142749 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl", hash = "sha256:3b48d6c8fbca4b299bf3982ea7db1af21580e4fec269ad087b9e81588891200b", size = 78454 }, +] + +[[package]] +name = "nest-asyncio" +version = "1.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/83/f8/51569ac65d696c8ecbee95938f89d4abf00f47d58d48f6fbabfe8f0baefe/nest_asyncio-1.6.0.tar.gz", hash = "sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe", size = 7418 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a0/c4/c2971a3ba4c6103a3d10c4b0f24f461ddc027f0f09763220cf35ca1401b3/nest_asyncio-1.6.0-py3-none-any.whl", hash = "sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c", size = 5195 }, +] + +[[package]] +name = "networkx" +version = "3.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c4/80/a84676339aaae2f1cfdf9f418701dd634aef9cc76f708ef55c36ff39c3ca/networkx-3.2.1.tar.gz", hash = "sha256:9f1bb5cf3409bf324e0a722c20bdb4c20ee39bf1c30ce8ae499c8502b0b5e0c6", size = 2073928 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d5/f0/8fbc882ca80cf077f1b246c0e3c3465f7f415439bdea6b899f6b19f61f70/networkx-3.2.1-py3-none-any.whl", hash = "sha256:f18c69adc97877c42332c170849c96cefa91881c99a7cb3e95b7c659ebdc1ec2", size = 1647772 }, +] + +[[package]] +name = "ninja" +version = "1.11.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/37/2c/d717d13a413d6f7579cdaa1e28e6e2c98de95461549b08d311c8a5bf4c51/ninja-1.11.1.1.tar.gz", hash = "sha256:9d793b08dd857e38d0b6ffe9e6b7145d7c485a42dcfea04905ca0cdb6017cc3c", size = 132392 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3d/6e/04ed11bb244039908f6f212cb5f3e97933e238655248e4ce307c1687ba1f/ninja-1.11.1.1-py2.py3-none-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl", hash = "sha256:376889c76d87b95b5719fdd61dd7db193aa7fd4432e5d52d2e44e4c497bdbbee", size = 270611 }, + { url = "https://files.pythonhosted.org/packages/2c/52/0e5423311eb9939b6f9354059a6d88a6211eb4fa1c7a4ef303ecee1c1fe0/ninja-1.11.1.1-py2.py3-none-manylinux1_i686.manylinux_2_5_i686.whl", hash = "sha256:ecf80cf5afd09f14dcceff28cb3f11dc90fb97c999c89307aea435889cb66877", size = 324256 }, + { url = "https://files.pythonhosted.org/packages/6d/92/8d7aebd4430ab5ff65df2bfee6d5745f95c004284db2d8ca76dcbfd9de47/ninja-1.11.1.1-py2.py3-none-manylinux1_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:84502ec98f02a037a169c4b0d5d86075eaf6afc55e1879003d6cab51ced2ea4b", size = 307194 }, + { url = "https://files.pythonhosted.org/packages/01/c8/96424839fd127b4492229acf50763ed9940d864ca35d17d151934aef1f6f/ninja-1.11.1.1-py2.py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:73b93c14046447c7c5cc892433d4fae65d6364bec6685411cb97a8bcf815f93a", size = 155643 }, + { url = "https://files.pythonhosted.org/packages/6b/fa/5ca8e65a98cdb9a71d4f1e38cac7bd757bbb9555a5aef5a4d293aa890e5c/ninja-1.11.1.1-py2.py3-none-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:18302d96a5467ea98b68e1cae1ae4b4fb2b2a56a82b955193c637557c7273dbd", size = 179538 }, + { url = "https://files.pythonhosted.org/packages/45/ef/60086f02cbc6882da00a02c81d645cefd8d2d65b01fade41b873d8dd85a2/ninja-1.11.1.1-py2.py3-none-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:aad34a70ef15b12519946c5633344bc775a7656d789d9ed5fdb0d456383716ef", size = 156217 }, + { url = "https://files.pythonhosted.org/packages/1c/00/2fd13ac6aafdb566f00d6b541101fca54e58ae58bf96c00f9780df019607/ninja-1.11.1.1-py2.py3-none-musllinux_1_1_aarch64.whl", hash = "sha256:d491fc8d89cdcb416107c349ad1e3a735d4c4af5e1cb8f5f727baca6350fdaea", size = 372069 }, + { url = "https://files.pythonhosted.org/packages/ad/5d/6e97c8a25167d4867694c7fb0b9bdbc9b096d6479c8e56c5bd41b49613f6/ninja-1.11.1.1-py2.py3-none-musllinux_1_1_i686.whl", hash = "sha256:7563ce1d9fe6ed5af0b8dd9ab4a214bf4ff1f2f6fd6dc29f480981f0f8b8b249", size = 418859 }, + { url = "https://files.pythonhosted.org/packages/43/78/34af88d753389a9412438d16142c77e587e0d69152faf0bbf99701063dd8/ninja-1.11.1.1-py2.py3-none-musllinux_1_1_ppc64le.whl", hash = "sha256:9df724344202b83018abb45cb1efc22efd337a1496514e7e6b3b59655be85205", size = 419782 }, + { url = "https://files.pythonhosted.org/packages/3b/74/de0633f8bced3b188942fca64a950e8f2206c60c10c97af465b356ae9b25/ninja-1.11.1.1-py2.py3-none-musllinux_1_1_s390x.whl", hash = "sha256:3e0f9be5bb20d74d58c66cc1c414c3e6aeb45c35b0d0e41e8d739c2c0d57784f", size = 415476 }, + { url = "https://files.pythonhosted.org/packages/9a/f3/3e4a56ff77739d1582749b93497bdebf11e003fbc7a66363ef6c772ebd0a/ninja-1.11.1.1-py2.py3-none-musllinux_1_1_x86_64.whl", hash = "sha256:76482ba746a2618eecf89d5253c0d1e4f1da1270d41e9f54dfbd91831b0f6885", size = 379229 }, + { url = "https://files.pythonhosted.org/packages/c5/ee/53df34fcc9c0b1db62b2f2e2c848e28d9354e1c7f0dce029ee50b16ca157/ninja-1.11.1.1-py2.py3-none-win32.whl", hash = "sha256:fa2ba9d74acfdfbfbcf06fad1b8282de8a7a8c481d9dee45c859a8c93fcc1082", size = 265049 }, + { url = "https://files.pythonhosted.org/packages/b6/2f/a3bc50fa63fc4fe9348e15b53dc8c87febfd4e0c660fcf250c4b19a3aa3b/ninja-1.11.1.1-py2.py3-none-win_amd64.whl", hash = "sha256:95da904130bfa02ea74ff9c0116b4ad266174fafb1c707aa50212bc7859aebf1", size = 312958 }, + { url = "https://files.pythonhosted.org/packages/73/2a/f5b7b3b7ecd5cf4e31375580bf5c6a01a328ed1ebdfff90fab463e3f4bc7/ninja-1.11.1.1-py2.py3-none-win_arm64.whl", hash = "sha256:185e0641bde601e53841525c4196278e9aaf4463758da6dd1e752c0a0f54136a", size = 272686 }, +] + +[[package]] +name = "nltk" +version = "3.8.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "joblib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "regex", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/57/49/51af17a2b0d850578d0022408802aa452644d40281a6c6e82f7cb0235ddb/nltk-3.8.1.zip", hash = "sha256:1834da3d0682cba4f2cede2f9aad6b0fafb6461ba451db0efb6f9c39798d64d3", size = 4620388 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a6/0a/0d20d2c0f16be91b9fa32a77b76c60f9baf6eba419e5ef5deca17af9c582/nltk-3.8.1-py3-none-any.whl", hash = "sha256:fd5c9109f976fa86bcadba8f91e47f5e9293bd034474752e92a520f81c93dda5", size = 1510663 }, +] + +[[package]] +name = "numba" +version = "0.60.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "llvmlite", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/3c/93/2849300a9184775ba274aba6f82f303343669b0592b7bb0849ea713dabb0/numba-0.60.0.tar.gz", hash = "sha256:5df6158e5584eece5fc83294b949fd30b9f1125df7708862205217e068aabf16", size = 2702171 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f7/cf/baa13a7e3556d73d9e38021e6d6aa4aeb30d8b94545aa8b70d0f24a1ccc4/numba-0.60.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:5d761de835cd38fb400d2c26bb103a2726f548dc30368853121d66201672e651", size = 2647627 }, + { url = "https://files.pythonhosted.org/packages/ac/ba/4b57fa498564457c3cc9fc9e570a6b08e6086c74220f24baaf04e54b995f/numba-0.60.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:159e618ef213fba758837f9837fb402bbe65326e60ba0633dbe6c7f274d42c1b", size = 2650322 }, + { url = "https://files.pythonhosted.org/packages/28/98/7ea97ee75870a54f938a8c70f7e0be4495ba5349c5f9db09d467c4a5d5b7/numba-0.60.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:1527dc578b95c7c4ff248792ec33d097ba6bef9eda466c948b68dfc995c25781", size = 3407390 }, + { url = "https://files.pythonhosted.org/packages/79/58/cb4ac5b8f7ec64200460aef1fed88258fb872ceef504ab1f989d2ff0f684/numba-0.60.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:fe0b28abb8d70f8160798f4de9d486143200f34458d34c4a214114e445d7124e", size = 3699694 }, + { url = "https://files.pythonhosted.org/packages/1c/b0/c61a93ca947d12233ff45de506ddbf52af3f752066a0b8be4d27426e16da/numba-0.60.0-cp310-cp310-win_amd64.whl", hash = "sha256:19407ced081d7e2e4b8d8c36aa57b7452e0283871c296e12d798852bc7d7f198", size = 2687030 }, + { url = "https://files.pythonhosted.org/packages/98/ad/df18d492a8f00d29a30db307904b9b296e37507034eedb523876f3a2e13e/numba-0.60.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a17b70fc9e380ee29c42717e8cc0bfaa5556c416d94f9aa96ba13acb41bdece8", size = 2647254 }, + { url = "https://files.pythonhosted.org/packages/9a/51/a4dc2c01ce7a850b8e56ff6d5381d047a5daea83d12bad08aa071d34b2ee/numba-0.60.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3fb02b344a2a80efa6f677aa5c40cd5dd452e1b35f8d1c2af0dfd9ada9978e4b", size = 2649970 }, + { url = "https://files.pythonhosted.org/packages/f9/4c/8889ac94c0b33dca80bed11564b8c6d9ea14d7f094e674c58e5c5b05859b/numba-0.60.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:5f4fde652ea604ea3c86508a3fb31556a6157b2c76c8b51b1d45eb40c8598703", size = 3412492 }, + { url = "https://files.pythonhosted.org/packages/57/03/2b4245b05b71c0cee667e6a0b51606dfa7f4157c9093d71c6b208385a611/numba-0.60.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:4142d7ac0210cc86432b818338a2bc368dc773a2f5cf1e32ff7c5b378bd63ee8", size = 3705018 }, + { url = "https://files.pythonhosted.org/packages/79/89/2d924ca60dbf949f18a6fec223a2445f5f428d9a5f97a6b29c2122319015/numba-0.60.0-cp311-cp311-win_amd64.whl", hash = "sha256:cac02c041e9b5bc8cf8f2034ff6f0dbafccd1ae9590dc146b3a02a45e53af4e2", size = 2686920 }, + { url = "https://files.pythonhosted.org/packages/eb/5c/b5ec752c475e78a6c3676b67c514220dbde2725896bbb0b6ec6ea54b2738/numba-0.60.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d7da4098db31182fc5ffe4bc42c6f24cd7d1cb8a14b59fd755bfee32e34b8404", size = 2647866 }, + { url = "https://files.pythonhosted.org/packages/65/42/39559664b2e7c15689a638c2a38b3b74c6e69a04e2b3019b9f7742479188/numba-0.60.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:38d6ea4c1f56417076ecf8fc327c831ae793282e0ff51080c5094cb726507b1c", size = 2650208 }, + { url = "https://files.pythonhosted.org/packages/67/88/c4459ccc05674ef02119abf2888ccd3e2fed12a323f52255f4982fc95876/numba-0.60.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:62908d29fb6a3229c242e981ca27e32a6e606cc253fc9e8faeb0e48760de241e", size = 3466946 }, + { url = "https://files.pythonhosted.org/packages/8b/41/ac11cf33524def12aa5bd698226ae196a1185831c05ed29dc0c56eaa308b/numba-0.60.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:0ebaa91538e996f708f1ab30ef4d3ddc344b64b5227b67a57aa74f401bb68b9d", size = 3761463 }, + { url = "https://files.pythonhosted.org/packages/ca/bd/0fe29fcd1b6a8de479a4ed25c6e56470e467e3611c079d55869ceef2b6d1/numba-0.60.0-cp312-cp312-win_amd64.whl", hash = "sha256:f75262e8fe7fa96db1dca93d53a194a38c46da28b112b8a4aca168f0df860347", size = 2707588 }, + { url = "https://files.pythonhosted.org/packages/68/1a/87c53f836cdf557083248c3f47212271f220280ff766538795e77c8c6bbf/numba-0.60.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:01ef4cd7d83abe087d644eaa3d95831b777aa21d441a23703d649e06b8e06b74", size = 2647186 }, + { url = "https://files.pythonhosted.org/packages/28/14/a5baa1f2edea7b49afa4dc1bb1b126645198cf1075186853b5b497be826e/numba-0.60.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:819a3dfd4630d95fd574036f99e47212a1af41cbcb019bf8afac63ff56834449", size = 2650038 }, + { url = "https://files.pythonhosted.org/packages/3b/bd/f1985719ff34e37e07bb18f9d3acd17e5a21da255f550c8eae031e2ddf5f/numba-0.60.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:0b983bd6ad82fe868493012487f34eae8bf7dd94654951404114f23c3466d34b", size = 3403010 }, + { url = "https://files.pythonhosted.org/packages/54/9b/cd73d3f6617ddc8398a63ef97d8dc9139a9879b9ca8a7ca4b8789056ea46/numba-0.60.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:c151748cd269ddeab66334bd754817ffc0cabd9433acb0f551697e5151917d25", size = 3695086 }, + { url = "https://files.pythonhosted.org/packages/01/01/8b7b670c77c5ea0e47e283d82332969bf672ab6410d0b2610cac5b7a3ded/numba-0.60.0-cp39-cp39-win_amd64.whl", hash = "sha256:3031547a015710140e8c87226b4cfe927cac199835e5bf7d4fe5cb64e814e3ab", size = 2686978 }, +] + +[[package]] +name = "numpy" +version = "1.26.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/65/6e/09db70a523a96d25e115e71cc56a6f9031e7b8cd166c1ac8438307c14058/numpy-1.26.4.tar.gz", hash = "sha256:2a02aba9ed12e4ac4eb3ea9421c420301a0c6460d9830d74a9df87efa4912010", size = 15786129 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/94/ace0fdea5241a27d13543ee117cbc65868e82213fb31a8eb7fe9ff23f313/numpy-1.26.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0", size = 20631468 }, + { url = "https://files.pythonhosted.org/packages/20/f7/b24208eba89f9d1b58c1668bc6c8c4fd472b20c45573cb767f59d49fb0f6/numpy-1.26.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a", size = 13966411 }, + { url = "https://files.pythonhosted.org/packages/fc/a5/4beee6488160798683eed5bdb7eead455892c3b4e1f78d79d8d3f3b084ac/numpy-1.26.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d209d8969599b27ad20994c8e41936ee0964e6da07478d6c35016bc386b66ad4", size = 14219016 }, + { url = "https://files.pythonhosted.org/packages/4b/d7/ecf66c1cd12dc28b4040b15ab4d17b773b87fa9d29ca16125de01adb36cd/numpy-1.26.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ffa75af20b44f8dba823498024771d5ac50620e6915abac414251bd971b4529f", size = 18240889 }, + { url = "https://files.pythonhosted.org/packages/24/03/6f229fe3187546435c4f6f89f6d26c129d4f5bed40552899fcf1f0bf9e50/numpy-1.26.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:62b8e4b1e28009ef2846b4c7852046736bab361f7aeadeb6a5b89ebec3c7055a", size = 13876746 }, + { url = "https://files.pythonhosted.org/packages/39/fe/39ada9b094f01f5a35486577c848fe274e374bbf8d8f472e1423a0bbd26d/numpy-1.26.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a4abb4f9001ad2858e7ac189089c42178fcce737e4169dc61321660f1a96c7d2", size = 18078620 }, + { url = "https://files.pythonhosted.org/packages/d5/ef/6ad11d51197aad206a9ad2286dc1aac6a378059e06e8cf22cd08ed4f20dc/numpy-1.26.4-cp310-cp310-win32.whl", hash = "sha256:bfe25acf8b437eb2a8b2d49d443800a5f18508cd811fea3181723922a8a82b07", size = 5972659 }, + { url = "https://files.pythonhosted.org/packages/19/77/538f202862b9183f54108557bfda67e17603fc560c384559e769321c9d92/numpy-1.26.4-cp310-cp310-win_amd64.whl", hash = "sha256:b97fe8060236edf3662adfc2c633f56a08ae30560c56310562cb4f95500022d5", size = 15808905 }, + { url = "https://files.pythonhosted.org/packages/11/57/baae43d14fe163fa0e4c47f307b6b2511ab8d7d30177c491960504252053/numpy-1.26.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4c66707fabe114439db9068ee468c26bbdf909cac0fb58686a42a24de1760c71", size = 20630554 }, + { url = "https://files.pythonhosted.org/packages/1a/2e/151484f49fd03944c4a3ad9c418ed193cfd02724e138ac8a9505d056c582/numpy-1.26.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:edd8b5fe47dab091176d21bb6de568acdd906d1887a4584a15a9a96a1dca06ef", size = 13997127 }, + { url = "https://files.pythonhosted.org/packages/79/ae/7e5b85136806f9dadf4878bf73cf223fe5c2636818ba3ab1c585d0403164/numpy-1.26.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ab55401287bfec946ced39700c053796e7cc0e3acbef09993a9ad2adba6ca6e", size = 14222994 }, + { url = "https://files.pythonhosted.org/packages/3a/d0/edc009c27b406c4f9cbc79274d6e46d634d139075492ad055e3d68445925/numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:666dbfb6ec68962c033a450943ded891bed2d54e6755e35e5835d63f4f6931d5", size = 18252005 }, + { url = "https://files.pythonhosted.org/packages/09/bf/2b1aaf8f525f2923ff6cfcf134ae5e750e279ac65ebf386c75a0cf6da06a/numpy-1.26.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:96ff0b2ad353d8f990b63294c8986f1ec3cb19d749234014f4e7eb0112ceba5a", size = 13885297 }, + { url = "https://files.pythonhosted.org/packages/df/a0/4e0f14d847cfc2a633a1c8621d00724f3206cfeddeb66d35698c4e2cf3d2/numpy-1.26.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:60dedbb91afcbfdc9bc0b1f3f402804070deed7392c23eb7a7f07fa857868e8a", size = 18093567 }, + { url = "https://files.pythonhosted.org/packages/d2/b7/a734c733286e10a7f1a8ad1ae8c90f2d33bf604a96548e0a4a3a6739b468/numpy-1.26.4-cp311-cp311-win32.whl", hash = "sha256:1af303d6b2210eb850fcf03064d364652b7120803a0b872f5211f5234b399f20", size = 5968812 }, + { url = "https://files.pythonhosted.org/packages/3f/6b/5610004206cf7f8e7ad91c5a85a8c71b2f2f8051a0c0c4d5916b76d6cbb2/numpy-1.26.4-cp311-cp311-win_amd64.whl", hash = "sha256:cd25bcecc4974d09257ffcd1f098ee778f7834c3ad767fe5db785be9a4aa9cb2", size = 15811913 }, + { url = "https://files.pythonhosted.org/packages/95/12/8f2020a8e8b8383ac0177dc9570aad031a3beb12e38847f7129bacd96228/numpy-1.26.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:b3ce300f3644fb06443ee2222c2201dd3a89ea6040541412b8fa189341847218", size = 20335901 }, + { url = "https://files.pythonhosted.org/packages/75/5b/ca6c8bd14007e5ca171c7c03102d17b4f4e0ceb53957e8c44343a9546dcc/numpy-1.26.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:03a8c78d01d9781b28a6989f6fa1bb2c4f2d51201cf99d3dd875df6fbd96b23b", size = 13685868 }, + { url = "https://files.pythonhosted.org/packages/79/f8/97f10e6755e2a7d027ca783f63044d5b1bc1ae7acb12afe6a9b4286eac17/numpy-1.26.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9fad7dcb1aac3c7f0584a5a8133e3a43eeb2fe127f47e3632d43d677c66c102b", size = 13925109 }, + { url = "https://files.pythonhosted.org/packages/0f/50/de23fde84e45f5c4fda2488c759b69990fd4512387a8632860f3ac9cd225/numpy-1.26.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:675d61ffbfa78604709862923189bad94014bef562cc35cf61d3a07bba02a7ed", size = 17950613 }, + { url = "https://files.pythonhosted.org/packages/4c/0c/9c603826b6465e82591e05ca230dfc13376da512b25ccd0894709b054ed0/numpy-1.26.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ab47dbe5cc8210f55aa58e4805fe224dac469cde56b9f731a4c098b91917159a", size = 13572172 }, + { url = "https://files.pythonhosted.org/packages/76/8c/2ba3902e1a0fc1c74962ea9bb33a534bb05984ad7ff9515bf8d07527cadd/numpy-1.26.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:1dda2e7b4ec9dd512f84935c5f126c8bd8b9f2fc001e9f54af255e8c5f16b0e0", size = 17786643 }, + { url = "https://files.pythonhosted.org/packages/28/4a/46d9e65106879492374999e76eb85f87b15328e06bd1550668f79f7b18c6/numpy-1.26.4-cp312-cp312-win32.whl", hash = "sha256:50193e430acfc1346175fcbdaa28ffec49947a06918b7b92130744e81e640110", size = 5677803 }, + { url = "https://files.pythonhosted.org/packages/16/2e/86f24451c2d530c88daf997cb8d6ac622c1d40d19f5a031ed68a4b73a374/numpy-1.26.4-cp312-cp312-win_amd64.whl", hash = "sha256:08beddf13648eb95f8d867350f6a018a4be2e5ad54c8d8caed89ebca558b2818", size = 15517754 }, + { url = "https://files.pythonhosted.org/packages/7d/24/ce71dc08f06534269f66e73c04f5709ee024a1afe92a7b6e1d73f158e1f8/numpy-1.26.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7349ab0fa0c429c82442a27a9673fc802ffdb7c7775fad780226cb234965e53c", size = 20636301 }, + { url = "https://files.pythonhosted.org/packages/ae/8c/ab03a7c25741f9ebc92684a20125fbc9fc1b8e1e700beb9197d750fdff88/numpy-1.26.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:52b8b60467cd7dd1e9ed082188b4e6bb35aa5cdd01777621a1658910745b90be", size = 13971216 }, + { url = "https://files.pythonhosted.org/packages/6d/64/c3bcdf822269421d85fe0d64ba972003f9bb4aa9a419da64b86856c9961f/numpy-1.26.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d5241e0a80d808d70546c697135da2c613f30e28251ff8307eb72ba696945764", size = 14226281 }, + { url = "https://files.pythonhosted.org/packages/54/30/c2a907b9443cf42b90c17ad10c1e8fa801975f01cb9764f3f8eb8aea638b/numpy-1.26.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f870204a840a60da0b12273ef34f7051e98c3b5961b61b0c2c1be6dfd64fbcd3", size = 18249516 }, + { url = "https://files.pythonhosted.org/packages/43/12/01a563fc44c07095996d0129b8899daf89e4742146f7044cdbdb3101c57f/numpy-1.26.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:679b0076f67ecc0138fd2ede3a8fd196dddc2ad3254069bcb9faf9a79b1cebcd", size = 13882132 }, + { url = "https://files.pythonhosted.org/packages/16/ee/9df80b06680aaa23fc6c31211387e0db349e0e36d6a63ba3bd78c5acdf11/numpy-1.26.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:47711010ad8555514b434df65f7d7b076bb8261df1ca9bb78f53d3b2db02e95c", size = 18084181 }, + { url = "https://files.pythonhosted.org/packages/28/7d/4b92e2fe20b214ffca36107f1a3e75ef4c488430e64de2d9af5db3a4637d/numpy-1.26.4-cp39-cp39-win32.whl", hash = "sha256:a354325ee03388678242a4d7ebcd08b5c727033fcff3b2f536aea978e15ee9e6", size = 5976360 }, + { url = "https://files.pythonhosted.org/packages/b5/42/054082bd8220bbf6f297f982f0a8f5479fcbc55c8b511d928df07b965869/numpy-1.26.4-cp39-cp39-win_amd64.whl", hash = "sha256:3373d5d70a5fe74a2c1bb6d2cfd9609ecf686d47a2d7b1d37a8f3b6bf6003aea", size = 15814633 }, + { url = "https://files.pythonhosted.org/packages/3f/72/3df6c1c06fc83d9cfe381cccb4be2532bbd38bf93fbc9fad087b6687f1c0/numpy-1.26.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:afedb719a9dcfc7eaf2287b839d8198e06dcd4cb5d276a3df279231138e83d30", size = 20455961 }, + { url = "https://files.pythonhosted.org/packages/8e/02/570545bac308b58ffb21adda0f4e220ba716fb658a63c151daecc3293350/numpy-1.26.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95a7476c59002f2f6c590b9b7b998306fba6a5aa646b1e22ddfeaf8f78c3a29c", size = 18061071 }, + { url = "https://files.pythonhosted.org/packages/f4/5f/fafd8c51235f60d49f7a88e2275e13971e90555b67da52dd6416caec32fe/numpy-1.26.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7e50d0a0cc3189f9cb0aeb3a6a6af18c16f59f004b866cd2be1c14b36134a4a0", size = 15709730 }, +] + +[[package]] +name = "nvidia-cublas-cu12" +version = "12.1.3.1" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/37/6d/121efd7382d5b0284239f4ab1fc1590d86d34ed4a4a2fdb13b30ca8e5740/nvidia_cublas_cu12-12.1.3.1-py3-none-manylinux1_x86_64.whl", hash = "sha256:ee53ccca76a6fc08fb9701aa95b6ceb242cdaab118c3bb152af4e579af792728", size = 410594774 }, + { url = "https://files.pythonhosted.org/packages/c5/ef/32a375b74bea706c93deea5613552f7c9104f961b21df423f5887eca713b/nvidia_cublas_cu12-12.1.3.1-py3-none-win_amd64.whl", hash = "sha256:2b964d60e8cf11b5e1073d179d85fa340c120e99b3067558f3cf98dd69d02906", size = 439918445 }, +] + +[[package]] +name = "nvidia-cuda-cupti-cu12" +version = "12.1.105" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/00/6b218edd739ecfc60524e585ba8e6b00554dd908de2c9c66c1af3e44e18d/nvidia_cuda_cupti_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:e54fde3983165c624cb79254ae9818a456eb6e87a7fd4d56a2352c24ee542d7e", size = 14109015 }, + { url = "https://files.pythonhosted.org/packages/d0/56/0021e32ea2848c24242f6b56790bd0ccc8bf99f973ca790569c6ca028107/nvidia_cuda_cupti_cu12-12.1.105-py3-none-win_amd64.whl", hash = "sha256:bea8236d13a0ac7190bd2919c3e8e6ce1e402104276e6f9694479e48bb0eb2a4", size = 10154340 }, +] + +[[package]] +name = "nvidia-cuda-nvrtc-cu12" +version = "12.1.105" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/9f/c64c03f49d6fbc56196664d05dba14e3a561038a81a638eeb47f4d4cfd48/nvidia_cuda_nvrtc_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:339b385f50c309763ca65456ec75e17bbefcbbf2893f462cb8b90584cd27a1c2", size = 23671734 }, + { url = "https://files.pythonhosted.org/packages/ad/1d/f76987c4f454eb86e0b9a0e4f57c3bf1ac1d13ad13cd1a4da4eb0e0c0ce9/nvidia_cuda_nvrtc_cu12-12.1.105-py3-none-win_amd64.whl", hash = "sha256:0a98a522d9ff138b96c010a65e145dc1b4850e9ecb75a0172371793752fd46ed", size = 19331863 }, +] + +[[package]] +name = "nvidia-cuda-runtime-cu12" +version = "12.1.105" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/eb/d5/c68b1d2cdfcc59e72e8a5949a37ddb22ae6cade80cd4a57a84d4c8b55472/nvidia_cuda_runtime_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:6e258468ddf5796e25f1dc591a31029fa317d97a0a94ed93468fc86301d61e40", size = 823596 }, + { url = "https://files.pythonhosted.org/packages/9f/e2/7a2b4b5064af56ea8ea2d8b2776c0f2960d95c88716138806121ae52a9c9/nvidia_cuda_runtime_cu12-12.1.105-py3-none-win_amd64.whl", hash = "sha256:dfb46ef84d73fababab44cf03e3b83f80700d27ca300e537f85f636fac474344", size = 821226 }, +] + +[[package]] +name = "nvidia-cudnn-cu12" +version = "9.1.0.70" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-cublas-cu12", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/9f/fd/713452cd72343f682b1c7b9321e23829f00b842ceaedcda96e742ea0b0b3/nvidia_cudnn_cu12-9.1.0.70-py3-none-manylinux2014_x86_64.whl", hash = "sha256:165764f44ef8c61fcdfdfdbe769d687e06374059fbb388b6c89ecb0e28793a6f", size = 664752741 }, + { url = "https://files.pythonhosted.org/packages/3f/d0/f90ee6956a628f9f04bf467932c0a25e5a7e706a684b896593c06c82f460/nvidia_cudnn_cu12-9.1.0.70-py3-none-win_amd64.whl", hash = "sha256:6278562929433d68365a07a4a1546c237ba2849852c0d4b2262a486e805b977a", size = 679925892 }, +] + +[[package]] +name = "nvidia-cufft-cu12" +version = "11.0.2.54" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/86/94/eb540db023ce1d162e7bea9f8f5aa781d57c65aed513c33ee9a5123ead4d/nvidia_cufft_cu12-11.0.2.54-py3-none-manylinux1_x86_64.whl", hash = "sha256:794e3948a1aa71fd817c3775866943936774d1c14e7628c74f6f7417224cdf56", size = 121635161 }, + { url = "https://files.pythonhosted.org/packages/f7/57/7927a3aa0e19927dfed30256d1c854caf991655d847a4e7c01fe87e3d4ac/nvidia_cufft_cu12-11.0.2.54-py3-none-win_amd64.whl", hash = "sha256:d9ac353f78ff89951da4af698f80870b1534ed69993f10a4cf1d96f21357e253", size = 121344196 }, +] + +[[package]] +name = "nvidia-curand-cu12" +version = "10.3.2.106" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/44/31/4890b1c9abc496303412947fc7dcea3d14861720642b49e8ceed89636705/nvidia_curand_cu12-10.3.2.106-py3-none-manylinux1_x86_64.whl", hash = "sha256:9d264c5036dde4e64f1de8c50ae753237c12e0b1348738169cd0f8a536c0e1e0", size = 56467784 }, + { url = "https://files.pythonhosted.org/packages/5c/97/4c9c7c79efcdf5b70374241d48cf03b94ef6707fd18ea0c0f53684931d0b/nvidia_curand_cu12-10.3.2.106-py3-none-win_amd64.whl", hash = "sha256:75b6b0c574c0037839121317e17fd01f8a69fd2ef8e25853d826fec30bdba74a", size = 55995813 }, +] + +[[package]] +name = "nvidia-cusolver-cu12" +version = "11.4.5.107" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-cublas-cu12", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "nvidia-cusparse-cu12", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "nvidia-nvjitlink-cu12", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/bc/1d/8de1e5c67099015c834315e333911273a8c6aaba78923dd1d1e25fc5f217/nvidia_cusolver_cu12-11.4.5.107-py3-none-manylinux1_x86_64.whl", hash = "sha256:8a7ec542f0412294b15072fa7dab71d31334014a69f953004ea7a118206fe0dd", size = 124161928 }, + { url = "https://files.pythonhosted.org/packages/b8/80/8fca0bf819122a631c3976b6fc517c1b10741b643b94046bd8dd451522c5/nvidia_cusolver_cu12-11.4.5.107-py3-none-win_amd64.whl", hash = "sha256:74e0c3a24c78612192a74fcd90dd117f1cf21dea4822e66d89e8ea80e3cd2da5", size = 121643081 }, +] + +[[package]] +name = "nvidia-cusparse-cu12" +version = "12.1.0.106" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-nvjitlink-cu12", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/65/5b/cfaeebf25cd9fdec14338ccb16f6b2c4c7fa9163aefcf057d86b9cc248bb/nvidia_cusparse_cu12-12.1.0.106-py3-none-manylinux1_x86_64.whl", hash = "sha256:f3b50f42cf363f86ab21f720998517a659a48131e8d538dc02f8768237bd884c", size = 195958278 }, + { url = "https://files.pythonhosted.org/packages/0f/95/48fdbba24c93614d1ecd35bc6bdc6087bd17cbacc3abc4b05a9c2a1ca232/nvidia_cusparse_cu12-12.1.0.106-py3-none-win_amd64.whl", hash = "sha256:b798237e81b9719373e8fae8d4f091b70a0cf09d9d85c95a557e11df2d8e9a5a", size = 195414588 }, +] + +[[package]] +name = "nvidia-ml-py" +version = "12.555.43" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ee/c6/2348fc1fb776ff41a34635fb1f18010a6d6fd7ba6e57184dabd9d98ba9cf/nvidia-ml-py-12.555.43.tar.gz", hash = "sha256:e9e7f12ef1ec234bb0dc22d2bdc762ffafab394bdc472a07a4377c95bbf93afe", size = 38214 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/50/13/fcc6b604dea9782d69e675b1481af16e9a02c44d1d43819af209b0a1e6bb/nvidia_ml_py-12.555.43-py3-none-any.whl", hash = "sha256:b89ba66e8ba8032fdbbaa907323f248be0ed001e106f814a1e1137e58eba2a80", size = 39552 }, +] + +[[package]] +name = "nvidia-nccl-cu12" +version = "2.20.5" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c1/bb/d09dda47c881f9ff504afd6f9ca4f502ded6d8fc2f572cacc5e39da91c28/nvidia_nccl_cu12-2.20.5-py3-none-manylinux2014_aarch64.whl", hash = "sha256:1fc150d5c3250b170b29410ba682384b14581db722b2531b0d8d33c595f33d01", size = 176238458 }, + { url = "https://files.pythonhosted.org/packages/4b/2a/0a131f572aa09f741c30ccd45a8e56316e8be8dfc7bc19bf0ab7cfef7b19/nvidia_nccl_cu12-2.20.5-py3-none-manylinux2014_x86_64.whl", hash = "sha256:057f6bf9685f75215d0c53bf3ac4a10b3e6578351de307abad9e18a99182af56", size = 176249402 }, +] + +[[package]] +name = "nvidia-nvjitlink-cu12" +version = "12.6.20" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/81/b3/e456a1b2d499bb84bdc6670bfbcf41ff3bac58bd2fae6880d62834641558/nvidia_nvjitlink_cu12-12.6.20-py3-none-manylinux2014_aarch64.whl", hash = "sha256:84fb38465a5bc7c70cbc320cfd0963eb302ee25a5e939e9f512bbba55b6072fb", size = 19252608 }, + { url = "https://files.pythonhosted.org/packages/59/65/7ff0569494fbaea45ad2814972cc88da843d53cc96eb8554fcd0908941d9/nvidia_nvjitlink_cu12-12.6.20-py3-none-manylinux2014_x86_64.whl", hash = "sha256:562ab97ea2c23164823b2a89cb328d01d45cb99634b8c65fe7cd60d14562bd79", size = 19724950 }, + { url = "https://files.pythonhosted.org/packages/cb/ef/8f96c82e1cfcf6d5b770f7b043c3cc24841fc247b37629a7cc643dbf72a1/nvidia_nvjitlink_cu12-12.6.20-py3-none-win_amd64.whl", hash = "sha256:ed3c43a17f37b0c922a919203d2d36cbef24d41cc3e6b625182f8b58203644f6", size = 162012830 }, +] + +[[package]] +name = "nvidia-nvtx-cu12" +version = "12.1.105" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/da/d3/8057f0587683ed2fcd4dbfbdfdfa807b9160b809976099d36b8f60d08f03/nvidia_nvtx_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:dc21cf308ca5691e7c04d962e213f8a4aa9bbfa23d95412f452254c2caeb09e5", size = 99138 }, + { url = "https://files.pythonhosted.org/packages/b8/d7/bd7cb2d95ac6ac6e8d05bfa96cdce69619f1ef2808e072919044c2d47a8c/nvidia_nvtx_cu12-12.1.105-py3-none-win_amd64.whl", hash = "sha256:65f4d98982b31b60026e0e6de73fbdfc09d08a96f4656dd3665ca616a11e1e82", size = 66307 }, +] + +[[package]] +name = "oauthlib" +version = "3.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6d/fa/fbf4001037904031639e6bfbfc02badfc7e12f137a8afa254df6c4c8a670/oauthlib-3.2.2.tar.gz", hash = "sha256:9859c40929662bec5d64f34d01c99e093149682a3f38915dc0655d5a633dd918", size = 177352 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/80/cab10959dc1faead58dc8384a781dfbf93cb4d33d50988f7a69f1b7c9bbe/oauthlib-3.2.2-py3-none-any.whl", hash = "sha256:8139f29aac13e25d502680e9e19963e83f16838d48a0d71c287fe40e7067fbca", size = 151688 }, +] + +[[package]] +name = "onnx" +version = "1.16.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d8/83/09d7715612f72236b439eba6ebfecdaac59d99562dfc1d7a90dddb6168e1/onnx-1.16.2.tar.gz", hash = "sha256:b33a282b038813c4b69e73ea65c2909768e8dd6cc10619b70632335daf094646", size = 12308861 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/49/0c/f5b531a10344648ef577d0c3eca70fa40156928f1f927237eb6f107c74bb/onnx-1.16.2-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:ab0a1aa6b0470020ea3636afdce3e2a67f856fefe4be8c73b20371b07fcde69c", size = 16505840 }, + { url = "https://files.pythonhosted.org/packages/c2/8f/65582450430242811ec955806a870437a9d66f9dceccd53d05dd902d76ad/onnx-1.16.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a449122a49534bb9c2b6f16c8493b606ef0accda6b9dbf0c513ca4b31ebe8b38", size = 15793170 }, + { url = "https://files.pythonhosted.org/packages/f5/3d/d28484e5d87d4500db0d3b44836d9cd31d88f1efbe168356dbb1dd4f2571/onnx-1.16.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec6a425e59291fff430da4a884aa07a1d0cbb5dcd22cc78f6cf4ba5adb9f3367", size = 15924158 }, + { url = "https://files.pythonhosted.org/packages/c7/b9/0588350b9c779246a4f0302961e7b065c181fee70bb4a1219f13e4698fc1/onnx-1.16.2-cp310-cp310-win32.whl", hash = "sha256:55fbaf38acd4cd8fdd0b4f36871fb596b075518d3e981acc893f2ab887d1891a", size = 14337983 }, + { url = "https://files.pythonhosted.org/packages/0c/e4/1bc3ae56e6581587926a50a5c9dce3cfacf510e592e2512c7f5f2a9a4859/onnx-1.16.2-cp310-cp310-win_amd64.whl", hash = "sha256:4e496d301756e0a22fd2bdfac24b861c7b1ddbdd9ce7677b2a252c00c4c8f2a7", size = 14440121 }, + { url = "https://files.pythonhosted.org/packages/ea/d0/b6e02665c3e7ec097f194a75afc16698ce7729b810f0e67ac085a735f6e5/onnx-1.16.2-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:859b41574243c9bfd0abce03c15c78a1f270cc03c7f99629b984daf7adfa5003", size = 16505840 }, + { url = "https://files.pythonhosted.org/packages/82/fc/04b03e31b6741c3b430d04cfa055660242eba800e15c1c3394db3082098d/onnx-1.16.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:39a57d196fe5d73861e70d9625674e6caf8ca13c5e9c740462cf530a07cd2e1c", size = 15793427 }, + { url = "https://files.pythonhosted.org/packages/0b/8b/443486985df06b2e934d1a833f44786f22af06f2ba144ec5ce61f63beb2e/onnx-1.16.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7b98aa9733bd4b781eb931d33b4078ff2837e7d68062460726d6dd011f332bd4", size = 15924140 }, + { url = "https://files.pythonhosted.org/packages/de/20/74f04969a7d0112ce261e549a8b776bf0a262dc109c1e5e70b794ebecedb/onnx-1.16.2-cp311-cp311-win32.whl", hash = "sha256:e9f018b2e172efeea8c2473a51a825652767726374145d7cfdebdc7a27446fdd", size = 14338020 }, + { url = "https://files.pythonhosted.org/packages/41/d3/6f18b81626b9bc7f53f85e766fb688026e803da4ff20160afd80172542e7/onnx-1.16.2-cp311-cp311-win_amd64.whl", hash = "sha256:e66e4512a30df8916db5cf84f47d47b3250b9ab9a98d9cffe142c98c54598ba0", size = 14439804 }, + { url = "https://files.pythonhosted.org/packages/8c/a4/bd05b4a952d07a12c42206ea67fe855e633bb455c6128e388f3d66b46a7e/onnx-1.16.2-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:bfdb8c2eb4c92f55626376e00993db8fcc753da4b80babf28d99636af8dbae6b", size = 16510753 }, + { url = "https://files.pythonhosted.org/packages/8f/3d/6d623912bd7262abba8f7d1b2930896c8ccc3e11eda668b27d28e43c7705/onnx-1.16.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9b77a6c138f284dfc9b06fa370768aa4fd167efc49ff740e2158dd02eedde8d0", size = 15791696 }, + { url = "https://files.pythonhosted.org/packages/bb/2a/68851578adab1fd8abc4418c29f9944ad3d653452db76269c87f42ebe7e3/onnx-1.16.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ca12e47965e590b63f31681c8c563c75449a04178f27eac1ff64bad314314fb3", size = 15923654 }, + { url = "https://files.pythonhosted.org/packages/76/54/f909b428ab922cf9f3b1deec372173a0f4be313ae249b44c2db627a1f3e9/onnx-1.16.2-cp312-cp312-win32.whl", hash = "sha256:324fe3551e91ffd74b43dbcf1d48e96579f4c1be2ff1224591ecd3ec6daa6139", size = 14338109 }, + { url = "https://files.pythonhosted.org/packages/2b/66/121875d593a51ffd7a35315855c0e09ceca43c0bfe0e98af72053cc83682/onnx-1.16.2-cp312-cp312-win_amd64.whl", hash = "sha256:080b19b0bd2b5536b4c61812464fe495758d6c9cfed3fdd3f20516e616212bee", size = 14441282 }, + { url = "https://files.pythonhosted.org/packages/4e/35/abbf2fa3dbb96b430f6e810e3fb7bc042ed150f371cb1aedb47052c40f8e/onnx-1.16.2-cp39-cp39-macosx_11_0_universal2.whl", hash = "sha256:e79edba750ae06059d82d8ff8129a6488a7e692cd23cd7fe010f7ec7d6a14bad", size = 16506179 }, + { url = "https://files.pythonhosted.org/packages/64/fd/f38042d1e807cc0c6fbd8663b8aef6f2a08d87ee71669ff6130e4e550b39/onnx-1.16.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2d192db8501103fede9c1725861e65ed41efb65da1ce915ba969aae40073eb94", size = 15793392 }, + { url = "https://files.pythonhosted.org/packages/0b/c2/b7583750a65df9f47cd3ec6d16b92762807859d860d4c658ab205b978710/onnx-1.16.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da01d4a3bd7a0d0ee5084f65441fc9ca38450fc18835b7f9d5da5b9e7ca8b85d", size = 15924625 }, + { url = "https://files.pythonhosted.org/packages/cb/0d/22769fa03571ce4e8fa23e359a91e24c38be5ca1192267878e627473b8a7/onnx-1.16.2-cp39-cp39-win32.whl", hash = "sha256:0b765b09bdb01fa2338ea52483aa3d9c75e249f85446f0d9ad1dc5bd2b149082", size = 14338210 }, + { url = "https://files.pythonhosted.org/packages/d4/29/03f15191571fdef99d6e3f641e6385159d4bc826cdcad9b819b48fb30455/onnx-1.16.2-cp39-cp39-win_amd64.whl", hash = "sha256:bfee781a59919e797f4dae380e63a0390ec01ce5c337a1459b992aac2f49a3c2", size = 14435298 }, +] + +[[package]] +name = "onnxconverter-common" +version = "1.13.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnx", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ec/44/54c6b7f1a28d919a15caf642113fb44651087d1bb0658f028c54b93df8e3/onnxconverter-common-1.13.0.tar.gz", hash = "sha256:03db8a6033a3d6590f22df3f64234079caa826375d1fcb0b37b8123c06bf598c", size = 73935 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/51/a4/4439174c879c33557eab08e4dd480c1e096bc26c487c85a62e4c0d8f78ff/onnxconverter_common-1.13.0-py2.py3-none-any.whl", hash = "sha256:5ee1c025ef6c3b4abaede8425bc6b393248941a6cf8c21563d0d0e3f04634a0a", size = 83796 }, +] + +[[package]] +name = "onnxruntime" +version = "1.18.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "coloredlogs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "flatbuffers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sympy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/02/83/b72ef2d6cc8f8b4d60bc6b41641eaa8975c5f968a49bc69ff3c5e9b28b7f/onnxruntime-1.18.1-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:29ef7683312393d4ba04252f1b287d964bd67d5e6048b94d2da3643986c74d80", size = 15892232 }, + { url = "https://files.pythonhosted.org/packages/cd/ef/4f4e45d49c2587080f0252dba644620a9808e2d19591bb0b327650ace6b6/onnxruntime-1.18.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:fc706eb1df06ddf55776e15a30519fb15dda7697f987a2bbda4962845e3cec05", size = 6013528 }, + { url = "https://files.pythonhosted.org/packages/04/da/cd671caf4231942c4f68bf0dc1a959303df91dfd0e1d55c556b924d8e68e/onnxruntime-1.18.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b7de69f5ced2a263531923fa68bbec52a56e793b802fcd81a03487b5e292bc3a", size = 6788962 }, + { url = "https://files.pythonhosted.org/packages/63/ea/7f1396f7279073e1288e1d39874f39999ee7ea5b2f3f5ad838214b4a3620/onnxruntime-1.18.1-cp310-cp310-win32.whl", hash = "sha256:221e5b16173926e6c7de2cd437764492aa12b6811f45abd37024e7cf2ae5d7e3", size = 5069833 }, + { url = "https://files.pythonhosted.org/packages/74/8e/0db236760a60ba59fac48e253c2c645bfd7d6ade58d4ce796b645d73e2de/onnxruntime-1.18.1-cp310-cp310-win_amd64.whl", hash = "sha256:75211b619275199c861ee94d317243b8a0fcde6032e5a80e1aa9ded8ab4c6060", size = 5581426 }, + { url = "https://files.pythonhosted.org/packages/d7/ae/e257a5ffa4ef84e51255a38b62b4fdb538d92455e1f0f0ad056074f89c94/onnxruntime-1.18.1-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:f26582882f2dc581b809cfa41a125ba71ad9e715738ec6402418df356969774a", size = 15892594 }, + { url = "https://files.pythonhosted.org/packages/54/4b/f4c52a6b5e62f98f852a946fefc48f12d5838652eb7da5c300dc27a80ba4/onnxruntime-1.18.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ef36f3a8b768506d02be349ac303fd95d92813ba3ba70304d40c3cd5c25d6a4c", size = 6010462 }, + { url = "https://files.pythonhosted.org/packages/dd/ae/163375ec2b6aee385c26889b4a0bd4546133b1da7c66285ef8db180781c5/onnxruntime-1.18.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:170e711393e0618efa8ed27b59b9de0ee2383bd2a1f93622a97006a5ad48e434", size = 6794885 }, + { url = "https://files.pythonhosted.org/packages/25/76/3a3007573abd458c22453838c8620d2b37e14ca82b92c8fa7a85b620d031/onnxruntime-1.18.1-cp311-cp311-win32.whl", hash = "sha256:9b6a33419b6949ea34e0dc009bc4470e550155b6da644571ecace4b198b0d88f", size = 5069708 }, + { url = "https://files.pythonhosted.org/packages/99/b2/488704f6298ac249015f65b64c24bf5611fcf2594ab0e75fa6bcce5e873f/onnxruntime-1.18.1-cp311-cp311-win_amd64.whl", hash = "sha256:5c1380a9f1b7788da742c759b6a02ba771fe1ce620519b2b07309decbd1a2fe1", size = 5581717 }, + { url = "https://files.pythonhosted.org/packages/23/e9/8a2d3e5521b896d6483b101cd698912f9ad19b26314b0c671d98656d028c/onnxruntime-1.18.1-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:31bd57a55e3f983b598675dfc7e5d6f0877b70ec9864b3cc3c3e1923d0a01919", size = 15909435 }, + { url = "https://files.pythonhosted.org/packages/bf/75/305c44288ad9733d4209c8c5cb7eba6f09f25462bf2d64bbdfca742585c3/onnxruntime-1.18.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b9e03c4ba9f734500691a4d7d5b381cd71ee2f3ce80a1154ac8f7aed99d1ecaa", size = 6007788 }, + { url = "https://files.pythonhosted.org/packages/a3/0a/89bc7acdf7b311ec5cdf6c01983e8ecb23f7b1ba7a1b2d2fd10d33dfd24a/onnxruntime-1.18.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:781aa9873640f5df24524f96f6070b8c550c66cb6af35710fd9f92a20b4bfbf6", size = 6793752 }, + { url = "https://files.pythonhosted.org/packages/b7/ea/8eac166b5903b1f0e6e08ff8c64986654b1b21e410b1f18c45e97a225a88/onnxruntime-1.18.1-cp312-cp312-win32.whl", hash = "sha256:3a2d9ab6254ca62adbb448222e630dc6883210f718065063518c8f93a32432be", size = 5070749 }, + { url = "https://files.pythonhosted.org/packages/80/62/3f54fd70511e004869a2bc5c4ba4303a5b51b625ff81bd989c35d1d8086a/onnxruntime-1.18.1-cp312-cp312-win_amd64.whl", hash = "sha256:ad93c560b1c38c27c0275ffd15cd7f45b3ad3fc96653c09ce2931179982ff204", size = 5584630 }, + { url = "https://files.pythonhosted.org/packages/9c/95/b581d7e2134ef49d9f4d63bfd0aa7ad91e6c8fecf8ce71a229306a78857c/onnxruntime-1.18.1-cp39-cp39-macosx_11_0_universal2.whl", hash = "sha256:128df253ade673e60cea0955ec9d0e89617443a6d9ce47c2d79eb3f72a3be3de", size = 15893504 }, + { url = "https://files.pythonhosted.org/packages/5f/66/8a1deac3f16fad5fab4aedeea8d4a0baaafef0e16f7c5ae2e162f6af6d34/onnxruntime-1.18.1-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9839491e77e5c5a175cab3621e184d5a88925ee297ff4c311b68897197f4cde9", size = 5995471 }, + { url = "https://files.pythonhosted.org/packages/10/f5/67bd1b947bc4055ea62efd4b974cef51a8a6819ac4e8c61ca014901dbfd0/onnxruntime-1.18.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ad3187c1faff3ac15f7f0e7373ef4788c582cafa655a80fdbb33eaec88976c66", size = 6793994 }, + { url = "https://files.pythonhosted.org/packages/50/ea/4fb07d2a82d6b2782c98adcaea7d3e6b057b8e85c219f8d21e5ec72bc423/onnxruntime-1.18.1-cp39-cp39-win32.whl", hash = "sha256:34657c78aa4e0b5145f9188b550ded3af626651b15017bf43d280d7e23dbf195", size = 5070149 }, + { url = "https://files.pythonhosted.org/packages/da/5b/60dd8b3acf1230eb7093122f4fa621784ec4a7deaaf246456a4e2f0f0a25/onnxruntime-1.18.1-cp39-cp39-win_amd64.whl", hash = "sha256:9c14fd97c3ddfa97da5feef595e2c73f14c2d0ec1d4ecbea99c8d96603c89589", size = 5584248 }, +] + +[[package]] +name = "onnxruntime-tools" +version = "1.7.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "coloredlogs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnx", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "psutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "py-cpuinfo", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "py3nvml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/fd/b5/c36283fef3b1d492a39d1b5f3f195965fbf002b168633daad302c51d8f4c/onnxruntime_tools-1.7.0.tar.gz", hash = "sha256:6dbdcee49424e066bcd10357c37d51bc422ae26494e3c2f0c1970d534f967f6d", size = 141435 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6f/b0/db0e73356df0aaa8737e6f13c0dac499b5d904d3fa267c8ebf24515e8001/onnxruntime_tools-1.7.0-py3-none-any.whl", hash = "sha256:1dff888b5c482ac5bc627f12e108445fefcb3d600c43f63633975316fe617ad8", size = 212695 }, +] + +[[package]] +name = "opencv-python" +version = "4.10.0.84" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/4a/e7/b70a2d9ab205110d715906fc8ec83fbb00404aeb3a37a0654fdb68eb0c8c/opencv-python-4.10.0.84.tar.gz", hash = "sha256:72d234e4582e9658ffea8e9cae5b63d488ad06994ef12d81dc303b17472f3526", size = 95103981 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/66/82/564168a349148298aca281e342551404ef5521f33fba17b388ead0a84dc5/opencv_python-4.10.0.84-cp37-abi3-macosx_11_0_arm64.whl", hash = "sha256:fc182f8f4cda51b45f01c64e4cbedfc2f00aff799debebc305d8d0210c43f251", size = 54835524 }, + { url = "https://files.pythonhosted.org/packages/64/4a/016cda9ad7cf18c58ba074628a4eaae8aa55f3fd06a266398cef8831a5b9/opencv_python-4.10.0.84-cp37-abi3-macosx_12_0_x86_64.whl", hash = "sha256:71e575744f1d23f79741450254660442785f45a0797212852ee5199ef12eed98", size = 56475426 }, + { url = "https://files.pythonhosted.org/packages/81/e4/7a987ebecfe5ceaf32db413b67ff18eb3092c598408862fff4d7cc3fd19b/opencv_python-4.10.0.84-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:09a332b50488e2dda866a6c5573ee192fe3583239fb26ff2f7f9ceb0bc119ea6", size = 41746971 }, + { url = "https://files.pythonhosted.org/packages/3f/a4/d2537f47fd7fcfba966bd806e3ec18e7ee1681056d4b0a9c8d983983e4d5/opencv_python-4.10.0.84-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ace140fc6d647fbe1c692bcb2abce768973491222c067c131d80957c595b71f", size = 62548253 }, + { url = "https://files.pythonhosted.org/packages/1e/39/bbf57e7b9dab623e8773f6ff36385456b7ae7fa9357a5e53db732c347eac/opencv_python-4.10.0.84-cp37-abi3-win32.whl", hash = "sha256:2db02bb7e50b703f0a2d50c50ced72e95c574e1e5a0bb35a8a86d0b35c98c236", size = 28737688 }, + { url = "https://files.pythonhosted.org/packages/ec/6c/fab8113424af5049f85717e8e527ca3773299a3c6b02506e66436e19874f/opencv_python-4.10.0.84-cp37-abi3-win_amd64.whl", hash = "sha256:32dbbd94c26f611dc5cc6979e6b7aa1f55a64d6b463cc1dcd3c95505a63e48fe", size = 38842521 }, +] + +[[package]] +name = "opt-einsum" +version = "3.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7d/bf/9257e53a0e7715bc1127e15063e831f076723c6cd60985333a1c18878fb8/opt_einsum-3.3.0.tar.gz", hash = "sha256:59f6475f77bbc37dcf7cd748519c0ec60722e91e63ca114e68821c0c54a46549", size = 73951 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bc/19/404708a7e54ad2798907210462fd950c3442ea51acc8790f3da48d2bee8b/opt_einsum-3.3.0-py3-none-any.whl", hash = "sha256:2455e59e3947d3c275477df7f5205b30635e266fe6dc300e3d9f9646bfcea147", size = 65486 }, +] + +[[package]] +name = "optax" +version = "0.1.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "chex", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jaxlib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/9a/74/66b5c8c59b21017d50a04db5b2eca113418d35c99e17f7a62c76a22c8e88/optax-0.1.4.tar.gz", hash = "sha256:fb7a0550d57a6636164a3de25986a8a19be8ff6431fcdf1225b4e05175810f22", size = 116113 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2e/7a/53ab156dd30acd9b4039603ebe623e81783de33b33ed14bcd52a29c2eeef/optax-0.1.4-py3-none-any.whl", hash = "sha256:12fcf33bd682f9a162a3deb097f864130c3224d76771af2ba09410de80399a9b", size = 154872 }, +] + +[[package]] +name = "optuna" +version = "3.6.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "alembic", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "colorlog", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sqlalchemy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/dd/10/5e37d49c98d5aee9f4eb5eb0e0e24a8c6846dccb45586626127a0c157a85/optuna-3.6.1.tar.gz", hash = "sha256:146e530b57b4b9afd7526b3e642fbe65491f7e292b405913355f8e438e361ecf", size = 292748 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/15/da/68883911855d8b4d521f9a370e4e6aab8232b91c1d8d5a8348c4680c6642/optuna-3.6.1-py3-none-any.whl", hash = "sha256:b32e0490bd6552790b70ec94de77dd2855057c9e229cd9f4da48fe8a31c7f1cc", size = 380102 }, +] + +[[package]] +name = "orbax-checkpoint" +version = "0.5.16" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "etils", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "etils", extra = ["epath", "epy"] }, + { name = "jax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jaxlib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "msgpack", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "nest-asyncio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorstore", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/05/f3/39988acde4fa04b0017b8dec1c2cc4429c4d54830f418c80574ff6f6ff9b/orbax_checkpoint-0.5.16.tar.gz", hash = "sha256:c64d2a3ba6dd7e41330c3efd2bb669743480e62ad242eac5517e67369c26a38e", size = 160749 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/50/00/95794fe517d705c06b1918c4d32372d7476f81a2bfc6ed44f850bbe71ee2/orbax_checkpoint-0.5.16-py3-none-any.whl", hash = "sha256:1b4329ff477c59e061ac15bc09eea34a248f2048b1c5b43eae9b530e068e5974", size = 217032 }, +] + +[[package]] +name = "packaging" +version = "24.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/51/65/50db4dda066951078f0a96cf12f4b9ada6e4b811516bf0262c0f4f7064d4/packaging-24.1.tar.gz", hash = "sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002", size = 148788 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/08/aa/cc0199a5f0ad350994d660967a8efb233fe0416e4639146c089643407ce6/packaging-24.1-py3-none-any.whl", hash = "sha256:5b8f2217dbdbd2f7f384c41c628544e6d52f2d0f53c6d0c3ea61aa5d1d7ff124", size = 53985 }, +] + +[[package]] +name = "pandas" +version = "2.2.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version <= '3.11' or python_version >= '3.12'" }, + { name = "python-dateutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pytz", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tzdata", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/88/d9/ecf715f34c73ccb1d8ceb82fc01cd1028a65a5f6dbc57bfa6ea155119058/pandas-2.2.2.tar.gz", hash = "sha256:9e79019aba43cb4fda9e4d983f8e88ca0373adbb697ae9c6c43093218de28b54", size = 4398391 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/2d/39600d073ea70b9cafdc51fab91d69c72b49dd92810f24cb5ac6631f387f/pandas-2.2.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:90c6fca2acf139569e74e8781709dccb6fe25940488755716d1d354d6bc58bce", size = 12551798 }, + { url = "https://files.pythonhosted.org/packages/fd/4b/0cd38e68ab690b9df8ef90cba625bf3f93b82d1c719703b8e1b333b2c72d/pandas-2.2.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c7adfc142dac335d8c1e0dcbd37eb8617eac386596eb9e1a1b77791cf2498238", size = 11287392 }, + { url = "https://files.pythonhosted.org/packages/01/c6/d3d2612aea9b9f28e79a30b864835dad8f542dcf474eee09afeee5d15d75/pandas-2.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4abfe0be0d7221be4f12552995e58723c7422c80a659da13ca382697de830c08", size = 15634823 }, + { url = "https://files.pythonhosted.org/packages/89/1b/12521efcbc6058e2673583bb096c2b5046a9df39bd73eca392c1efed24e5/pandas-2.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8635c16bf3d99040fdf3ca3db669a7250ddf49c55dc4aa8fe0ae0fa8d6dcc1f0", size = 13032214 }, + { url = "https://files.pythonhosted.org/packages/e4/d7/303dba73f1c3a9ef067d23e5afbb6175aa25e8121be79be354dcc740921a/pandas-2.2.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:40ae1dffb3967a52203105a077415a86044a2bea011b5f321c6aa64b379a3f51", size = 16278302 }, + { url = "https://files.pythonhosted.org/packages/ba/df/8ff7c5ed1cc4da8c6ab674dc8e4860a4310c3880df1283e01bac27a4333d/pandas-2.2.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8e5a0b00e1e56a842f922e7fae8ae4077aee4af0acb5ae3622bd4b4c30aedf99", size = 13892866 }, + { url = "https://files.pythonhosted.org/packages/69/a6/81d5dc9a612cf0c1810c2ebc4f2afddb900382276522b18d128213faeae3/pandas-2.2.2-cp310-cp310-win_amd64.whl", hash = "sha256:ddf818e4e6c7c6f4f7c8a12709696d193976b591cc7dc50588d3d1a6b5dc8772", size = 11621592 }, + { url = "https://files.pythonhosted.org/packages/1b/70/61704497903d43043e288017cb2b82155c0d41e15f5c17807920877b45c2/pandas-2.2.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:696039430f7a562b74fa45f540aca068ea85fa34c244d0deee539cb6d70aa288", size = 12574808 }, + { url = "https://files.pythonhosted.org/packages/16/c6/75231fd47afd6b3f89011e7077f1a3958441264aca7ae9ff596e3276a5d0/pandas-2.2.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8e90497254aacacbc4ea6ae5e7a8cd75629d6ad2b30025a4a8b09aa4faf55151", size = 11304876 }, + { url = "https://files.pythonhosted.org/packages/97/2d/7b54f80b93379ff94afb3bd9b0cd1d17b48183a0d6f98045bc01ce1e06a7/pandas-2.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:58b84b91b0b9f4bafac2a0ac55002280c094dfc6402402332c0913a59654ab2b", size = 15602548 }, + { url = "https://files.pythonhosted.org/packages/fc/a5/4d82be566f069d7a9a702dcdf6f9106df0e0b042e738043c0cc7ddd7e3f6/pandas-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d2123dc9ad6a814bcdea0f099885276b31b24f7edf40f6cdbc0912672e22eee", size = 13031332 }, + { url = "https://files.pythonhosted.org/packages/92/a2/b79c48f530673567805e607712b29814b47dcaf0d167e87145eb4b0118c6/pandas-2.2.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:2925720037f06e89af896c70bca73459d7e6a4be96f9de79e2d440bd499fe0db", size = 16286054 }, + { url = "https://files.pythonhosted.org/packages/40/c7/47e94907f1d8fdb4868d61bd6c93d57b3784a964d52691b77ebfdb062842/pandas-2.2.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0cace394b6ea70c01ca1595f839cf193df35d1575986e484ad35c4aeae7266c1", size = 13879507 }, + { url = "https://files.pythonhosted.org/packages/ab/63/966db1321a0ad55df1d1fe51505d2cdae191b84c907974873817b0a6e849/pandas-2.2.2-cp311-cp311-win_amd64.whl", hash = "sha256:873d13d177501a28b2756375d59816c365e42ed8417b41665f346289adc68d24", size = 11634249 }, + { url = "https://files.pythonhosted.org/packages/dd/49/de869130028fb8d90e25da3b7d8fb13e40f5afa4c4af1781583eb1ff3839/pandas-2.2.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:9dfde2a0ddef507a631dc9dc4af6a9489d5e2e740e226ad426a05cabfbd7c8ef", size = 12500886 }, + { url = "https://files.pythonhosted.org/packages/db/7c/9a60add21b96140e22465d9adf09832feade45235cd22f4cb1668a25e443/pandas-2.2.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:e9b79011ff7a0f4b1d6da6a61aa1aa604fb312d6647de5bad20013682d1429ce", size = 11340320 }, + { url = "https://files.pythonhosted.org/packages/b0/85/f95b5f322e1ae13b7ed7e97bd999160fa003424711ab4dc8344b8772c270/pandas-2.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1cb51fe389360f3b5a4d57dbd2848a5f033350336ca3b340d1c53a1fad33bcad", size = 15204346 }, + { url = "https://files.pythonhosted.org/packages/40/10/79e52ef01dfeb1c1ca47a109a01a248754ebe990e159a844ece12914de83/pandas-2.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eee3a87076c0756de40b05c5e9a6069c035ba43e8dd71c379e68cab2c20f16ad", size = 12733396 }, + { url = "https://files.pythonhosted.org/packages/35/9d/208febf8c4eb5c1d9ea3314d52d8bd415fd0ef0dd66bb24cc5bdbc8fa71a/pandas-2.2.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:3e374f59e440d4ab45ca2fffde54b81ac3834cf5ae2cdfa69c90bc03bde04d76", size = 15858913 }, + { url = "https://files.pythonhosted.org/packages/99/d1/2d9bd05def7a9e08a92ec929b5a4c8d5556ec76fae22b0fa486cbf33ea63/pandas-2.2.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:43498c0bdb43d55cb162cdc8c06fac328ccb5d2eabe3cadeb3529ae6f0517c32", size = 13417786 }, + { url = "https://files.pythonhosted.org/packages/22/a5/a0b255295406ed54269814bc93723cfd1a0da63fb9aaf99e1364f07923e5/pandas-2.2.2-cp312-cp312-win_amd64.whl", hash = "sha256:d187d355ecec3629624fccb01d104da7d7f391db0311145817525281e2804d23", size = 11498828 }, + { url = "https://files.pythonhosted.org/packages/1b/cc/eb6ce83667131667c6561e009823e72aa5c76698e75552724bdfc8d1ef0b/pandas-2.2.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:0ca6377b8fca51815f382bd0b697a0814c8bda55115678cbc94c30aacbb6eff2", size = 12566406 }, + { url = "https://files.pythonhosted.org/packages/96/08/9ad65176f854fd5eb806a27da6e8b6c12d5ddae7ef3bd80d8b3009099333/pandas-2.2.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9057e6aa78a584bc93a13f0a9bf7e753a5e9770a30b4d758b8d5f2a62a9433cd", size = 11304008 }, + { url = "https://files.pythonhosted.org/packages/aa/30/5987c82fea318ac7d6bcd083c5b5259d4000e99dd29ae7a9357c65a1b17a/pandas-2.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:001910ad31abc7bf06f49dcc903755d2f7f3a9186c0c040b827e522e9cef0863", size = 15662279 }, + { url = "https://files.pythonhosted.org/packages/bb/30/f6f1f1ac36250f50c421b1b6af08c35e5a8b5a84385ef928625336b93e6f/pandas-2.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:66b479b0bd07204e37583c191535505410daa8df638fd8e75ae1b383851fe921", size = 13069490 }, + { url = "https://files.pythonhosted.org/packages/b5/27/76c1509f505d1f4cb65839352d099c90a13019371e90347166811aa6a075/pandas-2.2.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:a77e9d1c386196879aa5eb712e77461aaee433e54c68cf253053a73b7e49c33a", size = 16299412 }, + { url = "https://files.pythonhosted.org/packages/5d/11/a5a2f52936fba3afc42de35b19cae941284d973649cb6949bc41cc2e5901/pandas-2.2.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:92fd6b027924a7e178ac202cfbe25e53368db90d56872d20ffae94b96c7acc57", size = 13920884 }, + { url = "https://files.pythonhosted.org/packages/bf/2c/a0cee9c392a4c9227b835af27f9260582b994f9a2b5ec23993b596e5deb7/pandas-2.2.2-cp39-cp39-win_amd64.whl", hash = "sha256:640cef9aa381b60e296db324337a554aeeb883ead99dc8f6c18e81a93942f5f4", size = 11637580 }, +] + +[[package]] +name = "parameterized" +version = "0.9.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ea/49/00c0c0cc24ff4266025a53e41336b79adaa5a4ebfad214f433d623f9865e/parameterized-0.9.0.tar.gz", hash = "sha256:7fc905272cefa4f364c1a3429cbbe9c0f98b793988efb5bf90aac80f08db09b1", size = 24351 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/00/2f/804f58f0b856ab3bf21617cccf5b39206e6c4c94c2cd227bde125ea6105f/parameterized-0.9.0-py2.py3-none-any.whl", hash = "sha256:4e0758e3d41bea3bbd05ec14fc2c24736723f243b28d702081aef438c9372b1b", size = 20475 }, +] + +[[package]] +name = "pathos" +version = "0.2.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "dill", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "multiprocess", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pox", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ppft", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/66/74/2630ffec903fe3cb712f2c8a538d55422298a31461ff5370e9c6b97a93de/pathos-0.2.8.zip", hash = "sha256:1f0f27a90f7ab66c423ba796529000fde9360d17b2d8e50097641ff405fc6f15", size = 219791 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/23/6b/7ffe02bdb5f5cf4b2290cc906b415dde7c886dbb11928dda40d39e6654dd/pathos-0.2.8-py2.py3-none-any.whl", hash = "sha256:789ae53487e5f9393fcc2b9703188a1b97f20206c429654134a7152f591bafe7", size = 81688 }, +] + +[[package]] +name = "pathspec" +version = "0.12.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ca/bc/f35b8446f4531a7cb215605d100cd88b7ac6f44ab3fc94870c120ab3adbf/pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712", size = 51043 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl", hash = "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08", size = 31191 }, +] + +[[package]] +name = "phonemizer" +version = "3.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "dlinfo", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "joblib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "segments", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c4/ff/3574c55a71b42ad6944a5bf0a7d59f0251ea2ba47e51a5c4005e32e9145c/phonemizer-3.3.0.tar.gz", hash = "sha256:5e0c38122effe0b331a24e674aff256874ece169d70a9cf1120337b56f8e3d0c", size = 88564 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/23/e8d67c2052e132181c4c9027c2d8ed9e37e8acb27acfc13ed2d0c41ed850/phonemizer-3.3.0-py3-none-any.whl", hash = "sha256:17afaa98691fe73b025dd8d8727b0e67cc376c5e7ee27590853e457fb3f43602", size = 103800 }, +] + +[[package]] +name = "pillow" +version = "10.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cd/74/ad3d526f3bf7b6d3f408b73fde271ec69dfac8b81341a318ce825f2b3812/pillow-10.4.0.tar.gz", hash = "sha256:166c1cd4d24309b30d61f79f4a9114b7b2313d7450912277855ff5dfd7cd4a06", size = 46555059 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0e/69/a31cccd538ca0b5272be2a38347f8839b97a14be104ea08b0db92f749c74/pillow-10.4.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:4d9667937cfa347525b319ae34375c37b9ee6b525440f3ef48542fcf66f2731e", size = 3509271 }, + { url = "https://files.pythonhosted.org/packages/9a/9e/4143b907be8ea0bce215f2ae4f7480027473f8b61fcedfda9d851082a5d2/pillow-10.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:543f3dc61c18dafb755773efc89aae60d06b6596a63914107f75459cf984164d", size = 3375658 }, + { url = "https://files.pythonhosted.org/packages/8a/25/1fc45761955f9359b1169aa75e241551e74ac01a09f487adaaf4c3472d11/pillow-10.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7928ecbf1ece13956b95d9cbcfc77137652b02763ba384d9ab508099a2eca856", size = 4332075 }, + { url = "https://files.pythonhosted.org/packages/5e/dd/425b95d0151e1d6c951f45051112394f130df3da67363b6bc75dc4c27aba/pillow-10.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4d49b85c4348ea0b31ea63bc75a9f3857869174e2bf17e7aba02945cd218e6f", size = 4444808 }, + { url = "https://files.pythonhosted.org/packages/b1/84/9a15cc5726cbbfe7f9f90bfb11f5d028586595907cd093815ca6644932e3/pillow-10.4.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:6c762a5b0997f5659a5ef2266abc1d8851ad7749ad9a6a5506eb23d314e4f46b", size = 4356290 }, + { url = "https://files.pythonhosted.org/packages/b5/5b/6651c288b08df3b8c1e2f8c1152201e0b25d240e22ddade0f1e242fc9fa0/pillow-10.4.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:a985e028fc183bf12a77a8bbf36318db4238a3ded7fa9df1b9a133f1cb79f8fc", size = 4525163 }, + { url = "https://files.pythonhosted.org/packages/07/8b/34854bf11a83c248505c8cb0fcf8d3d0b459a2246c8809b967963b6b12ae/pillow-10.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:812f7342b0eee081eaec84d91423d1b4650bb9828eb53d8511bcef8ce5aecf1e", size = 4463100 }, + { url = "https://files.pythonhosted.org/packages/78/63/0632aee4e82476d9cbe5200c0cdf9ba41ee04ed77887432845264d81116d/pillow-10.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ac1452d2fbe4978c2eec89fb5a23b8387aba707ac72810d9490118817d9c0b46", size = 4592880 }, + { url = "https://files.pythonhosted.org/packages/df/56/b8663d7520671b4398b9d97e1ed9f583d4afcbefbda3c6188325e8c297bd/pillow-10.4.0-cp310-cp310-win32.whl", hash = "sha256:bcd5e41a859bf2e84fdc42f4edb7d9aba0a13d29a2abadccafad99de3feff984", size = 2235218 }, + { url = "https://files.pythonhosted.org/packages/f4/72/0203e94a91ddb4a9d5238434ae6c1ca10e610e8487036132ea9bf806ca2a/pillow-10.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:ecd85a8d3e79cd7158dec1c9e5808e821feea088e2f69a974db5edf84dc53141", size = 2554487 }, + { url = "https://files.pythonhosted.org/packages/bd/52/7e7e93d7a6e4290543f17dc6f7d3af4bd0b3dd9926e2e8a35ac2282bc5f4/pillow-10.4.0-cp310-cp310-win_arm64.whl", hash = "sha256:ff337c552345e95702c5fde3158acb0625111017d0e5f24bf3acdb9cc16b90d1", size = 2243219 }, + { url = "https://files.pythonhosted.org/packages/a7/62/c9449f9c3043c37f73e7487ec4ef0c03eb9c9afc91a92b977a67b3c0bbc5/pillow-10.4.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:0a9ec697746f268507404647e531e92889890a087e03681a3606d9b920fbee3c", size = 3509265 }, + { url = "https://files.pythonhosted.org/packages/f4/5f/491dafc7bbf5a3cc1845dc0430872e8096eb9e2b6f8161509d124594ec2d/pillow-10.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:dfe91cb65544a1321e631e696759491ae04a2ea11d36715eca01ce07284738be", size = 3375655 }, + { url = "https://files.pythonhosted.org/packages/73/d5/c4011a76f4207a3c151134cd22a1415741e42fa5ddecec7c0182887deb3d/pillow-10.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5dc6761a6efc781e6a1544206f22c80c3af4c8cf461206d46a1e6006e4429ff3", size = 4340304 }, + { url = "https://files.pythonhosted.org/packages/ac/10/c67e20445a707f7a610699bba4fe050583b688d8cd2d202572b257f46600/pillow-10.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e84b6cc6a4a3d76c153a6b19270b3526a5a8ed6b09501d3af891daa2a9de7d6", size = 4452804 }, + { url = "https://files.pythonhosted.org/packages/a9/83/6523837906d1da2b269dee787e31df3b0acb12e3d08f024965a3e7f64665/pillow-10.4.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:bbc527b519bd3aa9d7f429d152fea69f9ad37c95f0b02aebddff592688998abe", size = 4365126 }, + { url = "https://files.pythonhosted.org/packages/ba/e5/8c68ff608a4203085158cff5cc2a3c534ec384536d9438c405ed6370d080/pillow-10.4.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:76a911dfe51a36041f2e756b00f96ed84677cdeb75d25c767f296c1c1eda1319", size = 4533541 }, + { url = "https://files.pythonhosted.org/packages/f4/7c/01b8dbdca5bc6785573f4cee96e2358b0918b7b2c7b60d8b6f3abf87a070/pillow-10.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:59291fb29317122398786c2d44427bbd1a6d7ff54017075b22be9d21aa59bd8d", size = 4471616 }, + { url = "https://files.pythonhosted.org/packages/c8/57/2899b82394a35a0fbfd352e290945440e3b3785655a03365c0ca8279f351/pillow-10.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:416d3a5d0e8cfe4f27f574362435bc9bae57f679a7158e0096ad2beb427b8696", size = 4600802 }, + { url = "https://files.pythonhosted.org/packages/4d/d7/a44f193d4c26e58ee5d2d9db3d4854b2cfb5b5e08d360a5e03fe987c0086/pillow-10.4.0-cp311-cp311-win32.whl", hash = "sha256:7086cc1d5eebb91ad24ded9f58bec6c688e9f0ed7eb3dbbf1e4800280a896496", size = 2235213 }, + { url = "https://files.pythonhosted.org/packages/c1/d0/5866318eec2b801cdb8c82abf190c8343d8a1cd8bf5a0c17444a6f268291/pillow-10.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cbed61494057c0f83b83eb3a310f0bf774b09513307c434d4366ed64f4128a91", size = 2554498 }, + { url = "https://files.pythonhosted.org/packages/d4/c8/310ac16ac2b97e902d9eb438688de0d961660a87703ad1561fd3dfbd2aa0/pillow-10.4.0-cp311-cp311-win_arm64.whl", hash = "sha256:f5f0c3e969c8f12dd2bb7e0b15d5c468b51e5017e01e2e867335c81903046a22", size = 2243219 }, + { url = "https://files.pythonhosted.org/packages/05/cb/0353013dc30c02a8be34eb91d25e4e4cf594b59e5a55ea1128fde1e5f8ea/pillow-10.4.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:673655af3eadf4df6b5457033f086e90299fdd7a47983a13827acf7459c15d94", size = 3509350 }, + { url = "https://files.pythonhosted.org/packages/e7/cf/5c558a0f247e0bf9cec92bff9b46ae6474dd736f6d906315e60e4075f737/pillow-10.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:866b6942a92f56300012f5fbac71f2d610312ee65e22f1aa2609e491284e5597", size = 3374980 }, + { url = "https://files.pythonhosted.org/packages/84/48/6e394b86369a4eb68b8a1382c78dc092245af517385c086c5094e3b34428/pillow-10.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:29dbdc4207642ea6aad70fbde1a9338753d33fb23ed6956e706936706f52dd80", size = 4343799 }, + { url = "https://files.pythonhosted.org/packages/3b/f3/a8c6c11fa84b59b9df0cd5694492da8c039a24cd159f0f6918690105c3be/pillow-10.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf2342ac639c4cf38799a44950bbc2dfcb685f052b9e262f446482afaf4bffca", size = 4459973 }, + { url = "https://files.pythonhosted.org/packages/7d/1b/c14b4197b80150fb64453585247e6fb2e1d93761fa0fa9cf63b102fde822/pillow-10.4.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:f5b92f4d70791b4a67157321c4e8225d60b119c5cc9aee8ecf153aace4aad4ef", size = 4370054 }, + { url = "https://files.pythonhosted.org/packages/55/77/40daddf677897a923d5d33329acd52a2144d54a9644f2a5422c028c6bf2d/pillow-10.4.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:86dcb5a1eb778d8b25659d5e4341269e8590ad6b4e8b44d9f4b07f8d136c414a", size = 4539484 }, + { url = "https://files.pythonhosted.org/packages/40/54/90de3e4256b1207300fb2b1d7168dd912a2fb4b2401e439ba23c2b2cabde/pillow-10.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:780c072c2e11c9b2c7ca37f9a2ee8ba66f44367ac3e5c7832afcfe5104fd6d1b", size = 4477375 }, + { url = "https://files.pythonhosted.org/packages/13/24/1bfba52f44193860918ff7c93d03d95e3f8748ca1de3ceaf11157a14cf16/pillow-10.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:37fb69d905be665f68f28a8bba3c6d3223c8efe1edf14cc4cfa06c241f8c81d9", size = 4608773 }, + { url = "https://files.pythonhosted.org/packages/55/04/5e6de6e6120451ec0c24516c41dbaf80cce1b6451f96561235ef2429da2e/pillow-10.4.0-cp312-cp312-win32.whl", hash = "sha256:7dfecdbad5c301d7b5bde160150b4db4c659cee2b69589705b6f8a0c509d9f42", size = 2235690 }, + { url = "https://files.pythonhosted.org/packages/74/0a/d4ce3c44bca8635bd29a2eab5aa181b654a734a29b263ca8efe013beea98/pillow-10.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:1d846aea995ad352d4bdcc847535bd56e0fd88d36829d2c90be880ef1ee4668a", size = 2554951 }, + { url = "https://files.pythonhosted.org/packages/b5/ca/184349ee40f2e92439be9b3502ae6cfc43ac4b50bc4fc6b3de7957563894/pillow-10.4.0-cp312-cp312-win_arm64.whl", hash = "sha256:e553cad5179a66ba15bb18b353a19020e73a7921296a7979c4a2b7f6a5cd57f9", size = 2243427 }, + { url = "https://files.pythonhosted.org/packages/c3/00/706cebe7c2c12a6318aabe5d354836f54adff7156fd9e1bd6c89f4ba0e98/pillow-10.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8bc1a764ed8c957a2e9cacf97c8b2b053b70307cf2996aafd70e91a082e70df3", size = 3525685 }, + { url = "https://files.pythonhosted.org/packages/cf/76/f658cbfa49405e5ecbfb9ba42d07074ad9792031267e782d409fd8fe7c69/pillow-10.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6209bb41dc692ddfee4942517c19ee81b86c864b626dbfca272ec0f7cff5d9fb", size = 3374883 }, + { url = "https://files.pythonhosted.org/packages/46/2b/99c28c4379a85e65378211971c0b430d9c7234b1ec4d59b2668f6299e011/pillow-10.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bee197b30783295d2eb680b311af15a20a8b24024a19c3a26431ff83eb8d1f70", size = 4339837 }, + { url = "https://files.pythonhosted.org/packages/f1/74/b1ec314f624c0c43711fdf0d8076f82d9d802afd58f1d62c2a86878e8615/pillow-10.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1ef61f5dd14c300786318482456481463b9d6b91ebe5ef12f405afbba77ed0be", size = 4455562 }, + { url = "https://files.pythonhosted.org/packages/4a/2a/4b04157cb7b9c74372fa867096a1607e6fedad93a44deeff553ccd307868/pillow-10.4.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:297e388da6e248c98bc4a02e018966af0c5f92dfacf5a5ca22fa01cb3179bca0", size = 4366761 }, + { url = "https://files.pythonhosted.org/packages/ac/7b/8f1d815c1a6a268fe90481232c98dd0e5fa8c75e341a75f060037bd5ceae/pillow-10.4.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:e4db64794ccdf6cb83a59d73405f63adbe2a1887012e308828596100a0b2f6cc", size = 4536767 }, + { url = "https://files.pythonhosted.org/packages/e5/77/05fa64d1f45d12c22c314e7b97398ffb28ef2813a485465017b7978b3ce7/pillow-10.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:bd2880a07482090a3bcb01f4265f1936a903d70bc740bfcb1fd4e8a2ffe5cf5a", size = 4477989 }, + { url = "https://files.pythonhosted.org/packages/12/63/b0397cfc2caae05c3fb2f4ed1b4fc4fc878f0243510a7a6034ca59726494/pillow-10.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4b35b21b819ac1dbd1233317adeecd63495f6babf21b7b2512d244ff6c6ce309", size = 4610255 }, + { url = "https://files.pythonhosted.org/packages/7b/f9/cfaa5082ca9bc4a6de66ffe1c12c2d90bf09c309a5f52b27759a596900e7/pillow-10.4.0-cp313-cp313-win32.whl", hash = "sha256:551d3fd6e9dc15e4c1eb6fc4ba2b39c0c7933fa113b220057a34f4bb3268a060", size = 2235603 }, + { url = "https://files.pythonhosted.org/packages/01/6a/30ff0eef6e0c0e71e55ded56a38d4859bf9d3634a94a88743897b5f96936/pillow-10.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:030abdbe43ee02e0de642aee345efa443740aa4d828bfe8e2eb11922ea6a21ea", size = 2554972 }, + { url = "https://files.pythonhosted.org/packages/48/2c/2e0a52890f269435eee38b21c8218e102c621fe8d8df8b9dd06fabf879ba/pillow-10.4.0-cp313-cp313-win_arm64.whl", hash = "sha256:5b001114dd152cfd6b23befeb28d7aee43553e2402c9f159807bf55f33af8a8d", size = 2243375 }, + { url = "https://files.pythonhosted.org/packages/31/85/955fa5400fa8039921f630372cfe5056eed6e1b8e0430ee4507d7de48832/pillow-10.4.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:0ae24a547e8b711ccaaf99c9ae3cd975470e1a30caa80a6aaee9a2f19c05701d", size = 3509283 }, + { url = "https://files.pythonhosted.org/packages/23/9c/343827267eb28d41cd82b4180d33b10d868af9077abcec0af9793aa77d2d/pillow-10.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:298478fe4f77a4408895605f3482b6cc6222c018b2ce565c2b6b9c354ac3229b", size = 3375691 }, + { url = "https://files.pythonhosted.org/packages/60/a3/7ebbeabcd341eab722896d1a5b59a3df98c4b4d26cf4b0385f8aa94296f7/pillow-10.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:134ace6dc392116566980ee7436477d844520a26a4b1bd4053f6f47d096997fd", size = 4328295 }, + { url = "https://files.pythonhosted.org/packages/32/3f/c02268d0c6fb6b3958bdda673c17b315c821d97df29ae6969f20fb49388a/pillow-10.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:930044bb7679ab003b14023138b50181899da3f25de50e9dbee23b61b4de2126", size = 4440810 }, + { url = "https://files.pythonhosted.org/packages/67/5d/1c93c8cc35f2fdd3d6cc7e4ad72d203902859a2867de6ad957d9b708eb8d/pillow-10.4.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:c76e5786951e72ed3686e122d14c5d7012f16c8303a674d18cdcd6d89557fc5b", size = 4352283 }, + { url = "https://files.pythonhosted.org/packages/bc/a8/8655557c9c7202b8abbd001f61ff36711cefaf750debcaa1c24d154ef602/pillow-10.4.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:b2724fdb354a868ddf9a880cb84d102da914e99119211ef7ecbdc613b8c96b3c", size = 4521800 }, + { url = "https://files.pythonhosted.org/packages/58/78/6f95797af64d137124f68af1bdaa13b5332da282b86031f6fa70cf368261/pillow-10.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:dbc6ae66518ab3c5847659e9988c3b60dc94ffb48ef9168656e0019a93dbf8a1", size = 4459177 }, + { url = "https://files.pythonhosted.org/packages/8a/6d/2b3ce34f1c4266d79a78c9a51d1289a33c3c02833fe294ef0dcbb9cba4ed/pillow-10.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:06b2f7898047ae93fad74467ec3d28fe84f7831370e3c258afa533f81ef7f3df", size = 4589079 }, + { url = "https://files.pythonhosted.org/packages/e3/e0/456258c74da1ff5bf8ef1eab06a95ca994d8b9ed44c01d45c3f8cbd1db7e/pillow-10.4.0-cp39-cp39-win32.whl", hash = "sha256:7970285ab628a3779aecc35823296a7869f889b8329c16ad5a71e4901a3dc4ef", size = 2235247 }, + { url = "https://files.pythonhosted.org/packages/37/f8/bef952bdb32aa53741f58bf21798642209e994edc3f6598f337f23d5400a/pillow-10.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:961a7293b2457b405967af9c77dcaa43cc1a8cd50d23c532e62d48ab6cdd56f5", size = 2554479 }, + { url = "https://files.pythonhosted.org/packages/bb/8e/805201619cad6651eef5fc1fdef913804baf00053461522fabbc5588ea12/pillow-10.4.0-cp39-cp39-win_arm64.whl", hash = "sha256:32cda9e3d601a52baccb2856b8ea1fc213c90b340c542dcef77140dfa3278a9e", size = 2243226 }, + { url = "https://files.pythonhosted.org/packages/38/30/095d4f55f3a053392f75e2eae45eba3228452783bab3d9a920b951ac495c/pillow-10.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:5b4815f2e65b30f5fbae9dfffa8636d992d49705723fe86a3661806e069352d4", size = 3493889 }, + { url = "https://files.pythonhosted.org/packages/f3/e8/4ff79788803a5fcd5dc35efdc9386af153569853767bff74540725b45863/pillow-10.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:8f0aef4ef59694b12cadee839e2ba6afeab89c0f39a3adc02ed51d109117b8da", size = 3346160 }, + { url = "https://files.pythonhosted.org/packages/d7/ac/4184edd511b14f760c73f5bb8a5d6fd85c591c8aff7c2229677a355c4179/pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f4727572e2918acaa9077c919cbbeb73bd2b3ebcfe033b72f858fc9fbef0026", size = 3435020 }, + { url = "https://files.pythonhosted.org/packages/da/21/1749cd09160149c0a246a81d646e05f35041619ce76f6493d6a96e8d1103/pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ff25afb18123cea58a591ea0244b92eb1e61a1fd497bf6d6384f09bc3262ec3e", size = 3490539 }, + { url = "https://files.pythonhosted.org/packages/b6/f5/f71fe1888b96083b3f6dfa0709101f61fc9e972c0c8d04e9d93ccef2a045/pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:dc3e2db6ba09ffd7d02ae9141cfa0ae23393ee7687248d46a7507b75d610f4f5", size = 3476125 }, + { url = "https://files.pythonhosted.org/packages/96/b9/c0362c54290a31866c3526848583a2f45a535aa9d725fd31e25d318c805f/pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:02a2be69f9c9b8c1e97cf2713e789d4e398c751ecfd9967c18d0ce304efbf885", size = 3579373 }, + { url = "https://files.pythonhosted.org/packages/52/3b/ce7a01026a7cf46e5452afa86f97a5e88ca97f562cafa76570178ab56d8d/pillow-10.4.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:0755ffd4a0c6f267cccbae2e9903d95477ca2f77c4fcf3a3a09570001856c8a5", size = 2554661 }, + { url = "https://files.pythonhosted.org/packages/e1/1f/5a9fcd6ced51633c22481417e11b1b47d723f64fb536dfd67c015eb7f0ab/pillow-10.4.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:a02364621fe369e06200d4a16558e056fe2805d3468350df3aef21e00d26214b", size = 3493850 }, + { url = "https://files.pythonhosted.org/packages/cb/e6/3ea4755ed5320cb62aa6be2f6de47b058c6550f752dd050e86f694c59798/pillow-10.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:1b5dea9831a90e9d0721ec417a80d4cbd7022093ac38a568db2dd78363b00908", size = 3346118 }, + { url = "https://files.pythonhosted.org/packages/0a/22/492f9f61e4648422b6ca39268ec8139277a5b34648d28f400faac14e0f48/pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9b885f89040bb8c4a1573566bbb2f44f5c505ef6e74cec7ab9068c900047f04b", size = 3434958 }, + { url = "https://files.pythonhosted.org/packages/f9/19/559a48ad4045704bb0547965b9a9345f5cd461347d977a56d178db28819e/pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:87dd88ded2e6d74d31e1e0a99a726a6765cda32d00ba72dc37f0651f306daaa8", size = 3490340 }, + { url = "https://files.pythonhosted.org/packages/d9/de/cebaca6fb79905b3a1aa0281d238769df3fb2ede34fd7c0caa286575915a/pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:2db98790afc70118bd0255c2eeb465e9767ecf1f3c25f9a1abb8ffc8cfd1fe0a", size = 3476048 }, + { url = "https://files.pythonhosted.org/packages/71/f0/86d5b2f04693b0116a01d75302b0a307800a90d6c351a8aa4f8ae76cd499/pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:f7baece4ce06bade126fb84b8af1c33439a76d8a6fd818970215e0560ca28c27", size = 3579366 }, + { url = "https://files.pythonhosted.org/packages/37/ae/2dbfc38cc4fd14aceea14bc440d5151b21f64c4c3ba3f6f4191610b7ee5d/pillow-10.4.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:cfdd747216947628af7b259d274771d84db2268ca062dd5faf373639d00113a3", size = 2554652 }, +] + +[[package]] +name = "plac" +version = "1.4.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9b/79/1edb4c836c69306d0ecb0865f46d62ea7e28ef16b3f95bb394e4f2a46330/plac-1.4.3.tar.gz", hash = "sha256:d4cb3387b2113a28aebd509433d0264a4e5d9bb7c1a86db4fbd0a8f11af74eb3", size = 38984 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8f/af/4c61d2ac0d589719f548f5a1ba919738e44bac7b0c723ce147de5556d233/plac-1.4.3-py2.py3-none-any.whl", hash = "sha256:8a84fde8f950c9de6588a2d53c9deeac3ba1ddb456d887a33228460cf6549750", size = 22458 }, +] + +[[package]] +name = "platformdirs" +version = "4.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f5/52/0763d1d976d5c262df53ddda8d8d4719eedf9594d046f117c25a27261a19/platformdirs-4.2.2.tar.gz", hash = "sha256:38b7b51f512eed9e84a22788b4bce1de17c0adb134d6becb09836e37d8654cd3", size = 20916 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/68/13/2aa1f0e1364feb2c9ef45302f387ac0bd81484e9c9a4c5688a322fbdfd08/platformdirs-4.2.2-py3-none-any.whl", hash = "sha256:2d7a1657e36a80ea911db832a8a6ece5ee53d8de21edd5cc5879af6530b1bfee", size = 18146 }, +] + +[[package]] +name = "plotly" +version = "5.23.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tenacity", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/db/9e/31b2f0b8f2357cd5f3e992c76c3e4e85a5cbbad8b8c5f23d0684e3f4c608/plotly-5.23.0.tar.gz", hash = "sha256:89e57d003a116303a34de6700862391367dd564222ab71f8531df70279fc0193", size = 8553751 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b8/f0/bcf716a8e070370d6598c92fcd328bd9ef8a9bda2c5562da5a835c66700b/plotly-5.23.0-py3-none-any.whl", hash = "sha256:76cbe78f75eddc10c56f5a4ee3e7ccaade7c0a57465546f02098c0caed6c2d1a", size = 17326571 }, +] + +[[package]] +name = "pluggy" +version = "1.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/96/2d/02d4312c973c6050a18b314a5ad0b3210edb65a906f868e31c111dede4a6/pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1", size = 67955 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/5f/e351af9a41f866ac3f1fac4ca0613908d9a41741cfcf2228f4ad853b697d/pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669", size = 20556 }, +] + +[[package]] +name = "pooch" +version = "1.8.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "platformdirs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c6/77/b3d3e00c696c16cf99af81ef7b1f5fe73bd2a307abca41bd7605429fe6e5/pooch-1.8.2.tar.gz", hash = "sha256:76561f0de68a01da4df6af38e9955c4c9d1a5c90da73f7e40276a5728ec83d10", size = 59353 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a8/87/77cc11c7a9ea9fd05503def69e3d18605852cd0d4b0d3b8f15bbeb3ef1d1/pooch-1.8.2-py3-none-any.whl", hash = "sha256:3529a57096f7198778a5ceefd5ac3ef0e4d06a6ddaf9fc2d609b806f25302c47", size = 64574 }, +] + +[[package]] +name = "portalocker" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pywin32", marker = "platform_system == 'Windows'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/df/48/62cf97ff7d2233e7db29dfb83f1584e26289e88af8af39de1a76629ac487/portalocker-2.0.0.tar.gz", hash = "sha256:14487eed81aa914127edf0284e29c7ca8842c05bb33d96dc7e4bdb47282d26e4", size = 15204 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/89/a6/3814b7107e0788040870e8825eebf214d72166adf656ba7d4bf14759a06a/portalocker-2.0.0-py2.py3-none-any.whl", hash = "sha256:5d7bc386d785dfc87e763a29d7d5864556c62653379e3ff484c71e49425d1898", size = 11249 }, +] + +[[package]] +name = "pox" +version = "0.3.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/87/8c/6e1e0e919b64d1a3fe11f461a34e5d0c570c00051cde44828514917f9651/pox-0.3.4.tar.gz", hash = "sha256:16e6eca84f1bec3828210b06b052adf04cf2ab20c22fd6fbef5f78320c9a6fed", size = 119609 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e1/d7/9e73c32f73da71e8224b4cb861b5db50ebdebcdff14d3e3fb47a63c578b2/pox-0.3.4-py3-none-any.whl", hash = "sha256:651b8ae8a7b341b7bfd267f67f63106daeb9805f1ac11f323d5280d2da93fdb6", size = 29473 }, +] + +[[package]] +name = "poyo" +version = "0.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7d/56/01b496f36bbd496aed9351dd1b06cf57fd2f5028480a87adbcf7a4ff1f65/poyo-0.5.0.tar.gz", hash = "sha256:e26956aa780c45f011ca9886f044590e2d8fd8b61db7b1c1cf4e0869f48ed4dd", size = 15276 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/42/50/0b0820601bde2eda403f47b9a4a1f270098ed0dd4c00c443d883164bdccc/poyo-0.5.0-py2.py3-none-any.whl", hash = "sha256:3e2ca8e33fdc3c411cd101ca395668395dd5dc7ac775b8e809e3def9f9fe041a", size = 10183 }, +] + +[[package]] +name = "ppft" +version = "1.7.6.8" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f8/c1/6aa25972c1910cf120a6c82bf2fc67edfdd1375c26f75048aae769caccc1/ppft-1.7.6.8.tar.gz", hash = "sha256:76a429a7d7b74c4d743f6dba8351e58d62b6432ed65df9fe204790160dab996d", size = 136481 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ff/fa/5160c7d2fb1d4f2b83cba7a40f0eb4b015b78f6973b7ab6b2e73c233cfdc/ppft-1.7.6.8-py3-none-any.whl", hash = "sha256:de2dd4b1b080923dd9627fbdea52649fd741c752fce4f3cf37e26f785df23d9b", size = 56755 }, +] + +[[package]] +name = "protobuf" +version = "4.25.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e8/ab/cb61a4b87b2e7e6c312dce33602bd5884797fd054e0e53205f1c27cf0f66/protobuf-4.25.4.tar.gz", hash = "sha256:0dc4a62cc4052a036ee2204d26fe4d835c62827c855c8a03f29fe6da146b380d", size = 380283 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c8/43/27b48d9040763b78177d3083e16c70dba6e3c3ee2af64b659f6332c2b06e/protobuf-4.25.4-cp310-abi3-win32.whl", hash = "sha256:db9fd45183e1a67722cafa5c1da3e85c6492a5383f127c86c4c4aa4845867dc4", size = 392409 }, + { url = "https://files.pythonhosted.org/packages/0c/d4/589d673ada9c4c62d5f155218d7ff7ac796efb9c6af95b0bd29d438ae16e/protobuf-4.25.4-cp310-abi3-win_amd64.whl", hash = "sha256:ba3d8504116a921af46499471c63a85260c1a5fc23333154a427a310e015d26d", size = 413398 }, + { url = "https://files.pythonhosted.org/packages/34/ca/bf85ffe3dd16f1f2aaa6c006da8118800209af3da160ae4d4f47500eabd9/protobuf-4.25.4-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:eecd41bfc0e4b1bd3fa7909ed93dd14dd5567b98c941d6c1ad08fdcab3d6884b", size = 394160 }, + { url = "https://files.pythonhosted.org/packages/68/1d/e8961af9a8e534d66672318d6b70ea8e3391a6b13e16a29b039e4a99c214/protobuf-4.25.4-cp37-abi3-manylinux2014_aarch64.whl", hash = "sha256:4c8a70fdcb995dcf6c8966cfa3a29101916f7225e9afe3ced4395359955d3835", size = 293700 }, + { url = "https://files.pythonhosted.org/packages/ca/6c/cc7ab2fb3a4a7f07f211d8a7bbb76bba633eb09b148296dbd4281e217f95/protobuf-4.25.4-cp37-abi3-manylinux2014_x86_64.whl", hash = "sha256:3319e073562e2515c6ddc643eb92ce20809f5d8f10fead3332f71c63be6a7040", size = 294612 }, + { url = "https://files.pythonhosted.org/packages/a4/b5/f7e2460dec8347d67e6108bef6ad3291c76e38c898a1087e2c836c02951e/protobuf-4.25.4-cp39-cp39-win32.whl", hash = "sha256:90bf6fd378494eb698805bbbe7afe6c5d12c8e17fca817a646cd6a1818c696ca", size = 392490 }, + { url = "https://files.pythonhosted.org/packages/c7/0b/15bd1a224e5e5744a0dcccf11bcd5dc1405877be38e477b1359d7c2c3737/protobuf-4.25.4-cp39-cp39-win_amd64.whl", hash = "sha256:ac79a48d6b99dfed2729ccccee547b34a1d3d63289c71cef056653a846a2240f", size = 413357 }, + { url = "https://files.pythonhosted.org/packages/b5/95/0ba7f66934a0a798006f06fc3d74816da2b7a2bcfd9b98c53d26f684c89e/protobuf-4.25.4-py3-none-any.whl", hash = "sha256:bfbebc1c8e4793cfd58589acfb8a1026be0003e852b9da7db5a4285bde996978", size = 156464 }, +] + +[[package]] +name = "psutil" +version = "6.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/18/c7/8c6872f7372eb6a6b2e4708b88419fb46b857f7a2e1892966b851cc79fc9/psutil-6.0.0.tar.gz", hash = "sha256:8faae4f310b6d969fa26ca0545338b21f73c6b15db7c4a8d934a5482faa818f2", size = 508067 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c5/66/78c9c3020f573c58101dc43a44f6855d01bbbd747e24da2f0c4491200ea3/psutil-6.0.0-cp27-none-win32.whl", hash = "sha256:02b69001f44cc73c1c5279d02b30a817e339ceb258ad75997325e0e6169d8b35", size = 249766 }, + { url = "https://files.pythonhosted.org/packages/e1/3f/2403aa9558bea4d3854b0e5e567bc3dd8e9fbc1fc4453c0aa9aafeb75467/psutil-6.0.0-cp27-none-win_amd64.whl", hash = "sha256:21f1fb635deccd510f69f485b87433460a603919b45e2a324ad65b0cc74f8fb1", size = 253024 }, + { url = "https://files.pythonhosted.org/packages/0b/37/f8da2fbd29690b3557cca414c1949f92162981920699cd62095a984983bf/psutil-6.0.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:c588a7e9b1173b6e866756dde596fd4cad94f9399daf99ad8c3258b3cb2b47a0", size = 250961 }, + { url = "https://files.pythonhosted.org/packages/35/56/72f86175e81c656a01c4401cd3b1c923f891b31fbcebe98985894176d7c9/psutil-6.0.0-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ed2440ada7ef7d0d608f20ad89a04ec47d2d3ab7190896cd62ca5fc4fe08bf0", size = 287478 }, + { url = "https://files.pythonhosted.org/packages/19/74/f59e7e0d392bc1070e9a70e2f9190d652487ac115bb16e2eff6b22ad1d24/psutil-6.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5fd9a97c8e94059b0ef54a7d4baf13b405011176c3b6ff257c247cae0d560ecd", size = 290455 }, + { url = "https://files.pythonhosted.org/packages/cd/5f/60038e277ff0a9cc8f0c9ea3d0c5eb6ee1d2470ea3f9389d776432888e47/psutil-6.0.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e2e8d0054fc88153ca0544f5c4d554d42e33df2e009c4ff42284ac9ebdef4132", size = 292046 }, + { url = "https://files.pythonhosted.org/packages/8b/20/2ff69ad9c35c3df1858ac4e094f20bd2374d33c8643cf41da8fd7cdcb78b/psutil-6.0.0-cp37-abi3-win32.whl", hash = "sha256:a495580d6bae27291324fe60cea0b5a7c23fa36a7cd35035a16d93bdcf076b9d", size = 253560 }, + { url = "https://files.pythonhosted.org/packages/73/44/561092313ae925f3acfaace6f9ddc4f6a9c748704317bad9c8c8f8a36a79/psutil-6.0.0-cp37-abi3-win_amd64.whl", hash = "sha256:33ea5e1c975250a720b3a6609c490db40dae5d83a4eb315170c4fe0d8b1f34b3", size = 257399 }, + { url = "https://files.pythonhosted.org/packages/7c/06/63872a64c312a24fb9b4af123ee7007a306617da63ff13bcc1432386ead7/psutil-6.0.0-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:ffe7fc9b6b36beadc8c322f84e1caff51e8703b88eee1da46d1e3a6ae11b4fd0", size = 251988 }, +] + +[[package]] +name = "py-cpuinfo" +version = "9.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/37/a8/d832f7293ebb21690860d2e01d8115e5ff6f2ae8bbdc953f0eb0fa4bd2c7/py-cpuinfo-9.0.0.tar.gz", hash = "sha256:3cdbbf3fac90dc6f118bfd64384f309edeadd902d7c8fb17f02ffa1fc3f49690", size = 104716 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e0/a9/023730ba63db1e494a271cb018dcd361bd2c917ba7004c3e49d5daf795a2/py_cpuinfo-9.0.0-py3-none-any.whl", hash = "sha256:859625bc251f64e21f077d099d4162689c762b5d6a4c3c97553d56241c9674d5", size = 22335 }, +] + +[[package]] +name = "py3nvml" +version = "0.2.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "xmltodict", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/10/7e/fa282e456b87570d663ce97946b4dcb16850d4495ce4bd625a1a10c8ed56/py3nvml-0.2.7.tar.gz", hash = "sha256:09ee1d04598a6e664e24465f804ce3bfe119a6fdb5362df1c168f8aa929fbd73", size = 58224 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/03/3a/ea6f2419bd20f97f65ee55a9910c722313fe99cacc0bf77afb4b74b446ff/py3nvml-0.2.7-py3-none-any.whl", hash = "sha256:30101170d1f51419c8d21fd8ca6cdc333a552b4f8a945c2fc7d107d77e4220dd", size = 55503 }, +] + +[[package]] +name = "pyarrow" +version = "17.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/27/4e/ea6d43f324169f8aec0e57569443a38bab4b398d09769ca64f7b4d467de3/pyarrow-17.0.0.tar.gz", hash = "sha256:4beca9521ed2c0921c1023e68d097d0299b62c362639ea315572a58f3f50fd28", size = 1112479 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/39/5d/78d4b040bc5ff2fc6c3d03e80fca396b742f6c125b8af06bcf7427f931bc/pyarrow-17.0.0-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:a5c8b238d47e48812ee577ee20c9a2779e6a5904f1708ae240f53ecbee7c9f07", size = 28994846 }, + { url = "https://files.pythonhosted.org/packages/3b/73/8ed168db7642e91180330e4ea9f3ff8bab404678f00d32d7df0871a4933b/pyarrow-17.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:db023dc4c6cae1015de9e198d41250688383c3f9af8f565370ab2b4cb5f62655", size = 27165908 }, + { url = "https://files.pythonhosted.org/packages/81/36/e78c24be99242063f6d0590ef68c857ea07bdea470242c361e9a15bd57a4/pyarrow-17.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da1e060b3876faa11cee287839f9cc7cdc00649f475714b8680a05fd9071d545", size = 39264209 }, + { url = "https://files.pythonhosted.org/packages/18/4c/3db637d7578f683b0a8fb8999b436bdbedd6e3517bd4f90c70853cf3ad20/pyarrow-17.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75c06d4624c0ad6674364bb46ef38c3132768139ddec1c56582dbac54f2663e2", size = 39862883 }, + { url = "https://files.pythonhosted.org/packages/81/3c/0580626896c842614a523e66b351181ed5bb14e5dfc263cd68cea2c46d90/pyarrow-17.0.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:fa3c246cc58cb5a4a5cb407a18f193354ea47dd0648194e6265bd24177982fe8", size = 38723009 }, + { url = "https://files.pythonhosted.org/packages/ee/fb/c1b47f0ada36d856a352da261a44d7344d8f22e2f7db3945f8c3b81be5dd/pyarrow-17.0.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:f7ae2de664e0b158d1607699a16a488de3d008ba99b3a7aa5de1cbc13574d047", size = 39855626 }, + { url = "https://files.pythonhosted.org/packages/19/09/b0a02908180a25d57312ab5919069c39fddf30602568980419f4b02393f6/pyarrow-17.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:5984f416552eea15fd9cee03da53542bf4cddaef5afecefb9aa8d1010c335087", size = 25147242 }, + { url = "https://files.pythonhosted.org/packages/f9/46/ce89f87c2936f5bb9d879473b9663ce7a4b1f4359acc2f0eb39865eaa1af/pyarrow-17.0.0-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:1c8856e2ef09eb87ecf937104aacfa0708f22dfeb039c363ec99735190ffb977", size = 29028748 }, + { url = "https://files.pythonhosted.org/packages/8d/8e/ce2e9b2146de422f6638333c01903140e9ada244a2a477918a368306c64c/pyarrow-17.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2e19f569567efcbbd42084e87f948778eb371d308e137a0f97afe19bb860ccb3", size = 27190965 }, + { url = "https://files.pythonhosted.org/packages/3b/c8/5675719570eb1acd809481c6d64e2136ffb340bc387f4ca62dce79516cea/pyarrow-17.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b244dc8e08a23b3e352899a006a26ae7b4d0da7bb636872fa8f5884e70acf15", size = 39269081 }, + { url = "https://files.pythonhosted.org/packages/5e/78/3931194f16ab681ebb87ad252e7b8d2c8b23dad49706cadc865dff4a1dd3/pyarrow-17.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b72e87fe3e1db343995562f7fff8aee354b55ee83d13afba65400c178ab2597", size = 39864921 }, + { url = "https://files.pythonhosted.org/packages/d8/81/69b6606093363f55a2a574c018901c40952d4e902e670656d18213c71ad7/pyarrow-17.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:dc5c31c37409dfbc5d014047817cb4ccd8c1ea25d19576acf1a001fe07f5b420", size = 38740798 }, + { url = "https://files.pythonhosted.org/packages/4c/21/9ca93b84b92ef927814cb7ba37f0774a484c849d58f0b692b16af8eebcfb/pyarrow-17.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:e3343cb1e88bc2ea605986d4b94948716edc7a8d14afd4e2c097232f729758b4", size = 39871877 }, + { url = "https://files.pythonhosted.org/packages/30/d1/63a7c248432c71c7d3ee803e706590a0b81ce1a8d2b2ae49677774b813bb/pyarrow-17.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:a27532c38f3de9eb3e90ecab63dfda948a8ca859a66e3a47f5f42d1e403c4d03", size = 25151089 }, + { url = "https://files.pythonhosted.org/packages/d4/62/ce6ac1275a432b4a27c55fe96c58147f111d8ba1ad800a112d31859fae2f/pyarrow-17.0.0-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:9b8a823cea605221e61f34859dcc03207e52e409ccf6354634143e23af7c8d22", size = 29019418 }, + { url = "https://files.pythonhosted.org/packages/8e/0a/dbd0c134e7a0c30bea439675cc120012337202e5fac7163ba839aa3691d2/pyarrow-17.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f1e70de6cb5790a50b01d2b686d54aaf73da01266850b05e3af2a1bc89e16053", size = 27152197 }, + { url = "https://files.pythonhosted.org/packages/cb/05/3f4a16498349db79090767620d6dc23c1ec0c658a668d61d76b87706c65d/pyarrow-17.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0071ce35788c6f9077ff9ecba4858108eebe2ea5a3f7cf2cf55ebc1dbc6ee24a", size = 39263026 }, + { url = "https://files.pythonhosted.org/packages/c2/0c/ea2107236740be8fa0e0d4a293a095c9f43546a2465bb7df34eee9126b09/pyarrow-17.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:757074882f844411fcca735e39aae74248a1531367a7c80799b4266390ae51cc", size = 39880798 }, + { url = "https://files.pythonhosted.org/packages/f6/b0/b9164a8bc495083c10c281cc65064553ec87b7537d6f742a89d5953a2a3e/pyarrow-17.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:9ba11c4f16976e89146781a83833df7f82077cdab7dc6232c897789343f7891a", size = 38715172 }, + { url = "https://files.pythonhosted.org/packages/f1/c4/9625418a1413005e486c006e56675334929fad864347c5ae7c1b2e7fe639/pyarrow-17.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:b0c6ac301093b42d34410b187bba560b17c0330f64907bfa4f7f7f2444b0cf9b", size = 39874508 }, + { url = "https://files.pythonhosted.org/packages/ae/49/baafe2a964f663413be3bd1cf5c45ed98c5e42e804e2328e18f4570027c1/pyarrow-17.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:392bc9feabc647338e6c89267635e111d71edad5fcffba204425a7c8d13610d7", size = 25099235 }, + { url = "https://files.pythonhosted.org/packages/43/e0/a898096d35be240aa61fb2d54db58b86d664b10e1e51256f9300f47565e8/pyarrow-17.0.0-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:13d7a460b412f31e4c0efa1148e1d29bdf18ad1411eb6757d38f8fbdcc8645fb", size = 29007881 }, + { url = "https://files.pythonhosted.org/packages/59/22/f7d14907ed0697b5dd488d393129f2738629fa5bcba863e00931b7975946/pyarrow-17.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9b564a51fbccfab5a04a80453e5ac6c9954a9c5ef2890d1bcf63741909c3f8df", size = 27178117 }, + { url = "https://files.pythonhosted.org/packages/bf/ee/661211feac0ed48467b1d5c57298c91403809ec3ab78b1d175e1d6ad03cf/pyarrow-17.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:32503827abbc5aadedfa235f5ece8c4f8f8b0a3cf01066bc8d29de7539532687", size = 39273896 }, + { url = "https://files.pythonhosted.org/packages/af/61/bcd9b58e38ead6ad42b9ed00da33a3f862bc1d445e3d3164799c25550ac2/pyarrow-17.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a155acc7f154b9ffcc85497509bcd0d43efb80d6f733b0dc3bb14e281f131c8b", size = 39875438 }, + { url = "https://files.pythonhosted.org/packages/75/63/29d1bfcc57af73cde3fc3baccab2f37548de512dbe0ab294b033cd203516/pyarrow-17.0.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:dec8d129254d0188a49f8a1fc99e0560dc1b85f60af729f47de4046015f9b0a5", size = 38735092 }, + { url = "https://files.pythonhosted.org/packages/39/f4/90258b4de753df7cc61cefb0312f8abcf226672e96cc64996e66afce817a/pyarrow-17.0.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:a48ddf5c3c6a6c505904545c25a4ae13646ae1f8ba703c4df4a1bfe4f4006bda", size = 39867610 }, + { url = "https://files.pythonhosted.org/packages/e7/f6/b75d4816c32f1618ed31a005ee635dd1d91d8164495d94f2ea092f594661/pyarrow-17.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:42bf93249a083aca230ba7e2786c5f673507fa97bbd9725a1e2754715151a204", size = 25148611 }, +] + +[[package]] +name = "pyarrow-hotfix" +version = "0.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/70/0a/71da7b0db0c7078d4cf34ecf0c70ded5ed29decc06612097474e0114f4cc/pyarrow_hotfix-0.6.tar.gz", hash = "sha256:79d3e030f7ff890d408a100ac16d6f00b14d44a502d7897cd9fc3e3a534e9945", size = 9754 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e4/f4/9ec2222f5f5f8ea04f66f184caafd991a39c8782e31f5b0266f101cb68ca/pyarrow_hotfix-0.6-py3-none-any.whl", hash = "sha256:dcc9ae2d220dff0083be6a9aa8e0cdee5182ad358d4931fce825c545e5c89178", size = 7888 }, +] + +[[package]] +name = "pyasn1" +version = "0.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4a/a3/d2157f333900747f20984553aca98008b6dc843eb62f3a36030140ccec0d/pyasn1-0.6.0.tar.gz", hash = "sha256:3a35ab2c4b5ef98e17dfdec8ab074046fbda76e281c5a706ccd82328cfc8f64c", size = 148088 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/23/7e/5f50d07d5e70a2addbccd90ac2950f81d1edd0783630651d9268d7f1db49/pyasn1-0.6.0-py2.py3-none-any.whl", hash = "sha256:cca4bb0f2df5504f02f6f8a775b6e416ff9b0b3b16f7ee80b5a3153d9b804473", size = 85313 }, +] + +[[package]] +name = "pyasn1-modules" +version = "0.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyasn1", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f7/00/e7bd1dec10667e3f2be602686537969a7ac92b0a7c5165be2e5875dc3971/pyasn1_modules-0.4.0.tar.gz", hash = "sha256:831dbcea1b177b28c9baddf4c6d1013c24c3accd14a1873fffaa6a2e905f17b6", size = 307859 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/13/68/8906226b15ef38e71dc926c321d2fe99de8048e9098b5dfd38343011c886/pyasn1_modules-0.4.0-py3-none-any.whl", hash = "sha256:be04f15b66c206eed667e0bb5ab27e2b1855ea54a842e5037738099e8ca4ae0b", size = 181220 }, +] + +[[package]] +name = "pycparser" +version = "2.22" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1d/b2/31537cf4b1ca988837256c910a668b553fceb8f069bedc4b1c826024b52c/pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6", size = 172736 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc", size = 117552 }, +] + +[[package]] +name = "pyctcdecode" +version = "0.5.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "hypothesis", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pygtrie", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/61/96/7dec2cb5414c388b94044f25d701ed9d08e30ba2509a4e2cf6451cdd25ed/pyctcdecode-0.5.0.tar.gz", hash = "sha256:f3bcb313e43ca16a54938b3e77b0b375328653bba932668243db745fde513a2c", size = 68451 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a5/8a/93e2118411ae5e861d4f4ce65578c62e85d0f1d9cb389bd63bd57130604e/pyctcdecode-0.5.0-py2.py3-none-any.whl", hash = "sha256:5b4282872ddc8e30fe7ac45112f4ab6134ac67fc03df0bbecf48667d032a0914", size = 39166 }, +] + +[[package]] +name = "pydantic" +version = "2.8.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "annotated-types", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pydantic-core", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/8c/99/d0a5dca411e0a017762258013ba9905cd6e7baa9a3fd1fe8b6529472902e/pydantic-2.8.2.tar.gz", hash = "sha256:6f62c13d067b0755ad1c21a34bdd06c0c12625a22b0fc09c6b149816604f7c2a", size = 739834 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1f/fa/b7f815b8c9ad021c07f88875b601222ef5e70619391ade4a49234d12d278/pydantic-2.8.2-py3-none-any.whl", hash = "sha256:73ee9fddd406dc318b885c7a2eab8a6472b68b8fb5ba8150949fc3db939f23c8", size = 423875 }, +] + +[[package]] +name = "pydantic-core" +version = "2.20.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/12/e3/0d5ad91211dba310f7ded335f4dad871172b9cc9ce204f5a56d76ccd6247/pydantic_core-2.20.1.tar.gz", hash = "sha256:26ca695eeee5f9f1aeeb211ffc12f10bcb6f71e2989988fda61dabd65db878d4", size = 388371 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6b/9d/f30f080f745682e762512f3eef1f6e392c7d74a102e6e96de8a013a5db84/pydantic_core-2.20.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:3acae97ffd19bf091c72df4d726d552c473f3576409b2a7ca36b2f535ffff4a3", size = 1837257 }, + { url = "https://files.pythonhosted.org/packages/f2/89/77e7aebdd4a235497ac1e07f0a99e9f40e47f6e0f6783fe30500df08fc42/pydantic_core-2.20.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:41f4c96227a67a013e7de5ff8f20fb496ce573893b7f4f2707d065907bffdbd6", size = 1776715 }, + { url = "https://files.pythonhosted.org/packages/18/50/5a4e9120b395108c2a0441a425356c0d26a655d7c617288bec1c28b854ac/pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5f239eb799a2081495ea659d8d4a43a8f42cd1fe9ff2e7e436295c38a10c286a", size = 1789023 }, + { url = "https://files.pythonhosted.org/packages/c7/e5/f19e13ba86b968d024b56aa53f40b24828652ac026e5addd0ae49eeada02/pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:53e431da3fc53360db73eedf6f7124d1076e1b4ee4276b36fb25514544ceb4a3", size = 1775598 }, + { url = "https://files.pythonhosted.org/packages/c9/c7/f3c29bed28bd022c783baba5bf9946c4f694cb837a687e62f453c81eb5c6/pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f1f62b2413c3a0e846c3b838b2ecd6c7a19ec6793b2a522745b0869e37ab5bc1", size = 1977691 }, + { url = "https://files.pythonhosted.org/packages/41/3e/f62c2a05c554fff34570f6788617e9670c83ed7bc07d62a55cccd1bc0be6/pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5d41e6daee2813ecceea8eda38062d69e280b39df793f5a942fa515b8ed67953", size = 2693214 }, + { url = "https://files.pythonhosted.org/packages/ae/49/8a6fe79d35e2f3bea566d8ea0e4e6f436d4f749d7838c8e8c4c5148ae706/pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3d482efec8b7dc6bfaedc0f166b2ce349df0011f5d2f1f25537ced4cfc34fd98", size = 2061047 }, + { url = "https://files.pythonhosted.org/packages/51/c6/585355c7c8561e11197dbf6333c57dd32f9f62165d48589b57ced2373d97/pydantic_core-2.20.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e93e1a4b4b33daed65d781a57a522ff153dcf748dee70b40c7258c5861e1768a", size = 1895106 }, + { url = "https://files.pythonhosted.org/packages/ce/23/829f6b87de0775919e82f8addef8b487ace1c77bb4cb754b217f7b1301b6/pydantic_core-2.20.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e7c4ea22b6739b162c9ecaaa41d718dfad48a244909fe7ef4b54c0b530effc5a", size = 1968506 }, + { url = "https://files.pythonhosted.org/packages/ca/2f/f8ca8f0c40b3ee0a4d8730a51851adb14c5eda986ec09f8d754b2fba784e/pydantic_core-2.20.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4f2790949cf385d985a31984907fecb3896999329103df4e4983a4a41e13e840", size = 2110217 }, + { url = "https://files.pythonhosted.org/packages/bb/a0/1876656c7b17eb69cc683452cce6bb890dd722222a71b3de57ddb512f561/pydantic_core-2.20.1-cp310-none-win32.whl", hash = "sha256:5e999ba8dd90e93d57410c5e67ebb67ffcaadcea0ad973240fdfd3a135506250", size = 1709669 }, + { url = "https://files.pythonhosted.org/packages/be/4a/576524eefa9b301c088c4818dc50ff1c51a88fe29efd87ab75748ae15fd7/pydantic_core-2.20.1-cp310-none-win_amd64.whl", hash = "sha256:512ecfbefef6dac7bc5eaaf46177b2de58cdf7acac8793fe033b24ece0b9566c", size = 1902386 }, + { url = "https://files.pythonhosted.org/packages/61/db/f6a724db226d990a329910727cfac43539ff6969edc217286dd05cda3ef6/pydantic_core-2.20.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:d2a8fa9d6d6f891f3deec72f5cc668e6f66b188ab14bb1ab52422fe8e644f312", size = 1834507 }, + { url = "https://files.pythonhosted.org/packages/9b/83/6f2bfe75209d557ae1c3550c1252684fc1827b8b12fbed84c3b4439e135d/pydantic_core-2.20.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:175873691124f3d0da55aeea1d90660a6ea7a3cfea137c38afa0a5ffabe37b88", size = 1773527 }, + { url = "https://files.pythonhosted.org/packages/93/ef/513ea76d7ca81f2354bb9c8d7839fc1157673e652613f7e1aff17d8ce05d/pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:37eee5b638f0e0dcd18d21f59b679686bbd18917b87db0193ae36f9c23c355fc", size = 1787879 }, + { url = "https://files.pythonhosted.org/packages/31/0a/ac294caecf235f0cc651de6232f1642bb793af448d1cfc541b0dc1fd72b8/pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:25e9185e2d06c16ee438ed39bf62935ec436474a6ac4f9358524220f1b236e43", size = 1774694 }, + { url = "https://files.pythonhosted.org/packages/46/a4/08f12b5512f095963550a7cb49ae010e3f8f3f22b45e508c2cb4d7744fce/pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:150906b40ff188a3260cbee25380e7494ee85048584998c1e66df0c7a11c17a6", size = 1976369 }, + { url = "https://files.pythonhosted.org/packages/15/59/b2495be4410462aedb399071c71884042a2c6443319cbf62d00b4a7ed7a5/pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ad4aeb3e9a97286573c03df758fc7627aecdd02f1da04516a86dc159bf70121", size = 2691250 }, + { url = "https://files.pythonhosted.org/packages/3c/ae/fc99ce1ba791c9e9d1dee04ce80eef1dae5b25b27e3fc8e19f4e3f1348bf/pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3f3ed29cd9f978c604708511a1f9c2fdcb6c38b9aae36a51905b8811ee5cbf1", size = 2061462 }, + { url = "https://files.pythonhosted.org/packages/44/bb/eb07cbe47cfd638603ce3cb8c220f1a054b821e666509e535f27ba07ca5f/pydantic_core-2.20.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0dae11d8f5ded51699c74d9548dcc5938e0804cc8298ec0aa0da95c21fff57b", size = 1893923 }, + { url = "https://files.pythonhosted.org/packages/ce/ef/5a52400553b8faa0e7f11fd7a2ba11e8d2feb50b540f9e7973c49b97eac0/pydantic_core-2.20.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:faa6b09ee09433b87992fb5a2859efd1c264ddc37280d2dd5db502126d0e7f27", size = 1966779 }, + { url = "https://files.pythonhosted.org/packages/4c/5b/fb37fe341344d9651f5c5f579639cd97d50a457dc53901aa8f7e9f28beb9/pydantic_core-2.20.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9dc1b507c12eb0481d071f3c1808f0529ad41dc415d0ca11f7ebfc666e66a18b", size = 2109044 }, + { url = "https://files.pythonhosted.org/packages/70/1a/6f7278802dbc66716661618807ab0dfa4fc32b09d1235923bbbe8b3a5757/pydantic_core-2.20.1-cp311-none-win32.whl", hash = "sha256:fa2fddcb7107e0d1808086ca306dcade7df60a13a6c347a7acf1ec139aa6789a", size = 1708265 }, + { url = "https://files.pythonhosted.org/packages/35/7f/58758c42c61b0bdd585158586fecea295523d49933cb33664ea888162daf/pydantic_core-2.20.1-cp311-none-win_amd64.whl", hash = "sha256:40a783fb7ee353c50bd3853e626f15677ea527ae556429453685ae32280c19c2", size = 1901750 }, + { url = "https://files.pythonhosted.org/packages/6f/47/ef0d60ae23c41aced42921728650460dc831a0adf604bfa66b76028cb4d0/pydantic_core-2.20.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:595ba5be69b35777474fa07f80fc260ea71255656191adb22a8c53aba4479231", size = 1839225 }, + { url = "https://files.pythonhosted.org/packages/6a/23/430f2878c9cd977a61bb39f71751d9310ec55cee36b3d5bf1752c6341fd0/pydantic_core-2.20.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a4f55095ad087474999ee28d3398bae183a66be4823f753cd7d67dd0153427c9", size = 1768604 }, + { url = "https://files.pythonhosted.org/packages/9e/2b/ec4e7225dee79e0dc80ccc3c35ab33cc2c4bbb8a1a7ecf060e5e453651ec/pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f9aa05d09ecf4c75157197f27cdc9cfaeb7c5f15021c6373932bf3e124af029f", size = 1789767 }, + { url = "https://files.pythonhosted.org/packages/64/b0/38b24a1fa6d2f96af3148362e10737ec073768cd44d3ec21dca3be40a519/pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e97fdf088d4b31ff4ba35db26d9cc472ac7ef4a2ff2badeabf8d727b3377fc52", size = 1772061 }, + { url = "https://files.pythonhosted.org/packages/5e/da/bb73274c42cb60decfa61e9eb0c9029da78b3b9af0a9de0309dbc8ff87b6/pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bc633a9fe1eb87e250b5c57d389cf28998e4292336926b0b6cdaee353f89a237", size = 1974573 }, + { url = "https://files.pythonhosted.org/packages/c8/65/41693110fb3552556180460daffdb8bbeefb87fc026fd9aa4b849374015c/pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d573faf8eb7e6b1cbbcb4f5b247c60ca8be39fe2c674495df0eb4318303137fe", size = 2625596 }, + { url = "https://files.pythonhosted.org/packages/09/b3/a5a54b47cccd1ab661ed5775235c5e06924753c2d4817737c5667bfa19a8/pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:26dc97754b57d2fd00ac2b24dfa341abffc380b823211994c4efac7f13b9e90e", size = 2099064 }, + { url = "https://files.pythonhosted.org/packages/52/fa/443a7a6ea54beaba45ff3a59f3d3e6e3004b7460bcfb0be77bcf98719d3b/pydantic_core-2.20.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:33499e85e739a4b60c9dac710c20a08dc73cb3240c9a0e22325e671b27b70d24", size = 1900345 }, + { url = "https://files.pythonhosted.org/packages/8e/e6/9aca9ffae60f9cdf0183069de3e271889b628d0fb175913fcb3db5618fb1/pydantic_core-2.20.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:bebb4d6715c814597f85297c332297c6ce81e29436125ca59d1159b07f423eb1", size = 1968252 }, + { url = "https://files.pythonhosted.org/packages/46/5e/6c716810ea20a6419188992973a73c2fb4eb99cd382368d0637ddb6d3c99/pydantic_core-2.20.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:516d9227919612425c8ef1c9b869bbbee249bc91912c8aaffb66116c0b447ebd", size = 2119191 }, + { url = "https://files.pythonhosted.org/packages/06/fc/6123b00a9240fbb9ae0babad7a005d51103d9a5d39c957a986f5cdd0c271/pydantic_core-2.20.1-cp312-none-win32.whl", hash = "sha256:469f29f9093c9d834432034d33f5fe45699e664f12a13bf38c04967ce233d688", size = 1717788 }, + { url = "https://files.pythonhosted.org/packages/d5/36/e61ad5a46607a469e2786f398cd671ebafcd9fb17f09a2359985c7228df5/pydantic_core-2.20.1-cp312-none-win_amd64.whl", hash = "sha256:035ede2e16da7281041f0e626459bcae33ed998cca6a0a007a5ebb73414ac72d", size = 1898188 }, + { url = "https://files.pythonhosted.org/packages/49/75/40b0e98b658fdba02a693b3bacb4c875a28bba87796c7b13975976597d8c/pydantic_core-2.20.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:0827505a5c87e8aa285dc31e9ec7f4a17c81a813d45f70b1d9164e03a813a686", size = 1838688 }, + { url = "https://files.pythonhosted.org/packages/75/02/d8ba2d4a266591a6a623c68b331b96523d4b62ab82a951794e3ed8907390/pydantic_core-2.20.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:19c0fa39fa154e7e0b7f82f88ef85faa2a4c23cc65aae2f5aea625e3c13c735a", size = 1768409 }, + { url = "https://files.pythonhosted.org/packages/91/ae/25ecd9bc4ce4993e99a1a3c9ab111c082630c914260e129572fafed4ecc2/pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa223cd1e36b642092c326d694d8bf59b71ddddc94cdb752bbbb1c5c91d833b", size = 1789317 }, + { url = "https://files.pythonhosted.org/packages/7a/80/72057580681cdbe55699c367963d9c661b569a1d39338b4f6239faf36cdc/pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c336a6d235522a62fef872c6295a42ecb0c4e1d0f1a3e500fe949415761b8a19", size = 1771949 }, + { url = "https://files.pythonhosted.org/packages/a2/be/d9bbabc55b05019013180f141fcaf3b14dbe15ca7da550e95b60c321009a/pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7eb6a0587eded33aeefea9f916899d42b1799b7b14b8f8ff2753c0ac1741edac", size = 1974392 }, + { url = "https://files.pythonhosted.org/packages/79/2d/7bcd938c6afb0f40293283f5f09988b61fb0a4f1d180abe7c23a2f665f8e/pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:70c8daf4faca8da5a6d655f9af86faf6ec2e1768f4b8b9d0226c02f3d6209703", size = 2625565 }, + { url = "https://files.pythonhosted.org/packages/ac/88/ca758e979457096008a4b16a064509028e3e092a1e85a5ed6c18ced8da88/pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9fa4c9bf273ca41f940bceb86922a7667cd5bf90e95dbb157cbb8441008482c", size = 2098784 }, + { url = "https://files.pythonhosted.org/packages/eb/de/2fad6d63c3c42e472e985acb12ec45b7f56e42e6f4cd6dfbc5e87ee8678c/pydantic_core-2.20.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:11b71d67b4725e7e2a9f6e9c0ac1239bbc0c48cce3dc59f98635efc57d6dac83", size = 1900198 }, + { url = "https://files.pythonhosted.org/packages/fe/50/077c7f35b6488dc369a6d22993af3a37901e198630f38ac43391ca730f5b/pydantic_core-2.20.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:270755f15174fb983890c49881e93f8f1b80f0b5e3a3cc1394a255706cabd203", size = 1968005 }, + { url = "https://files.pythonhosted.org/packages/5d/1f/f378631574ead46d636b9a04a80ff878b9365d4b361b1905ef1667d4182a/pydantic_core-2.20.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:c81131869240e3e568916ef4c307f8b99583efaa60a8112ef27a366eefba8ef0", size = 2118920 }, + { url = "https://files.pythonhosted.org/packages/7a/ea/e4943f17df7a3031d709481fe4363d4624ae875a6409aec34c28c9e6cf59/pydantic_core-2.20.1-cp313-none-win32.whl", hash = "sha256:b91ced227c41aa29c672814f50dbb05ec93536abf8f43cd14ec9521ea09afe4e", size = 1717397 }, + { url = "https://files.pythonhosted.org/packages/13/63/b95781763e8d84207025071c0cec16d921c0163c7a9033ae4b9a0e020dc7/pydantic_core-2.20.1-cp313-none-win_amd64.whl", hash = "sha256:65db0f2eefcaad1a3950f498aabb4875c8890438bc80b19362cf633b87a8ab20", size = 1898013 }, + { url = "https://files.pythonhosted.org/packages/17/c3/803028de61ce9a1fe1643f77ff845807c76298bf1995fa216c4ae853c6b9/pydantic_core-2.20.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:b03f7941783b4c4a26051846dea594628b38f6940a2fdc0df00b221aed39314c", size = 1838087 }, + { url = "https://files.pythonhosted.org/packages/77/f7/25f1fba7ea1ae052e20b234e4c66d54b129e5b3f4d1e6c0da6534dbf57c3/pydantic_core-2.20.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1eedfeb6089ed3fad42e81a67755846ad4dcc14d73698c120a82e4ccf0f1f9f6", size = 1722218 }, + { url = "https://files.pythonhosted.org/packages/57/53/fe2e1ae3795b7a69f81913584174f8ed36446b56df734565260830a3632b/pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:635fee4e041ab9c479e31edda27fcf966ea9614fff1317e280d99eb3e5ab6fe2", size = 1788970 }, + { url = "https://files.pythonhosted.org/packages/13/80/d9c698486f8fb64b0945e0844c95eef3bcff920941eda30d556deadadbdf/pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:77bf3ac639c1ff567ae3b47f8d4cc3dc20f9966a2a6dd2311dcc055d3d04fb8a", size = 1775836 }, + { url = "https://files.pythonhosted.org/packages/0f/0c/ab6df185529c0ce1a6d916f9d159de389cc7de44eaa9362efc76495fb821/pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7ed1b0132f24beeec5a78b67d9388656d03e6a7c837394f99257e2d55b461611", size = 1978099 }, + { url = "https://files.pythonhosted.org/packages/0e/9f/3094afeb286c60ec08088d938b661a561f3d23cd2e88a90a92ab0ecfce4f/pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c6514f963b023aeee506678a1cf821fe31159b925c4b76fe2afa94cc70b3222b", size = 2693403 }, + { url = "https://files.pythonhosted.org/packages/9b/f1/a006955715be98093d092aa025f604c7c00721e83fe04bf467c49f31a685/pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10d4204d8ca33146e761c79f83cc861df20e7ae9f6487ca290a97702daf56006", size = 2061754 }, + { url = "https://files.pythonhosted.org/packages/32/f6/cd2e7bd0a52e2a72841f60c32e62b269995c34bdb13e4d1e799be834338a/pydantic_core-2.20.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2d036c7187b9422ae5b262badb87a20a49eb6c5238b2004e96d4da1231badef1", size = 1895490 }, + { url = "https://files.pythonhosted.org/packages/ac/22/34ce27579901fcca525f8adce7747760407cf284c4f0fec6d4542265b451/pydantic_core-2.20.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9ebfef07dbe1d93efb94b4700f2d278494e9162565a54f124c404a5656d7ff09", size = 1968678 }, + { url = "https://files.pythonhosted.org/packages/2f/3a/80df9b0b5ea5e5b8939285c600dc9ce4a185317f5fb065a37e77a20cbdb3/pydantic_core-2.20.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:6b9d9bb600328a1ce523ab4f454859e9d439150abb0906c5a1983c146580ebab", size = 2110873 }, + { url = "https://files.pythonhosted.org/packages/ec/26/998c9b8dadcdeafbc833964ef5975cd0c7516b0157575b26300d078ae239/pydantic_core-2.20.1-cp39-none-win32.whl", hash = "sha256:784c1214cb6dd1e3b15dd8b91b9a53852aed16671cc3fbe4786f4f1db07089e2", size = 1709309 }, + { url = "https://files.pythonhosted.org/packages/ed/36/67aeb15996618882c5cfe85dbeffefe09e2806cd86bdd37bca40753e82a1/pydantic_core-2.20.1-cp39-none-win_amd64.whl", hash = "sha256:d2fe69c5434391727efa54b47a1e7986bb0186e72a41b203df8f5b0a19a4f669", size = 1905736 }, + { url = "https://files.pythonhosted.org/packages/73/73/0c7265903f66cce39ed7ca939684fba344210cefc91ccc999cfd5b113fd3/pydantic_core-2.20.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:a45f84b09ac9c3d35dfcf6a27fd0634d30d183205230a0ebe8373a0e8cfa0906", size = 1828190 }, + { url = "https://files.pythonhosted.org/packages/27/55/60b8b0e58b49ee3ed36a18562dd7c6bc06a551c390e387af5872a238f2ec/pydantic_core-2.20.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:d02a72df14dfdbaf228424573a07af10637bd490f0901cee872c4f434a735b94", size = 1715252 }, + { url = "https://files.pythonhosted.org/packages/28/3d/d66314bad6bb777a36559195a007b31e916bd9e2c198f7bb8f4ccdceb4fa/pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d2b27e6af28f07e2f195552b37d7d66b150adbaa39a6d327766ffd695799780f", size = 1782641 }, + { url = "https://files.pythonhosted.org/packages/9e/f5/f178f4354d0d6c1431a8f9ede71f3c4269ac4dc55d314fdb7555814276dc/pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:084659fac3c83fd674596612aeff6041a18402f1e1bc19ca39e417d554468482", size = 1928788 }, + { url = "https://files.pythonhosted.org/packages/9c/51/1f5e27bb194df79e30b593b608c66e881ed481241e2b9ed5bdf86d165480/pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:242b8feb3c493ab78be289c034a1f659e8826e2233786e36f2893a950a719bb6", size = 1886116 }, + { url = "https://files.pythonhosted.org/packages/ac/76/450d9258c58dc7c70b9e3aadf6bebe23ddd99e459c365e2adbde80e238da/pydantic_core-2.20.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:38cf1c40a921d05c5edc61a785c0ddb4bed67827069f535d794ce6bcded919fc", size = 1960125 }, + { url = "https://files.pythonhosted.org/packages/dd/9e/0309a7a4bea51771729515e413b3987be0789837de99087f7415e0db1f9b/pydantic_core-2.20.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:e0bbdd76ce9aa5d4209d65f2b27fc6e5ef1312ae6c5333c26db3f5ade53a1e99", size = 2100407 }, + { url = "https://files.pythonhosted.org/packages/af/93/06d44e08277b3b818b75bd5f25e879d7693e4b7dd3505fde89916fcc9ca2/pydantic_core-2.20.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:254ec27fdb5b1ee60684f91683be95e5133c994cc54e86a0b0963afa25c8f8a6", size = 1914966 }, + { url = "https://files.pythonhosted.org/packages/ff/d0/639b12bc7c81ebcbbd5f946327e8970089b23fa5b11d7abb56495cbdc0de/pydantic_core-2.20.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:407653af5617f0757261ae249d3fba09504d7a71ab36ac057c938572d1bc9331", size = 1829108 }, + { url = "https://files.pythonhosted.org/packages/f1/80/3b9d7fb8b4f8d36e24373334740c0b88d9ded08342543a72e9247b4fa410/pydantic_core-2.20.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:c693e916709c2465b02ca0ad7b387c4f8423d1db7b4649c551f27a529181c5ad", size = 1716448 }, + { url = "https://files.pythonhosted.org/packages/2f/c6/f80ea0fac8c241c066245fe918cdc9d105985a1a8726aced9478548c9e37/pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5b5ff4911aea936a47d9376fd3ab17e970cc543d1b68921886e7f64bd28308d1", size = 1783620 }, + { url = "https://files.pythonhosted.org/packages/d5/3e/9af260156f79347ed3e64149836d69bfe1e0c5efadec6116a879fc31c9ec/pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:177f55a886d74f1808763976ac4efd29b7ed15c69f4d838bbd74d9d09cf6fa86", size = 1929929 }, + { url = "https://files.pythonhosted.org/packages/d1/fe/8c3e928e10a97eb8e85b18a53ed3288d039cf0fd7b0fe8d3258f14e8500a/pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:964faa8a861d2664f0c7ab0c181af0bea66098b1919439815ca8803ef136fc4e", size = 1886708 }, + { url = "https://files.pythonhosted.org/packages/31/26/b670bd58f1de902c099ff623fe62b9820448a20d70437e7698a57b922d3a/pydantic_core-2.20.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:4dd484681c15e6b9a977c785a345d3e378d72678fd5f1f3c0509608da24f2ac0", size = 1960709 }, + { url = "https://files.pythonhosted.org/packages/de/ee/322cad098a0cffc81e985ac2a298d3f29a1da25efe7dc1fb5cd2615c5b04/pydantic_core-2.20.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:f6d6cff3538391e8486a431569b77921adfcdef14eb18fbf19b7c0a5294d4e6a", size = 2101218 }, + { url = "https://files.pythonhosted.org/packages/07/8b/30233f741e16b35499fa2fad2f4a69eb127eec6c850a1b14af26e7b08b73/pydantic_core-2.20.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:a6d511cc297ff0883bc3708b465ff82d7560193169a8b93260f74ecb0a5e08a7", size = 1915399 }, +] + +[[package]] +name = "pygments" +version = "2.18.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8e/62/8336eff65bcbc8e4cb5d05b55faf041285951b6e80f33e2bff2024788f31/pygments-2.18.0.tar.gz", hash = "sha256:786ff802f32e91311bff3889f6e9a86e81505fe99f2735bb6d60ae0c5004f199", size = 4891905 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f7/3f/01c8b82017c199075f8f788d0d906b9ffbbc5a47dc9918a945e13d5a2bda/pygments-2.18.0-py3-none-any.whl", hash = "sha256:b8e6aca0523f3ab76fee51799c488e38782ac06eafcf95e7ba832985c8e7b13a", size = 1205513 }, +] + +[[package]] +name = "pygtrie" +version = "2.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b9/13/55deec25bf09383216fa7f1dfcdbfca40a04aa00b6d15a5cbf25af8fce5f/pygtrie-2.5.0.tar.gz", hash = "sha256:203514ad826eb403dab1d2e2ddd034e0d1534bbe4dbe0213bb0593f66beba4e2", size = 39266 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ec/cd/bd196b2cf014afb1009de8b0f05ecd54011d881944e62763f3c1b1e8ef37/pygtrie-2.5.0-py3-none-any.whl", hash = "sha256:8795cda8105493d5ae159a5bef313ff13156c5d4d72feddefacaad59f8c8ce16", size = 25099 }, +] + +[[package]] +name = "pylatexenc" +version = "2.10" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/5d/ab/34ec41718af73c00119d0351b7a2531d2ebddb51833a36448fc7b862be60/pylatexenc-2.10.tar.gz", hash = "sha256:3dd8fd84eb46dc30bee1e23eaab8d8fb5a7f507347b23e5f38ad9675c84f40d3", size = 162597 } + +[[package]] +name = "pynvml" +version = "11.5.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e4/e9/9931792cb776716363fc7c3039b477d11278173d71ddc230eb9b5f4ce93f/pynvml-11.5.3.tar.gz", hash = "sha256:183d223ae487e5f00402d8da06c68c978ef8a9295793ee75559839c6ade7b229", size = 73685 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/54/5b/16e50abf152be7f18120f11dfff495014a9eaff7b764626e1656f04ad262/pynvml-11.5.3-py3-none-any.whl", hash = "sha256:a5fba3ab14febda50d19dbda012ef62ae0aed45b7ccc07af0bc5be79223e450c", size = 53135 }, +] + +[[package]] +name = "pyparsing" +version = "3.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/46/3a/31fd28064d016a2182584d579e033ec95b809d8e220e74c4af6f0f2e8842/pyparsing-3.1.2.tar.gz", hash = "sha256:a1bac0ce561155ecc3ed78ca94d3c9378656ad4c94c1270de543f621420f94ad", size = 889571 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9d/ea/6d76df31432a0e6fdf81681a895f009a4bb47b3c39036db3e1b528191d52/pyparsing-3.1.2-py3-none-any.whl", hash = "sha256:f9db75911801ed778fe61bb643079ff86601aca99fcae6345aa67292038fb742", size = 103245 }, +] + +[[package]] +name = "pypng" +version = "0.20220715.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/93/cd/112f092ec27cca83e0516de0a3368dbd9128c187fb6b52aaaa7cde39c96d/pypng-0.20220715.0.tar.gz", hash = "sha256:739c433ba96f078315de54c0db975aee537cbc3e1d0ae4ed9aab0ca1e427e2c1", size = 128992 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3e/b9/3766cc361d93edb2ce81e2e1f87dd98f314d7d513877a342d31b30741680/pypng-0.20220715.0-py3-none-any.whl", hash = "sha256:4a43e969b8f5aaafb2a415536c1a8ec7e341cd6a3f957fd5b5f32a4cfeed902c", size = 58057 }, +] + +[[package]] +name = "pyreadline3" +version = "3.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d7/86/3d61a61f36a0067874a00cb4dceb9028d34b6060e47828f7fc86fb9f7ee9/pyreadline3-3.4.1.tar.gz", hash = "sha256:6f3d1f7b8a31ba32b73917cefc1f28cc660562f39aea8646d30bd6eff21f7bae", size = 86465 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/56/fc/a3c13ded7b3057680c8ae95a9b6cc83e63657c38e0005c400a5d018a33a7/pyreadline3-3.4.1-py3-none-any.whl", hash = "sha256:b0efb6516fd4fb07b45949053826a62fa4cb353db5be2bbb4a7aa1fdd1e345fb", size = 95203 }, +] + +[[package]] +name = "pytest" +version = "7.4.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "exceptiongroup", marker = "python_version < '3.11'" }, + { name = "iniconfig", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pluggy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tomli", marker = "python_version < '3.11'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/80/1f/9d8e98e4133ffb16c90f3b405c43e38d3abb715bb5d7a63a5a684f7e46a3/pytest-7.4.4.tar.gz", hash = "sha256:2cf0005922c6ace4a3e2ec8b4080eb0d9753fdc93107415332f50ce9e7994280", size = 1357116 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/51/ff/f6e8b8f39e08547faece4bd80f89d5a8de68a38b2d179cc1c4490ffa3286/pytest-7.4.4-py3-none-any.whl", hash = "sha256:b090cdf5ed60bf4c45261be03239c2c1c22df034fbffe691abe93cd80cea01d8", size = 325287 }, +] + +[[package]] +name = "pytest-timeout" +version = "2.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pytest", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/93/0d/04719abc7a4bdb3a7a1f968f24b0f5253d698c9cc94975330e9d3145befb/pytest-timeout-2.3.1.tar.gz", hash = "sha256:12397729125c6ecbdaca01035b9e5239d4db97352320af155b3f5de1ba5165d9", size = 17697 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/03/27/14af9ef8321f5edc7527e47def2a21d8118c6f329a9342cc61387a0c0599/pytest_timeout-2.3.1-py3-none-any.whl", hash = "sha256:68188cb703edfc6a18fad98dc25a3c61e9f24d644b0b70f33af545219fc7813e", size = 14148 }, +] + +[[package]] +name = "pytest-xdist" +version = "3.6.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "execnet", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pytest", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/41/c4/3c310a19bc1f1e9ef50075582652673ef2bfc8cd62afef9585683821902f/pytest_xdist-3.6.1.tar.gz", hash = "sha256:ead156a4db231eec769737f57668ef58a2084a34b2e55c4a8fa20d861107300d", size = 84060 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6d/82/1d96bf03ee4c0fdc3c0cbe61470070e659ca78dc0086fb88b66c185e2449/pytest_xdist-3.6.1-py3-none-any.whl", hash = "sha256:9ed4adfb68a016610848639bb7e02c9352d5d9f03d04809919e2dafc3be4cca7", size = 46108 }, +] + +[[package]] +name = "python-dateutil" +version = "2.9.0.post0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892 }, +] + +[[package]] +name = "python-slugify" +version = "8.0.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "text-unidecode", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/87/c7/5e1547c44e31da50a460df93af11a535ace568ef89d7a811069ead340c4a/python-slugify-8.0.4.tar.gz", hash = "sha256:59202371d1d05b54a9e7720c5e038f928f45daaffe41dd10822f3907b937c856", size = 10921 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a4/62/02da182e544a51a5c3ccf4b03ab79df279f9c60c5e82d5e8bec7ca26ac11/python_slugify-8.0.4-py2.py3-none-any.whl", hash = "sha256:276540b79961052b66b7d116620b36518847f52d5fd9e3a70164fc8c50faa6b8", size = 10051 }, +] + +[[package]] +name = "pytz" +version = "2024.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/90/26/9f1f00a5d021fff16dee3de13d43e5e978f3d58928e129c3a62cf7eb9738/pytz-2024.1.tar.gz", hash = "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812", size = 316214 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9c/3d/a121f284241f08268b21359bd425f7d4825cffc5ac5cd0e1b3d82ffd2b10/pytz-2024.1-py2.py3-none-any.whl", hash = "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319", size = 505474 }, +] + +[[package]] +name = "pywin32" +version = "306" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/08/dc/28c668097edfaf4eac4617ef7adf081b9cf50d254672fcf399a70f5efc41/pywin32-306-cp310-cp310-win32.whl", hash = "sha256:06d3420a5155ba65f0b72f2699b5bacf3109f36acbe8923765c22938a69dfc8d", size = 8506422 }, + { url = "https://files.pythonhosted.org/packages/d3/d6/891894edec688e72c2e308b3243fad98b4066e1839fd2fe78f04129a9d31/pywin32-306-cp310-cp310-win_amd64.whl", hash = "sha256:84f4471dbca1887ea3803d8848a1616429ac94a4a8d05f4bc9c5dcfd42ca99c8", size = 9226392 }, + { url = "https://files.pythonhosted.org/packages/8b/1e/fc18ad83ca553e01b97aa8393ff10e33c1fb57801db05488b83282ee9913/pywin32-306-cp311-cp311-win32.whl", hash = "sha256:e65028133d15b64d2ed8f06dd9fbc268352478d4f9289e69c190ecd6818b6407", size = 8507689 }, + { url = "https://files.pythonhosted.org/packages/7e/9e/ad6b1ae2a5ad1066dc509350e0fbf74d8d50251a51e420a2a8feaa0cecbd/pywin32-306-cp311-cp311-win_amd64.whl", hash = "sha256:a7639f51c184c0272e93f244eb24dafca9b1855707d94c192d4a0b4c01e1100e", size = 9227547 }, + { url = "https://files.pythonhosted.org/packages/91/20/f744bff1da8f43388498503634378dbbefbe493e65675f2cc52f7185c2c2/pywin32-306-cp311-cp311-win_arm64.whl", hash = "sha256:70dba0c913d19f942a2db25217d9a1b726c278f483a919f1abfed79c9cf64d3a", size = 10388324 }, + { url = "https://files.pythonhosted.org/packages/14/91/17e016d5923e178346aabda3dfec6629d1a26efe587d19667542105cf0a6/pywin32-306-cp312-cp312-win32.whl", hash = "sha256:383229d515657f4e3ed1343da8be101000562bf514591ff383ae940cad65458b", size = 8507705 }, + { url = "https://files.pythonhosted.org/packages/83/1c/25b79fc3ec99b19b0a0730cc47356f7e2959863bf9f3cd314332bddb4f68/pywin32-306-cp312-cp312-win_amd64.whl", hash = "sha256:37257794c1ad39ee9be652da0462dc2e394c8159dfd913a8a4e8eb6fd346da0e", size = 9227429 }, + { url = "https://files.pythonhosted.org/packages/1c/43/e3444dc9a12f8365d9603c2145d16bf0a2f8180f343cf87be47f5579e547/pywin32-306-cp312-cp312-win_arm64.whl", hash = "sha256:5821ec52f6d321aa59e2db7e0a35b997de60c201943557d108af9d4ae1ec7040", size = 10388145 }, + { url = "https://files.pythonhosted.org/packages/7e/7f/419c4fcadcaa374a0ae41cbdf6c3a81452892dd6c523aea629d17e49146e/pywin32-306-cp39-cp39-win32.whl", hash = "sha256:e25fd5b485b55ac9c057f67d94bc203f3f6595078d1fb3b458c9c28b7153a802", size = 8573451 }, + { url = "https://files.pythonhosted.org/packages/1c/f7/24d8ed4fd9c43b90354df7764f81f0dd5e623f9a50f1538f90fe085d6dff/pywin32-306-cp39-cp39-win_amd64.whl", hash = "sha256:39b61c15272833b5c329a2989999dcae836b1eed650252ab1b7bfbe1d59f30f4", size = 9312883 }, +] + +[[package]] +name = "pyyaml" +version = "6.0.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/54/ed/79a089b6be93607fa5cdaedf301d7dfb23af5f25c398d5ead2525b063e17/pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e", size = 130631 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9b/95/a3fac87cb7158e231b5a6012e438c647e1a87f09f8e0d123acec8ab8bf71/PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086", size = 184199 }, + { url = "https://files.pythonhosted.org/packages/c7/7a/68bd47624dab8fd4afbfd3c48e3b79efe09098ae941de5b58abcbadff5cb/PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf", size = 171758 }, + { url = "https://files.pythonhosted.org/packages/49/ee/14c54df452143b9ee9f0f29074d7ca5516a36edb0b4cc40c3f280131656f/PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237", size = 718463 }, + { url = "https://files.pythonhosted.org/packages/4d/61/de363a97476e766574650d742205be468921a7b532aa2499fcd886b62530/PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b", size = 719280 }, + { url = "https://files.pythonhosted.org/packages/6b/4e/1523cb902fd98355e2e9ea5e5eb237cbc5f3ad5f3075fa65087aa0ecb669/PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed", size = 751239 }, + { url = "https://files.pythonhosted.org/packages/b7/33/5504b3a9a4464893c32f118a9cc045190a91637b119a9c881da1cf6b7a72/PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180", size = 695802 }, + { url = "https://files.pythonhosted.org/packages/5c/20/8347dcabd41ef3a3cdc4f7b7a2aff3d06598c8779faa189cdbf878b626a4/PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68", size = 720527 }, + { url = "https://files.pythonhosted.org/packages/be/aa/5afe99233fb360d0ff37377145a949ae258aaab831bde4792b32650a4378/PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99", size = 144052 }, + { url = "https://files.pythonhosted.org/packages/b5/84/0fa4b06f6d6c958d207620fc60005e241ecedceee58931bb20138e1e5776/PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e", size = 161774 }, + { url = "https://files.pythonhosted.org/packages/f8/aa/7af4e81f7acba21a4c6be026da38fd2b872ca46226673c89a758ebdc4fd2/PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774", size = 184612 }, + { url = "https://files.pythonhosted.org/packages/8b/62/b9faa998fd185f65c1371643678e4d58254add437edb764a08c5a98fb986/PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee", size = 172040 }, + { url = "https://files.pythonhosted.org/packages/ad/0c/c804f5f922a9a6563bab712d8dcc70251e8af811fce4524d57c2c0fd49a4/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c", size = 736829 }, + { url = "https://files.pythonhosted.org/packages/51/16/6af8d6a6b210c8e54f1406a6b9481febf9c64a3109c541567e35a49aa2e7/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317", size = 764167 }, + { url = "https://files.pythonhosted.org/packages/75/e4/2c27590dfc9992f73aabbeb9241ae20220bd9452df27483b6e56d3975cc5/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85", size = 762952 }, + { url = "https://files.pythonhosted.org/packages/9b/97/ecc1abf4a823f5ac61941a9c00fe501b02ac3ab0e373c3857f7d4b83e2b6/PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4", size = 735301 }, + { url = "https://files.pythonhosted.org/packages/45/73/0f49dacd6e82c9430e46f4a027baa4ca205e8b0a9dce1397f44edc23559d/PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e", size = 756638 }, + { url = "https://files.pythonhosted.org/packages/22/5f/956f0f9fc65223a58fbc14459bf34b4cc48dec52e00535c79b8db361aabd/PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5", size = 143850 }, + { url = "https://files.pythonhosted.org/packages/ed/23/8da0bbe2ab9dcdd11f4f4557ccaf95c10b9811b13ecced089d43ce59c3c8/PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44", size = 161980 }, + { url = "https://files.pythonhosted.org/packages/86/0c/c581167fc46d6d6d7ddcfb8c843a4de25bdd27e4466938109ca68492292c/PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab", size = 183873 }, + { url = "https://files.pythonhosted.org/packages/a8/0c/38374f5bb272c051e2a69281d71cba6fdb983413e6758b84482905e29a5d/PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725", size = 173302 }, + { url = "https://files.pythonhosted.org/packages/c3/93/9916574aa8c00aa06bbac729972eb1071d002b8e158bd0e83a3b9a20a1f7/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5", size = 739154 }, + { url = "https://files.pythonhosted.org/packages/95/0f/b8938f1cbd09739c6da569d172531567dbcc9789e0029aa070856f123984/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425", size = 766223 }, + { url = "https://files.pythonhosted.org/packages/b9/2b/614b4752f2e127db5cc206abc23a8c19678e92b23c3db30fc86ab731d3bd/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476", size = 767542 }, + { url = "https://files.pythonhosted.org/packages/d4/00/dd137d5bcc7efea1836d6264f049359861cf548469d18da90cd8216cf05f/PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48", size = 731164 }, + { url = "https://files.pythonhosted.org/packages/c9/1f/4f998c900485e5c0ef43838363ba4a9723ac0ad73a9dc42068b12aaba4e4/PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b", size = 756611 }, + { url = "https://files.pythonhosted.org/packages/df/d1/f5a275fdb252768b7a11ec63585bc38d0e87c9e05668a139fea92b80634c/PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4", size = 140591 }, + { url = "https://files.pythonhosted.org/packages/0c/e8/4f648c598b17c3d06e8753d7d13d57542b30d56e6c2dedf9c331ae56312e/PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8", size = 156338 }, + { url = "https://files.pythonhosted.org/packages/ef/e3/3af305b830494fa85d95f6d95ef7fa73f2ee1cc8ef5b495c7c3269fb835f/PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba", size = 181309 }, + { url = "https://files.pythonhosted.org/packages/45/9f/3b1c20a0b7a3200524eb0076cc027a970d320bd3a6592873c85c92a08731/PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1", size = 171679 }, + { url = "https://files.pythonhosted.org/packages/7c/9a/337322f27005c33bcb656c655fa78325b730324c78620e8328ae28b64d0c/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133", size = 733428 }, + { url = "https://files.pythonhosted.org/packages/a3/69/864fbe19e6c18ea3cc196cbe5d392175b4cf3d5d0ac1403ec3f2d237ebb5/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484", size = 763361 }, + { url = "https://files.pythonhosted.org/packages/04/24/b7721e4845c2f162d26f50521b825fb061bc0a5afcf9a386840f23ea19fa/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5", size = 759523 }, + { url = "https://files.pythonhosted.org/packages/2b/b2/e3234f59ba06559c6ff63c4e10baea10e5e7df868092bf9ab40e5b9c56b6/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc", size = 726660 }, + { url = "https://files.pythonhosted.org/packages/fe/0f/25911a9f080464c59fab9027482f822b86bf0608957a5fcc6eaac85aa515/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652", size = 751597 }, + { url = "https://files.pythonhosted.org/packages/14/0d/e2c3b43bbce3cf6bd97c840b46088a3031085179e596d4929729d8d68270/PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183", size = 140527 }, + { url = "https://files.pythonhosted.org/packages/fa/de/02b54f42487e3d3c6efb3f89428677074ca7bf43aae402517bc7cca949f3/PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563", size = 156446 }, + { url = "https://files.pythonhosted.org/packages/65/d8/b7a1db13636d7fb7d4ff431593c510c8b8fca920ade06ca8ef20015493c5/PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d", size = 184777 }, + { url = "https://files.pythonhosted.org/packages/0a/02/6ec546cd45143fdf9840b2c6be8d875116a64076218b61d68e12548e5839/PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f", size = 172318 }, + { url = "https://files.pythonhosted.org/packages/0e/9a/8cc68be846c972bda34f6c2a93abb644fb2476f4dcc924d52175786932c9/PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290", size = 720891 }, + { url = "https://files.pythonhosted.org/packages/e9/6c/6e1b7f40181bc4805e2e07f4abc10a88ce4648e7e95ff1abe4ae4014a9b2/PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12", size = 722614 }, + { url = "https://files.pythonhosted.org/packages/3d/32/e7bd8535d22ea2874cef6a81021ba019474ace0d13a4819c2a4bce79bd6a/PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19", size = 737360 }, + { url = "https://files.pythonhosted.org/packages/d7/12/7322c1e30b9be969670b672573d45479edef72c9a0deac3bb2868f5d7469/PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e", size = 699006 }, + { url = "https://files.pythonhosted.org/packages/82/72/04fcad41ca56491995076630c3ec1e834be241664c0c09a64c9a2589b507/PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725", size = 723577 }, + { url = "https://files.pythonhosted.org/packages/ed/5e/46168b1f2757f1fcd442bc3029cd8767d88a98c9c05770d8b420948743bb/PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631", size = 144593 }, + { url = "https://files.pythonhosted.org/packages/19/87/5124b1c1f2412bb95c59ec481eaf936cd32f0fe2a7b16b97b81c4c017a6a/PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8", size = 162312 }, +] + +[[package]] +name = "ray" +version = "2.34.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "aiosignal", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "click", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "filelock", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "frozenlist", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jsonschema", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "msgpack", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/b9/e2/c9de6de344126f77e159e31dc36e2de131b81dc94b9e63172a963e8cd36a/ray-2.34.0-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:fb994a9f45aacb6edac32d97327f145a99c0db0b576c6c2217902b44e8fd8565", size = 65602162 }, + { url = "https://files.pythonhosted.org/packages/88/8b/eb8f2b8976ed1193c40dae62ed77eb1841258f4b547ca6f2fcc0038eb58b/ray-2.34.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6acb3d712e3f001ed8e3c0e1403f65e550adc8b558098f188d43b427e1f024c8", size = 63036107 }, + { url = "https://files.pythonhosted.org/packages/8e/bf/7b7f664184561415ced1890df70bc0a976654342c3698f3cae2268f2fcb3/ray-2.34.0-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:a2e909445fdddc7e9f318894aa3d9b5a9e79d3b4320e9c84b3703d1df908d359", size = 64003172 }, + { url = "https://files.pythonhosted.org/packages/83/d8/55fbc4ecde193abaf2c4a3ede8dd9a83de33afb5a88f484e2bc18e09f7a0/ray-2.34.0-cp310-cp310-manylinux2014_x86_64.whl", hash = "sha256:76715a92dc10d7f090bdfb490f6e6d497cc8d212da78174d0de516ba7021cee4", size = 64895815 }, + { url = "https://files.pythonhosted.org/packages/c6/04/9b278d4b688bc0b9126555976ebf8c0c29173b812b8fa7c42be72ff9f943/ray-2.34.0-cp310-cp310-win_amd64.whl", hash = "sha256:3ca22ebb25f483bff60f2b64d1b33c4f156754d73c1c183808e0380c515f0ff9", size = 24705813 }, + { url = "https://files.pythonhosted.org/packages/92/b8/a05d9e5d09ea55517ade0f909f053eaa69d17b967cb8952fec0cc6530821/ray-2.34.0-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:bb869c717057fa23010ced7be0bdfda3b260583dfd9fe969e7de3ccd3bee1e03", size = 65585163 }, + { url = "https://files.pythonhosted.org/packages/8c/94/6e06f0adf89bcb13d0e5ed03e7f662ed00a8003ebacd8a70515bffdbe7e2/ray-2.34.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:590d0676bedd72111e7df78bb71eef93826a86de0d4675739471080ffd463d02", size = 63016756 }, + { url = "https://files.pythonhosted.org/packages/62/b4/796ea6b730985ae64183cbe64b760a65b14382f9121e58dd410619845b93/ray-2.34.0-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:2315ca4eeb2c87264a7be38acf128803dffb2af2476e6322acd3f889129e4575", size = 64132726 }, + { url = "https://files.pythonhosted.org/packages/fa/53/9864f0c9c7c78466722ed8035ebb465ab3c915e06878d2906e7d4245a4e9/ray-2.34.0-cp311-cp311-manylinux2014_x86_64.whl", hash = "sha256:b608d6865600cbd3516882a19bb3b713b6f161b150ce1ee31d92084d09408b9a", size = 65018530 }, + { url = "https://files.pythonhosted.org/packages/42/15/4a9c4dd1384721dcb38e69e12b6fe227bc114fc5e9e7d04261de955e4c94/ray-2.34.0-cp311-cp311-win_amd64.whl", hash = "sha256:5125d325f6c3605de16182e60ccb4cd6a102a812665c119a71f19d07f20080d8", size = 24690447 }, + { url = "https://files.pythonhosted.org/packages/8f/db/a3ceac4623e32bd3e8857174205a065eb902b82ac5c7c0fe4cc23e3c1aec/ray-2.34.0-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:d1f8b03f7be489104c32731a3898eae41ffe1fd29c1303bbd77805e1961a1324", size = 65564396 }, + { url = "https://files.pythonhosted.org/packages/c7/e4/7270ede252fdaba20c1baa90fe928b285b625d42493a4825026304000ada/ray-2.34.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a332323d986d3faa9c539c3c979aa936bc252a0da9b20bdb48a6f634a1ff5200", size = 63001916 }, + { url = "https://files.pythonhosted.org/packages/22/66/d771588eafabdf9aa73a447d95c2499a74d605169a35b33b9c82516b8782/ray-2.34.0-cp312-cp312-manylinux2014_aarch64.whl", hash = "sha256:230eef15981cec90e868eff32ad5756e4fee53c2855c890a2d1243617df73c8e", size = 64152368 }, + { url = "https://files.pythonhosted.org/packages/71/80/3ee63d8cc83dba44df417058127648e3b44d338d9b16450c3b9556b00e28/ray-2.34.0-cp312-cp312-manylinux2014_x86_64.whl", hash = "sha256:aeaac5ce06572b15947c995b6d65a6c8706a1b2336eebed5b98e9073fe94abe0", size = 65063661 }, + { url = "https://files.pythonhosted.org/packages/e2/41/edb03a80f1e8b9e32ae45466d71773fc3508453c356738e6628cebe3d036/ray-2.34.0-cp312-cp312-win_amd64.whl", hash = "sha256:9c48fcf7cf7b3d0886f846d45c1f73de91d70486d52d10e0f0ec017660613fec", size = 24680574 }, + { url = "https://files.pythonhosted.org/packages/64/bb/4ad03421c71cbff107f2d1a29c0e8d8b754a6c53a28dc6078f6f26c8bacb/ray-2.34.0-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:93dfab2256e8bab153a10d4af8e82d124afe9a950ac5435c5d33a4637ed0cbb8", size = 65617415 }, + { url = "https://files.pythonhosted.org/packages/a2/ce/a0dbe6d7bbabcdc7224779b7db81e4337ed139c18d47ad8de179c0a10b87/ray-2.34.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:37c4840e3953bff40900a189fcf2a866581fd5c11e72b8c532a593a200450bb4", size = 63049114 }, + { url = "https://files.pythonhosted.org/packages/ab/d6/d389e685a1d25dc1f0cd745bf153a74e738475638d32fcc96681f01d8cc6/ray-2.34.0-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:42df897f2bf368fa1d74c6672f36a9fae4ebcf7f1495716f9cca445415c51f55", size = 64022135 }, + { url = "https://files.pythonhosted.org/packages/61/5d/57939bd7a84d9fdb4741cfc818413c6f4c9052c7638073f8c7096bdd8795/ray-2.34.0-cp39-cp39-manylinux2014_x86_64.whl", hash = "sha256:7c11a58daf074093d5b5a31de62f3dc0e55a7649edcc16a902eed6dc16fc6a4f", size = 64920350 }, + { url = "https://files.pythonhosted.org/packages/09/c1/7bb88e8266e7bc2e5aa91f56dc7bc72729fa5fa30e6e13be54f5a9417250/ray-2.34.0-cp39-cp39-win_amd64.whl", hash = "sha256:2cbf7b38b97f80f95ca1c841d783a577f1618c15c6fbf32574dd0efa4e4b12bd", size = 24715971 }, +] + +[package.optional-dependencies] +tune = [ + { name = "fsspec", version = "2024.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fsspec", version = "2024.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "pandas", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyarrow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorboardx", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] + +[[package]] +name = "rdflib" +version = "7.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "isodate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyparsing", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0d/a3/63740490a392921a611cfc05b5b17bffd4259b3c9589c7904a4033b3d291/rdflib-7.0.0.tar.gz", hash = "sha256:9995eb8569428059b8c1affd26b25eac510d64f5043d9ce8c84e0d0036e995ae", size = 4765796 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d4/b0/7b7d8b5b0d01f1a0b12cc2e5038a868ef3a15825731b8a0d776cf47566c0/rdflib-7.0.0-py3-none-any.whl", hash = "sha256:0438920912a642c866a513de6fe8a0001bd86ef975057d6962c79ce4771687cd", size = 531912 }, +] + +[[package]] +name = "referencing" +version = "0.35.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rpds-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/99/5b/73ca1f8e72fff6fa52119dbd185f73a907b1989428917b24cff660129b6d/referencing-0.35.1.tar.gz", hash = "sha256:25b42124a6c8b632a425174f24087783efb348a6f1e0008e63cd4466fedf703c", size = 62991 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/59/2056f61236782a2c86b33906c025d4f4a0b17be0161b63b70fd9e8775d36/referencing-0.35.1-py3-none-any.whl", hash = "sha256:eda6d3234d62814d1c64e305c1331c9a3a6132da475ab6382eaa997b21ee75de", size = 26684 }, +] + +[[package]] +name = "regex" +version = "2024.7.24" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3f/51/64256d0dc72816a4fe3779449627c69ec8fee5a5625fd60ba048f53b3478/regex-2024.7.24.tar.gz", hash = "sha256:9cfd009eed1a46b27c14039ad5bbc5e71b6367c5b2e6d5f5da0ea91600817506", size = 393485 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/16/97/283bd32777e6c30a9bede976cd72ba4b9aa144dc0f0f462bd37fa1a86e01/regex-2024.7.24-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:228b0d3f567fafa0633aee87f08b9276c7062da9616931382993c03808bb68ce", size = 470812 }, + { url = "https://files.pythonhosted.org/packages/e4/80/80bc4d7329d04ba519ebcaf26ae21d9e30d33934c458691177c623ceff70/regex-2024.7.24-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:3426de3b91d1bc73249042742f45c2148803c111d1175b283270177fdf669024", size = 282129 }, + { url = "https://files.pythonhosted.org/packages/e5/8a/cddcb7942d05ad9a427ad97ab29f1a62c0607ab72bdb2f3a26fc5b07ac0f/regex-2024.7.24-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f273674b445bcb6e4409bf8d1be67bc4b58e8b46fd0d560055d515b8830063cd", size = 278909 }, + { url = "https://files.pythonhosted.org/packages/a6/d4/93b4011cb83f9a66e0fa398b4d3c6d564d94b686dace676c66502b13dae9/regex-2024.7.24-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:23acc72f0f4e1a9e6e9843d6328177ae3074b4182167e34119ec7233dfeccf53", size = 777687 }, + { url = "https://files.pythonhosted.org/packages/d0/11/d0a12e1cecc1d35bbcbeb99e2ddcb8c1b152b1b58e2ff55f50c3d762b09e/regex-2024.7.24-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:65fd3d2e228cae024c411c5ccdffae4c315271eee4a8b839291f84f796b34eca", size = 818982 }, + { url = "https://files.pythonhosted.org/packages/ae/41/01a073765d75427e24710af035d8f0a773b5cedf23f61b63e7ef2ce960d6/regex-2024.7.24-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c414cbda77dbf13c3bc88b073a1a9f375c7b0cb5e115e15d4b73ec3a2fbc6f59", size = 804015 }, + { url = "https://files.pythonhosted.org/packages/3e/66/04b63f31580026c8b819aed7f171149177d10cfab27477ea8800a2268d50/regex-2024.7.24-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf7a89eef64b5455835f5ed30254ec19bf41f7541cd94f266ab7cbd463f00c41", size = 776517 }, + { url = "https://files.pythonhosted.org/packages/be/49/0c08a7a232e4e26e17afeedf13f331224d9377dde4876ed6e21e4a584a5d/regex-2024.7.24-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:19c65b00d42804e3fbea9708f0937d157e53429a39b7c61253ff15670ff62cb5", size = 766860 }, + { url = "https://files.pythonhosted.org/packages/24/44/35769388845cdd7be97e1232a59446b738054b61bc9c92a3b0bacfaf7bb1/regex-2024.7.24-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:7a5486ca56c8869070a966321d5ab416ff0f83f30e0e2da1ab48815c8d165d46", size = 692181 }, + { url = "https://files.pythonhosted.org/packages/50/be/4e09d5bc8de176153f209c95ca4e64b9def1748d693694a95dd4401ee7be/regex-2024.7.24-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f51f9556785e5a203713f5efd9c085b4a45aecd2a42573e2b5041881b588d1f", size = 762956 }, + { url = "https://files.pythonhosted.org/packages/90/63/b37152f25fe348aa31806bafa91df607d096e8f477fed9a5cf3de339dd5f/regex-2024.7.24-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:a4997716674d36a82eab3e86f8fa77080a5d8d96a389a61ea1d0e3a94a582cf7", size = 771978 }, + { url = "https://files.pythonhosted.org/packages/ab/ac/38186431f7c1874e3f790669be933accf1090ee53aba0ab1a811ef38f07e/regex-2024.7.24-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:c0abb5e4e8ce71a61d9446040c1e86d4e6d23f9097275c5bd49ed978755ff0fe", size = 840800 }, + { url = "https://files.pythonhosted.org/packages/e8/23/91b04dbf51a2c0ddf5b1e055e9e05ed091ebcf46f2b0e6e3d2fff121f903/regex-2024.7.24-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:18300a1d78cf1290fa583cd8b7cde26ecb73e9f5916690cf9d42de569c89b1ce", size = 838991 }, + { url = "https://files.pythonhosted.org/packages/36/fd/822110cc14b99bdd7d8c61487bc774f454120cd3d7492935bf13f3399716/regex-2024.7.24-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:416c0e4f56308f34cdb18c3f59849479dde5b19febdcd6e6fa4d04b6c31c9faa", size = 767539 }, + { url = "https://files.pythonhosted.org/packages/82/54/e24a8adfca74f9a421cd47657c51413919e7755e729608de6f4c5556e002/regex-2024.7.24-cp310-cp310-win32.whl", hash = "sha256:fb168b5924bef397b5ba13aabd8cf5df7d3d93f10218d7b925e360d436863f66", size = 257712 }, + { url = "https://files.pythonhosted.org/packages/fb/cc/6485c2fc72d0de9b55392246b80921639f1be62bed1e33e982940306b5ba/regex-2024.7.24-cp310-cp310-win_amd64.whl", hash = "sha256:6b9fc7e9cc983e75e2518496ba1afc524227c163e43d706688a6bb9eca41617e", size = 269661 }, + { url = "https://files.pythonhosted.org/packages/cb/ec/261f8434a47685d61e59a4ef3d9ce7902af521219f3ebd2194c7adb171a6/regex-2024.7.24-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:382281306e3adaaa7b8b9ebbb3ffb43358a7bbf585fa93821300a418bb975281", size = 470810 }, + { url = "https://files.pythonhosted.org/packages/f0/47/f33b1cac88841f95fff862476a9e875d9a10dae6912a675c6f13c128e5d9/regex-2024.7.24-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4fdd1384619f406ad9037fe6b6eaa3de2749e2e12084abc80169e8e075377d3b", size = 282126 }, + { url = "https://files.pythonhosted.org/packages/fc/1b/256ca4e2d5041c0aa2f1dc222f04412b796346ab9ce2aa5147405a9457b4/regex-2024.7.24-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3d974d24edb231446f708c455fd08f94c41c1ff4f04bcf06e5f36df5ef50b95a", size = 278920 }, + { url = "https://files.pythonhosted.org/packages/91/03/4603ec057c0bafd2f6f50b0bdda4b12a0ff81022decf1de007b485c356a6/regex-2024.7.24-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a2ec4419a3fe6cf8a4795752596dfe0adb4aea40d3683a132bae9c30b81e8d73", size = 785420 }, + { url = "https://files.pythonhosted.org/packages/75/f8/13b111fab93e6273e26de2926345e5ecf6ddad1e44c4d419d7b0924f9c52/regex-2024.7.24-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eb563dd3aea54c797adf513eeec819c4213d7dbfc311874eb4fd28d10f2ff0f2", size = 828164 }, + { url = "https://files.pythonhosted.org/packages/4a/80/bc3b9d31bd47ff578758af929af0ac1d6169b247e26fa6e87764007f3d93/regex-2024.7.24-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:45104baae8b9f67569f0f1dca5e1f1ed77a54ae1cd8b0b07aba89272710db61e", size = 812621 }, + { url = "https://files.pythonhosted.org/packages/8b/77/92d4a14530900d46dddc57b728eea65d723cc9fcfd07b96c2c141dabba84/regex-2024.7.24-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:994448ee01864501912abf2bad9203bffc34158e80fe8bfb5b031f4f8e16da51", size = 786609 }, + { url = "https://files.pythonhosted.org/packages/35/58/06695fd8afad4c8ed0a53ec5e222156398b9fe5afd58887ab94ea68e4d16/regex-2024.7.24-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3fac296f99283ac232d8125be932c5cd7644084a30748fda013028c815ba3364", size = 775290 }, + { url = "https://files.pythonhosted.org/packages/1b/0f/50b97ee1fc6965744b9e943b5c0f3740792ab54792df73d984510964ef29/regex-2024.7.24-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:7e37e809b9303ec3a179085415cb5f418ecf65ec98cdfe34f6a078b46ef823ee", size = 772849 }, + { url = "https://files.pythonhosted.org/packages/8f/64/565ff6cf241586ab7ae76bb4138c4d29bc1d1780973b457c2db30b21809a/regex-2024.7.24-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:01b689e887f612610c869421241e075c02f2e3d1ae93a037cb14f88ab6a8934c", size = 778428 }, + { url = "https://files.pythonhosted.org/packages/e5/fe/4ceabf4382e44e1e096ac46fd5e3bca490738b24157116a48270fd542e88/regex-2024.7.24-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f6442f0f0ff81775eaa5b05af8a0ffa1dda36e9cf6ec1e0d3d245e8564b684ce", size = 849436 }, + { url = "https://files.pythonhosted.org/packages/68/23/1868e40d6b594843fd1a3498ffe75d58674edfc90d95e18dd87865b93bf2/regex-2024.7.24-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:871e3ab2838fbcb4e0865a6e01233975df3a15e6fce93b6f99d75cacbd9862d1", size = 849484 }, + { url = "https://files.pythonhosted.org/packages/f3/52/bff76de2f6e2bc05edce3abeb7e98e6309aa022fc06071100a0216fbeb50/regex-2024.7.24-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:c918b7a1e26b4ab40409820ddccc5d49871a82329640f5005f73572d5eaa9b5e", size = 776712 }, + { url = "https://files.pythonhosted.org/packages/f2/72/70ade7b0b5fe5c6df38fdfa2a5a8273e3ea6a10b772aa671b7e889e78bae/regex-2024.7.24-cp311-cp311-win32.whl", hash = "sha256:2dfbb8baf8ba2c2b9aa2807f44ed272f0913eeeba002478c4577b8d29cde215c", size = 257716 }, + { url = "https://files.pythonhosted.org/packages/04/4d/80e04f4e27ab0cbc9096e2d10696da6d9c26a39b60db52670fd57614fea5/regex-2024.7.24-cp311-cp311-win_amd64.whl", hash = "sha256:538d30cd96ed7d1416d3956f94d54e426a8daf7c14527f6e0d6d425fcb4cca52", size = 269662 }, + { url = "https://files.pythonhosted.org/packages/0f/26/f505782f386ac0399a9237571833f187414882ab6902e2e71a1ecb506835/regex-2024.7.24-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:fe4ebef608553aff8deb845c7f4f1d0740ff76fa672c011cc0bacb2a00fbde86", size = 471748 }, + { url = "https://files.pythonhosted.org/packages/bb/1d/ea9a21beeb433dbfca31ab82867d69cb67ff8674af9fab6ebd55fa9d3387/regex-2024.7.24-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:74007a5b25b7a678459f06559504f1eec2f0f17bca218c9d56f6a0a12bfffdad", size = 282841 }, + { url = "https://files.pythonhosted.org/packages/9b/f2/c6182095baf0a10169c34e87133a8e73b2e816a80035669b1278e927685e/regex-2024.7.24-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7df9ea48641da022c2a3c9c641650cd09f0cd15e8908bf931ad538f5ca7919c9", size = 279114 }, + { url = "https://files.pythonhosted.org/packages/72/58/b5161bf890b6ca575a25685f19a4a3e3b6f4a072238814f8658123177d84/regex-2024.7.24-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6a1141a1dcc32904c47f6846b040275c6e5de0bf73f17d7a409035d55b76f289", size = 789749 }, + { url = "https://files.pythonhosted.org/packages/09/fb/5381b19b62f3a3494266be462f6a015a869cf4bfd8e14d6e7db67e2c8069/regex-2024.7.24-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80c811cfcb5c331237d9bad3bea2c391114588cf4131707e84d9493064d267f9", size = 831666 }, + { url = "https://files.pythonhosted.org/packages/3d/6d/2a21c85f970f9be79357d12cf4b97f4fc6bf3bf6b843c39dabbc4e5f1181/regex-2024.7.24-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7214477bf9bd195894cf24005b1e7b496f46833337b5dedb7b2a6e33f66d962c", size = 817544 }, + { url = "https://files.pythonhosted.org/packages/f9/ae/5f23e64f6cf170614237c654f3501a912dfb8549143d4b91d1cd13dba319/regex-2024.7.24-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d55588cba7553f0b6ec33130bc3e114b355570b45785cebdc9daed8c637dd440", size = 790854 }, + { url = "https://files.pythonhosted.org/packages/29/0a/d04baad1bbc49cdfb4aef90c4fc875a60aaf96d35a1616f1dfe8149716bc/regex-2024.7.24-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:558a57cfc32adcf19d3f791f62b5ff564922942e389e3cfdb538a23d65a6b610", size = 779242 }, + { url = "https://files.pythonhosted.org/packages/3a/27/b242a962f650c3213da4596d70e24c7c1c46e3aa0f79f2a81164291085f8/regex-2024.7.24-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a512eed9dfd4117110b1881ba9a59b31433caed0c4101b361f768e7bcbaf93c5", size = 776932 }, + { url = "https://files.pythonhosted.org/packages/9c/ae/de659bdfff80ad2c0b577a43dd89dbc43870a4fc4bbf604e452196758e83/regex-2024.7.24-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:86b17ba823ea76256b1885652e3a141a99a5c4422f4a869189db328321b73799", size = 784521 }, + { url = "https://files.pythonhosted.org/packages/d4/ac/eb6a796da0bdefbf09644a7868309423b18d344cf49963a9d36c13502d46/regex-2024.7.24-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:5eefee9bfe23f6df09ffb6dfb23809f4d74a78acef004aa904dc7c88b9944b05", size = 854548 }, + { url = "https://files.pythonhosted.org/packages/56/77/fde8d825dec69e70256e0925af6c81eea9acf0a634d3d80f619d8dcd6888/regex-2024.7.24-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:731fcd76bbdbf225e2eb85b7c38da9633ad3073822f5ab32379381e8c3c12e94", size = 853345 }, + { url = "https://files.pythonhosted.org/packages/ff/04/2b79ad0bb9bc05ab4386caa2c19aa047a66afcbdfc2640618ffc729841e4/regex-2024.7.24-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:eaef80eac3b4cfbdd6de53c6e108b4c534c21ae055d1dbea2de6b3b8ff3def38", size = 781414 }, + { url = "https://files.pythonhosted.org/packages/bf/71/d0af58199283ada7d25b20e416f5b155f50aad99b0e791c0966ff5a1cd00/regex-2024.7.24-cp312-cp312-win32.whl", hash = "sha256:185e029368d6f89f36e526764cf12bf8d6f0e3a2a7737da625a76f594bdfcbfc", size = 258125 }, + { url = "https://files.pythonhosted.org/packages/95/b3/10e875c45c60b010b66fc109b899c6fc4f05d485fe1d54abff98ce791124/regex-2024.7.24-cp312-cp312-win_amd64.whl", hash = "sha256:2f1baff13cc2521bea83ab2528e7a80cbe0ebb2c6f0bfad15be7da3aed443908", size = 269162 }, + { url = "https://files.pythonhosted.org/packages/dc/c6/78f26fe25efb7bec46028eff4db9fae07852defc7d2fe48fcbdba47ff3d1/regex-2024.7.24-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:0ffe3f9d430cd37d8fa5632ff6fb36d5b24818c5c986893063b4e5bdb84cdf24", size = 470815 }, + { url = "https://files.pythonhosted.org/packages/3d/c9/580ff2b99482ca90785e28720269f352a015f30430bb583ff7bcc519bb9a/regex-2024.7.24-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:25419b70ba00a16abc90ee5fce061228206173231f004437730b67ac77323f0d", size = 282117 }, + { url = "https://files.pythonhosted.org/packages/14/58/283c749340e4d7aad87a1fb93c6bf11f377a0da8aaff6f7f863b28050752/regex-2024.7.24-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:33e2614a7ce627f0cdf2ad104797d1f68342d967de3695678c0cb84f530709f8", size = 278915 }, + { url = "https://files.pythonhosted.org/packages/3a/72/2667206ef348d8e4cdd349d6f0e064002e8d393b66093181d1a865b94a11/regex-2024.7.24-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d33a0021893ede5969876052796165bab6006559ab845fd7b515a30abdd990dc", size = 777146 }, + { url = "https://files.pythonhosted.org/packages/93/14/a9123402a27d1a11d034cb51236a9f6e5ba01a38e8599ede95d46e4362fa/regex-2024.7.24-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:04ce29e2c5fedf296b1a1b0acc1724ba93a36fb14031f3abfb7abda2806c1535", size = 818435 }, + { url = "https://files.pythonhosted.org/packages/04/72/fbab33403723b661cbfed09c635bf6ecfc07268df1a56555d19f6f0da6af/regex-2024.7.24-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b16582783f44fbca6fcf46f61347340c787d7530d88b4d590a397a47583f31dd", size = 803404 }, + { url = "https://files.pythonhosted.org/packages/36/67/851cf82e2c47d46846cca15ba84f845e876257a54cb82f229d335cd5c67e/regex-2024.7.24-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:836d3cc225b3e8a943d0b02633fb2f28a66e281290302a79df0e1eaa984ff7c1", size = 775901 }, + { url = "https://files.pythonhosted.org/packages/7f/02/19abc35bbc20f05d4a4147319923dc880c4005a01917d41b3340bf0f84ae/regex-2024.7.24-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:438d9f0f4bc64e8dea78274caa5af971ceff0f8771e1a2333620969936ba10be", size = 766357 }, + { url = "https://files.pythonhosted.org/packages/18/fb/1e35f8cfe3cd1a086449db7bbf91b6e0051b91ebb71e67915b1b01d3a3cf/regex-2024.7.24-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:973335b1624859cb0e52f96062a28aa18f3a5fc77a96e4a3d6d76e29811a0e6e", size = 691636 }, + { url = "https://files.pythonhosted.org/packages/46/29/3561d53e0cb7a1d98385206a133988616637f98a4517ada9b714d6dff5c9/regex-2024.7.24-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:c5e69fd3eb0b409432b537fe3c6f44ac089c458ab6b78dcec14478422879ec5f", size = 762342 }, + { url = "https://files.pythonhosted.org/packages/28/8b/f7fb2feb45e2c16e6e49c55979519c7ac76f3432267bf64d4aabd5d3b47b/regex-2024.7.24-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:fbf8c2f00904eaf63ff37718eb13acf8e178cb940520e47b2f05027f5bb34ce3", size = 771548 }, + { url = "https://files.pythonhosted.org/packages/03/d1/629e72e8f04639e6fadfe67b8823cc94fdcd19192b0175bd086950fefca8/regex-2024.7.24-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:ae2757ace61bc4061b69af19e4689fa4416e1a04840f33b441034202b5cd02d4", size = 840214 }, + { url = "https://files.pythonhosted.org/packages/44/af/e523b6e074f90c0471d25898916d05a1b7a774b259be192f8bc6683c5966/regex-2024.7.24-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:44fc61b99035fd9b3b9453f1713234e5a7c92a04f3577252b45feefe1b327759", size = 838533 }, + { url = "https://files.pythonhosted.org/packages/3c/2a/af44a6747d1c331234f57d48cf2dcab221770cd755a7c16b5c358b485952/regex-2024.7.24-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:84c312cdf839e8b579f504afcd7b65f35d60b6285d892b19adea16355e8343c9", size = 767083 }, + { url = "https://files.pythonhosted.org/packages/90/86/865208eb0f0790d3e4c726d291acc5cbbfed4c5133a44dc99d7d746ff0bf/regex-2024.7.24-cp39-cp39-win32.whl", hash = "sha256:ca5b2028c2f7af4e13fb9fc29b28d0ce767c38c7facdf64f6c2cd040413055f1", size = 257737 }, + { url = "https://files.pythonhosted.org/packages/7f/61/b60849cd13f26a25b7aa61a0118c86c76b933a032d38b4657f4baeaeab5b/regex-2024.7.24-cp39-cp39-win_amd64.whl", hash = "sha256:7c479f5ae937ec9985ecaf42e2e10631551d909f203e31308c12d703922742f9", size = 269711 }, +] + +[[package]] +name = "requests" +version = "2.32.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "charset-normalizer", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "idna", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "urllib3", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/63/70/2bf7780ad2d390a8d301ad0b550f1581eadbd9a20f896afe06353c2a2913/requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760", size = 131218 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/9b/335f9764261e915ed497fcdeb11df5dfd6f7bf257d4a6a2a686d80da4d54/requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6", size = 64928 }, +] + +[[package]] +name = "requests-oauthlib" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "oauthlib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/42/f2/05f29bc3913aea15eb670be136045bf5c5bbf4b99ecb839da9b422bb2c85/requests-oauthlib-2.0.0.tar.gz", hash = "sha256:b3dffaebd884d8cd778494369603a9e7b58d29111bf6b41bdc2dcd87203af4e9", size = 55650 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3b/5d/63d4ae3b9daea098d5d6f5da83984853c1bbacd5dc826764b249fe119d24/requests_oauthlib-2.0.0-py2.py3-none-any.whl", hash = "sha256:7dd8a5c40426b779b0868c404bdef9768deccf22749cde15852df527e6269b36", size = 24179 }, +] + +[[package]] +name = "retrying" +version = "1.3.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ce/70/15ce8551d65b324e18c5aa6ef6998880f21ead51ebe5ed743c0950d7d9dd/retrying-1.3.4.tar.gz", hash = "sha256:345da8c5765bd982b1d1915deb9102fd3d1f7ad16bd84a9700b85f64d24e8f3e", size = 10929 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8f/04/9e36f28be4c0532c0e9207ff9dc01fb13a2b0eb036476a213b0000837d0e/retrying-1.3.4-py3-none-any.whl", hash = "sha256:8cc4d43cb8e1125e0ff3344e9de678fefd85db3b750b81b2240dc0183af37b35", size = 11602 }, +] + +[[package]] +name = "rfc3986" +version = "1.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/79/30/5b1b6c28c105629cc12b33bdcbb0b11b5bb1880c6cfbd955f9e792921aa8/rfc3986-1.5.0.tar.gz", hash = "sha256:270aaf10d87d0d4e095063c65bf3ddbc6ee3d0b226328ce21e036f946e421835", size = 49378 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c4/e5/63ca2c4edf4e00657584608bee1001302bbf8c5f569340b78304f2f446cb/rfc3986-1.5.0-py2.py3-none-any.whl", hash = "sha256:a86d6e1f5b1dc238b218b012df0aa79409667bb209e58da56d0b94704e712a97", size = 31976 }, +] + +[[package]] +name = "rhoknp" +version = "1.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c9/a9/08dc57ef4cc49a6efc403ffd43fe1b24a0c67600e1076236979d0f12a39c/rhoknp-1.3.0.tar.gz", hash = "sha256:ccbac0bba6662b00a573f2d0361e64978901202c44c56b50b3ce2afa5dbb23b6", size = 64150 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/42/416cb51910d0d7365daae32e62ca878db6e867760bf453a62118cb1d7d23/rhoknp-1.3.0-py3-none-any.whl", hash = "sha256:41ee79bbd25e8e1142d555a2e714356fd810b9bf9bb610c75b3bcb704c37ac00", size = 86838 }, +] + +[[package]] +name = "rich" +version = "13.7.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markdown-it-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pygments", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b3/01/c954e134dc440ab5f96952fe52b4fdc64225530320a910473c1fe270d9aa/rich-13.7.1.tar.gz", hash = "sha256:9be308cb1fe2f1f57d67ce99e95af38a1e2bc71ad9813b0e247cf7ffbcc3a432", size = 221248 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/87/67/a37f6214d0e9fe57f6ae54b2956d550ca8365857f42a1ce0392bb21d9410/rich-13.7.1-py3-none-any.whl", hash = "sha256:4edbae314f59eb482f54e9e30bf00d33350aaa94f4bfcd4e9e3110e64d0d7222", size = 240681 }, +] + +[[package]] +name = "rjieba" +version = "0.1.11" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/51/53/6bc9653460d3182383fdd972ee50c167acadc3aca440c9a4fb9ef9a201ad/rjieba-0.1.11.tar.gz", hash = "sha256:a9cdbefc404dc2536b0e8c0f7b084a70f9e7e412abab5a93b0e09420db0499bc", size = 7491 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/44/86/62d971b3bd07655ba2a0520825ffe0e0564e5a400a00f856a75498501148/rjieba-0.1.11-cp36-abi3-macosx_10_7_x86_64.whl", hash = "sha256:2c9e0b81e1d237b36e9c3657deeaed7d024a7ea50f935d056972e5603da5a071", size = 2863423 }, + { url = "https://files.pythonhosted.org/packages/41/15/0059998a355b7282b94584b6d916575606051a22f0770d78745edd5f8563/rjieba-0.1.11-cp36-abi3-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:b54a32a7147e5a79f57d285fdf42a227ba70357c7ea187c0b9c226358ea3fcdf", size = 5719263 }, + { url = "https://files.pythonhosted.org/packages/22/40/466e5106a72fc674207411433dafd09ccecbf8ad11b0a8fab5e3114be006/rjieba-0.1.11-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f5c2e93c43c2c9306b89b2afd04c59a9827faf678a77e458cbde505dad969783", size = 3895193 }, + { url = "https://files.pythonhosted.org/packages/7f/b7/e9c8323da708f51473af4ade8e5094c9b567b9fa7898dd25771e7813bc1f/rjieba-0.1.11-cp36-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:012c27e956f15521dc12d1951202872eef353caed346de65265925efac945aa6", size = 3678398 }, + { url = "https://files.pythonhosted.org/packages/8a/47/02b0f2e04a6a4718a7748fef767245a04f1309a1c0265896923e000f9c22/rjieba-0.1.11-cp36-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:a5496b464b6d362293d73832680df6050726609fa70987bee164b4477cf9e43f", size = 4120062 }, + { url = "https://files.pythonhosted.org/packages/6f/62/c2791f6d47c3856f60bd13fbbf162df90fe9f2c83c8a3ed095ea68fb4ab0/rjieba-0.1.11-cp36-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f84373342a797ab60bac32c560a98670e8e897e8e3ff7dd96fd27a858640e5cf", size = 4012543 }, + { url = "https://files.pythonhosted.org/packages/28/be/8999a88af21366952adafc34e60a0307e5a454ae144a70befe6c4270988b/rjieba-0.1.11-cp36-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cb38b8dd03a8280bc4df6307e00ef8ed57e115f0b4c75453aad3816a44f331f4", size = 4172578 }, + { url = "https://files.pythonhosted.org/packages/1c/27/3367d20eee9ab7e0d73f629eeecff138ecc7a4ee935a9e5728c5c88760f6/rjieba-0.1.11-cp36-abi3-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5fe3dd87452ff180d7986578c8e352fe1c1b577416cafdc11d3dfc1e35f1d1fc", size = 3720160 }, + { url = "https://files.pythonhosted.org/packages/c6/1c/4b3c20282986e408f87d41eef2db0f8a86168341b97a4c2399a4ec8a0d59/rjieba-0.1.11-cp36-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:2b8bd280d4f3730aba089b9f6dea91855742078804ecd48028f41c9099062c20", size = 3838996 }, + { url = "https://files.pythonhosted.org/packages/07/56/28931b1ae4c89e789d55d139c2cd607e53a963c6d94214da906d406f6702/rjieba-0.1.11-cp36-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:63faef666183bffdbbbd4beb756e079578990a08ee7a0c2bc1f97566f5a5b1d8", size = 4058009 }, + { url = "https://files.pythonhosted.org/packages/47/12/3da42febf293d915b9952a07d6047ba0f91d4d236736a81ea97ef3d6f8ca/rjieba-0.1.11-cp36-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:67e7635aea74038f7e7cd452a8eb4e3ad05c8e0ac12c03c32d3bdb8283b63dc1", size = 4010131 }, + { url = "https://files.pythonhosted.org/packages/b9/f2/8ff6385f547690486d110d2fbdf00e72978ba570d0e7c6429302d6146f7c/rjieba-0.1.11-cp36-abi3-musllinux_1_2_i686.whl", hash = "sha256:657c1863332b5bb9a4009975a99fc0c94f504b10ace84b36eb7dbfa1a3834491", size = 3864270 }, + { url = "https://files.pythonhosted.org/packages/5a/62/3433231d92af712c96ef6e9e64639b008d1ab2892fbfa4953f3b2a85213c/rjieba-0.1.11-cp36-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:d0ce26b8cb5b3101e9fa59e07c9ef5dec3c7d0dba11668d8101cd77970951650", size = 4015376 }, + { url = "https://files.pythonhosted.org/packages/8c/9e/18277bfcdbaae6794ca9b7076a47b1534c469cd378b5605e6e91b5dce60a/rjieba-0.1.11-cp36-abi3-win32.whl", hash = "sha256:b2e98ca673370f0b9bc61a4e78df7181876bdb8087c4257cbcb80deaa1d8a119", size = 2664075 }, + { url = "https://files.pythonhosted.org/packages/97/4d/74d6c68dd61bb3cf035646b728eedd370332795dbc6111c25616e95f77e3/rjieba-0.1.11-cp36-abi3-win_amd64.whl", hash = "sha256:61b4187c21b724dd1eba732482bdcdbf61623d64c936942d8e80d1a69315d3c7", size = 2728182 }, +] + +[[package]] +name = "rouge-score" +version = "0.1.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "nltk", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e2/c5/9136736c37022a6ad27fea38f3111eb8f02fe75d067f9a985cc358653102/rouge_score-0.1.2.tar.gz", hash = "sha256:c7d4da2683e68c9abf0135ef915d63a46643666f848e558a1b9f7ead17ff0f04", size = 17400 } + +[[package]] +name = "rpds-py" +version = "0.20.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/55/64/b693f262791b818880d17268f3f8181ef799b0d187f6f731b1772e05a29a/rpds_py-0.20.0.tar.gz", hash = "sha256:d72a210824facfdaf8768cf2d7ca25a042c30320b3020de2fa04640920d4e121", size = 25814 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/71/2d/a7e60483b72b91909e18f29a5c5ae847bac4e2ae95b77bb77e1f41819a58/rpds_py-0.20.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:3ad0fda1635f8439cde85c700f964b23ed5fc2d28016b32b9ee5fe30da5c84e2", size = 318432 }, + { url = "https://files.pythonhosted.org/packages/b5/b4/f15b0c55a6d880ce74170e7e28c3ed6c5acdbbd118df50b91d1dabf86008/rpds_py-0.20.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9bb4a0d90fdb03437c109a17eade42dfbf6190408f29b2744114d11586611d6f", size = 311333 }, + { url = "https://files.pythonhosted.org/packages/36/10/3f4e490fe6eb069c07c22357d0b4804cd94cb9f8d01345ef9b1d93482b9d/rpds_py-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c6377e647bbfd0a0b159fe557f2c6c602c159fc752fa316572f012fc0bf67150", size = 366697 }, + { url = "https://files.pythonhosted.org/packages/f5/c8/cd6ab31b4424c7fab3b17e153b6ea7d1bb0d7cabea5c1ef683cc8adb8bc2/rpds_py-0.20.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eb851b7df9dda52dc1415ebee12362047ce771fc36914586b2e9fcbd7d293b3e", size = 368386 }, + { url = "https://files.pythonhosted.org/packages/60/5e/642a44fda6dda90b5237af7a0ef1d088159c30a504852b94b0396eb62125/rpds_py-0.20.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1e0f80b739e5a8f54837be5d5c924483996b603d5502bfff79bf33da06164ee2", size = 395374 }, + { url = "https://files.pythonhosted.org/packages/7c/b5/ff18c093c9e72630f6d6242e5ccb0728ef8265ba0a154b5972f89d23790a/rpds_py-0.20.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5a8c94dad2e45324fc74dce25e1645d4d14df9a4e54a30fa0ae8bad9a63928e3", size = 433189 }, + { url = "https://files.pythonhosted.org/packages/4a/6d/1166a157b227f2333f8e8ae320b6b7ea2a6a38fbe7a3563ad76dffc8608d/rpds_py-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8e604fe73ba048c06085beaf51147eaec7df856824bfe7b98657cf436623daf", size = 354849 }, + { url = "https://files.pythonhosted.org/packages/70/a4/70ea49863ea09ae4c2971f2eef58e80b757e3c0f2f618c5815bb751f7847/rpds_py-0.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:df3de6b7726b52966edf29663e57306b23ef775faf0ac01a3e9f4012a24a4140", size = 373233 }, + { url = "https://files.pythonhosted.org/packages/3b/d3/822a28152a1e7e2ba0dc5d06cf8736f4cd64b191bb6ec47fb51d1c3c5ccf/rpds_py-0.20.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:cf258ede5bc22a45c8e726b29835b9303c285ab46fc7c3a4cc770736b5304c9f", size = 541852 }, + { url = "https://files.pythonhosted.org/packages/c6/a5/6ef91e4425dc8b3445ff77d292fc4c5e37046462434a0423c4e0a596a8bd/rpds_py-0.20.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:55fea87029cded5df854ca7e192ec7bdb7ecd1d9a3f63d5c4eb09148acf4a7ce", size = 547630 }, + { url = "https://files.pythonhosted.org/packages/72/f8/d5625ee05c4e5c478954a16d9359069c66fe8ac8cd5ddf28f80d3b321837/rpds_py-0.20.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ae94bd0b2f02c28e199e9bc51485d0c5601f58780636185660f86bf80c89af94", size = 525766 }, + { url = "https://files.pythonhosted.org/packages/94/3c/1ff1ed6ae323b3e16fdfcdae0f0a67f373a6c3d991229dc32b499edeffb7/rpds_py-0.20.0-cp310-none-win32.whl", hash = "sha256:28527c685f237c05445efec62426d285e47a58fb05ba0090a4340b73ecda6dee", size = 199174 }, + { url = "https://files.pythonhosted.org/packages/ec/ba/5762c0aee2403dfea14ed74b0f8a2415cfdbb21cf745d600d9a8ac952c5b/rpds_py-0.20.0-cp310-none-win_amd64.whl", hash = "sha256:238a2d5b1cad28cdc6ed15faf93a998336eb041c4e440dd7f902528b8891b399", size = 213543 }, + { url = "https://files.pythonhosted.org/packages/ab/2a/191374c52d7be0b056cc2a04d718d2244c152f915d4a8d2db2aacc526189/rpds_py-0.20.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:ac2f4f7a98934c2ed6505aead07b979e6f999389f16b714448fb39bbaa86a489", size = 318369 }, + { url = "https://files.pythonhosted.org/packages/0e/6a/2c9fdcc6d235ac0d61ec4fd9981184689c3e682abd05e3caa49bccb9c298/rpds_py-0.20.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:220002c1b846db9afd83371d08d239fdc865e8f8c5795bbaec20916a76db3318", size = 311303 }, + { url = "https://files.pythonhosted.org/packages/d2/b2/725487d29633f64ef8f9cbf4729111a0b61702c8f8e94db1653930f52cce/rpds_py-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8d7919548df3f25374a1f5d01fbcd38dacab338ef5f33e044744b5c36729c8db", size = 366424 }, + { url = "https://files.pythonhosted.org/packages/7a/8c/668195ab9226d01b7cf7cd9e59c1c0be1df05d602df7ec0cf46f857dcf59/rpds_py-0.20.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:758406267907b3781beee0f0edfe4a179fbd97c0be2e9b1154d7f0a1279cf8e5", size = 368359 }, + { url = "https://files.pythonhosted.org/packages/52/28/356f6a39c1adeb02cf3e5dd526f5e8e54e17899bef045397abcfbf50dffa/rpds_py-0.20.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3d61339e9f84a3f0767b1995adfb171a0d00a1185192718a17af6e124728e0f5", size = 394886 }, + { url = "https://files.pythonhosted.org/packages/a2/65/640fb1a89080a8fb6f4bebd3dafb65a2edba82e2e44c33e6eb0f3e7956f1/rpds_py-0.20.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1259c7b3705ac0a0bd38197565a5d603218591d3f6cee6e614e380b6ba61c6f6", size = 432416 }, + { url = "https://files.pythonhosted.org/packages/a7/e8/85835077b782555d6b3416874b702ea6ebd7db1f145283c9252968670dd5/rpds_py-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5c1dc0f53856b9cc9a0ccca0a7cc61d3d20a7088201c0937f3f4048c1718a209", size = 354819 }, + { url = "https://files.pythonhosted.org/packages/4f/87/1ac631e923d65cbf36fbcfc6eaa702a169496de1311e54be142f178e53ee/rpds_py-0.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7e60cb630f674a31f0368ed32b2a6b4331b8350d67de53c0359992444b116dd3", size = 373282 }, + { url = "https://files.pythonhosted.org/packages/e4/ce/cb316f7970189e217b998191c7cf0da2ede3d5437932c86a7210dc1e9994/rpds_py-0.20.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:dbe982f38565bb50cb7fb061ebf762c2f254ca3d8c20d4006878766e84266272", size = 541540 }, + { url = "https://files.pythonhosted.org/packages/90/d7/4112d7655ec8aff168ecc91d4ceb51c557336edde7e6ccf6463691a2f253/rpds_py-0.20.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:514b3293b64187172bc77c8fb0cdae26981618021053b30d8371c3a902d4d5ad", size = 547640 }, + { url = "https://files.pythonhosted.org/packages/ab/44/4f61d64dfed98cc71623f3a7fcb612df636a208b4b2c6611eaa985e130a9/rpds_py-0.20.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d0a26ffe9d4dd35e4dfdd1e71f46401cff0181c75ac174711ccff0459135fa58", size = 525555 }, + { url = "https://files.pythonhosted.org/packages/35/f2/a862d81eacb21f340d584cd1c749c289979f9a60e9229f78bffc0418a199/rpds_py-0.20.0-cp311-none-win32.whl", hash = "sha256:89c19a494bf3ad08c1da49445cc5d13d8fefc265f48ee7e7556839acdacf69d0", size = 199338 }, + { url = "https://files.pythonhosted.org/packages/cc/ec/77d0674f9af4872919f3738018558dd9d37ad3f7ad792d062eadd4af7cba/rpds_py-0.20.0-cp311-none-win_amd64.whl", hash = "sha256:c638144ce971df84650d3ed0096e2ae7af8e62ecbbb7b201c8935c370df00a2c", size = 213585 }, + { url = "https://files.pythonhosted.org/packages/89/b7/f9682c5cc37fcc035f4a0fc33c1fe92ec9cbfdee0cdfd071cf948f53e0df/rpds_py-0.20.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:a84ab91cbe7aab97f7446652d0ed37d35b68a465aeef8fc41932a9d7eee2c1a6", size = 321468 }, + { url = "https://files.pythonhosted.org/packages/b8/ad/fc82be4eaceb8d444cb6fc1956ce972b3a0795104279de05e0e4131d0a47/rpds_py-0.20.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:56e27147a5a4c2c21633ff8475d185734c0e4befd1c989b5b95a5d0db699b21b", size = 313062 }, + { url = "https://files.pythonhosted.org/packages/0e/1c/6039e80b13a08569a304dc13476dc986352dca4598e909384db043b4e2bb/rpds_py-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2580b0c34583b85efec8c5c5ec9edf2dfe817330cc882ee972ae650e7b5ef739", size = 370168 }, + { url = "https://files.pythonhosted.org/packages/dc/c9/5b9aa35acfb58946b4b785bc8e700ac313669e02fb100f3efa6176a83e81/rpds_py-0.20.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b80d4a7900cf6b66bb9cee5c352b2d708e29e5a37fe9bf784fa97fc11504bf6c", size = 371376 }, + { url = "https://files.pythonhosted.org/packages/7b/dd/0e0dbeb70d8a5357d2814764d467ded98d81d90d3570de4fb05ec7224f6b/rpds_py-0.20.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:50eccbf054e62a7b2209b28dc7a22d6254860209d6753e6b78cfaeb0075d7bee", size = 397200 }, + { url = "https://files.pythonhosted.org/packages/e4/da/a47d931eb688ccfd77a7389e45935c79c41e8098d984d87335004baccb1d/rpds_py-0.20.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:49a8063ea4296b3a7e81a5dfb8f7b2d73f0b1c20c2af401fb0cdf22e14711a96", size = 426824 }, + { url = "https://files.pythonhosted.org/packages/0f/f7/a59a673594e6c2ff2dbc44b00fd4ecdec2fc399bb6a7bd82d612699a0121/rpds_py-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea438162a9fcbee3ecf36c23e6c68237479f89f962f82dae83dc15feeceb37e4", size = 357967 }, + { url = "https://files.pythonhosted.org/packages/5f/61/3ba1905396b2cb7088f9503a460b87da33452da54d478cb9241f6ad16d00/rpds_py-0.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:18d7585c463087bddcfa74c2ba267339f14f2515158ac4db30b1f9cbdb62c8ef", size = 378905 }, + { url = "https://files.pythonhosted.org/packages/08/31/6d0df9356b4edb0a3a077f1ef714e25ad21f9f5382fc490c2383691885ea/rpds_py-0.20.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d4c7d1a051eeb39f5c9547e82ea27cbcc28338482242e3e0b7768033cb083821", size = 546348 }, + { url = "https://files.pythonhosted.org/packages/ae/15/d33c021de5cb793101df9961c3c746dfc476953dbbf5db337d8010dffd4e/rpds_py-0.20.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e4df1e3b3bec320790f699890d41c59d250f6beda159ea3c44c3f5bac1976940", size = 553152 }, + { url = "https://files.pythonhosted.org/packages/70/2d/5536d28c507a4679179ab15aa0049440e4d3dd6752050fa0843ed11e9354/rpds_py-0.20.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2cf126d33a91ee6eedc7f3197b53e87a2acdac63602c0f03a02dd69e4b138174", size = 528807 }, + { url = "https://files.pythonhosted.org/packages/e3/62/7ebe6ec0d3dd6130921f8cffb7e34afb7f71b3819aa0446a24c5e81245ec/rpds_py-0.20.0-cp312-none-win32.whl", hash = "sha256:8bc7690f7caee50b04a79bf017a8d020c1f48c2a1077ffe172abec59870f1139", size = 200993 }, + { url = "https://files.pythonhosted.org/packages/ec/2f/b938864d66b86a6e4acadefdc56de75ef56f7cafdfd568a6464605457bd5/rpds_py-0.20.0-cp312-none-win_amd64.whl", hash = "sha256:0e13e6952ef264c40587d510ad676a988df19adea20444c2b295e536457bc585", size = 214458 }, + { url = "https://files.pythonhosted.org/packages/99/32/43b919a0a423c270a838ac2726b1c7168b946f2563fd99a51aaa9692d00f/rpds_py-0.20.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:aa9a0521aeca7d4941499a73ad7d4f8ffa3d1affc50b9ea11d992cd7eff18a29", size = 321465 }, + { url = "https://files.pythonhosted.org/packages/58/a9/c4d899cb28e9e47b0ff12462e8f827381f243176036f17bef9c1604667f2/rpds_py-0.20.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4a1f1d51eccb7e6c32ae89243cb352389228ea62f89cd80823ea7dd1b98e0b91", size = 312900 }, + { url = "https://files.pythonhosted.org/packages/8f/90/9e51670575b5dfaa8c823369ef7d943087bfb73d4f124a99ad6ef19a2b26/rpds_py-0.20.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8a86a9b96070674fc88b6f9f71a97d2c1d3e5165574615d1f9168ecba4cecb24", size = 370973 }, + { url = "https://files.pythonhosted.org/packages/fc/c1/523f2a03f853fc0d4c1acbef161747e9ab7df0a8abf6236106e333540921/rpds_py-0.20.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6c8ef2ebf76df43f5750b46851ed1cdf8f109d7787ca40035fe19fbdc1acc5a7", size = 370890 }, + { url = "https://files.pythonhosted.org/packages/51/ca/2458a771f16b0931de4d384decbe43016710bc948036c8f4562d6e063437/rpds_py-0.20.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b74b25f024b421d5859d156750ea9a65651793d51b76a2e9238c05c9d5f203a9", size = 397174 }, + { url = "https://files.pythonhosted.org/packages/00/7d/6e06807f6305ea2408b364efb0eef83a6e21b5e7b5267ad6b473b9a7e416/rpds_py-0.20.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:57eb94a8c16ab08fef6404301c38318e2c5a32216bf5de453e2714c964c125c8", size = 426449 }, + { url = "https://files.pythonhosted.org/packages/8c/d1/6c9e65260a819a1714510a7d69ac1d68aa23ee9ce8a2d9da12187263c8fc/rpds_py-0.20.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e1940dae14e715e2e02dfd5b0f64a52e8374a517a1e531ad9412319dc3ac7879", size = 357698 }, + { url = "https://files.pythonhosted.org/packages/5d/fb/ecea8b5286d2f03eec922be7173a03ed17278944f7c124348f535116db15/rpds_py-0.20.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d20277fd62e1b992a50c43f13fbe13277a31f8c9f70d59759c88f644d66c619f", size = 378530 }, + { url = "https://files.pythonhosted.org/packages/e3/e3/ac72f858957f52a109c588589b73bd2fad4a0fc82387fb55fb34aeb0f9cd/rpds_py-0.20.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:06db23d43f26478303e954c34c75182356ca9aa7797d22c5345b16871ab9c45c", size = 545753 }, + { url = "https://files.pythonhosted.org/packages/b2/a4/a27683b519d5fc98e4390a3b130117d80fd475c67aeda8aac83c0e8e326a/rpds_py-0.20.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:b2a5db5397d82fa847e4c624b0c98fe59d2d9b7cf0ce6de09e4d2e80f8f5b3f2", size = 552443 }, + { url = "https://files.pythonhosted.org/packages/a1/ed/c074d248409b4432b1ccb2056974175fa0af2d1bc1f9c21121f80a358fa3/rpds_py-0.20.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5a35df9f5548fd79cb2f52d27182108c3e6641a4feb0f39067911bf2adaa3e57", size = 528380 }, + { url = "https://files.pythonhosted.org/packages/d5/bd/04caf938895d2d78201e89c0c8a94dfd9990c34a19ff52fb01d0912343e3/rpds_py-0.20.0-cp313-none-win32.whl", hash = "sha256:fd2d84f40633bc475ef2d5490b9c19543fbf18596dcb1b291e3a12ea5d722f7a", size = 200540 }, + { url = "https://files.pythonhosted.org/packages/95/cc/109eb8b9863680411ae703664abacaa035820c7755acc9686d5dd02cdd2e/rpds_py-0.20.0-cp313-none-win_amd64.whl", hash = "sha256:9bc2d153989e3216b0559251b0c260cfd168ec78b1fac33dd485750a228db5a2", size = 214111 }, + { url = "https://files.pythonhosted.org/packages/a1/55/228f6d9a8c6940c8d5e49db5e0434ffcbad669c33509ac39cb0af061b0fa/rpds_py-0.20.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:3fde368e9140312b6e8b6c09fb9f8c8c2f00999d1823403ae90cc00480221b22", size = 319496 }, + { url = "https://files.pythonhosted.org/packages/68/61/074236253586feb550954f8b4359d38eefb45bafcbbb7d2e74062a82f386/rpds_py-0.20.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9824fb430c9cf9af743cf7aaf6707bf14323fb51ee74425c380f4c846ea70789", size = 311837 }, + { url = "https://files.pythonhosted.org/packages/03/67/ed6c2fe076bf78296934d4356145fedf3c7c2f8d490e099bcf6f31794dc0/rpds_py-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:11ef6ce74616342888b69878d45e9f779b95d4bd48b382a229fe624a409b72c5", size = 367819 }, + { url = "https://files.pythonhosted.org/packages/30/25/4a9e7b89b6760ac032f375cb236e4f8e518ad1fad685c40b6a9752056d6f/rpds_py-0.20.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c52d3f2f82b763a24ef52f5d24358553e8403ce05f893b5347098014f2d9eff2", size = 368322 }, + { url = "https://files.pythonhosted.org/packages/67/17/0255bb0e564517b53343ea672ebec9fb7ad40e9083ca09a4080fbc986bb9/rpds_py-0.20.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9d35cef91e59ebbeaa45214861874bc6f19eb35de96db73e467a8358d701a96c", size = 395552 }, + { url = "https://files.pythonhosted.org/packages/af/6e/77c65ccb0d7cdc39ec2be19b918a4d4fe9e2d2a1c5cab36745b36f2c1e59/rpds_py-0.20.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d72278a30111e5b5525c1dd96120d9e958464316f55adb030433ea905866f4de", size = 433735 }, + { url = "https://files.pythonhosted.org/packages/04/d8/e73d56b1908a6c0e3e5982365eb293170cd458cc25a19363f69c76e00fd2/rpds_py-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4c29cbbba378759ac5786730d1c3cb4ec6f8ababf5c42a9ce303dc4b3d08cda", size = 355542 }, + { url = "https://files.pythonhosted.org/packages/47/df/e72c79053b0c882b818bfd8f0ed1f1ace550bc9cdba27165cb73dddb9394/rpds_py-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6632f2d04f15d1bd6fe0eedd3b86d9061b836ddca4c03d5cf5c7e9e6b7c14580", size = 373644 }, + { url = "https://files.pythonhosted.org/packages/7f/00/3e16cb08c0cc6a233f0f61e4d009e3098cbe280ec975d14f28935bd15316/rpds_py-0.20.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d0b67d87bb45ed1cd020e8fbf2307d449b68abc45402fe1a4ac9e46c3c8b192b", size = 543139 }, + { url = "https://files.pythonhosted.org/packages/41/71/799c6b6f6031ed535f22fcf6802601cc7f981842bd28007bb7bb4bd10b2f/rpds_py-0.20.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:ec31a99ca63bf3cd7f1a5ac9fe95c5e2d060d3c768a09bc1d16e235840861420", size = 548007 }, + { url = "https://files.pythonhosted.org/packages/53/58/ad03eb6718e814fa045198c72d45d2ae60180eb48338f22c9fa34bd89964/rpds_py-0.20.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:22e6c9976e38f4d8c4a63bd8a8edac5307dffd3ee7e6026d97f3cc3a2dc02a0b", size = 526102 }, + { url = "https://files.pythonhosted.org/packages/78/99/a52e5b460f2311fc8ee75ff769e8d67e76208947180eacb4f153af2d9967/rpds_py-0.20.0-cp39-none-win32.whl", hash = "sha256:569b3ea770c2717b730b61998b6c54996adee3cef69fc28d444f3e7920313cf7", size = 199391 }, + { url = "https://files.pythonhosted.org/packages/0c/7d/fd42a27fe392a69faf4a5e635870fc425edcb998485ee73afbc734ecef16/rpds_py-0.20.0-cp39-none-win_amd64.whl", hash = "sha256:e6900ecdd50ce0facf703f7a00df12374b74bbc8ad9fe0f6559947fb20f82364", size = 213205 }, + { url = "https://files.pythonhosted.org/packages/06/39/bf1f664c347c946ef56cecaa896e3693d91acc741afa78ebb3fdb7aba08b/rpds_py-0.20.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:617c7357272c67696fd052811e352ac54ed1d9b49ab370261a80d3b6ce385045", size = 319444 }, + { url = "https://files.pythonhosted.org/packages/c1/71/876135d3cb90d62468540b84e8e83ff4dc92052ab309bfdea7ea0b9221ad/rpds_py-0.20.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:9426133526f69fcaba6e42146b4e12d6bc6c839b8b555097020e2b78ce908dcc", size = 311699 }, + { url = "https://files.pythonhosted.org/packages/f7/da/8ccaeba6a3dda7467aebaf893de9eafd56275e2c90773c83bf15fb0b8374/rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:deb62214c42a261cb3eb04d474f7155279c1a8a8c30ac89b7dcb1721d92c3c02", size = 367825 }, + { url = "https://files.pythonhosted.org/packages/04/b6/02a54c47c178d180395b3c9a8bfb3b93906e08f9acf7b4a1067d27c3fae0/rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fcaeb7b57f1a1e071ebd748984359fef83ecb026325b9d4ca847c95bc7311c92", size = 369046 }, + { url = "https://files.pythonhosted.org/packages/a7/64/df4966743aa4def8727dc13d06527c8b13eb7412c1429def2d4701bee520/rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d454b8749b4bd70dd0a79f428731ee263fa6995f83ccb8bada706e8d1d3ff89d", size = 395896 }, + { url = "https://files.pythonhosted.org/packages/6f/d9/7ff03ff3642c600f27ff94512bb158a8d815fea5ed4162c75a7e850d6003/rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d807dc2051abe041b6649681dce568f8e10668e3c1c6543ebae58f2d7e617855", size = 432427 }, + { url = "https://files.pythonhosted.org/packages/b8/c6/e1b886f7277b3454e55e85332e165091c19114eecb5377b88d892fd36ccf/rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3c20f0ddeb6e29126d45f89206b8291352b8c5b44384e78a6499d68b52ae511", size = 355403 }, + { url = "https://files.pythonhosted.org/packages/e2/62/e26bd5b944e547c7bfd0b6ca7e306bfa430f8bd298ab72a1217976a7ca8d/rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b7f19250ceef892adf27f0399b9e5afad019288e9be756d6919cb58892129f51", size = 374491 }, + { url = "https://files.pythonhosted.org/packages/c3/92/93c5a530898d3a5d1ce087455071ba714b77806ed9ffee4070d0c7a53b7e/rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:4f1ed4749a08379555cebf4650453f14452eaa9c43d0a95c49db50c18b7da075", size = 543622 }, + { url = "https://files.pythonhosted.org/packages/01/9e/d68fba289625b5d3c9d1925825d7da716fbf812bda2133ac409021d5db13/rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:dcedf0b42bcb4cfff4101d7771a10532415a6106062f005ab97d1d0ab5681c60", size = 548558 }, + { url = "https://files.pythonhosted.org/packages/bf/d6/4b2fad4898154365f0f2bd72ffd190349274a4c1d6a6f94f02a83bb2b8f1/rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:39ed0d010457a78f54090fafb5d108501b5aa5604cc22408fc1c0c77eac14344", size = 525753 }, + { url = "https://files.pythonhosted.org/packages/d2/ea/6f121d1802f3adae1981aea4209ea66f9d3c7f2f6d6b85ef4f13a61d17ef/rpds_py-0.20.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:bb273176be34a746bdac0b0d7e4e2c467323d13640b736c4c477881a3220a989", size = 213529 }, + { url = "https://files.pythonhosted.org/packages/0a/6f/7ab47005469f0d73dad89d29b733e3555d454a45146c30f5628242e56d33/rpds_py-0.20.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f918a1a130a6dfe1d7fe0f105064141342e7dd1611f2e6a21cd2f5c8cb1cfb3e", size = 320800 }, + { url = "https://files.pythonhosted.org/packages/cc/a1/bef9e0ef30f89c7516559ca7acc40e8ae70397535a0b1a4535a4a01d9ed0/rpds_py-0.20.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:f60012a73aa396be721558caa3a6fd49b3dd0033d1675c6d59c4502e870fcf0c", size = 312001 }, + { url = "https://files.pythonhosted.org/packages/31/44/9093c5dca95ee463c3669651e710af182eb6f9cd83626b15a2ebde2247b1/rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d2b1ad682a3dfda2a4e8ad8572f3100f95fad98cb99faf37ff0ddfe9cbf9d03", size = 369279 }, + { url = "https://files.pythonhosted.org/packages/6f/ac/0c36e067681fa3fe4c60a9422b011ec0ccc80c1e124f5210951f7982e887/rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:614fdafe9f5f19c63ea02817fa4861c606a59a604a77c8cdef5aa01d28b97921", size = 369716 }, + { url = "https://files.pythonhosted.org/packages/6b/78/8896e08625d46ea5bfdd526ee688b91eeafecbc3cf7223612c82ed77905b/rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fa518bcd7600c584bf42e6617ee8132869e877db2f76bcdc281ec6a4113a53ab", size = 396708 }, + { url = "https://files.pythonhosted.org/packages/24/5f/d865ae460e47e46fd2b489f2aceed34439bd8f18a1ff414c299142e0e22a/rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f0475242f447cc6cb8a9dd486d68b2ef7fbee84427124c232bff5f63b1fe11e5", size = 433356 }, + { url = "https://files.pythonhosted.org/packages/bd/8b/04031937ffa565021f934a9acf44bb6b1b60ea19fa9e58950b32357e85a1/rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f90a4cd061914a60bd51c68bcb4357086991bd0bb93d8aa66a6da7701370708f", size = 356157 }, + { url = "https://files.pythonhosted.org/packages/3a/64/1f0471b1e688704a716e07340b85f4145109359951feb08676a1f3b8cec4/rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:def7400461c3a3f26e49078302e1c1b38f6752342c77e3cf72ce91ca69fb1bc1", size = 374826 }, + { url = "https://files.pythonhosted.org/packages/73/4e/082c0c5eba463e29dff1c6b49557f6ad0d6faae4b46832fa9c1e5b69b7ba/rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:65794e4048ee837494aea3c21a28ad5fc080994dfba5b036cf84de37f7ad5074", size = 544549 }, + { url = "https://files.pythonhosted.org/packages/cd/ee/f4af0a62d1ba912c4a3a7f5ec04350946ddd59017f3f3d1c227b20ddf558/rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:faefcc78f53a88f3076b7f8be0a8f8d35133a3ecf7f3770895c25f8813460f08", size = 549245 }, + { url = "https://files.pythonhosted.org/packages/59/42/34601dc773be86a85a9ca47f68301a69fdb019aaae0c1426813f265f5ac0/rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:5b4f105deeffa28bbcdff6c49b34e74903139afa690e35d2d9e3c2c2fba18cec", size = 526722 }, + { url = "https://files.pythonhosted.org/packages/ff/4f/280745d5180c9d78df6b53b6e8b65336f8b6adeb958a8fd19c749fded637/rpds_py-0.20.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:fdfc3a892927458d98f3d55428ae46b921d1f7543b89382fdb483f5640daaec8", size = 214379 }, +] + +[[package]] +name = "rsa" +version = "4.9" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyasn1", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/aa/65/7d973b89c4d2351d7fb232c2e452547ddfa243e93131e7cfa766da627b52/rsa-4.9.tar.gz", hash = "sha256:e38464a49c6c85d7f1351b0126661487a7e0a14a50f1675ec50eb34d4f20ef21", size = 29711 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/49/97/fa78e3d2f65c02c8e1268b9aba606569fe97f6c8f7c2d74394553347c145/rsa-4.9-py3-none-any.whl", hash = "sha256:90260d9058e514786967344d0ef75fa8727eed8a7d2e43ce9f4bcf1b536174f7", size = 34315 }, +] + +[[package]] +name = "ruff" +version = "0.1.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e7/f9/0453128f11c9ec0ec48ea125237634be3a1b8c4835282ab648373d8e6ff2/ruff-0.1.5.tar.gz", hash = "sha256:5cbec0ef2ae1748fb194f420fb03fb2c25c3258c86129af7172ff8f198f125ab", size = 1700097 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/59/e1/8267e29a09b59df28b4472ae4807d8db60b8e9672c5acf343e1eedc97330/ruff-0.1.5-py3-none-macosx_10_7_x86_64.whl", hash = "sha256:32d47fc69261c21a4c48916f16ca272bf2f273eb635d91c65d5cd548bf1f3d96", size = 6028745 }, + { url = "https://files.pythonhosted.org/packages/a1/2e/acf77283eb23154ed2220c70d84018a179267c58b63fa944938d0f599892/ruff-0.1.5-py3-none-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:171276c1df6c07fa0597fb946139ced1c2978f4f0b8254f201281729981f3c17", size = 11640319 }, + { url = "https://files.pythonhosted.org/packages/dc/2e/c7f7e235fd12543ddd9f8218d59ee4b017a504d43b6a5584eebe96410ff3/ruff-0.1.5-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:17ef33cd0bb7316ca65649fc748acc1406dfa4da96a3d0cde6d52f2e866c7b39", size = 5898810 }, + { url = "https://files.pythonhosted.org/packages/81/b6/bd72889302e8503bfa87d190afbb6f6c7ac1345d680071e990328929c359/ruff-0.1.5-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b2c205827b3f8c13b4a432e9585750b93fd907986fe1aec62b2a02cf4401eee6", size = 5601321 }, + { url = "https://files.pythonhosted.org/packages/79/9d/d057e791cebac3e9af27fa4b3c78daf09c7ff35a344943c0d1dd25155cc4/ruff-0.1.5-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bb408e3a2ad8f6881d0f2e7ad70cddb3ed9f200eb3517a91a245bbe27101d379", size = 6041325 }, + { url = "https://files.pythonhosted.org/packages/28/fd/53511e2a3cd5627706e34572e9af0f61e645126d90995f1e2071364aefb2/ruff-0.1.5-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:f20dc5e5905ddb407060ca27267c7174f532375c08076d1a953cf7bb016f5a24", size = 6709618 }, + { url = "https://files.pythonhosted.org/packages/54/db/834a231e191517b0d7911147fbcb92a2206c9f74d43dd23870d81849c5fc/ruff-0.1.5-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aafb9d2b671ed934998e881e2c0f5845a4295e84e719359c71c39a5363cccc91", size = 6565491 }, + { url = "https://files.pythonhosted.org/packages/66/21/4b5bbf5cb3b9d5d1213f345eb932db0c94471d5000d602b80e2ee967c853/ruff-0.1.5-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a4894dddb476597a0ba4473d72a23151b8b3b0b5f958f2cf4d3f1c572cdb7af7", size = 7598072 }, + { url = "https://files.pythonhosted.org/packages/ae/cf/95e9a2930c1a220fb2c5769d746901eea4576cc46f1200f0178a42a863ba/ruff-0.1.5-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a00a7ec893f665ed60008c70fe9eeb58d210e6b4d83ec6654a9904871f982a2a", size = 6266450 }, + { url = "https://files.pythonhosted.org/packages/59/e8/4839e31304c9a030fb04ae0c304c488b0bd942d3589f8314e86901138fed/ruff-0.1.5-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:a8c11206b47f283cbda399a654fd0178d7a389e631f19f51da15cbe631480c5b", size = 5846163 }, + { url = "https://files.pythonhosted.org/packages/d1/2b/3a25a022bff4114206fa52c071275ee2b97aa7be7aad9559f60f6b96db39/ruff-0.1.5-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:fa29e67b3284b9a79b1a85ee66e293a94ac6b7bb068b307a8a373c3d343aa8ec", size = 5603623 }, + { url = "https://files.pythonhosted.org/packages/a1/73/40b0188a03de86b24909e665274c8bc667c609c4f0a775fcc324fd5a23b5/ruff-0.1.5-py3-none-musllinux_1_2_i686.whl", hash = "sha256:9b97fd6da44d6cceb188147b68db69a5741fbc736465b5cea3928fdac0bc1aeb", size = 5924325 }, + { url = "https://files.pythonhosted.org/packages/75/d1/018dc8535a3c2083e888b9ad32169dccca5ebd486d4fc30e29e1c488334e/ruff-0.1.5-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:721f4b9d3b4161df8dc9f09aa8562e39d14e55a4dbaa451a8e55bdc9590e20f4", size = 6327392 }, + { url = "https://files.pythonhosted.org/packages/fb/f1/f50c6ee75d53df3f763eb067213d2411a9d8fcc98740a84bc88c7c00aea9/ruff-0.1.5-py3-none-win32.whl", hash = "sha256:f80c73bba6bc69e4fdc73b3991db0b546ce641bdcd5b07210b8ad6f64c79f1ab", size = 5799683 }, + { url = "https://files.pythonhosted.org/packages/88/54/549cff12b6e98e873fcb5b4cf85418c5f8ca53d473f2084dd5616695e925/ruff-0.1.5-py3-none-win_amd64.whl", hash = "sha256:c21fe20ee7d76206d290a76271c1af7a5096bc4c73ab9383ed2ad35f852a0087", size = 6181396 }, + { url = "https://files.pythonhosted.org/packages/2e/07/648e71f330cac7954268df52ad72196a6dc18a60b263af73577641c7ac25/ruff-0.1.5-py3-none-win_arm64.whl", hash = "sha256:82bfcb9927e88c1ed50f49ac6c9728dab3ea451212693fe40d08d314663e412f", size = 5928650 }, +] + +[[package]] +name = "s3transfer" +version = "0.10.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "botocore", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cb/67/94c6730ee4c34505b14d94040e2f31edf144c230b6b49e971b4f25ff8fab/s3transfer-0.10.2.tar.gz", hash = "sha256:0711534e9356d3cc692fdde846b4a1e4b0cb6519971860796e6bc4c7aea00ef6", size = 144095 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3c/4a/b221409913760d26cf4498b7b1741d510c82d3ad38381984a3ddc135ec66/s3transfer-0.10.2-py3-none-any.whl", hash = "sha256:eca1c20de70a39daee580aef4986996620f365c4e0fda6a86100231d62f1bf69", size = 82716 }, +] + +[[package]] +name = "sacrebleu" +version = "1.5.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "portalocker", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/fb/b1/145f754099689f9efe1525753c63eb81c97c9329add30385360af9256b72/sacrebleu-1.5.1.tar.gz", hash = "sha256:e8184f0d2ec45dd7ef0883fbce3976b2b7cf581e04d0854ac5f7eb394318b84b", size = 54725 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/57/0c7ca4e31a126189dab99c19951910bd081dea5bbd25f24b77107750eae7/sacrebleu-1.5.1-py3-none-any.whl", hash = "sha256:fbe54fcc7f4e370c9ded0c7cb9bbdadabc020bcde9217daea043b4906b962fdc", size = 54519 }, +] + +[[package]] +name = "sacremoses" +version = "0.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "joblib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "regex", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1d/51/fbdc4af4f6e85d26169e28be3763fe50ddfd0d4bf8b871422b0788dcc4d2/sacremoses-0.1.1.tar.gz", hash = "sha256:b6fd5d3a766b02154ed80b962ddca91e1fd25629c0978c7efba21ebccf663934", size = 883188 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0b/f0/89ee2bc9da434bd78464f288fdb346bc2932f2ee80a90b2a4bbbac262c74/sacremoses-0.1.1-py3-none-any.whl", hash = "sha256:31e04c98b169bfd902144824d191825cd69220cdb4ae4bcf1ec58a7db5587b1a", size = 897476 }, +] + +[[package]] +name = "safetensors" +version = "0.4.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/41/5b/0e63bf736e171463481c5ea3406650dc25aa044083062d321820e7a1ef9f/safetensors-0.4.4.tar.gz", hash = "sha256:5fe3e9b705250d0172ed4e100a811543108653fb2b66b9e702a088ad03772a07", size = 69522 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cb/fa/bd12d51c70986156031c25eae2d092ad8ef8b5cadb4e684a78b620b28320/safetensors-0.4.4-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:2adb497ada13097f30e386e88c959c0fda855a5f6f98845710f5bb2c57e14f12", size = 392399 }, + { url = "https://files.pythonhosted.org/packages/b7/1e/f146555161e21918e00726b2bff1e2517faa8b2953e53a5a45c5f5bef64e/safetensors-0.4.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:7db7fdc2d71fd1444d85ca3f3d682ba2df7d61a637dfc6d80793f439eae264ab", size = 381919 }, + { url = "https://files.pythonhosted.org/packages/fb/f7/0c97595790f03ff86505c375cddf3a26b6d645ff2cbc819936287a66a744/safetensors-0.4.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8d4f0eed76b430f009fbefca1a0028ddb112891b03cb556d7440d5cd68eb89a9", size = 441235 }, + { url = "https://files.pythonhosted.org/packages/77/8b/0d1e055536f1c0ac137d446806d50d9d952bed85688d733a81913cf09367/safetensors-0.4.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:57d216fab0b5c432aabf7170883d7c11671622bde8bd1436c46d633163a703f6", size = 440000 }, + { url = "https://files.pythonhosted.org/packages/bd/85/3a73b4ff7a46dd7606f924ededc31468fd385221670d840005b8dbdb7a37/safetensors-0.4.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7d9b76322e49c056bcc819f8bdca37a2daa5a6d42c07f30927b501088db03309", size = 477919 }, + { url = "https://files.pythonhosted.org/packages/dd/41/b832227d04a8b65b32e2be13dbe8212db0135514380148c9b81c1b08c023/safetensors-0.4.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:32f0d1f6243e90ee43bc6ee3e8c30ac5b09ca63f5dd35dbc985a1fc5208c451a", size = 496838 }, + { url = "https://files.pythonhosted.org/packages/18/f3/27bf4d7112b194eea2d8401706953080692d37ace1b74b36fcc7234961cd/safetensors-0.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:44d464bdc384874601a177375028012a5f177f1505279f9456fea84bbc575c7f", size = 435539 }, + { url = "https://files.pythonhosted.org/packages/b1/98/d75bbdaca03d571e5e5e1ef600f3015cd5f9884126eb53a3377b4111fea1/safetensors-0.4.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:63144e36209ad8e4e65384dbf2d52dd5b1866986079c00a72335402a38aacdc5", size = 457051 }, + { url = "https://files.pythonhosted.org/packages/03/e1/b7849306e47234ef548c2b32e65f2ffee0640bfad8c65e4dd37b6fee981c/safetensors-0.4.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:051d5ecd490af7245258000304b812825974d5e56f14a3ff7e1b8b2ba6dc2ed4", size = 619613 }, + { url = "https://files.pythonhosted.org/packages/e9/d9/cbf1316161d0a1b4b0aceeb16ddb396f49363133618cc062e4abd66b2ea9/safetensors-0.4.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:51bc8429d9376224cd3cf7e8ce4f208b4c930cd10e515b6ac6a72cbc3370f0d9", size = 605422 }, + { url = "https://files.pythonhosted.org/packages/48/47/16ece1369794b9d3bc057a42fed0601779d21f57d0b0b1b671a78410d74d/safetensors-0.4.4-cp310-none-win32.whl", hash = "sha256:fb7b54830cee8cf9923d969e2df87ce20e625b1af2fd194222ab902d3adcc29c", size = 272398 }, + { url = "https://files.pythonhosted.org/packages/b4/a9/f28d4a8a082ef513755a1a2393a924999892142ed235aed57ab558cd1bc9/safetensors-0.4.4-cp310-none-win_amd64.whl", hash = "sha256:4b3e8aa8226d6560de8c2b9d5ff8555ea482599c670610758afdc97f3e021e9c", size = 285884 }, + { url = "https://files.pythonhosted.org/packages/0f/1b/27cea7a581019d0d674284048ff76e3a6e048bc3ae3c31cb0bfc93641180/safetensors-0.4.4-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:bbaa31f2cb49013818bde319232ccd72da62ee40f7d2aa532083eda5664e85ff", size = 392373 }, + { url = "https://files.pythonhosted.org/packages/36/46/93c39c96188a88ca15d12759bb51f52ce7365f6fd19ef09580bc096e8860/safetensors-0.4.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9fdcb80f4e9fbb33b58e9bf95e7dbbedff505d1bcd1c05f7c7ce883632710006", size = 381488 }, + { url = "https://files.pythonhosted.org/packages/37/a2/93cab60b8e2c8ea6343a04cdd2c09c860c9640eaaffbf8b771a0e8f98e7d/safetensors-0.4.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:55c14c20be247b8a1aeaf3ab4476265e3ca83096bb8e09bb1a7aa806088def4f", size = 441025 }, + { url = "https://files.pythonhosted.org/packages/19/37/2a5220dce5eff841328bfc3071f4a7063f3eb12341893b2688669fc67115/safetensors-0.4.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:949aaa1118660f992dbf0968487b3e3cfdad67f948658ab08c6b5762e90cc8b6", size = 439791 }, + { url = "https://files.pythonhosted.org/packages/f8/93/1d894ff44df26baf4c2471a5874388361390d3cb1cc4811cff40fc01373e/safetensors-0.4.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c11a4ab7debc456326a2bac67f35ee0ac792bcf812c7562a4a28559a5c795e27", size = 477752 }, + { url = "https://files.pythonhosted.org/packages/a5/17/b697f517c7ffb8d62d1ef17c6224c00edbb96b931e565d887476a51ac803/safetensors-0.4.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c0cea44bba5c5601b297bc8307e4075535b95163402e4906b2e9b82788a2a6df", size = 496019 }, + { url = "https://files.pythonhosted.org/packages/af/b9/c33f69f4dad9c65209efb76c2be6968af5219e31ccfd344a0025d972252f/safetensors-0.4.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9d752c97f6bbe327352f76e5b86442d776abc789249fc5e72eacb49e6916482", size = 435416 }, + { url = "https://files.pythonhosted.org/packages/71/59/f6480a68df2f4fb5aefae45a800d9bc043c0549210075275fef190a896ce/safetensors-0.4.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:03f2bb92e61b055ef6cc22883ad1ae898010a95730fa988c60a23800eb742c2c", size = 456771 }, + { url = "https://files.pythonhosted.org/packages/09/01/2a7507cdf7318fb68596e6537ef81e83cfc171c483b4a786b9c947368e19/safetensors-0.4.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:87bf3f91a9328a941acc44eceffd4e1f5f89b030985b2966637e582157173b98", size = 619456 }, + { url = "https://files.pythonhosted.org/packages/80/b3/4bb5b1fb025cb8c81fe8a76371334860a9c276fade616f83fd53feef2740/safetensors-0.4.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:20d218ec2b6899d29d6895419a58b6e44cc5ff8f0cc29fac8d236a8978ab702e", size = 605125 }, + { url = "https://files.pythonhosted.org/packages/09/93/0d6d54b84eff8361dc257fa306ae0ef1899025a2d9657efe8384ac8b7267/safetensors-0.4.4-cp311-none-win32.whl", hash = "sha256:8079486118919f600c603536e2490ca37b3dbd3280e3ad6eaacfe6264605ac8a", size = 272273 }, + { url = "https://files.pythonhosted.org/packages/21/4f/5ee44681c7ea827f9d3c104ca429865b41c05a4163eff7f0599152c2e682/safetensors-0.4.4-cp311-none-win_amd64.whl", hash = "sha256:2f8c2eb0615e2e64ee27d478c7c13f51e5329d7972d9e15528d3e4cfc4a08f0d", size = 285982 }, + { url = "https://files.pythonhosted.org/packages/e2/41/a491dbe3fc1c195ce648939a87d3b4b3800eaade2f05278a6dc02b575c51/safetensors-0.4.4-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:baec5675944b4a47749c93c01c73d826ef7d42d36ba8d0dba36336fa80c76426", size = 391372 }, + { url = "https://files.pythonhosted.org/packages/3a/a1/d99aa8d10fa8d82276ee2aaa87afd0a6b96e69c128eaa9f93524b52c5276/safetensors-0.4.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f15117b96866401825f3e94543145028a2947d19974429246ce59403f49e77c6", size = 381800 }, + { url = "https://files.pythonhosted.org/packages/c8/1c/4fa05b79afdd4688a357a42433565b5b09137af6b4f6cd0c9e371466e2f1/safetensors-0.4.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6a13a9caea485df164c51be4eb0c87f97f790b7c3213d635eba2314d959fe929", size = 440817 }, + { url = "https://files.pythonhosted.org/packages/65/c0/152b059debd3cee4f44b7df972e915a38f776379ea99ce4a3cbea3f78dbd/safetensors-0.4.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6b54bc4ca5f9b9bba8cd4fb91c24b2446a86b5ae7f8975cf3b7a277353c3127c", size = 439483 }, + { url = "https://files.pythonhosted.org/packages/9c/93/20c05daeecf6fa93b9403c3660df1d983d7ddd5cdb3e3710ff41b72754dd/safetensors-0.4.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:08332c22e03b651c8eb7bf5fc2de90044f3672f43403b3d9ac7e7e0f4f76495e", size = 476631 }, + { url = "https://files.pythonhosted.org/packages/84/2f/bfe3e54b7dbcaef3f10b8f3c71146790ab18b0bd79ad9ca2bc2c950b68df/safetensors-0.4.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bb62841e839ee992c37bb75e75891c7f4904e772db3691c59daaca5b4ab960e1", size = 493575 }, + { url = "https://files.pythonhosted.org/packages/1b/0b/2a1b405131f26b95acdb3ed6c8e3a8c84de72d364fd26202d43e68ec4bad/safetensors-0.4.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8e5b927acc5f2f59547270b0309a46d983edc44be64e1ca27a7fcb0474d6cd67", size = 434891 }, + { url = "https://files.pythonhosted.org/packages/31/ce/cad390a08128ebcb74be79a1e03c496a4773059b2541c6a97a52fd1705fb/safetensors-0.4.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2a69c71b1ae98a8021a09a0b43363b0143b0ce74e7c0e83cacba691b62655fb8", size = 457631 }, + { url = "https://files.pythonhosted.org/packages/9f/83/d9d6e6a45d624c27155f4336af8e7b2bcde346137f6460dcd5e1bcdc2e3f/safetensors-0.4.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:23654ad162c02a5636f0cd520a0310902c4421aab1d91a0b667722a4937cc445", size = 619367 }, + { url = "https://files.pythonhosted.org/packages/9f/20/b37e1ae87cb83a1c2fe5cf0710bab12d6f186474cbbdda4fda2d7d57d225/safetensors-0.4.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:0677c109d949cf53756859160b955b2e75b0eefe952189c184d7be30ecf7e858", size = 605302 }, + { url = "https://files.pythonhosted.org/packages/99/5a/9237f1d0adba5eec3711d7c1911b3111631a86779d692fe8ad2cd709d6a4/safetensors-0.4.4-cp312-none-win32.whl", hash = "sha256:a51d0ddd4deb8871c6de15a772ef40b3dbd26a3c0451bb9e66bc76fc5a784e5b", size = 273434 }, + { url = "https://files.pythonhosted.org/packages/b9/dd/b11f3a33fe7b6c94fde08b3de094b93d3438d67922ef90bcb5002e306e0b/safetensors-0.4.4-cp312-none-win_amd64.whl", hash = "sha256:2d065059e75a798bc1933c293b68d04d79b586bb7f8c921e0ca1e82759d0dbb1", size = 286347 }, + { url = "https://files.pythonhosted.org/packages/b3/d6/7a4db869a295b57066e1399eb467c38df86439d3766c850ca8eb75b5e3a3/safetensors-0.4.4-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:9d625692578dd40a112df30c02a1adf068027566abd8e6a74893bb13d441c150", size = 391373 }, + { url = "https://files.pythonhosted.org/packages/1e/97/de856ad42ef65822ff982e7af7fc889cd717240672b45c647af7ea05c631/safetensors-0.4.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:7cabcf39c81e5b988d0adefdaea2eb9b4fd9bd62d5ed6559988c62f36bfa9a89", size = 382523 }, + { url = "https://files.pythonhosted.org/packages/07/d2/d9316af4c15b4ca0362cb4498abe47be6e04f7119f3ccf697e38ee04d33b/safetensors-0.4.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8359bef65f49d51476e9811d59c015f0ddae618ee0e44144f5595278c9f8268c", size = 441039 }, + { url = "https://files.pythonhosted.org/packages/e8/ac/478e910c891feadb693316b31447f14929b7047a612df9b628589b89be3c/safetensors-0.4.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1a32c662e7df9226fd850f054a3ead0e4213a96a70b5ce37b2d26ba27004e013", size = 439516 }, + { url = "https://files.pythonhosted.org/packages/81/43/f9929e854c4fcca98459f03de003d9619dd5f7d10d74e03df7af9907b119/safetensors-0.4.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c329a4dcc395364a1c0d2d1574d725fe81a840783dda64c31c5a60fc7d41472c", size = 477242 }, + { url = "https://files.pythonhosted.org/packages/0a/4d/b754f59fe395ea5bd8531c090c557e161fffed1753eeb3d87c0f8eaa62c4/safetensors-0.4.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:239ee093b1db877c9f8fe2d71331a97f3b9c7c0d3ab9f09c4851004a11f44b65", size = 494615 }, + { url = "https://files.pythonhosted.org/packages/54/7d/b26801dab2ecb499eb1ebdb46be65600b49bb062fe12b298150695a6e23c/safetensors-0.4.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bd574145d930cf9405a64f9923600879a5ce51d9f315443a5f706374841327b6", size = 434933 }, + { url = "https://files.pythonhosted.org/packages/e2/40/0f6627ad98e21e620a6835f02729f6b701804d3c452f8773648cbd0b9c2c/safetensors-0.4.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f6784eed29f9e036acb0b7769d9e78a0dc2c72c2d8ba7903005350d817e287a4", size = 457646 }, + { url = "https://files.pythonhosted.org/packages/30/1e/7f7819d1be7c36fbedcb7099a461b79e0ed19631b3ca5595e0f81501bb2c/safetensors-0.4.4-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:65a4a6072436bf0a4825b1c295d248cc17e5f4651e60ee62427a5bcaa8622a7a", size = 619204 }, + { url = "https://files.pythonhosted.org/packages/b1/58/e91e8c9888303919ce56f038fcad4147431fd95630890799bf8c928d1d34/safetensors-0.4.4-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:df81e3407630de060ae8313da49509c3caa33b1a9415562284eaf3d0c7705f9f", size = 605400 }, + { url = "https://files.pythonhosted.org/packages/f1/a5/ef6bdca5a44bef3930a7d821f792ba09f259c9077202c4cb779f50bb9609/safetensors-0.4.4-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:5cf6c6f6193797372adf50c91d0171743d16299491c75acad8650107dffa9269", size = 393304 }, + { url = "https://files.pythonhosted.org/packages/58/ac/339b1c04c47b00ce8854e072f91c620a4fedf736309fbfa44762ba76dc12/safetensors-0.4.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:419010156b914a3e5da4e4adf992bee050924d0fe423c4b329e523e2c14c3547", size = 383245 }, + { url = "https://files.pythonhosted.org/packages/ea/d7/ba4f035f8aef21374b43507a1853add3f73ba6c85e36fd5825a0f17b8ff7/safetensors-0.4.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88f6fd5a5c1302ce79993cc5feeadcc795a70f953c762544d01fb02b2db4ea33", size = 442349 }, + { url = "https://files.pythonhosted.org/packages/80/c9/a263b7595f0ca9f019472f1bc1d8723e829bdb81af84e2de5dda4e14c64d/safetensors-0.4.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d468cffb82d90789696d5b4d8b6ab8843052cba58a15296691a7a3df55143cd2", size = 440677 }, + { url = "https://files.pythonhosted.org/packages/31/17/90863da8ebb65194f769c6e7b19c98839f43ab752d1922a83b05efb2e325/safetensors-0.4.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9353c2af2dd467333d4850a16edb66855e795561cd170685178f706c80d2c71e", size = 478779 }, + { url = "https://files.pythonhosted.org/packages/12/c8/8efe5c84b032b46d9986520c7d3fd9e5057f0dea7b0d3900033eb5d29af1/safetensors-0.4.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:83c155b4a33368d9b9c2543e78f2452090fb030c52401ca608ef16fa58c98353", size = 498363 }, + { url = "https://files.pythonhosted.org/packages/9a/2e/810c5db5dc49657c8a8dbaff3c10bfe15411390e7e91a914a65c74305f94/safetensors-0.4.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9850754c434e636ce3dc586f534bb23bcbd78940c304775bee9005bf610e98f1", size = 436322 }, + { url = "https://files.pythonhosted.org/packages/42/4e/9360ccd309dd3e82c00e97fc44b9e4909bedf317e3cd28dde3371a400908/safetensors-0.4.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:275f500b4d26f67b6ec05629a4600645231bd75e4ed42087a7c1801bff04f4b3", size = 458167 }, + { url = "https://files.pythonhosted.org/packages/54/d1/e8b551c703f620d2d76fe1152768bcc1982b1e1e443265e4d42d4df7d941/safetensors-0.4.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:5c2308de665b7130cd0e40a2329278226e4cf083f7400c51ca7e19ccfb3886f3", size = 620106 }, + { url = "https://files.pythonhosted.org/packages/01/46/edc9d2b5ea7eb0bc278e3c1e5a24168731be757ff9366bab1138884e880d/safetensors-0.4.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:e06a9ebc8656e030ccfe44634f2a541b4b1801cd52e390a53ad8bacbd65f8518", size = 606211 }, + { url = "https://files.pythonhosted.org/packages/b6/f8/2687e0ad6e425330e2ea9abf301574006d511acaea8791947fba54ba0c59/safetensors-0.4.4-cp39-none-win32.whl", hash = "sha256:ef73df487b7c14b477016947c92708c2d929e1dee2bacdd6fff5a82ed4539537", size = 273099 }, + { url = "https://files.pythonhosted.org/packages/f1/7b/52ce228922f3fc2b42b8d1724ff6afe74791020f11a5f93d82b4a6e1e626/safetensors-0.4.4-cp39-none-win_amd64.whl", hash = "sha256:83d054818a8d1198d8bd8bc3ea2aac112a2c19def2bf73758321976788706398", size = 286075 }, + { url = "https://files.pythonhosted.org/packages/dd/fd/7a760367b62752e8c6d57c3759eaa57e5b47f55524bba3d803e03f922f95/safetensors-0.4.4-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:1d1f34c71371f0e034004a0b583284b45d233dd0b5f64a9125e16b8a01d15067", size = 393406 }, + { url = "https://files.pythonhosted.org/packages/dd/21/628d56eeae4bd0dcb5b11a9ec4001a50d2f85b726b10a864f72f34ba486f/safetensors-0.4.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:1a8043a33d58bc9b30dfac90f75712134ca34733ec3d8267b1bd682afe7194f5", size = 383386 }, + { url = "https://files.pythonhosted.org/packages/19/27/699124b4c6c27b7860140bac7ee6c50bde104e55951f8f5163f9ad20faa9/safetensors-0.4.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8db8f0c59c84792c12661f8efa85de160f80efe16b87a9d5de91b93f9e0bce3c", size = 442158 }, + { url = "https://files.pythonhosted.org/packages/23/01/85a621bdded944d6800f654c823a00df513263f1921a96d67d7fceb2ffb9/safetensors-0.4.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cfc1fc38e37630dd12d519bdec9dcd4b345aec9930bb9ce0ed04461f49e58b52", size = 436170 }, + { url = "https://files.pythonhosted.org/packages/4f/a3/b15adfffc6c8faaae6416f5c70ee4c64e4986b630b4ada18a314228a15e2/safetensors-0.4.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e5c9d86d9b13b18aafa88303e2cd21e677f5da2a14c828d2c460fe513af2e9a5", size = 458196 }, + { url = "https://files.pythonhosted.org/packages/8c/c1/ca829972be495326b5a986fe15e2ef16ecc4c35959942555091938f457af/safetensors-0.4.4-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:43251d7f29a59120a26f5a0d9583b9e112999e500afabcfdcb91606d3c5c89e3", size = 620510 }, + { url = "https://files.pythonhosted.org/packages/e7/50/89e5eac4120b55422450d5221c86d526ace14e222ea3f6c0c005f8f011ec/safetensors-0.4.4-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:2c42e9b277513b81cf507e6121c7b432b3235f980cac04f39f435b7902857f91", size = 606993 }, + { url = "https://files.pythonhosted.org/packages/d4/d4/151f64fc310f3c98ae2006b3a13085877010ac7a683406f1f3edb5c73152/safetensors-0.4.4-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:bb1ed4fcb0b3c2f3ea2c5767434622fe5d660e5752f21ac2e8d737b1e5e480bb", size = 393088 }, + { url = "https://files.pythonhosted.org/packages/91/ea/8aea163fc4e159b906bb61b761d143bfa49b33760e8b9084b1a1aab6982e/safetensors-0.4.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:73fc9a0a4343188bdb421783e600bfaf81d0793cd4cce6bafb3c2ed567a74cd5", size = 384522 }, + { url = "https://files.pythonhosted.org/packages/58/bc/906197e033a41743ced905836db00be16962cac93096e8c00fec1189d17b/safetensors-0.4.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2c37e6b714200824c73ca6eaf007382de76f39466a46e97558b8dc4cf643cfbf", size = 442172 }, + { url = "https://files.pythonhosted.org/packages/a7/31/f37f28dc8113b3fdd168c38764357131545c288302330674fcbbb86df2b2/safetensors-0.4.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f75698c5c5c542417ac4956acfc420f7d4a2396adca63a015fd66641ea751759", size = 436121 }, + { url = "https://files.pythonhosted.org/packages/ac/65/cefeaf9a5c83130ac0125f07630cdc265334eb27b9b16e35f77ab494bce4/safetensors-0.4.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ca1a209157f242eb183e209040097118472e169f2e069bfbd40c303e24866543", size = 458503 }, + { url = "https://files.pythonhosted.org/packages/3f/1d/05c864060e3d76e354f380f90b23fe1bd2fcfde0240856933550bc859bf3/safetensors-0.4.4-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:177f2b60a058f92a3cec7a1786c9106c29eca8987ecdfb79ee88126e5f47fa31", size = 621334 }, + { url = "https://files.pythonhosted.org/packages/b2/f7/a7d1ae30e0d5e890e6b2aa89ba627e723f9f73b619313e0194df17e5c49f/safetensors-0.4.4-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:ee9622e84fe6e4cd4f020e5fda70d6206feff3157731df7151d457fdae18e541", size = 607406 }, +] + +[[package]] +name = "sagemaker" +version = "2.226.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "boto3", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "cloudpickle", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "docker", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "google-pasta", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "importlib-metadata", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jsonschema", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pandas", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pathos", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "platformdirs", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "psutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "schema", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "smdebug-rulesconfig", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tblib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "urllib3", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ef/2b/24d51493505aa3c460470e5b4c12ae441325a4f998e64bb498803f1ca676/sagemaker-2.226.1.tar.gz", hash = "sha256:c4b6aede5bf800abc5de384ad4ccf1e0357bc047fd360b3254059c8cb38f5bb5", size = 1148161 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/32/7c/1716beb800e9dd2cd63974b031eba23c26d0fc67ce64f9fcaa01584996f2/sagemaker-2.226.1-py3-none-any.whl", hash = "sha256:57773fa4ce01c7ee0ec9928579073eabcea065baac23d2021db57d2afcf38ebf", size = 1529707 }, +] + +[[package]] +name = "schema" +version = "0.7.7" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d4/01/0ea2e66bad2f13271e93b729c653747614784d3ebde219679e41ccdceecd/schema-0.7.7.tar.gz", hash = "sha256:7da553abd2958a19dc2547c388cde53398b39196175a9be59ea1caf5ab0a1807", size = 44245 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ad/1b/81855a88c6db2b114d5b2e9f96339190d5ee4d1b981d217fa32127bb00e0/schema-0.7.7-py2.py3-none-any.whl", hash = "sha256:5d976a5b50f36e74e2157b47097b60002bd4d42e65425fcc9c9befadb4255dde", size = 18632 }, +] + +[[package]] +name = "scikit-learn" +version = "1.5.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "joblib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "scipy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "threadpoolctl", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/92/72/2961b9874a9ddf2b0f95f329d4e67f67c3301c1d88ba5e239ff25661bb85/scikit_learn-1.5.1.tar.gz", hash = "sha256:0ea5d40c0e3951df445721927448755d3fe1d80833b0b7308ebff5d2a45e6414", size = 6958368 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f8/59/d8ea8c05e61d2afa988dfcfe47526595b531e94d23babf58d2e00a35f646/scikit_learn-1.5.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:781586c414f8cc58e71da4f3d7af311e0505a683e112f2f62919e3019abd3745", size = 12102257 }, + { url = "https://files.pythonhosted.org/packages/1f/c6/ba8e5691acca616adc8f0d6f8f5e79d55b927530aa404ee712b077acf0cf/scikit_learn-1.5.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:f5b213bc29cc30a89a3130393b0e39c847a15d769d6e59539cd86b75d276b1a7", size = 10975310 }, + { url = "https://files.pythonhosted.org/packages/5c/c6/e362563cc7dfe37e4699cbf2b2d22c2854be227c254976de1c4854fc6e84/scikit_learn-1.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1ff4ba34c2abff5ec59c803ed1d97d61b036f659a17f55be102679e88f926fac", size = 12496508 }, + { url = "https://files.pythonhosted.org/packages/f2/60/6c589c91e474721efdcec82ea9cc5c743359e52637e46c364ee5236666ef/scikit_learn-1.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:161808750c267b77b4a9603cf9c93579c7a74ba8486b1336034c2f1579546d21", size = 13352348 }, + { url = "https://files.pythonhosted.org/packages/f1/13/de29b945fb28fc0c24159d3a83f1250c5232c1c9abac12434c7c3447e9cc/scikit_learn-1.5.1-cp310-cp310-win_amd64.whl", hash = "sha256:10e49170691514a94bb2e03787aa921b82dbc507a4ea1f20fd95557862c98dc1", size = 10966250 }, + { url = "https://files.pythonhosted.org/packages/03/86/ab9f95e338c5ef5b4e79463ee91e55aae553213835e59bf038bc0cc21bf8/scikit_learn-1.5.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:154297ee43c0b83af12464adeab378dee2d0a700ccd03979e2b821e7dd7cc1c2", size = 12087598 }, + { url = "https://files.pythonhosted.org/packages/7d/d7/fb80c63062b60b1fa5dcb2d4dd3a4e83bd8c68cdc83cf6ff8c016228f184/scikit_learn-1.5.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:b5e865e9bd59396220de49cb4a57b17016256637c61b4c5cc81aaf16bc123bbe", size = 10979067 }, + { url = "https://files.pythonhosted.org/packages/c1/f8/fd3fa610cac686952d8c78b8b44cf5263c6c03885bd8e5d5819c684b44e8/scikit_learn-1.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:909144d50f367a513cee6090873ae582dba019cb3fca063b38054fa42704c3a4", size = 12485469 }, + { url = "https://files.pythonhosted.org/packages/32/63/ed228892adad313aab0d0f9261241e7bf1efe36730a2788ad424bcad00ca/scikit_learn-1.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:689b6f74b2c880276e365fe84fe4f1befd6a774f016339c65655eaff12e10cbf", size = 13335048 }, + { url = "https://files.pythonhosted.org/packages/5d/55/0403bf2031250ac982c8053397889fbc5a3a2b3798b913dae4f51c3af6a4/scikit_learn-1.5.1-cp311-cp311-win_amd64.whl", hash = "sha256:9a07f90846313a7639af6a019d849ff72baadfa4c74c778821ae0fad07b7275b", size = 10988436 }, + { url = "https://files.pythonhosted.org/packages/b1/8d/cf392a56e24627093a467642c8b9263052372131359b570df29aaf4811ab/scikit_learn-1.5.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5944ce1faada31c55fb2ba20a5346b88e36811aab504ccafb9f0339e9f780395", size = 12102404 }, + { url = "https://files.pythonhosted.org/packages/d5/2c/734fc9269bdb6768905ac41b82d75264b26925b1e462f4ebf45fe4f17646/scikit_learn-1.5.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:0828673c5b520e879f2af6a9e99eee0eefea69a2188be1ca68a6121b809055c1", size = 11037398 }, + { url = "https://files.pythonhosted.org/packages/d3/a9/15774b178bcd1cde1c470adbdb554e1504dce7c302e02ff736c90d65e014/scikit_learn-1.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:508907e5f81390e16d754e8815f7497e52139162fd69c4fdbd2dfa5d6cc88915", size = 12089887 }, + { url = "https://files.pythonhosted.org/packages/8a/5d/047cde25131eef3a38d03317fa7d25d6f60ce6e8ccfd24ac88b3e309fc00/scikit_learn-1.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:97625f217c5c0c5d0505fa2af28ae424bd37949bb2f16ace3ff5f2f81fb4498b", size = 13079093 }, + { url = "https://files.pythonhosted.org/packages/cb/be/dec2a8d31d133034a8ec51ae68ac564ec9bde1c78a64551f1438c3690b9e/scikit_learn-1.5.1-cp312-cp312-win_amd64.whl", hash = "sha256:da3f404e9e284d2b0a157e1b56b6566a34eb2798205cba35a211df3296ab7a74", size = 10945350 }, + { url = "https://files.pythonhosted.org/packages/cb/9f/d2837e96be692f99b92a3cb192e8f46501f7ddab6c93a07a9b206f7b3297/scikit_learn-1.5.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:88e0672c7ac21eb149d409c74cc29f1d611d5158175846e7a9c2427bd12b3956", size = 12138083 }, + { url = "https://files.pythonhosted.org/packages/18/3e/b46f298305c243395b88f0f201c32946bdd448e9583315255d87706c3170/scikit_learn-1.5.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:7b073a27797a283187a4ef4ee149959defc350b46cbf63a84d8514fe16b69855", size = 11005997 }, + { url = "https://files.pythonhosted.org/packages/00/84/8d2174ef802da1b9eedc8691883ed08a16318e2189fd5377e5bc2d404c0b/scikit_learn-1.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b59e3e62d2be870e5c74af4e793293753565c7383ae82943b83383fdcf5cc5c1", size = 12532003 }, + { url = "https://files.pythonhosted.org/packages/12/f8/d6bc56d20c60b2b66e005dfed16fdf8c46dbe559d40896d06c448a65f134/scikit_learn-1.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1bd8d3a19d4bd6dc5a7d4f358c8c3a60934dc058f363c34c0ac1e9e12a31421d", size = 13393818 }, + { url = "https://files.pythonhosted.org/packages/a8/ed/941b210029c1051233b082a19c36b930f56dda34a8a5227dbbd1bc08f7eb/scikit_learn-1.5.1-cp39-cp39-win_amd64.whl", hash = "sha256:5f57428de0c900a98389c4a433d4a3cf89de979b3aa24d1c1d251802aa15e44d", size = 10993525 }, +] + +[[package]] +name = "scipy" +version = "1.13.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ae/00/48c2f661e2816ccf2ecd77982f6605b2950afe60f60a52b4cbbc2504aa8f/scipy-1.13.1.tar.gz", hash = "sha256:095a87a0312b08dfd6a6155cbbd310a8c51800fc931b8c0b84003014b874ed3c", size = 57210720 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/33/59/41b2529908c002ade869623b87eecff3e11e3ce62e996d0bdcb536984187/scipy-1.13.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:20335853b85e9a49ff7572ab453794298bcf0354d8068c5f6775a0eabf350aca", size = 39328076 }, + { url = "https://files.pythonhosted.org/packages/d5/33/f1307601f492f764062ce7dd471a14750f3360e33cd0f8c614dae208492c/scipy-1.13.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:d605e9c23906d1994f55ace80e0125c587f96c020037ea6aa98d01b4bd2e222f", size = 30306232 }, + { url = "https://files.pythonhosted.org/packages/c0/66/9cd4f501dd5ea03e4a4572ecd874936d0da296bd04d1c45ae1a4a75d9c3a/scipy-1.13.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cfa31f1def5c819b19ecc3a8b52d28ffdcc7ed52bb20c9a7589669dd3c250989", size = 33743202 }, + { url = "https://files.pythonhosted.org/packages/a3/ba/7255e5dc82a65adbe83771c72f384d99c43063648456796436c9a5585ec3/scipy-1.13.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f26264b282b9da0952a024ae34710c2aff7d27480ee91a2e82b7b7073c24722f", size = 38577335 }, + { url = "https://files.pythonhosted.org/packages/49/a5/bb9ded8326e9f0cdfdc412eeda1054b914dfea952bda2097d174f8832cc0/scipy-1.13.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:eccfa1906eacc02de42d70ef4aecea45415f5be17e72b61bafcfd329bdc52e94", size = 38820728 }, + { url = "https://files.pythonhosted.org/packages/12/30/df7a8fcc08f9b4a83f5f27cfaaa7d43f9a2d2ad0b6562cced433e5b04e31/scipy-1.13.1-cp310-cp310-win_amd64.whl", hash = "sha256:2831f0dc9c5ea9edd6e51e6e769b655f08ec6db6e2e10f86ef39bd32eb11da54", size = 46210588 }, + { url = "https://files.pythonhosted.org/packages/b4/15/4a4bb1b15bbd2cd2786c4f46e76b871b28799b67891f23f455323a0cdcfb/scipy-1.13.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:27e52b09c0d3a1d5b63e1105f24177e544a222b43611aaf5bc44d4a0979e32f9", size = 39333805 }, + { url = "https://files.pythonhosted.org/packages/ba/92/42476de1af309c27710004f5cdebc27bec62c204db42e05b23a302cb0c9a/scipy-1.13.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:54f430b00f0133e2224c3ba42b805bfd0086fe488835effa33fa291561932326", size = 30317687 }, + { url = "https://files.pythonhosted.org/packages/80/ba/8be64fe225360a4beb6840f3cbee494c107c0887f33350d0a47d55400b01/scipy-1.13.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e89369d27f9e7b0884ae559a3a956e77c02114cc60a6058b4e5011572eea9299", size = 33694638 }, + { url = "https://files.pythonhosted.org/packages/36/07/035d22ff9795129c5a847c64cb43c1fa9188826b59344fee28a3ab02e283/scipy-1.13.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a78b4b3345f1b6f68a763c6e25c0c9a23a9fd0f39f5f3d200efe8feda560a5fa", size = 38569931 }, + { url = "https://files.pythonhosted.org/packages/d9/10/f9b43de37e5ed91facc0cfff31d45ed0104f359e4f9a68416cbf4e790241/scipy-1.13.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:45484bee6d65633752c490404513b9ef02475b4284c4cfab0ef946def50b3f59", size = 38838145 }, + { url = "https://files.pythonhosted.org/packages/4a/48/4513a1a5623a23e95f94abd675ed91cfb19989c58e9f6f7d03990f6caf3d/scipy-1.13.1-cp311-cp311-win_amd64.whl", hash = "sha256:5713f62f781eebd8d597eb3f88b8bf9274e79eeabf63afb4a737abc6c84ad37b", size = 46196227 }, + { url = "https://files.pythonhosted.org/packages/f2/7b/fb6b46fbee30fc7051913068758414f2721003a89dd9a707ad49174e3843/scipy-1.13.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5d72782f39716b2b3509cd7c33cdc08c96f2f4d2b06d51e52fb45a19ca0c86a1", size = 39357301 }, + { url = "https://files.pythonhosted.org/packages/dc/5a/2043a3bde1443d94014aaa41e0b50c39d046dda8360abd3b2a1d3f79907d/scipy-1.13.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:017367484ce5498445aade74b1d5ab377acdc65e27095155e448c88497755a5d", size = 30363348 }, + { url = "https://files.pythonhosted.org/packages/e7/cb/26e4a47364bbfdb3b7fb3363be6d8a1c543bcd70a7753ab397350f5f189a/scipy-1.13.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:949ae67db5fa78a86e8fa644b9a6b07252f449dcf74247108c50e1d20d2b4627", size = 33406062 }, + { url = "https://files.pythonhosted.org/packages/88/ab/6ecdc526d509d33814835447bbbeedbebdec7cca46ef495a61b00a35b4bf/scipy-1.13.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de3ade0e53bc1f21358aa74ff4830235d716211d7d077e340c7349bc3542e884", size = 38218311 }, + { url = "https://files.pythonhosted.org/packages/0b/00/9f54554f0f8318100a71515122d8f4f503b1a2c4b4cfab3b4b68c0eb08fa/scipy-1.13.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2ac65fb503dad64218c228e2dc2d0a0193f7904747db43014645ae139c8fad16", size = 38442493 }, + { url = "https://files.pythonhosted.org/packages/3e/df/963384e90733e08eac978cd103c34df181d1fec424de383cdc443f418dd4/scipy-1.13.1-cp312-cp312-win_amd64.whl", hash = "sha256:cdd7dacfb95fea358916410ec61bbc20440f7860333aee6d882bb8046264e949", size = 45910955 }, + { url = "https://files.pythonhosted.org/packages/7f/29/c2ea58c9731b9ecb30b6738113a95d147e83922986b34c685b8f6eefde21/scipy-1.13.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:436bbb42a94a8aeef855d755ce5a465479c721e9d684de76bf61a62e7c2b81d5", size = 39352927 }, + { url = "https://files.pythonhosted.org/packages/5c/c0/e71b94b20ccf9effb38d7147c0064c08c622309fd487b1b677771a97d18c/scipy-1.13.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:8335549ebbca860c52bf3d02f80784e91a004b71b059e3eea9678ba994796a24", size = 30324538 }, + { url = "https://files.pythonhosted.org/packages/6d/0f/aaa55b06d474817cea311e7b10aab2ea1fd5d43bc6a2861ccc9caec9f418/scipy-1.13.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d533654b7d221a6a97304ab63c41c96473ff04459e404b83275b60aa8f4b7004", size = 33732190 }, + { url = "https://files.pythonhosted.org/packages/35/f5/d0ad1a96f80962ba65e2ce1de6a1e59edecd1f0a7b55990ed208848012e0/scipy-1.13.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:637e98dcf185ba7f8e663e122ebf908c4702420477ae52a04f9908707456ba4d", size = 38612244 }, + { url = "https://files.pythonhosted.org/packages/8d/02/1165905f14962174e6569076bcc3315809ae1291ed14de6448cc151eedfd/scipy-1.13.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a014c2b3697bde71724244f63de2476925596c24285c7a637364761f8710891c", size = 38845637 }, + { url = "https://files.pythonhosted.org/packages/3e/77/dab54fe647a08ee4253963bcd8f9cf17509c8ca64d6335141422fe2e2114/scipy-1.13.1-cp39-cp39-win_amd64.whl", hash = "sha256:392e4ec766654852c25ebad4f64e4e584cf19820b980bc04960bca0b0cd6eaa2", size = 46227440 }, +] + +[[package]] +name = "segments" +version = "2.2.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "clldutils", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "csvw", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "regex", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0b/a6/b678440988daa66ac151bc3ca24f2ad8dcfdb591604f5c2b83e2515b1f58/segments-2.2.1.tar.gz", hash = "sha256:515ae188f21d24e420d48ad45689edc747d961d6b52fde22e47500a8d85f2741", size = 14677 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/93/d4/74dba5011533e66becf35aae5cf1d726e760f445db052592bad70e75305c/segments-2.2.1-py2.py3-none-any.whl", hash = "sha256:069860ae5a499ad7bd86e23ee52250a16e61ba3474c17e515b16d494ac1423c1", size = 15039 }, +] + +[[package]] +name = "sentencepiece" +version = "0.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c9/d2/b9c7ca067c26d8ff085d252c89b5f69609ca93fb85a00ede95f4857865d4/sentencepiece-0.2.0.tar.gz", hash = "sha256:a52c19171daaf2e697dc6cbe67684e0fa341b1248966f6aebb541de654d15843", size = 2632106 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f6/71/98648c3b64b23edb5403f74bcc906ad21766872a6e1ada26ea3f1eb941ab/sentencepiece-0.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:188779e1298a1c8b8253c7d3ad729cb0a9891e5cef5e5d07ce4592c54869e227", size = 2408979 }, + { url = "https://files.pythonhosted.org/packages/77/9f/7efbaa6d4c0c718a9affbecc536b03ca62f99f421bdffb531c16030e2d2b/sentencepiece-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bed9cf85b296fa2b76fc2547b9cbb691a523864cebaee86304c43a7b4cb1b452", size = 1238845 }, + { url = "https://files.pythonhosted.org/packages/1c/e4/c2541027a43ec6962ba9b601805d17ba3f86b38bdeae0e8ac65a2981e248/sentencepiece-0.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d7b67e724bead13f18db6e1d10b6bbdc454af574d70efbb36f27d90387be1ca3", size = 1181472 }, + { url = "https://files.pythonhosted.org/packages/fd/46/316c1ba6c52b97de76aff7b9da678f7afbb52136afb2987c474d95630e65/sentencepiece-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2fde4b08cfe237be4484c6c7c2e2c75fb862cfeab6bd5449ce4caeafd97b767a", size = 1259151 }, + { url = "https://files.pythonhosted.org/packages/aa/5a/3c48738a0835d76dd06c62b6ac48d39c923cde78dd0f587353bdcbb99851/sentencepiece-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4c378492056202d1c48a4979650981635fd97875a00eabb1f00c6a236b013b5e", size = 1355931 }, + { url = "https://files.pythonhosted.org/packages/a6/27/33019685023221ca8ed98e8ceb7ae5e166032686fa3662c68f1f1edf334e/sentencepiece-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1380ce6540a368de2ef6d7e6ba14ba8f3258df650d39ba7d833b79ee68a52040", size = 1301537 }, + { url = "https://files.pythonhosted.org/packages/ca/e4/55f97cef14293171fef5f96e96999919ab5b4d1ce95b53547ad653d7e3bf/sentencepiece-0.2.0-cp310-cp310-win32.whl", hash = "sha256:a1151d6a6dd4b43e552394aed0edfe9292820272f0194bd56c7c1660a0c06c3d", size = 936747 }, + { url = "https://files.pythonhosted.org/packages/85/f4/4ef1a6e0e9dbd8a60780a91df8b7452ada14cfaa0e17b3b8dfa42cecae18/sentencepiece-0.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:d490142b0521ef22bc1085f061d922a2a6666175bb6b42e588ff95c0db6819b2", size = 991525 }, + { url = "https://files.pythonhosted.org/packages/32/43/8f8885168a47a02eba1455bd3f4f169f50ad5b8cebd2402d0f5e20854d04/sentencepiece-0.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:17982700c4f6dbb55fa3594f3d7e5dd1c8659a274af3738e33c987d2a27c9d5c", size = 2409036 }, + { url = "https://files.pythonhosted.org/packages/0f/35/e63ba28062af0a3d688a9f128e407a1a2608544b2f480cb49bf7f4b1cbb9/sentencepiece-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:7c867012c0e8bcd5bdad0f791609101cb5c66acb303ab3270218d6debc68a65e", size = 1238921 }, + { url = "https://files.pythonhosted.org/packages/de/42/ae30952c4a0bd773e90c9bf2579f5533037c886dfc8ec68133d5694f4dd2/sentencepiece-0.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7fd6071249c74f779c5b27183295b9202f8dedb68034e716784364443879eaa6", size = 1181477 }, + { url = "https://files.pythonhosted.org/packages/e3/ac/2f2ab1d60bb2d795d054eebe5e3f24b164bc21b5a9b75fba7968b3b91b5a/sentencepiece-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:27f90c55a65013cbb8f4d7aab0599bf925cde4adc67ae43a0d323677b5a1c6cb", size = 1259182 }, + { url = "https://files.pythonhosted.org/packages/45/fb/14633c6ecf262c468759ffcdb55c3a7ee38fe4eda6a70d75ee7c7d63c58b/sentencepiece-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b293734059ef656dcd65be62ff771507bea8fed0a711b6733976e1ed3add4553", size = 1355537 }, + { url = "https://files.pythonhosted.org/packages/fb/12/2f5c8d4764b00033cf1c935b702d3bb878d10be9f0b87f0253495832d85f/sentencepiece-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e58b47f933aca74c6a60a79dcb21d5b9e47416256c795c2d58d55cec27f9551d", size = 1301464 }, + { url = "https://files.pythonhosted.org/packages/4e/b1/67afc0bde24f6dcb3acdea0dd8dcdf4b8b0db240f6bacd39378bd32d09f8/sentencepiece-0.2.0-cp311-cp311-win32.whl", hash = "sha256:c581258cf346b327c62c4f1cebd32691826306f6a41d8c4bec43b010dee08e75", size = 936749 }, + { url = "https://files.pythonhosted.org/packages/a2/f6/587c62fd21fc988555b85351f50bbde43a51524caafd63bc69240ded14fd/sentencepiece-0.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:0993dbc665f4113017892f1b87c3904a44d0640eda510abcacdfb07f74286d36", size = 991520 }, + { url = "https://files.pythonhosted.org/packages/27/5a/141b227ed54293360a9ffbb7bf8252b4e5efc0400cdeac5809340e5d2b21/sentencepiece-0.2.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:ea5f536e32ea8ec96086ee00d7a4a131ce583a1b18d130711707c10e69601cb2", size = 2409370 }, + { url = "https://files.pythonhosted.org/packages/2e/08/a4c135ad6fc2ce26798d14ab72790d66e813efc9589fd30a5316a88ca8d5/sentencepiece-0.2.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d0cb51f53b6aae3c36bafe41e86167c71af8370a039f542c43b0cce5ef24a68c", size = 1239288 }, + { url = "https://files.pythonhosted.org/packages/49/0a/2fe387f825ac5aad5a0bfe221904882106cac58e1b693ba7818785a882b6/sentencepiece-0.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:3212121805afc58d8b00ab4e7dd1f8f76c203ddb9dc94aa4079618a31cf5da0f", size = 1181597 }, + { url = "https://files.pythonhosted.org/packages/cc/38/e4698ee2293fe4835dc033c49796a39b3eebd8752098f6bd0aa53a14af1f/sentencepiece-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2a3149e3066c2a75e0d68a43eb632d7ae728c7925b517f4c05c40f6f7280ce08", size = 1259220 }, + { url = "https://files.pythonhosted.org/packages/12/24/fd7ef967c9dad2f6e6e5386d0cadaf65cda8b7be6e3861a9ab3121035139/sentencepiece-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:632f3594d3e7ac8b367bca204cb3fd05a01d5b21455acd097ea4c0e30e2f63d7", size = 1355962 }, + { url = "https://files.pythonhosted.org/packages/4f/d2/18246f43ca730bb81918f87b7e886531eda32d835811ad9f4657c54eee35/sentencepiece-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f295105c6bdbb05bd5e1b0cafbd78ff95036f5d3641e7949455a3f4e5e7c3109", size = 1301706 }, + { url = "https://files.pythonhosted.org/packages/8a/47/ca237b562f420044ab56ddb4c278672f7e8c866e183730a20e413b38a989/sentencepiece-0.2.0-cp312-cp312-win32.whl", hash = "sha256:fb89f811e5efd18bab141afc3fea3de141c3f69f3fe9e898f710ae7fe3aab251", size = 936941 }, + { url = "https://files.pythonhosted.org/packages/c6/97/d159c32642306ee2b70732077632895438867b3b6df282354bd550cf2a67/sentencepiece-0.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:7a673a72aab81fef5ebe755c6e0cc60087d1f3a4700835d40537183c1703a45f", size = 991994 }, + { url = "https://files.pythonhosted.org/packages/e9/18/eb620d94d63f62ca69cecccf4459529864ac3fbb35ec123190bd58dadb46/sentencepiece-0.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:1e0f9c4d0a6b0af59b613175f019916e28ade076e21242fd5be24340d8a2f64a", size = 2409003 }, + { url = "https://files.pythonhosted.org/packages/6e/a6/df28bc0b6a2a86416232c0a5f0d69a9cb7244bb95cb5dcdfcbf01cced8a6/sentencepiece-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:298f21cc1366eb60311aedba3169d30f885c363ddbf44214b0a587d2908141ad", size = 1238898 }, + { url = "https://files.pythonhosted.org/packages/79/91/b54a528e0789cd7986341ed3909bec56365c3b672daef8b10aa4098238f0/sentencepiece-0.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3f1ec95aa1e5dab11f37ac7eff190493fd87770f7a8b81ebc9dd768d1a3c8704", size = 1181534 }, + { url = "https://files.pythonhosted.org/packages/a3/69/e96ef68261fa5b82379fdedb325ceaf1d353c6e839ec346d8244e0da5f2f/sentencepiece-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7b06b70af54daa4b4904cbb90b4eb6d35c9f3252fdc86c9c32d5afd4d30118d8", size = 1259161 }, + { url = "https://files.pythonhosted.org/packages/45/de/461d15856c29ba1ce778cf76e0462572661f647abc8a5373690c52e98a00/sentencepiece-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:22e37bac44dd6603388cb598c64ff7a76e41ca774646f21c23aadfbf5a2228ab", size = 1355945 }, + { url = "https://files.pythonhosted.org/packages/5f/01/c95e42eb86282b2c79305d3e0b0ca5a743f85a61262bb7130999c70b9374/sentencepiece-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0461324897735512a32d222e3d886e24ad6a499761952b6bda2a9ee6e4313ea5", size = 1301596 }, + { url = "https://files.pythonhosted.org/packages/be/47/e16f368fe6327e873e8029aa539115025e9f61a4e8ca8f0f8eaf8e6a4c1c/sentencepiece-0.2.0-cp39-cp39-win32.whl", hash = "sha256:38aed822fb76435fa1f12185f10465a94ab9e51d5e8a9159e9a540ce926f0ffd", size = 936757 }, + { url = "https://files.pythonhosted.org/packages/4b/36/497e6407700efd6b97f81bc160913a70d33b9b09227429f68fc86f387bbe/sentencepiece-0.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:d8cf876516548b5a1d6ac4745d8b554f5c07891d55da557925e5c13ff0b4e6ad", size = 991541 }, +] + +[[package]] +name = "setuptools" +version = "72.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/5e/11/487b18cc768e2ae25a919f230417983c8d5afa1b6ee0abd8b6db0b89fa1d/setuptools-72.1.0.tar.gz", hash = "sha256:8d243eff56d095e5817f796ede6ae32941278f542e0f941867cc05ae52b162ec", size = 2419487 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e1/58/e0ef3b9974a04ce9cde2a7a33881ddcb2d68450803745804545cdd8d258f/setuptools-72.1.0-py3-none-any.whl", hash = "sha256:5a03e1860cf56bb6ef48ce186b0e557fdba433237481a9a625176c2831be15d1", size = 2337965 }, +] + +[[package]] +name = "sigopt" +version = "8.8.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "backoff", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "click", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "gitpython", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pypng", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "urllib3", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/15/ca/b010da25af0fe261876a0bca8a0b0169b9c3d0feff40970233c5aa5de3dd/sigopt-8.8.3.tar.gz", hash = "sha256:89807641cb5f9142bd9d3132b8e295d19ecdba4245b4fc7abfe849c0464a44ca", size = 142229 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9e/2a/8a98da1cb91fe894fcbbe8b73371e5abf3fd1e0ae64a479b2439b6ab72fe/sigopt-8.8.3-py2.py3-none-any.whl", hash = "sha256:81437023b07f648c311b15e60bb2118b4fc9e15d5f3dd72ca519a9974a5ace0e", size = 198787 }, +] + +[[package]] +name = "six" +version = "1.16.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/71/39/171f1c67cd00715f190ba0b100d606d440a28c93c7714febeca8b79af85e/six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926", size = 34041 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d9/5a/e7c31adbe875f2abbb91bd84cf2dc52d792b5a01506781dbcf25c91daf11/six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254", size = 11053 }, +] + +[[package]] +name = "smdebug-rulesconfig" +version = "1.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cc/7d/8ad6a2098e03c1f811d1277a2cedb81265828f144f6d323b83a2392e8bb9/smdebug_rulesconfig-1.0.1.tar.gz", hash = "sha256:7a19e6eb2e6bcfefbc07e4a86ef7a88f32495001a038bf28c7d8e77ab793fcd6", size = 12060 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/26/a1/45a13a05198bbe9527bab2c5e5daa8bd02678aa825eec14783e767bfa7d1/smdebug_rulesconfig-1.0.1-py2.py3-none-any.whl", hash = "sha256:104da3e6931ecf879dfc687ca4bbb3bee5ea2bc27f4478e9dbb3ee3655f1ae61", size = 20282 }, +] + +[[package]] +name = "smmap" +version = "5.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/88/04/b5bf6d21dc4041000ccba7eb17dd3055feb237e7ffc2c20d3fae3af62baa/smmap-5.0.1.tar.gz", hash = "sha256:dceeb6c0028fdb6734471eb07c0cd2aae706ccaecab45965ee83f11c8d3b1f62", size = 22291 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/a5/10f97f73544edcdef54409f1d839f6049a0d79df68adbc1ceb24d1aaca42/smmap-5.0.1-py3-none-any.whl", hash = "sha256:e6d8668fa5f93e706934a62d7b4db19c8d9eb8cf2adbb75ef1b675aa332b69da", size = 24282 }, +] + +[[package]] +name = "sniffio" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a2/87/a6771e1546d97e7e041b6ae58d80074f81b7d5121207425c964ddf5cfdbd/sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc", size = 20372 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2", size = 10235 }, +] + +[[package]] +name = "sortedcontainers" +version = "2.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e8/c4/ba2f8066cceb6f23394729afe52f3bf7adec04bf9ed2c820b39e19299111/sortedcontainers-2.4.0.tar.gz", hash = "sha256:25caa5a06cc30b6b83d11423433f65d1f9d76c4c6a0c90e3379eaa43b9bfdb88", size = 30594 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/32/46/9cb0e58b2deb7f82b84065f37f3bffeb12413f947f9388e4cac22c4621ce/sortedcontainers-2.4.0-py2.py3-none-any.whl", hash = "sha256:a163dcaede0f1c021485e957a39245190e74249897e2ae4b2aa38595db237ee0", size = 29575 }, +] + +[[package]] +name = "soundfile" +version = "0.12.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6f/96/5ff33900998bad58d5381fd1acfcdac11cbea4f08fc72ac1dc25ffb13f6a/soundfile-0.12.1.tar.gz", hash = "sha256:e8e1017b2cf1dda767aef19d2fd9ee5ebe07e050d430f77a0a7c66ba08b8cdae", size = 43184 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/bc/cd845c2dbb4d257c744cd58a5bcdd9f6d235ca317e7e22e49564ec88dcd9/soundfile-0.12.1-py2.py3-none-any.whl", hash = "sha256:828a79c2e75abab5359f780c81dccd4953c45a2c4cd4f05ba3e233ddf984b882", size = 24030 }, + { url = "https://files.pythonhosted.org/packages/c8/73/059c84343be6509b480013bf1eeb11b96c5f9eb48deff8f83638011f6b2c/soundfile-0.12.1-py2.py3-none-macosx_10_9_x86_64.whl", hash = "sha256:d922be1563ce17a69582a352a86f28ed8c9f6a8bc951df63476ffc310c064bfa", size = 1213305 }, + { url = "https://files.pythonhosted.org/packages/71/87/31d2b9ed58975cec081858c01afaa3c43718eb0f62b5698a876d94739ad0/soundfile-0.12.1-py2.py3-none-macosx_11_0_arm64.whl", hash = "sha256:bceaab5c4febb11ea0554566784bcf4bc2e3977b53946dda2b12804b4fe524a8", size = 1075977 }, + { url = "https://files.pythonhosted.org/packages/ad/bd/0602167a213d9184fc688b1086dc6d374b7ae8c33eccf169f9b50ce6568c/soundfile-0.12.1-py2.py3-none-manylinux_2_17_x86_64.whl", hash = "sha256:2dc3685bed7187c072a46ab4ffddd38cef7de9ae5eb05c03df2ad569cf4dacbc", size = 1257765 }, + { url = "https://files.pythonhosted.org/packages/c1/07/7591f4efd29e65071c3a61b53725036ea8f73366a4920a481ebddaf8d0ca/soundfile-0.12.1-py2.py3-none-manylinux_2_31_x86_64.whl", hash = "sha256:074247b771a181859d2bc1f98b5ebf6d5153d2c397b86ee9e29ba602a8dfe2a6", size = 1174746 }, + { url = "https://files.pythonhosted.org/packages/03/0f/49941ed8a2d94e5b36ea94346fb1d2b22e847fede902e05be4c96f26be7d/soundfile-0.12.1-py2.py3-none-win32.whl", hash = "sha256:59dfd88c79b48f441bbf6994142a19ab1de3b9bb7c12863402c2bc621e49091a", size = 888234 }, + { url = "https://files.pythonhosted.org/packages/50/ff/26a4ee48d0b66625a4e4028a055b9f25bc9d7c7b2d17d21a45137621a50d/soundfile-0.12.1-py2.py3-none-win_amd64.whl", hash = "sha256:0d86924c00b62552b650ddd28af426e3ff2d4dc2e9047dae5b3d8452e0a49a77", size = 1009109 }, +] + +[[package]] +name = "soupsieve" +version = "2.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ce/21/952a240de1c196c7e3fbcd4e559681f0419b1280c617db21157a0390717b/soupsieve-2.5.tar.gz", hash = "sha256:5663d5a7b3bfaeee0bc4372e7fc48f9cff4940b3eec54a6451cc5299f1097690", size = 100943 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4c/f3/038b302fdfbe3be7da016777069f26ceefe11a681055ea1f7817546508e3/soupsieve-2.5-py3-none-any.whl", hash = "sha256:eaa337ff55a1579b6549dc679565eac1e3d000563bcb1c8ab0d0fefbc0c2cdc7", size = 36131 }, +] + +[[package]] +name = "soxr" +version = "0.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/51/42/e05dc1801462807886617c0db5a7f34287f9a46f5fbbfc64269a203f4f4f/soxr-0.4.0.tar.gz", hash = "sha256:02385e3de07e28ddbc19ab41216075d889575895e778ce2ada950d5f46cf6a52", size = 300434 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0a/29/9c39bf8e4ac6a66090941466e4b3341d0ed2e36bc07df1fb17c72beba550/soxr-0.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c0be9dbc6cb0de2e2147ad33ffe4dee0391ed38125248253f53d3f1a05b65425", size = 414891 }, + { url = "https://files.pythonhosted.org/packages/17/a3/9d63dcf5ea1371600dc9729133451e50094ddf049a69d3e7a15d89905514/soxr-0.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:46c1dce06d156f9a6563c41f97d5d6978ccc993c3682c6f8190438c0f7417d36", size = 387711 }, + { url = "https://files.pythonhosted.org/packages/0f/91/3ebe8121f7fec41f6701c04b26df578eaa1994c6f358860d8dd25cff0953/soxr-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:784d2dd6d43d2663d384ed7e1f6a1156f98395bbd889b0a9def6c61a9e17cda1", size = 1234093 }, + { url = "https://files.pythonhosted.org/packages/a4/c7/ac1219521b5af872af30d828af19d09b50cd75e4ec83be5ffb147175b299/soxr-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6ee59424f4f1c81f6a9f3d03b4bde27992272dc8c36f9b08af7f31ce720fa6ba", size = 1255672 }, + { url = "https://files.pythonhosted.org/packages/ef/b7/b9652d1c7be4c4779274e577c6ed2d941a064bc76082169aed1b1ed01cf6/soxr-0.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:2975734033e8da5a241f2498b65513a160882dd1283cf5eb7eac5b3b262ae668", size = 184468 }, + { url = "https://files.pythonhosted.org/packages/5f/d5/9130ccf0b55722def96f4a915d4d332aa4a6671b2ec53b8331bf07a67f24/soxr-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:38374140503b17b3234d0deb83dfe0319727df1dbab41e1a576b61405fc82767", size = 415220 }, + { url = "https://files.pythonhosted.org/packages/62/0a/067beb1e4487d584ba209dcb0135bbbb4b3f6fe1a58109fc56a12369b550/soxr-0.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a370f661576916e8b208990eb70e5db4e07ab025b47492a633370846bc0a9678", size = 387911 }, + { url = "https://files.pythonhosted.org/packages/9a/38/776fc4e87cce91cea284c8adb26ead2fd8c9fcb514251d090b72b4f3a50e/soxr-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4301600889696051bdb1469f8b10cace0d7e2d16a351c6b5fc947b3b41e10a58", size = 1281704 }, + { url = "https://files.pythonhosted.org/packages/08/bf/bc12314969467e6a4b649c26b1a6fecc63b67f9a127e4c9b32b3433945ef/soxr-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:12a0e460f1199aaed544a30c67f5df7a452b0647b63e0df706a17577e963e38b", size = 1298846 }, + { url = "https://files.pythonhosted.org/packages/8a/29/3bbdf1417e5da6da3ed5e35e4b3290cfc605fbe06b8513452a9447516532/soxr-0.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:2f6f55c520fb90040f604b1203f2100b70c789d973bb0fd79b221187e3841311", size = 184662 }, + { url = "https://files.pythonhosted.org/packages/1c/47/c732574ba53a864570a445b29fcbcfa4729ac42ae2b5cf8553535245a717/soxr-0.4.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:226d405c40094f5fd5dd4b80c66fc61cc108018da0216833e843d82ccffdadcb", size = 416395 }, + { url = "https://files.pythonhosted.org/packages/14/55/71d6da7aea10f607d5bb47ece8fe639ee340d2b9ee68902f0361f8a4e34d/soxr-0.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c53d4bc99908e715665b3d45f0cc06e652e4f53bf4acf9e758c1cce02977e411", size = 388475 }, + { url = "https://files.pythonhosted.org/packages/e8/e5/7ee341ac9232c9e0b91969067ccc05459a50d6c554f938fe19165f5215cd/soxr-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a9cc0620d7b1effab9d408427711d52c3db6e295b5504dfcf549f4636904ed0d", size = 1265555 }, + { url = "https://files.pythonhosted.org/packages/6b/d2/9e0e54e2ff347b87de4e0639b7e7fe3f780a4c95689d6c9b67f0e5e88831/soxr-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f99aaef14a7d268966c06cf6a06729eb98b2276493710d24a6f20fdcfc3ad26e", size = 1292012 }, + { url = "https://files.pythonhosted.org/packages/75/29/5e20f1e5f459fccc7aecff813c2757e9bda987d4f1c9c80099f067ba13c7/soxr-0.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:63a59d36b8f8f3b1501e4fca2c034aacceb9b4d6888295afd269afbce5eb2f3f", size = 183419 }, + { url = "https://files.pythonhosted.org/packages/02/c6/7ceee454214079447fefbbb3066a1882e86791d39e795d25f03100c9b70e/soxr-0.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:38e65bb8beba55d8049ecf16e73c05ed3dd5e156d6086f594c40edb3181a7900", size = 415490 }, + { url = "https://files.pythonhosted.org/packages/6e/f4/88783a6b0a9085d307d9fb50b160e5e53bb95af5694c587dfa036f598afa/soxr-0.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5fd5e43fe568451152e20e16a71a61cda6340da934c344733a26674e041ab445", size = 388527 }, + { url = "https://files.pythonhosted.org/packages/c3/c6/f3d54e8c579aa5f192d62c87cd86b88e0b1d6fcab7b541663a3816f1eb06/soxr-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b3e477ff61b3579ec2ad66fa7a9b362072d5d9a5d1e61db3d366d26afbb8c8", size = 1236992 }, + { url = "https://files.pythonhosted.org/packages/8e/0d/f5a814631c2af35174243b39c7b3d07524bfe275aa0729fa1d87f6965323/soxr-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba0989025d70c472d62bf0e68778c9bbd0c9bee111c708cf64c26406937ca6be", size = 1255237 }, + { url = "https://files.pythonhosted.org/packages/e7/59/82eb86a806392c40e86e4030ceadd948306fb7269e95e26c18bbbcffb101/soxr-0.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:5e71482f092051544b196387e3779d726f26df30cba307424eac7a96285c5b64", size = 184995 }, +] + +[[package]] +name = "sqlalchemy" +version = "2.0.32" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "greenlet", marker = "python_version < '3.13' and (platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64')" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/af/6f/967e987683908af816aa3072c1a6997ac9933cf38d66b0474fb03f253323/SQLAlchemy-2.0.32.tar.gz", hash = "sha256:c1b88cc8b02b6a5f0efb0345a03672d4c897dc7d92585176f88c67346f565ea8", size = 9546691 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b8/f4/487eaff0bc01352662be8d9b975d0850dc3e8bd282918e073cff5a73421d/SQLAlchemy-2.0.32-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0c9045ecc2e4db59bfc97b20516dfdf8e41d910ac6fb667ebd3a79ea54084619", size = 2087564 }, + { url = "https://files.pythonhosted.org/packages/91/8a/509557a8e43cf55bad70843f2de48c5247c34d47a812c04e41be33351861/SQLAlchemy-2.0.32-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1467940318e4a860afd546ef61fefb98a14d935cd6817ed07a228c7f7c62f389", size = 2078758 }, + { url = "https://files.pythonhosted.org/packages/e0/cb/b1ecd40bcbbba6ca8f35047b53a940eceda36acc9afa0db4cb0d8addd81a/SQLAlchemy-2.0.32-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5954463675cb15db8d4b521f3566a017c8789222b8316b1e6934c811018ee08b", size = 3061235 }, + { url = "https://files.pythonhosted.org/packages/3b/94/db0bc142f448627638a2962afae54c520697119c0d6e23ebd36a7c472c8f/SQLAlchemy-2.0.32-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:167e7497035c303ae50651b351c28dc22a40bb98fbdb8468cdc971821b1ae533", size = 3069497 }, + { url = "https://files.pythonhosted.org/packages/e6/cf/bf90dc56ce347697d8c549875c555f783b96406bc723de6e462490bfe880/SQLAlchemy-2.0.32-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b27dfb676ac02529fb6e343b3a482303f16e6bc3a4d868b73935b8792edb52d0", size = 3025552 }, + { url = "https://files.pythonhosted.org/packages/22/fb/393cb374013c819096f486c12596c9e8b8944b53d85e96fbca9fe7b1f14a/SQLAlchemy-2.0.32-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:bf2360a5e0f7bd75fa80431bf8ebcfb920c9f885e7956c7efde89031695cafb8", size = 3051018 }, + { url = "https://files.pythonhosted.org/packages/6d/3b/80c35cbacbbcf56bbb2befbb9e06b7e9c5f6b4a5b0cc07579d85504e5284/SQLAlchemy-2.0.32-cp310-cp310-win32.whl", hash = "sha256:306fe44e754a91cd9d600a6b070c1f2fadbb4a1a257b8781ccf33c7067fd3e4d", size = 2059441 }, + { url = "https://files.pythonhosted.org/packages/e8/86/989f4b4c47da0d9b152465f6623b6a6415179b4e6bb967f08199bdad98eb/SQLAlchemy-2.0.32-cp310-cp310-win_amd64.whl", hash = "sha256:99db65e6f3ab42e06c318f15c98f59a436f1c78179e6a6f40f529c8cc7100b22", size = 2083917 }, + { url = "https://files.pythonhosted.org/packages/fc/a9/e3bd92004095ed6796ea4ac5fdd9606b1e53117ef5b90ae79ac3fc6e225e/SQLAlchemy-2.0.32-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:21b053be28a8a414f2ddd401f1be8361e41032d2ef5884b2f31d31cb723e559f", size = 2088752 }, + { url = "https://files.pythonhosted.org/packages/a9/34/b97f4458eefbdead7ee5ce69cbf3591574c5ba44162dbe52c4386818623f/SQLAlchemy-2.0.32-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b178e875a7a25b5938b53b006598ee7645172fccafe1c291a706e93f48499ff5", size = 2079150 }, + { url = "https://files.pythonhosted.org/packages/6b/b5/95ff12f5d4eb7813dd5a59ccc8e3c68d4683fedf59801b40704593c3b757/SQLAlchemy-2.0.32-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:723a40ee2cc7ea653645bd4cf024326dea2076673fc9d3d33f20f6c81db83e1d", size = 3197551 }, + { url = "https://files.pythonhosted.org/packages/ca/af/379f8695ab751acf61868b0098c8d66e2b2ad8b11d9939d5144c82d05bc5/SQLAlchemy-2.0.32-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:295ff8689544f7ee7e819529633d058bd458c1fd7f7e3eebd0f9268ebc56c2a0", size = 3197551 }, + { url = "https://files.pythonhosted.org/packages/ff/0c/5feaea51f23b5f008f16f9dbf7eec18ee5b9b8eb2875d6e367f52daf633e/SQLAlchemy-2.0.32-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:49496b68cd190a147118af585173ee624114dfb2e0297558c460ad7495f9dfe2", size = 3134583 }, + { url = "https://files.pythonhosted.org/packages/cc/83/4eca3604f9049a2b92a9ffb818ea1cc8186f722e539a6feee58f931bad34/SQLAlchemy-2.0.32-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:acd9b73c5c15f0ec5ce18128b1fe9157ddd0044abc373e6ecd5ba376a7e5d961", size = 3154911 }, + { url = "https://files.pythonhosted.org/packages/3d/56/485ad322f148a8b70060e03b5f130e714f95d839b5e50315e5c5efd1fc05/SQLAlchemy-2.0.32-cp311-cp311-win32.whl", hash = "sha256:9365a3da32dabd3e69e06b972b1ffb0c89668994c7e8e75ce21d3e5e69ddef28", size = 2059047 }, + { url = "https://files.pythonhosted.org/packages/bb/8c/4548ae42b4ab7f3fe9f1aeb4b1f28ea795485ca44840cb0f3f57aa8ecfcc/SQLAlchemy-2.0.32-cp311-cp311-win_amd64.whl", hash = "sha256:8bd63d051f4f313b102a2af1cbc8b80f061bf78f3d5bd0843ff70b5859e27924", size = 2084480 }, + { url = "https://files.pythonhosted.org/packages/06/95/88beb07aa61c611829c9ce950f349adcf00065c1bb313090c20d80a520ca/SQLAlchemy-2.0.32-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:6bab3db192a0c35e3c9d1560eb8332463e29e5507dbd822e29a0a3c48c0a8d92", size = 2087267 }, + { url = "https://files.pythonhosted.org/packages/11/93/0b28f9d261af927eef3df472e5bbf144fb33e062de770b2c312bb516702b/SQLAlchemy-2.0.32-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:19d98f4f58b13900d8dec4ed09dd09ef292208ee44cc9c2fe01c1f0a2fe440e9", size = 2077732 }, + { url = "https://files.pythonhosted.org/packages/84/50/1ce1dec4b1cce8f1163c2c58bb1588ac5076c3dbc4bb1d3eab70e798fdd4/SQLAlchemy-2.0.32-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3cd33c61513cb1b7371fd40cf221256456d26a56284e7d19d1f0b9f1eb7dd7e8", size = 3227230 }, + { url = "https://files.pythonhosted.org/packages/9d/b8/aa822988d390cf06afa3c69d86a3a38bba79b51385207cd7cd99d0be17bb/SQLAlchemy-2.0.32-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7d6ba0497c1d066dd004e0f02a92426ca2df20fac08728d03f67f6960271feec", size = 3238118 }, + { url = "https://files.pythonhosted.org/packages/c3/d7/7a65172ed2713acf0262a65392dfcf05ca2b7a67c988ebad425eba9b3843/SQLAlchemy-2.0.32-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2b6be53e4fde0065524f1a0a7929b10e9280987b320716c1509478b712a7688c", size = 3173610 }, + { url = "https://files.pythonhosted.org/packages/a9/0f/8da0613e3f0b095ef423802943ed4b98242370736034ed5043a43c46c3d4/SQLAlchemy-2.0.32-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:916a798f62f410c0b80b63683c8061f5ebe237b0f4ad778739304253353bc1cb", size = 3200224 }, + { url = "https://files.pythonhosted.org/packages/50/ef/973e0bbf2be5c12e34dca92139ca100f51ba078e36c3c06fd1dc8480c209/SQLAlchemy-2.0.32-cp312-cp312-win32.whl", hash = "sha256:31983018b74908ebc6c996a16ad3690301a23befb643093fcfe85efd292e384d", size = 2057626 }, + { url = "https://files.pythonhosted.org/packages/db/5f/440c324aae82a2ce892ac0fe1d114b9dc9f04e934e8f0762574876a168b5/SQLAlchemy-2.0.32-cp312-cp312-win_amd64.whl", hash = "sha256:4363ed245a6231f2e2957cccdda3c776265a75851f4753c60f3004b90e69bfeb", size = 2083167 }, + { url = "https://files.pythonhosted.org/packages/51/da/0f8ead52bbcde6634c839f71d78914b7b18360a10cedf67fa9a421199dda/SQLAlchemy-2.0.32-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:52fec964fba2ef46476312a03ec8c425956b05c20220a1a03703537824b5e8e1", size = 2090444 }, + { url = "https://files.pythonhosted.org/packages/90/ea/ce1dd9cbe8bebc0573eca70b998ec34209b1a0ed9a476e158039f99519d1/SQLAlchemy-2.0.32-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:328429aecaba2aee3d71e11f2477c14eec5990fb6d0e884107935f7fb6001632", size = 2081677 }, + { url = "https://files.pythonhosted.org/packages/2a/ed/2cb2441199b518cc7dc1196600ec79d16a7cdeb3ad452569c7b077a547c8/SQLAlchemy-2.0.32-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:85a01b5599e790e76ac3fe3aa2f26e1feba56270023d6afd5550ed63c68552b3", size = 3075690 }, + { url = "https://files.pythonhosted.org/packages/9e/47/9dc7ffea9b544f3f37a4f977cf0a740ff86da49eeb3ba5a3a10b9abe891c/SQLAlchemy-2.0.32-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aaf04784797dcdf4c0aa952c8d234fa01974c4729db55c45732520ce12dd95b4", size = 3083489 }, + { url = "https://files.pythonhosted.org/packages/13/c5/619be86e3ac5de6b8ed3ad16dc121ef2acd776ed064af2305f2badd2df1f/SQLAlchemy-2.0.32-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:4488120becf9b71b3ac718f4138269a6be99a42fe023ec457896ba4f80749525", size = 3042702 }, + { url = "https://files.pythonhosted.org/packages/61/78/6a058bea63c6d9517ce0ab2a519f868e9a4012830cc4b2e486ec44262aee/SQLAlchemy-2.0.32-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:14e09e083a5796d513918a66f3d6aedbc131e39e80875afe81d98a03312889e6", size = 3069169 }, + { url = "https://files.pythonhosted.org/packages/f2/93/775f5e06ac8f3e45f0bc7ed441355d11d25d5071898b50cf6e95c53b0537/SQLAlchemy-2.0.32-cp39-cp39-win32.whl", hash = "sha256:0d322cc9c9b2154ba7e82f7bf25ecc7c36fbe2d82e2933b3642fc095a52cfc78", size = 2061986 }, + { url = "https://files.pythonhosted.org/packages/7d/95/01a59f28a5fdabbd1b4c033f21951f1f9d4153ac3f553211715134b89f55/SQLAlchemy-2.0.32-cp39-cp39-win_amd64.whl", hash = "sha256:7dd8583df2f98dea28b5cd53a1beac963f4f9d087888d75f22fcc93a07cf8d84", size = 2086514 }, + { url = "https://files.pythonhosted.org/packages/99/1b/045185a9f6481d926a451aafaa0d07c98f19ac7abe730dff9630c9ead4fa/SQLAlchemy-2.0.32-py3-none-any.whl", hash = "sha256:e567a8793a692451f706b363ccf3c45e056b67d90ead58c3bc9471af5d212202", size = 1878765 }, +] + +[[package]] +name = "starlette" +version = "0.37.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version < '3.10'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/61/b5/6bceb93ff20bd7ca36e6f7c540581abb18f53130fabb30ba526e26fd819b/starlette-0.37.2.tar.gz", hash = "sha256:9af890290133b79fc3db55474ade20f6220a364a0402e0b556e7cd5e1e093823", size = 2843736 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fd/18/31fa32ed6c68ba66220204ef0be798c349d0a20c1901f9d4a794e08c76d8/starlette-0.37.2-py3-none-any.whl", hash = "sha256:6fe59f29268538e5d0d182f2791a479a0c64638e6935d1c6989e63fb2699c6ee", size = 71908 }, +] + +[[package]] +name = "sudachidict-core" +version = "20240716" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "sudachipy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ae/35/954cb4488c42cabbe3a352482d2ce64de42b8171c54b1ad31861cbbb97e2/SudachiDict-core-20240716.tar.gz", hash = "sha256:90380263fd3e597240b38001cdcb4d7ae3781fcbf4c92f31cc4d1a4b5c41eea9", size = 9009 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/4e/7496687bb41b10b05c9f19e871e730254adf20ce1b16d695fa7cb305830f/SudachiDict_core-20240716-py3-none-any.whl", hash = "sha256:29b69eb016c5da7fcbf7cc1dee1c4bdfc323af2e9638106ba62e490f97d86cc9", size = 72043340 }, +] + +[[package]] +name = "sudachipy" +version = "0.6.8" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/49/91/fb79084df253ffce217fe10dcad6729e5263f41813b9ab7e4375e01528bd/SudachiPy-0.6.8.tar.gz", hash = "sha256:3d1c9086ff09afacc34d02fdb2112aab7cff1d78f0d4b81f78b9ba01c36d4888", size = 161941 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d2/af/b0e955be17526fccab7c6260cfe2d7d7ccb43369271e6872b0d41cd61375/SudachiPy-0.6.8-cp310-cp310-macosx_10_12_universal2.whl", hash = "sha256:85f91a6ac347d2fbf478ae96e0e08efe7b8e47fb7cdfb770e90611be5669cabb", size = 2939942 }, + { url = "https://files.pythonhosted.org/packages/bd/5e/59892dc4d962d688bd327d3e0b055c26da6c2ba5d6df8b5dac71790fb31b/SudachiPy-0.6.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:361ef3e3333ef4165b517668878dd80fbed6d3c443659b9dc3236132ea8f7fbb", size = 2572608 }, + { url = "https://files.pythonhosted.org/packages/d8/ac/3fd8daef7cd3299c0c4cc2f051592b91932b0d2a4f34ccae053214ca09ee/SudachiPy-0.6.8-cp310-cp310-win_amd64.whl", hash = "sha256:081c52918bdae35f564637db146389f0a48b3b5263f215859b4d1ae311a7a474", size = 1253887 }, + { url = "https://files.pythonhosted.org/packages/cd/20/158d7050b9abe068ab3c290fad55a445a78e8be22d752bf2fea1f82dd47c/SudachiPy-0.6.8-cp311-cp311-macosx_10_12_universal2.whl", hash = "sha256:0a6cb506e402933023ea07035fc3e81d65880392afcdb2f09676027882b09e73", size = 2966165 }, + { url = "https://files.pythonhosted.org/packages/b9/14/2f21de25cf6aad359c35ab1899098c2cbc804f0d473beeff423b46e2e74d/SudachiPy-0.6.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d19db58be100b05362d00d0ad5cd29aff6da31807967b302f35bd43dd59e141f", size = 2572928 }, + { url = "https://files.pythonhosted.org/packages/5b/5e/d4e980c12ee98b965c23981ba278b0a90e03de0f3edb19a9c383efde250c/SudachiPy-0.6.8-cp311-cp311-win_amd64.whl", hash = "sha256:27833ae472220dc46f934edd9a8839b0134279c0113f7da01d67e424bfe2d0ab", size = 1253969 }, + { url = "https://files.pythonhosted.org/packages/e8/fd/9288521653a59a8f261bc5f29a5cadea134e45a690b9f2c9ad20d5464665/SudachiPy-0.6.8-cp312-cp312-macosx_10_12_universal2.whl", hash = "sha256:7f75d4627fa141bc02951c5ce17ec7055faf2e9424d10c697e923c27b7936369", size = 2963966 }, + { url = "https://files.pythonhosted.org/packages/79/54/1da84327f26de09d865f23c7bfd30a66fb1fe078f8185ee69bfa5600e032/SudachiPy-0.6.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:33afa2efa4d98ae3cbea0ab8cc09c71b0405d188074d0c4cef2b2080a51caafe", size = 2568552 }, + { url = "https://files.pythonhosted.org/packages/57/dd/175671837c8a82c56acdaab3df4ae453f89bddc6a5537859144608469481/SudachiPy-0.6.8-cp312-cp312-win_amd64.whl", hash = "sha256:2a2f22605093ed7994eb7edced2a21c8ac71b9ecc9877e94539414b1a60d172a", size = 1250564 }, + { url = "https://files.pythonhosted.org/packages/19/ad/8ca3241f17bf665c249496991341d624ca746cfd5ec631514abc4f7569e7/SudachiPy-0.6.8-cp39-cp39-macosx_10_12_universal2.whl", hash = "sha256:d52ddc5001b0125375419409adee012f8957b15ad1a4017e18f30c54ba69f9b7", size = 2940609 }, + { url = "https://files.pythonhosted.org/packages/b0/50/6a8be2ee011d0401b382ce83bc64f2769d57aab76103ed3bfbf324bf97e5/SudachiPy-0.6.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c2a7c98f75567bd8488a1597c83f8f6abb4c15c577d0b5f92fa0c31c8304dae4", size = 2572704 }, + { url = "https://files.pythonhosted.org/packages/67/41/6748863dff329ddb1787bee767e91e1d633bdc76bd3caa155f746b39f594/SudachiPy-0.6.8-cp39-cp39-win_amd64.whl", hash = "sha256:1ae6e533f98e510e751d7355ec512aff3a7dac73539abb61c731cdcc316a183f", size = 1253208 }, +] + +[[package]] +name = "sympy" +version = "1.13.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mpmath", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ca/99/5a5b6f19ff9f083671ddf7b9632028436167cd3d33e11015754e41b249a4/sympy-1.13.1.tar.gz", hash = "sha256:9cebf7e04ff162015ce31c9c6c9144daa34a93bd082f54fd8f12deca4f47515f", size = 7533040 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b2/fe/81695a1aa331a842b582453b605175f419fe8540355886031328089d840a/sympy-1.13.1-py3-none-any.whl", hash = "sha256:db36cdc64bf61b9b24578b6f7bab1ecdd2452cf008f34faa33776680c26d66f8", size = 6189177 }, +] + +[[package]] +name = "tabulate" +version = "0.9.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ec/fe/802052aecb21e3797b8f7902564ab6ea0d60ff8ca23952079064155d1ae1/tabulate-0.9.0.tar.gz", hash = "sha256:0095b12bf5966de529c0feb1fa08671671b3368eec77d7ef7ab114be2c068b3c", size = 81090 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/40/44/4a5f08c96eb108af5cb50b41f76142f0afa346dfa99d5296fe7202a11854/tabulate-0.9.0-py3-none-any.whl", hash = "sha256:024ca478df22e9340661486f85298cff5f6dcdba14f3813e8830015b9ed1948f", size = 35252 }, +] + +[[package]] +name = "tblib" +version = "3.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1a/df/4f2cd7eaa6d41a7994d46527349569d46e34d9cdd07590b5c5b0dcf53de3/tblib-3.0.0.tar.gz", hash = "sha256:93622790a0a29e04f0346458face1e144dc4d32f493714c6c3dff82a4adb77e6", size = 30616 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9b/87/ce70db7cae60e67851eb94e1a2127d4abb573d3866d2efd302ceb0d4d2a5/tblib-3.0.0-py3-none-any.whl", hash = "sha256:80a6c77e59b55e83911e1e607c649836a69c103963c5f28a46cbeef44acf8129", size = 12478 }, +] + +[[package]] +name = "tenacity" +version = "9.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cd/94/91fccdb4b8110642462e653d5dcb27e7b674742ad68efd146367da7bdb10/tenacity-9.0.0.tar.gz", hash = "sha256:807f37ca97d62aa361264d497b0e31e92b8027044942bfa756160d908320d73b", size = 47421 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/cb/b86984bed139586d01532a587464b5805f12e397594f19f931c4c2fbfa61/tenacity-9.0.0-py3-none-any.whl", hash = "sha256:93de0c98785b27fcf659856aa9f54bfbd399e29969b0621bc7f762bd441b4539", size = 28169 }, +] + +[[package]] +name = "tensorboard" +version = "2.15.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "google-auth", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "google-auth-oauthlib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "grpcio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "markdown", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "setuptools", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorboard-data-server", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "werkzeug", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/37/12/f6e9b9dcc310263cbd3948274e286538bd6800fd0c268850788f14a0c6d0/tensorboard-2.15.2-py3-none-any.whl", hash = "sha256:a6f6443728064d962caea6d34653e220e34ef8df764cb06a8212c17e1a8f0622", size = 5539713 }, +] + +[[package]] +name = "tensorboard-data-server" +version = "0.7.2" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7a/13/e503968fefabd4c6b2650af21e110aa8466fe21432cd7c43a84577a89438/tensorboard_data_server-0.7.2-py3-none-any.whl", hash = "sha256:7e0610d205889588983836ec05dc098e80f97b7e7bbff7e994ebb78f578d0ddb", size = 2356 }, + { url = "https://files.pythonhosted.org/packages/b7/85/dabeaf902892922777492e1d253bb7e1264cadce3cea932f7ff599e53fea/tensorboard_data_server-0.7.2-py3-none-macosx_10_9_x86_64.whl", hash = "sha256:9fe5d24221b29625dbc7328b0436ca7fc1c23de4acf4d272f1180856e32f9f60", size = 4823598 }, + { url = "https://files.pythonhosted.org/packages/73/c6/825dab04195756cf8ff2e12698f22513b3db2f64925bdd41671bfb33aaa5/tensorboard_data_server-0.7.2-py3-none-manylinux_2_31_x86_64.whl", hash = "sha256:ef687163c24185ae9754ed5650eb5bc4d84ff257aabdc33f0cc6f74d8ba54530", size = 6590363 }, +] + +[[package]] +name = "tensorboardx" +version = "2.6.2.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/02/9b/c2b5aba53f5e27ffcf249fc38485836119638f97d20b978664b15f97c8a6/tensorboardX-2.6.2.2.tar.gz", hash = "sha256:c6476d7cd0d529b0b72f4acadb1269f9ed8b22f441e87a84f2a3b940bb87b666", size = 4778030 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/44/71/f3e7c9b2ab67e28c572ab4e9d5fa3499e0d252650f96d8a3a03e26677f53/tensorboardX-2.6.2.2-py2.py3-none-any.whl", hash = "sha256:160025acbf759ede23fd3526ae9d9bfbfd8b68eb16c38a010ebe326dc6395db8", size = 101700 }, +] + +[[package]] +name = "tensorflow" +version = "2.15.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "astunparse", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "flatbuffers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "gast", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "google-pasta", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "grpcio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "h5py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "keras", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "libclang", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ml-dtypes", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "opt-einsum", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "setuptools", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorboard", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-estimator", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-io-gcs-filesystem", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "termcolor", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "wrapt", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/9c/d3/904d5bf64305218ce19f81ff3b2cb872cf434a558443b4a9a5357924637a/tensorflow-2.15.1-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:91b51a507007d63a70b65be307d701088d15042a6399c0e2312b53072226e909", size = 236439313 }, + { url = "https://files.pythonhosted.org/packages/54/38/2be65dc6f47e6aa0fb0494877676774f8faa685c08a5cecf0c0040afccbc/tensorflow-2.15.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:10132acc072d59696c71ce7221d2d8e0e3ff1e6bc8688dbac6d7aed8e675b710", size = 205693732 }, + { url = "https://files.pythonhosted.org/packages/51/1b/1f6eb37c97d9998010751511308058800fc3736092aac64c3fee23cf0b35/tensorflow-2.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:30c5ef9c758ec9ff7ce2aff76b71c980bc5119b879071c2cc623b1591a497a1a", size = 2121 }, + { url = "https://files.pythonhosted.org/packages/4f/42/433c0c64c5d3b8bee696cde2006d15f03f0504c2f746d49f38e32e52e239/tensorflow-2.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea290e435464cf0794f657b48786e5fa413362abe55ed771c172c25980d070ce", size = 475215357 }, + { url = "https://files.pythonhosted.org/packages/1c/b7/604ed5e5507e3dd34b14295d5e4a762d47cc2e8cf29a23b4c20575461445/tensorflow-2.15.1-cp310-cp310-win_amd64.whl", hash = "sha256:8e5431d45ceb416c2b1b6de87378054fbac7d2ed35d45b102d89a786613fffdc", size = 2098 }, + { url = "https://files.pythonhosted.org/packages/25/72/2ede9c4b9b96650a8a7b909abf4733adf110c5907425ee252f8095385b11/tensorflow-2.15.1-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:6761efe511e6ee0f893f60738fefbcc51d6dc386eeaaafea59d21899ef369ffd", size = 236482723 }, + { url = "https://files.pythonhosted.org/packages/f1/31/3191cd83da2f213a3c4af5e40597a98996e9c84b56666f9595dad8a6e780/tensorflow-2.15.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:aa926114d1e13ffe5b2ea59c3f195216f26646d7fe36e9e5207b291e4b7902ff", size = 205736374 }, + { url = "https://files.pythonhosted.org/packages/81/40/31b27ab3f46de305475ef5160acc8a2addb8fa9ea2179777c4e9bcc5baaf/tensorflow-2.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e73d43dbc68d8c711e70edecc4ac70472799a25ec4ec18a84d479ee18033d3c5", size = 2121 }, + { url = "https://files.pythonhosted.org/packages/c1/2d/636471492d93b6c1bf5375b81be7105a313a8c91a07c37e43625b00ca5c3/tensorflow-2.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bb0edd69103c154245c5f209f0507355cc68ba7e4de350084bc31edc562478e4", size = 475258663 }, + { url = "https://files.pythonhosted.org/packages/cb/c5/f5b31ee348459d6f6c54d762488aa0a8e42ff11a7395f4d158915ad43000/tensorflow-2.15.1-cp311-cp311-win_amd64.whl", hash = "sha256:a49f8755c74a89553294a99ab25aa87ab1cddbfa40fe58387e09f64f0578cedc", size = 2096 }, + { url = "https://files.pythonhosted.org/packages/62/e7/b8db69612f401f52b510163d5a04b783c3f3440e8f86e299480095e5e76f/tensorflow-2.15.1-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:f8e85821317c9c0fbf1256e9f721cfb1400ba1e09becb844b3ddd91f744805fc", size = 236437643 }, + { url = "https://files.pythonhosted.org/packages/91/ee/1c4db1bb82d1158fdbfe024bc2331b06272cb8f4abaf7d4e2127b21fc428/tensorflow-2.15.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:b75815b6a601edad52b4181e9805c8fcd04813a6ab1d5cd8127188dfd2788e20", size = 205692241 }, + { url = "https://files.pythonhosted.org/packages/16/85/6b758898a4342b50add537e2dd50f36fe3b16451bd3a41c2dec0a1ac7548/tensorflow-2.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:432788ac5d1234b9e9b7c7f73603a5655271a28c293329c52c7c0b9434a1184e", size = 2120 }, + { url = "https://files.pythonhosted.org/packages/38/03/d509cd280c07ba34f1690b5f094cd715bec3c69a08c15a8a61cf82833cf6/tensorflow-2.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89b5aa1022dec47e567512eaf4e1271b8e6c1ff1984e30d0d9127bd1093ed4c5", size = 475214135 }, + { url = "https://files.pythonhosted.org/packages/a5/ef/a9fe22fabd5e11bda4e322daec40d8798a504fd2ee5725a56ba786503452/tensorflow-2.15.1-cp39-cp39-win_amd64.whl", hash = "sha256:aaf3cfa290597ebbdf19d1a78729e3f555e459506cd58f8d7399359ac5e02a05", size = 2095 }, +] + +[[package]] +name = "tensorflow-cpu" +version = "2.15.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "astunparse", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "flatbuffers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "gast", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "google-pasta", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "grpcio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "h5py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "keras", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "libclang", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ml-dtypes", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "opt-einsum", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "setuptools", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorboard", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-estimator", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-io-gcs-filesystem", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "termcolor", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "wrapt", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/1f/cc/dfb0195934918847611d0d1e0a2ad3f1f8a77876a9139b8976ebdd72854c/tensorflow_cpu-2.15.1-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:f211b011e812f827f5452b1d5f19865645c65df6e2a07d71118480c40887133e", size = 236439366 }, + { url = "https://files.pythonhosted.org/packages/d0/f4/058dc567de1ac67120a85119f19fe6288f45f6b08db8c03dfb38fa664874/tensorflow_cpu-2.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba9503db2c5357ea21938555323581fbdabf3d051b6bc1b5f73c5b0ae034d077", size = 207165286 }, + { url = "https://files.pythonhosted.org/packages/7b/75/d12ecfc1d04bcbd39d3617b53beb3f2f1ed6237bd877fe998eed88c6d820/tensorflow_cpu-2.15.1-cp310-cp310-win_amd64.whl", hash = "sha256:dcf2d31c59abddfe6f1a86ca3e4dee99428c59831b1939a984622e0b19b52fcf", size = 2134 }, + { url = "https://files.pythonhosted.org/packages/d8/6c/dc0642ce2656637d8f31ba9c618a41bf14e38428ba77e4e0a9359be39436/tensorflow_cpu-2.15.1-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:ee3bb114c6031d471d891c761e7eda2c80bea19bb318abcd3d5bab92ccfaf9aa", size = 236482774 }, + { url = "https://files.pythonhosted.org/packages/5b/00/af89cb211fc96ffdebb52a687dad7f83b0b1d82bc057f65309fa03a89911/tensorflow_cpu-2.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:54660c074d7241a503e81edfd9f5ef5af88f64051b72e2945f26318c790f2d26", size = 207208420 }, + { url = "https://files.pythonhosted.org/packages/51/8a/ff2fc9bad8edc68ef4cd63963c10b320de03d3496def83d2a9b1635c6831/tensorflow_cpu-2.15.1-cp311-cp311-win_amd64.whl", hash = "sha256:dc75baf4c08a6e8ab7ceec97f002bb993508a5b58f13fac5283ee976a71a3c67", size = 2133 }, + { url = "https://files.pythonhosted.org/packages/65/61/507dd4e8c092a82ea088865cf733808d71ac19b1f58810da10c957353190/tensorflow_cpu-2.15.1-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:481f3f38fac552f0915052292614c57875e44ff7e235edc11fa847e313c09c83", size = 236437695 }, + { url = "https://files.pythonhosted.org/packages/d2/4a/9ce811354ddbd63704d68fd554ecbb4b03b74e9df274bad7ffd0f2349381/tensorflow_cpu-2.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:102b27b17e5f6023886b0cb07835af56cd135b845c1b92e597018ba77e54e480", size = 207164138 }, + { url = "https://files.pythonhosted.org/packages/bd/cb/1358e60835aad684311cfab10e36375c09a8a627ed22f357ddc9f0556ca3/tensorflow_cpu-2.15.1-cp39-cp39-win_amd64.whl", hash = "sha256:951d78693b61239464bee5ae9c20b6c845d82ae0a2092ee5abebb96b5e2db02e", size = 2133 }, +] + +[[package]] +name = "tensorflow-cpu-aws" +version = "2.15.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "astunparse", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "flatbuffers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "gast", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "google-pasta", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "grpcio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "h5py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "keras", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "libclang", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ml-dtypes", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "opt-einsum", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "setuptools", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorboard", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-estimator", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-io-gcs-filesystem", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "termcolor", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "wrapt", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/9c/74e7c37e2de31fb5ada8f3a166ceedacdb99fc9bcd88f606ec97bfc2b22e/tensorflow_cpu_aws-2.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c781d95cb8c58d47cb012b7b4e77b2f3e8d4d47b45926bc54976506fa0c037cc", size = 211831219 }, + { url = "https://files.pythonhosted.org/packages/06/d5/05cd02db299821fd68ef5f8857506c21aeeddd024daf519d8643f0260952/tensorflow_cpu_aws-2.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d4c3a3a9363bf42999adedbbd514e3a133be2d62f61fee9cfa46aaefb087c09e", size = 211874120 }, + { url = "https://files.pythonhosted.org/packages/e0/b2/44b4492303ea458f1c97d1c5ebd412dd799827f6fafd7938dd45be8f70a6/tensorflow_cpu_aws-2.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e9a25f2b9da4740074fdd89bd2a4cf280a9d40b1d26a973ef079e6673c1bf7de", size = 211831639 }, +] + +[[package]] +name = "tensorflow-estimator" +version = "2.15.0" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b6/c8/2f823c8958d5342eafc6dd3e922f0cc4fcf8c2e0460284cc462dae3b60a0/tensorflow_estimator-2.15.0-py2.py3-none-any.whl", hash = "sha256:aedf21eec7fb2dc91150fc91a1ce12bc44dbb72278a08b58e79ff87c9e28f153", size = 441974 }, +] + +[[package]] +name = "tensorflow-hub" +version = "0.16.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tf-keras", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/e5/50/00dba77925bf2a0a1e45d7bcf8a69a1d2534fb4bb277d9010bd148d2235e/tensorflow_hub-0.16.1-py2.py3-none-any.whl", hash = "sha256:e10c184b3d08daeafada11ffea2dd46781725b6bef01fad1f74d6634ad05311f", size = 30771 }, +] + +[[package]] +name = "tensorflow-intel" +version = "2.15.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "absl-py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "astunparse", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "flatbuffers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "gast", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "google-pasta", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "grpcio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "h5py", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "keras", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "libclang", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ml-dtypes", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "opt-einsum", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "setuptools", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorboard", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-estimator", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-io-gcs-filesystem", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "termcolor", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "wrapt", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/02/13/681487f4f5241d8213fbf3f8940988054d97e213fcc3390921682dfc691f/tensorflow_intel-2.15.1-cp310-cp310-win_amd64.whl", hash = "sha256:9f305142b3c5e239c82c463429b1f88726dd27d9f23523871f825493a9ffc5f4", size = 300872148 }, + { url = "https://files.pythonhosted.org/packages/90/32/d0ec8fe173e8e1c38cd13d23d640c46232d211fbd6f3485d17a1950f3c38/tensorflow_intel-2.15.1-cp311-cp311-win_amd64.whl", hash = "sha256:4f05059493f8203285ac5cea3b1955887a7903c1ca6f7a29e4b6ef912b1f934b", size = 300918101 }, + { url = "https://files.pythonhosted.org/packages/a9/61/c746e82becb7f14aac327220d5dd1a086b94b605cfab24b3e5991fa26cdf/tensorflow_intel-2.15.1-cp39-cp39-win_amd64.whl", hash = "sha256:921f18f7eb9cf59769e9668b3935fe178c990e2973d8013870dae5e3b58de079", size = 300800813 }, +] + +[[package]] +name = "tensorflow-io-gcs-filesystem" +version = "0.37.1" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e9/a3/12d7e7326a707919b321e2d6e4c88eb61596457940fd2b8ff3e9b7fac8a7/tensorflow_io_gcs_filesystem-0.37.1-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:249c12b830165841411ba71e08215d0e94277a49c551e6dd5d72aab54fe5491b", size = 2470224 }, + { url = "https://files.pythonhosted.org/packages/1c/55/3849a188cc15e58fefde20e9524d124a629a67a06b4dc0f6c881cb3c6e39/tensorflow_io_gcs_filesystem-0.37.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:257aab23470a0796978efc9c2bcf8b0bc80f22e6298612a4c0a50d3f4e88060c", size = 3479613 }, + { url = "https://files.pythonhosted.org/packages/e2/19/9095c69e22c879cb3896321e676c69273a549a3148c4f62aa4bc5ebdb20f/tensorflow_io_gcs_filesystem-0.37.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8febbfcc67c61e542a5ac1a98c7c20a91a5e1afc2e14b1ef0cb7c28bc3b6aa70", size = 4842078 }, + { url = "https://files.pythonhosted.org/packages/f3/48/47b7d25572961a48b1de3729b7a11e835b888e41e0203cca82df95d23b91/tensorflow_io_gcs_filesystem-0.37.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9679b36e3a80921876f31685ab6f7270f3411a4cc51bc2847e80d0e4b5291e27", size = 5085736 }, + { url = "https://files.pythonhosted.org/packages/40/9b/b2fb82d0da673b17a334f785fc19c23483165019ddc33b275ef25ca31173/tensorflow_io_gcs_filesystem-0.37.1-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:32c50ab4e29a23c1f91cd0f9ab8c381a0ab10f45ef5c5252e94965916041737c", size = 2470224 }, + { url = "https://files.pythonhosted.org/packages/5b/cc/16634e76f3647fbec18187258da3ba11184a6232dcf9073dc44579076d36/tensorflow_io_gcs_filesystem-0.37.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:b02f9c5f94fd62773954a04f69b68c4d576d076fd0db4ca25d5479f0fbfcdbad", size = 3479613 }, + { url = "https://files.pythonhosted.org/packages/de/bf/ba597d3884c77d05a78050f3c178933d69e3f80200a261df6eaa920656cd/tensorflow_io_gcs_filesystem-0.37.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6e1f2796b57e799a8ca1b75bf47c2aaa437c968408cc1a402a9862929e104cda", size = 4842079 }, + { url = "https://files.pythonhosted.org/packages/66/7f/e36ae148c2f03d61ca1bff24bc13a0fef6d6825c966abef73fc6f880a23b/tensorflow_io_gcs_filesystem-0.37.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee7c8ee5fe2fd8cb6392669ef16e71841133041fee8a330eff519ad9b36e4556", size = 5085736 }, + { url = "https://files.pythonhosted.org/packages/70/83/4422804257fe2942ae0af4ea5bcc9df59cb6cb1bd092202ef240751d16aa/tensorflow_io_gcs_filesystem-0.37.1-cp312-cp312-macosx_10_14_x86_64.whl", hash = "sha256:ffebb6666a7bfc28005f4fbbb111a455b5e7d6cd3b12752b7050863ecb27d5cc", size = 2470224 }, + { url = "https://files.pythonhosted.org/packages/43/9b/be27588352d7bd971696874db92d370f578715c17c0ccb27e4b13e16751e/tensorflow_io_gcs_filesystem-0.37.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:fe8dcc6d222258a080ac3dfcaaaa347325ce36a7a046277f6b3e19abc1efb3c5", size = 3479614 }, + { url = "https://files.pythonhosted.org/packages/d3/46/962f47af08bd39fc9feb280d3192825431a91a078c856d17a78ae4884eb1/tensorflow_io_gcs_filesystem-0.37.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fbb33f1745f218464a59cecd9a18e32ca927b0f4d77abd8f8671b645cc1a182f", size = 4842077 }, + { url = "https://files.pythonhosted.org/packages/f0/9b/790d290c232bce9b691391cf16e95a96e469669c56abfb1d9d0f35fa437c/tensorflow_io_gcs_filesystem-0.37.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:286389a203a5aee1a4fa2e53718c661091aa5fea797ff4fa6715ab8436b02e6c", size = 5085733 }, + { url = "https://files.pythonhosted.org/packages/12/4f/798df777498fab9dc683a658688e962f0af56454eb040c90f836fd9fa67c/tensorflow_io_gcs_filesystem-0.37.1-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:ee5da49019670ed364f3e5fb86b46420841a6c3cb52a300553c63841671b3e6d", size = 2470221 }, + { url = "https://files.pythonhosted.org/packages/7a/f9/ce6a0efde262a79361f0d67392fdf0d0406781a1ee4fc48d0d8b0553b311/tensorflow_io_gcs_filesystem-0.37.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:8943036bbf84e7a2be3705cb56f9c9df7c48c9e614bb941f0936c58e3ca89d6f", size = 3479613 }, + { url = "https://files.pythonhosted.org/packages/66/5f/334a011caa1eb97689274d1141df8e6b7a25e389f0390bdcd90235de9783/tensorflow_io_gcs_filesystem-0.37.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:426de1173cb81fbd62becec2012fc00322a295326d90eb6c737fab636f182aed", size = 4842075 }, + { url = "https://files.pythonhosted.org/packages/3d/cb/7dcee55fc5a7d7d8a862e12519322851cd5fe5b086f946fd71e4ae1ef281/tensorflow_io_gcs_filesystem-0.37.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0df00891669390078a003cedbdd3b8e645c718b111917535fa1d7725e95cdb95", size = 5087496 }, +] + +[[package]] +name = "tensorflow-macos" +version = "2.15.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "tensorflow-cpu-aws", marker = "platform_system == 'Linux' and (platform_machine == 'aarch64' or platform_machine == 'arm64')" }, + { name = "tensorflow-intel", marker = "platform_system == 'Windows'" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/c8/b90dc41b1eefc2894801a120cf268b1f25440981fcf966fb055febce8348/tensorflow_macos-2.15.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:b8f01d7615fe4ff3b15a12f84471bd5344fed187543c4a091da3ddca51b6dc26", size = 2158 }, + { url = "https://files.pythonhosted.org/packages/bc/11/b73387ad260614ec43c313a630d14fe5522455084abc207fce864aaa3d73/tensorflow_macos-2.15.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:58fca6399665f19e599c591c421672d9bc8b705409d43ececd0931d1d3bc6a7e", size = 2159 }, + { url = "https://files.pythonhosted.org/packages/3a/54/95b9459cd48d92a0522c8dd59955210e51747a46461bcedb64a9a77ba822/tensorflow_macos-2.15.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:cca3c9ba5b96face05716792cb1bcc70d84c5e0c34bfb7735b39c65d0334b699", size = 2158 }, +] + +[[package]] +name = "tensorflow-text" +version = "2.15.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "tensorflow", marker = "platform_machine != 'arm64' or platform_system != 'Darwin'" }, + { name = "tensorflow-hub", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-macos", marker = "platform_machine == 'arm64' and platform_system == 'Darwin'" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/63/0f/d260a5cc7d86d25eb67bb919f957106b76af4a039f064526290d9cf5d93e/tensorflow_text-2.15.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:db09ada839eb92aa23afc6c4e37257e6665d64ae048cfdce6374b5aa33f8f006", size = 6441513 }, + { url = "https://files.pythonhosted.org/packages/70/12/91be80b24a403593f9dacddabd6f7ea110373a1831f575ad2d34fe7d4f7e/tensorflow_text-2.15.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0f522ab8511f3a0cf782cd3e22bc3d863d7cbf0b4ccc02a7de92abf0deea0df4", size = 5201157 }, + { url = "https://files.pythonhosted.org/packages/8a/fe/a2f19d3d3ab834c3fa1007c970b0b86573beb929c86ca6c85cd13e86e4b2/tensorflow_text-2.15.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:751f4a260e2b1a03db1ec9871473922219d82dccabc305cc79f1dec5d8283014", size = 6441515 }, + { url = "https://files.pythonhosted.org/packages/20/a0/bdbf2a11141f1c93e572364d13c42537cfe811b747a0bbb58fdd904f3960/tensorflow_text-2.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:31e5499282e787022cb078ac182c2bbe1a30438451dafb8bce7a81258017bfbb", size = 5201204 }, + { url = "https://files.pythonhosted.org/packages/88/db/e2a10d9582704d57923c9948e42ab05aae90fb3f5a8305394ed6961f1668/tensorflow_text-2.15.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2f87b23c7dd87c9581557a3f425ded96bfc4f969c52996ac491b99c4c2bb04b0", size = 6442438 }, + { url = "https://files.pythonhosted.org/packages/fa/59/82c59ca4d26ce24b0e65a1869bbbfc8615df11c31ecf439be095206aa006/tensorflow_text-2.15.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:66dc8c11d97278f19997171b8e3f7f8d0a12a67760028646a7b3a163fab1c3d3", size = 5202117 }, +] + +[[package]] +name = "tensorstore" +version = "0.1.64" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ml-dtypes", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ce/b7/04d19901451da377f03a6e1ae3d9edf0b43af93309f558abf28b2e5aaceb/tensorstore-0.1.64.tar.gz", hash = "sha256:7fa89e90876fb5377efc54f3f37326a6fb83ec9e1326565819a75a4e80949886", size = 6510000 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2f/a8/63876bab9ca44d0b57bca6893927df90b08ff0123697216fe7b297036015/tensorstore-0.1.64-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:c369088c74c0dda30398290724513a0289f25ccc01865ed5aec62e57f1930709", size = 15366638 }, + { url = "https://files.pythonhosted.org/packages/90/3d/28b0ee2d792842d2e27be9fea5c541a77d1f8f4d4c1a3a981306acb69818/tensorstore-0.1.64-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:40cae39aca2992fdac0ed5fbcef71f72cd38a759b1a61c37d95ad395606697b4", size = 13563010 }, + { url = "https://files.pythonhosted.org/packages/b8/26/40a8cc7ffcc4abeacd196560f8d54ca2e24d2bb8ca540360bf4c7b1b5e70/tensorstore-0.1.64-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8cf64ee03c7cd62a0dde2f4d1f3f8784d50aea3a2e85a65686be0fe33ea18ed5", size = 13650288 }, + { url = "https://files.pythonhosted.org/packages/f1/3b/9e539c9d22f4eda48a9e5788d76e761f0627f249c3018d396bcdf17c7a54/tensorstore-0.1.64-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1a78aedbddccc09ea283b145496da03dbc7eb8693ae4e01074ed791d72b7eac2", size = 14926295 }, + { url = "https://files.pythonhosted.org/packages/66/f4/fb0bab70e472ce78f290222b5b1631c589a8fe9043148c0882150b28b527/tensorstore-0.1.64-cp310-cp310-win_amd64.whl", hash = "sha256:72517af8c5f9c49d0343acb7c6b0cc250f8077ca989285d471d3a64dbbfcc36b", size = 11523913 }, + { url = "https://files.pythonhosted.org/packages/4d/9c/e1ef8f867de64f36c2ec3a1cb803693736a4dcb91d5afd0741c8e11e71df/tensorstore-0.1.64-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:2b0a1e3294d2e690a9c269ea50d62f2f60f7935ca507243d8b56b2871b0e201f", size = 15367232 }, + { url = "https://files.pythonhosted.org/packages/46/a7/e6adff4ec3f622bd28a79bfa339aea3dc9d66508e87bc739f730b970098e/tensorstore-0.1.64-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3da6fa00ddf312e1b502d2ee9de39b858a78a02b396114201c67c01bc03fc382", size = 13567261 }, + { url = "https://files.pythonhosted.org/packages/19/c4/e74f4c288b429221fd2f128eb57bed62ebf4bf69739970e404d8a5b63712/tensorstore-0.1.64-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c32976f5a0e881a097b52a488fb16d33a1d94a86393115098da87894fc9c5abf", size = 13652088 }, + { url = "https://files.pythonhosted.org/packages/c8/5a/2df005251df903de0fda4d8da7e7a5081a6854d40b62b8eeaf88a86a1c7a/tensorstore-0.1.64-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:55af5ec5bd78056e4df18f4af107bac7ea84d2bdc34ff6ab6642b3a036f99390", size = 14926070 }, + { url = "https://files.pythonhosted.org/packages/e5/68/07d792f014fc3ad886a2498ebbfdaf5d6807c09c65fad5534969620846b4/tensorstore-0.1.64-cp311-cp311-win_amd64.whl", hash = "sha256:24a4cebaf9d0e75d494342948f68edc971d6bb90e23192ddf8d98397fb1ff3cb", size = 11523737 }, + { url = "https://files.pythonhosted.org/packages/00/32/e9b22f4c05ae910940fbc6c304b6570b8cf8d35b1d2e8600d8118c42a80d/tensorstore-0.1.64-cp312-cp312-macosx_10_14_x86_64.whl", hash = "sha256:80c510024cc31c4dee7f478ea67a0b4b4cacf5a6bffe8c4e446188fdbe2d7b4c", size = 15404886 }, + { url = "https://files.pythonhosted.org/packages/df/9d/01e43143ac82cdc7b87e55818f0052a63b3414bd9f731a2c991dd68ca4ba/tensorstore-0.1.64-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c90d38b552c79f0d688cc3d502a9023e3dee9821881d6727d8aa06482ccdc0c1", size = 13594439 }, + { url = "https://files.pythonhosted.org/packages/44/7e/1522b9092e396d64d84ea799ef1f9c1d7e7da3514277fa8b908e1d8d26d1/tensorstore-0.1.64-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9968f9a9b9cd7c669bfae5244307e105c006038e8dd156eebbf2146f771ba369", size = 13646074 }, + { url = "https://files.pythonhosted.org/packages/0a/eb/09210bb4a8afc991eb9cb794269ff276a62f15936aef2b64335b61412f7a/tensorstore-0.1.64-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:806774968ee4cc8809114281730e9fad5970a94a7ef9104bc54fa35a32068b2f", size = 14923761 }, + { url = "https://files.pythonhosted.org/packages/c7/70/27281fb67817d69dddc5eec9827513f8e341e3a52cb85f066a84e9274a47/tensorstore-0.1.64-cp312-cp312-win_amd64.whl", hash = "sha256:cc315029f49c0f294f0721462c221e0ef4c15360a526cc34392ac81565fd63b8", size = 11523992 }, + { url = "https://files.pythonhosted.org/packages/d6/1c/bb414f7e7a7c2fbdcb21376da3928a3f025748db08c5c88feade387185bf/tensorstore-0.1.64-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:f47597209ce11228cfe6b94999f582788aac5571e85c3e8dcaa43b1f07660589", size = 15367235 }, + { url = "https://files.pythonhosted.org/packages/20/4c/1241fdac0ff5b1e3b5aad99d861639e551685108ddb36a472e6b92ea303f/tensorstore-0.1.64-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:abbe9c65978a5423751409df9c98efb69b2093953aa37d3a1605fc60663eb1d4", size = 13562757 }, + { url = "https://files.pythonhosted.org/packages/71/98/8a9635ee39ba9ee4a1d794fbeaf481f24f07d3abc4c6ac999a775a2c7e19/tensorstore-0.1.64-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e35c6e90429e517d3debdb974cb5d42e57d8c002629343a34483efbe0d4e490", size = 13658999 }, + { url = "https://files.pythonhosted.org/packages/9b/6b/373827eec77a063d39e60eace78665f0d18cef50e67bbadea78babd10c14/tensorstore-0.1.64-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72f76231ce12bfd266358a096e9c6000a2d86c1f4f24c3891c29b2edfffc5df4", size = 14920041 }, + { url = "https://files.pythonhosted.org/packages/c0/6d/9de85fe7f7ce8d78f5228d3f2ad7826f2b1ffb0e1030f4b7364629d8cc0d/tensorstore-0.1.64-cp39-cp39-win_amd64.whl", hash = "sha256:b46296a1c1f43f472e589d2fb43b9d6549d711486be78b6e3aafaff4179d8f56", size = 11477863 }, +] + +[[package]] +name = "termcolor" +version = "2.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/10/56/d7d66a84f96d804155f6ff2873d065368b25a07222a6fd51c4f24ef6d764/termcolor-2.4.0.tar.gz", hash = "sha256:aab9e56047c8ac41ed798fa36d892a37aca6b3e9159f3e0c24bc64a9b3ac7b7a", size = 12664 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d9/5f/8c716e47b3a50cbd7c146f45881e11d9414def768b7cd9c5e6650ec2a80a/termcolor-2.4.0-py3-none-any.whl", hash = "sha256:9297c0df9c99445c2412e832e882a7884038a25617c60cea2ad69488d4040d63", size = 7719 }, +] + +[[package]] +name = "text-unidecode" +version = "1.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ab/e2/e9a00f0ccb71718418230718b3d900e71a5d16e701a3dae079a21e9cd8f8/text-unidecode-1.3.tar.gz", hash = "sha256:bad6603bb14d279193107714b288be206cac565dfa49aa5b105294dd5c4aab93", size = 76885 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a6/a5/c0b6468d3824fe3fde30dbb5e1f687b291608f9473681bbf7dabbf5a87d7/text_unidecode-1.3-py2.py3-none-any.whl", hash = "sha256:1311f10e8b895935241623731c2ba64f4c455287888b18189350b67134a822e8", size = 78154 }, +] + +[[package]] +name = "tf-keras" +version = "2.15.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "tensorflow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/03/a3/72e49c210fe545159c98842f110f024195f8efefc2e310f8eac77e3d599e/tf_keras-2.15.1.tar.gz", hash = "sha256:40ab605cecc7759c657cb2bccd9efaacd6fc2369a6c1eba8053890afeac46886", size = 1251021 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6f/23/6fd9aab5b7ef9e5614b94edce48d92db9d38d2bd2d00ef2c7a6f82a00588/tf_keras-2.15.1-py3-none-any.whl", hash = "sha256:8beaef46b8b4f1158de1410e7c0cf82f008b9e8c4ab3443f54ac1aaef9c2ad74", size = 1715031 }, +] + +[[package]] +name = "tf2onnx" +version = "1.8.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "flatbuffers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnx", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "six", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/db/32/33ce509a79c207a39cf04bfa3ec3353da15d1e6553a6ad912f117cc29130/tf2onnx-1.8.4-py3-none-any.whl", hash = "sha256:1ebabb96c914da76e23222b6107a8b248a024bf259d77f027e6690099512d457", size = 345298 }, +] + +[[package]] +name = "threadpoolctl" +version = "3.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bd/55/b5148dcbf72f5cde221f8bfe3b6a540da7aa1842f6b491ad979a6c8b84af/threadpoolctl-3.5.0.tar.gz", hash = "sha256:082433502dd922bf738de0d8bcc4fdcbf0979ff44c42bd40f5af8a282f6fa107", size = 41936 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4b/2c/ffbf7a134b9ab11a67b0cf0726453cedd9c5043a4fe7a35d1cefa9a1bcfb/threadpoolctl-3.5.0-py3-none-any.whl", hash = "sha256:56c1e26c150397e58c4926da8eeee87533b1e32bef131bd4bf6a2f45f3185467", size = 18414 }, +] + +[[package]] +name = "timeout-decorator" +version = "0.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/80/f8/0802dd14c58b5d3d72bb9caa4315535f58787a1dc50b81bbbcaaa15451be/timeout-decorator-0.5.0.tar.gz", hash = "sha256:6a2f2f58db1c5b24a2cc79de6345760377ad8bdc13813f5265f6c3e63d16b3d7", size = 4754 } + +[[package]] +name = "timm" +version = "1.0.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "huggingface-hub", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "safetensors", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torchvision", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7d/e0/f9628aab36d199c6ff1bff2d4015e6b2333e8010d6c6eaed8fbfd102fa7f/timm-1.0.8.tar.gz", hash = "sha256:f54a579f1cc39c43d99a4b03603e39c4cee87d4f0a08aba9c22e19064b30bf95", size = 2187799 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1a/02/f11f8f9178242a694cd99f3a234731d833df77bf01cbb21c0085f021e3d7/timm-1.0.8-py3-none-any.whl", hash = "sha256:2e4cf9e2224616fdb08e5f7a2972bd20e05f750236ea1f8dd53f3f326ceaee83", size = 2309959 }, +] + +[[package]] +name = "tokenizers" +version = "0.15.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "huggingface-hub", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c0/44/625db94e91c6196b6574359fa70bfe28e8eabf57a1b894f8f0ec69727fd1/tokenizers-0.15.2.tar.gz", hash = "sha256:e6e9c6e019dd5484be5beafc775ae6c925f4c69a3487040ed09b45e13df2cb91", size = 320256 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a8/6e/489419d98730b3d02381f10a8b97c5bf55b45742d1b347cdd0ffe267b827/tokenizers-0.15.2-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:52f6130c9cbf70544287575a985bf44ae1bda2da7e8c24e97716080593638012", size = 2578411 }, + { url = "https://files.pythonhosted.org/packages/01/04/45d88b8bddc09bf56ae1631721393255b75798af515c65c26389713a2072/tokenizers-0.15.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:054c1cc9c6d68f7ffa4e810b3d5131e0ba511b6e4be34157aa08ee54c2f8d9ee", size = 2412452 }, + { url = "https://files.pythonhosted.org/packages/cc/bf/819bf4445ed68ffaf73b0f6245bcbd21a5cd58e86dabbef315a6d0b707b3/tokenizers-0.15.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:a9b9b070fdad06e347563b88c278995735292ded1132f8657084989a4c84a6d5", size = 3643451 }, + { url = "https://files.pythonhosted.org/packages/31/b3/70d3fe0ad25e065322cd902624cad4ff2647484fe823360f58af6927b48c/tokenizers-0.15.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ea621a7eef4b70e1f7a4e84dd989ae3f0eeb50fc8690254eacc08acb623e82f1", size = 3534105 }, + { url = "https://files.pythonhosted.org/packages/5f/1b/58e77f2b57651e8c1b4f1b7144a1250509f2e7a1f55073d12620968ae4bb/tokenizers-0.15.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:cf7fd9a5141634fa3aa8d6b7be362e6ae1b4cda60da81388fa533e0b552c98fd", size = 3398034 }, + { url = "https://files.pythonhosted.org/packages/dc/d5/45dd421f45b3c1a446ffd9486cef29ed568b5978f66a1803fa46a44aa9be/tokenizers-0.15.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44f2a832cd0825295f7179eaf173381dc45230f9227ec4b44378322d900447c9", size = 3926740 }, + { url = "https://files.pythonhosted.org/packages/fa/6b/6b757cf6f7c30009a6759d3f7b833d974b3cd50d24d5824c695e077cb1bf/tokenizers-0.15.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8b9ec69247a23747669ec4b0ca10f8e3dfb3545d550258129bd62291aabe8605", size = 4032027 }, + { url = "https://files.pythonhosted.org/packages/1c/5d/cf5e122ce4f1a29f165b2a69dc33d1ff30bce303343d58a54775ddba5d51/tokenizers-0.15.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40b6a4c78da863ff26dbd5ad9a8ecc33d8a8d97b535172601cf00aee9d7ce9ce", size = 3577319 }, + { url = "https://files.pythonhosted.org/packages/aa/0b/dd9e5124fe73a01f36f5c7554ac97b9612af5e0bd401d6a606a3f52a060a/tokenizers-0.15.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:5ab2a4d21dcf76af60e05af8063138849eb1d6553a0d059f6534357bce8ba364", size = 9682328 }, + { url = "https://files.pythonhosted.org/packages/6a/0c/3435e3d54f825d4fa363a7ab2680b243314377eb2ed28e87ade70b861e7b/tokenizers-0.15.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a47acfac7e511f6bbfcf2d3fb8c26979c780a91e06fb5b9a43831b2c0153d024", size = 9995619 }, + { url = "https://files.pythonhosted.org/packages/ab/bf/a804747020f1b221131b74b5f29c24b47a5d2cee4b1311ce394ca9ce242a/tokenizers-0.15.2-cp310-none-win32.whl", hash = "sha256:064ff87bb6acdbd693666de9a4b692add41308a2c0ec0770d6385737117215f2", size = 2013446 }, + { url = "https://files.pythonhosted.org/packages/c9/87/0bf37626c5f1ea2462e0398be88c287f3d40c696c255ba478bf525bdc852/tokenizers-0.15.2-cp310-none-win_amd64.whl", hash = "sha256:3b919afe4df7eb6ac7cafd2bd14fb507d3f408db7a68c43117f579c984a73843", size = 2192649 }, + { url = "https://files.pythonhosted.org/packages/73/11/933d68d395f5486d935e1c15da80bc96bf3f48595652069d19e0e9894386/tokenizers-0.15.2-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:89cd1cb93e4b12ff39bb2d626ad77e35209de9309a71e4d3d4672667b4b256e7", size = 2578922 }, + { url = "https://files.pythonhosted.org/packages/5f/4f/a4c12cc058a899c1caaa1e689c3df9a698e20e891d4005aa6ec2174a9339/tokenizers-0.15.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:cfed5c64e5be23d7ee0f0e98081a25c2a46b0b77ce99a4f0605b1ec43dd481fa", size = 2412317 }, + { url = "https://files.pythonhosted.org/packages/e9/13/b86ea87b7e3b4a2ca154220dc4eb19a56a3864ec03e9630d15d1bac10da1/tokenizers-0.15.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:a907d76dcfda37023ba203ab4ceeb21bc5683436ebefbd895a0841fd52f6f6f2", size = 3643051 }, + { url = "https://files.pythonhosted.org/packages/0f/23/e4985657ea42ad432d6dc2100b2687e70a6bae730f1f8c52f81d9e6ccf3a/tokenizers-0.15.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20ea60479de6fc7b8ae756b4b097572372d7e4032e2521c1bbf3d90c90a99ff0", size = 3534327 }, + { url = "https://files.pythonhosted.org/packages/34/d5/e1ad46939d6de48d41bbd8b302f87ecde79847855210e75517a832b29490/tokenizers-0.15.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:48e2b9335be2bc0171df9281385c2ed06a15f5cf121c44094338306ab7b33f2c", size = 3398296 }, + { url = "https://files.pythonhosted.org/packages/e7/d1/4d319a035f819af3290ec5a09482ad659d9d2a0aea33890fb5720ce81841/tokenizers-0.15.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:112a1dd436d2cc06e6ffdc0b06d55ac019a35a63afd26475205cb4b1bf0bfbff", size = 3927353 }, + { url = "https://files.pythonhosted.org/packages/e5/39/facfca8e598126a0001d4295e6b1ee670d241aa6f4fcdd97016065b43c5d/tokenizers-0.15.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4620cca5c2817177ee8706f860364cc3a8845bc1e291aaf661fb899e5d1c45b0", size = 4030091 }, + { url = "https://files.pythonhosted.org/packages/15/0b/c09b2c0dc688c82adadaa0d5080983de3ce920f4a5cbadb7eaa5302ad251/tokenizers-0.15.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ccd73a82751c523b3fc31ff8194702e4af4db21dc20e55b30ecc2079c5d43cb7", size = 3577167 }, + { url = "https://files.pythonhosted.org/packages/07/3b/d8e60712e509a6f5d01bf0eb4470452b72277be4883656206d4ccd7e02de/tokenizers-0.15.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:107089f135b4ae7817affe6264f8c7a5c5b4fd9a90f9439ed495f54fcea56fb4", size = 9683503 }, + { url = "https://files.pythonhosted.org/packages/c0/61/1c26c8e54af9bab32743e0484601a60738f33797f91040da2a4104f07e70/tokenizers-0.15.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0ff110ecc57b7aa4a594396525a3451ad70988e517237fe91c540997c4e50e29", size = 9996038 }, + { url = "https://files.pythonhosted.org/packages/d1/54/451e96d8514b1afbef955f7420e1180e015c3f4eb085ad38189c0e83ee87/tokenizers-0.15.2-cp311-none-win32.whl", hash = "sha256:6d76f00f5c32da36c61f41c58346a4fa7f0a61be02f4301fd30ad59834977cc3", size = 2013591 }, + { url = "https://files.pythonhosted.org/packages/c1/02/40725eebedea8175918bd59ab80b2174d6ef3b3ef9ac8ec996e84c38d3ca/tokenizers-0.15.2-cp311-none-win_amd64.whl", hash = "sha256:cc90102ed17271cf0a1262babe5939e0134b3890345d11a19c3145184b706055", size = 2192797 }, + { url = "https://files.pythonhosted.org/packages/ae/ca/ea4b5aa70d4d26f2d05620c265b07b5a249157767c1673f5753b8bfc7db1/tokenizers-0.15.2-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:f86593c18d2e6248e72fb91c77d413a815153b8ea4e31f7cd443bdf28e467670", size = 2574444 }, + { url = "https://files.pythonhosted.org/packages/f9/99/5a55a9b6e2db274c0969ad57d989d02efae90f9e558983a561c9b2b7ea1a/tokenizers-0.15.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0774bccc6608eca23eb9d620196687c8b2360624619623cf4ba9dc9bd53e8b51", size = 2411608 }, + { url = "https://files.pythonhosted.org/packages/82/cc/29bb3a25c06b90ce82bb20ef074011481de5c44413a1e1eb10cfd93080fb/tokenizers-0.15.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:d0222c5b7c9b26c0b4822a82f6a7011de0a9d3060e1da176f66274b70f846b98", size = 3652367 }, + { url = "https://files.pythonhosted.org/packages/c0/ae/f6a974be9b2e1615f3de3cc9e4fc2897a86357400801c58143c67cbbad2e/tokenizers-0.15.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3835738be1de66624fff2f4f6f6684775da4e9c00bde053be7564cbf3545cc66", size = 3529509 }, + { url = "https://files.pythonhosted.org/packages/d6/42/340b91f675b494c4ecc0a256c5dd88b4003dbfde05afff90b970738fdfb4/tokenizers-0.15.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0143e7d9dcd811855c1ce1ab9bf5d96d29bf5e528fd6c7824d0465741e8c10fd", size = 3396516 }, + { url = "https://files.pythonhosted.org/packages/6f/b2/8a965abc17fff309eb06e98ce429a19a5e04f731a669a6113b9e182f8a79/tokenizers-0.15.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db35825f6d54215f6b6009a7ff3eedee0848c99a6271c870d2826fbbedf31a38", size = 3918811 }, + { url = "https://files.pythonhosted.org/packages/6c/16/dad7b4aa6e34a395aef7ae7b010d8b5ebefdf3df81510de53d7f17d2f0fc/tokenizers-0.15.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3f5e64b0389a2be47091d8cc53c87859783b837ea1a06edd9d8e04004df55a5c", size = 4025494 }, + { url = "https://files.pythonhosted.org/packages/f6/de/3707df0c1d7bf55e6a4dba724700353bfee8e292fdd8ccfe93416549124d/tokenizers-0.15.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e0480c452217edd35eca56fafe2029fb4d368b7c0475f8dfa3c5c9c400a7456", size = 3575314 }, + { url = "https://files.pythonhosted.org/packages/2e/dd/7b8da304d152bb46f13bc2ba5bd545480ab6ce39d94a53eef07f7624d235/tokenizers-0.15.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:a33ab881c8fe70474980577e033d0bc9a27b7ab8272896e500708b212995d834", size = 9682779 }, + { url = "https://files.pythonhosted.org/packages/07/aa/66e8a81e07a791ca6ee9d74ee6de1ffbcd3985149f13aeb530bd409baba0/tokenizers-0.15.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:a308a607ca9de2c64c1b9ba79ec9a403969715a1b8ba5f998a676826f1a7039d", size = 9995614 }, + { url = "https://files.pythonhosted.org/packages/bf/e1/aed3bc98785c54bd26bf6dd3d2f54cc00de33e8b1f922a23131372eedec8/tokenizers-0.15.2-cp312-none-win32.whl", hash = "sha256:b8fcfa81bcb9447df582c5bc96a031e6df4da2a774b8080d4f02c0c16b42be0b", size = 2011030 }, + { url = "https://files.pythonhosted.org/packages/c9/ea/5800f4941a713b2feed955b6a256aacc1ca68a6699916d2668622c075d38/tokenizers-0.15.2-cp312-none-win_amd64.whl", hash = "sha256:38d7ab43c6825abfc0b661d95f39c7f8af2449364f01d331f3b51c94dcff7221", size = 2180523 }, + { url = "https://files.pythonhosted.org/packages/6d/04/406f35822d785ccdcd740f95ba58515c739b6d57c05dd278ee64c70d1565/tokenizers-0.15.2-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:38bfb0204ff3246ca4d5e726e8cc8403bfc931090151e6eede54d0e0cf162ef0", size = 2574496 }, + { url = "https://files.pythonhosted.org/packages/6c/b4/6cc305767c9b1b97b8f5bc61fc472abf42b24ad39388e8f0c57250a7c145/tokenizers-0.15.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:9c861d35e8286a53e06e9e28d030b5a05bcbf5ac9d7229e561e53c352a85b1fc", size = 2411609 }, + { url = "https://files.pythonhosted.org/packages/6b/6c/ae2437a3e233298a962053c62b943ffabb38627fd6787ff8da62352333fa/tokenizers-0.15.2-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:936bf3842db5b2048eaa53dade907b1160f318e7c90c74bfab86f1e47720bdd6", size = 3652369 }, + { url = "https://files.pythonhosted.org/packages/00/8b/21600349146d9fa4d341c507faf8d11b7292b7f29f8def440b81e65ad1ee/tokenizers-0.15.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:620beacc3373277700d0e27718aa8b25f7b383eb8001fba94ee00aeea1459d89", size = 3529510 }, + { url = "https://files.pythonhosted.org/packages/53/cd/6ffc60fbc5eae02629d736d578a7c5ca5c20b2b84e9866d61a0c6395684a/tokenizers-0.15.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2735ecbbf37e52db4ea970e539fd2d450d213517b77745114f92867f3fc246eb", size = 3396516 }, + { url = "https://files.pythonhosted.org/packages/d5/4c/15b66eb6a47dc9345192aa77988655830c1ebd1306d2b894ecd28fbfbbca/tokenizers-0.15.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:473c83c5e2359bb81b0b6fde870b41b2764fcdd36d997485e07e72cc3a62264a", size = 3918812 }, + { url = "https://files.pythonhosted.org/packages/ed/3b/f9df83311475e456473958cce65a3709f07a1d1dd8ed046d4779ec4336c8/tokenizers-0.15.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:968fa1fb3c27398b28a4eca1cbd1e19355c4d3a6007f7398d48826bbe3a0f728", size = 4025495 }, + { url = "https://files.pythonhosted.org/packages/36/ee/2055fbeb590719393d29cea3016491fd3a6da10598541bff256cc3750349/tokenizers-0.15.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:865c60ae6eaebdde7da66191ee9b7db52e542ed8ee9d2c653b6d190a9351b980", size = 3575316 }, + { url = "https://files.pythonhosted.org/packages/93/53/ae4e5e49bdc61849b668263a1a4c398b4e33aea1bb9b0a59c9677bb5266b/tokenizers-0.15.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:7c0d8b52664ab2d4a8d6686eb5effc68b78608a9008f086a122a7b2996befbab", size = 9682779 }, + { url = "https://files.pythonhosted.org/packages/04/c6/8818b867611734889cd8faca1153ec5dbdd59c98e85e5f6980e7be338839/tokenizers-0.15.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:f33dfbdec3784093a9aebb3680d1f91336c56d86cc70ddf88708251da1fe9064", size = 9995614 }, + { url = "https://files.pythonhosted.org/packages/92/5c/7ee7e297ad9dbdcb20caae1fb506efada72dd4c7dd3aa000285901ca1c87/tokenizers-0.15.2-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:82f8652a74cc107052328b87ea8b34291c0f55b96d8fb261b3880216a9f9e48e", size = 2578164 }, + { url = "https://files.pythonhosted.org/packages/aa/fa/f75d1c113256968833768391916ef385792409b307ae5581b7476c581963/tokenizers-0.15.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:02458bee6f5f3139f1ebbb6d042b283af712c0981f5bc50edf771d6b762d5e4f", size = 2414196 }, + { url = "https://files.pythonhosted.org/packages/0b/0b/3740e5ff34da240ecef9026b0f8625edc896421fefb99bf6a8d3242f0181/tokenizers-0.15.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:c9a09cd26cca2e1c349f91aa665309ddb48d71636370749414fbf67bc83c5343", size = 3643569 }, + { url = "https://files.pythonhosted.org/packages/60/b5/b80ea7034527a268b9f8aa84c6ae9ec99edb7188aa8ffc18a42fb8546596/tokenizers-0.15.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:158be8ea8554e5ed69acc1ce3fbb23a06060bd4bbb09029431ad6b9a466a7121", size = 3534125 }, + { url = "https://files.pythonhosted.org/packages/eb/7a/f0ab9e5d0ca5619d37c65e3a474d3e41cd336c939fa79c0261ebaacc387f/tokenizers-0.15.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1ddba9a2b0c8c81633eca0bb2e1aa5b3a15362b1277f1ae64176d0f6eba78ab1", size = 3397334 }, + { url = "https://files.pythonhosted.org/packages/b1/50/49643c82a9801e09bb0d0ef9ce9cd17c0f91651cba96399af822a882a9ea/tokenizers-0.15.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3ef5dd1d39797044642dbe53eb2bc56435308432e9c7907728da74c69ee2adca", size = 3927121 }, + { url = "https://files.pythonhosted.org/packages/a2/98/65bcde2920c022feac75ee282b3041f4d12e51c2cf955ce42a928410e591/tokenizers-0.15.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:454c203164e07a860dbeb3b1f4a733be52b0edbb4dd2e5bd75023ffa8b49403a", size = 4031187 }, + { url = "https://files.pythonhosted.org/packages/a5/bc/ec39dae3b0ea00724c0fea287091d62b0ccaa45c7a947004714e882d193d/tokenizers-0.15.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0cf6b7f1d4dc59af960e6ffdc4faffe6460bbfa8dce27a58bf75755ffdb2526d", size = 3577424 }, + { url = "https://files.pythonhosted.org/packages/d2/1a/2d2470b36d57de78f2c2ceb3cc93d1a770f02d3a1a21cf2312b81519a6ad/tokenizers-0.15.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:2ef09bbc16519f6c25d0c7fc0c6a33a6f62923e263c9d7cca4e58b8c61572afb", size = 9682903 }, + { url = "https://files.pythonhosted.org/packages/ce/7a/7f260655fb27b0d47ec83239535066f5c76583c7ab4e55a71c5437f7721f/tokenizers-0.15.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c9a2ebdd2ad4ec7a68e7615086e633857c85e2f18025bd05d2a4399e6c5f7169", size = 9997873 }, + { url = "https://files.pythonhosted.org/packages/51/60/6a1d7ea4d4095753db78c250f721b9495953eb5ec88ccfc3b58604ca6544/tokenizers-0.15.2-cp39-none-win32.whl", hash = "sha256:918fbb0eab96fe08e72a8c2b5461e9cce95585d82a58688e7f01c2bd546c79d0", size = 2013308 }, + { url = "https://files.pythonhosted.org/packages/ea/a5/006f9b3133e71d5b41d6455dede48731c22d3ddf5371167fb3c28847581e/tokenizers-0.15.2-cp39-none-win_amd64.whl", hash = "sha256:524e60da0135e106b254bd71f0659be9f89d83f006ea9093ce4d1fab498c6d0d", size = 2193190 }, + { url = "https://files.pythonhosted.org/packages/a5/2c/9c2f7a0601cccc8cf169006873ed7775ad76804e98b7236d1f345faf69f8/tokenizers-0.15.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:6a9b648a58281c4672212fab04e60648fde574877d0139cd4b4f93fe28ca8944", size = 2576142 }, + { url = "https://files.pythonhosted.org/packages/2e/4f/93ccada67079065f892a2c4e7159caf0ce65084fdf60253815ca964403af/tokenizers-0.15.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:7c7d18b733be6bbca8a55084027f7be428c947ddf871c500ee603e375013ffba", size = 2412714 }, + { url = "https://files.pythonhosted.org/packages/fd/8f/1dbeaf8b2a2c00e5172d8ed000fba94edb1d424fd50dcbdcc755fbf3c0aa/tokenizers-0.15.2-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:13ca3611de8d9ddfbc4dc39ef54ab1d2d4aaa114ac8727dfdc6a6ec4be017378", size = 3646249 }, + { url = "https://files.pythonhosted.org/packages/89/ed/b055d12637754471e4344f4e85c6268ef76801b0113ce1f789c5d84eaae9/tokenizers-0.15.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:237d1bf3361cf2e6463e6c140628e6406766e8b27274f5fcc62c747ae3c6f094", size = 3534330 }, + { url = "https://files.pythonhosted.org/packages/ad/e1/d0b441575a3ac0262c2c73773f79dd50c94e13c9dfda0d953f1c79d47ef5/tokenizers-0.15.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:67a0fe1e49e60c664915e9fb6b0cb19bac082ab1f309188230e4b2920230edb3", size = 3579864 }, + { url = "https://files.pythonhosted.org/packages/a8/cd/6fe89c549d3aad886295cb9875105a75fa0d82ce80e4721cb43e6eb0830e/tokenizers-0.15.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:4e022fe65e99230b8fd89ebdfea138c24421f91c1a4f4781a8f5016fd5cdfb4d", size = 9684097 }, + { url = "https://files.pythonhosted.org/packages/9f/4d/29e5052a11d1a9f8eb156e48c123731e6219e4f3d72cd6d7787fdf4eff7a/tokenizers-0.15.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:d857be2df69763362ac699f8b251a8cd3fac9d21893de129bc788f8baaef2693", size = 9997782 }, + { url = "https://files.pythonhosted.org/packages/be/53/a104d802030e74cb88e3673a23c629518c5d3a585f485ac0d06d2c61fcef/tokenizers-0.15.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:e2ea752f2b0fe96eb6e2f3adbbf4d72aaa1272079b0dfa1145507bd6a5d537e6", size = 2576171 }, + { url = "https://files.pythonhosted.org/packages/e7/d7/bc1144ba365c1929661db8c5c729addd1e9ef029106d2bbac83970585755/tokenizers-0.15.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:4b19a808d8799fda23504a5cd31d2f58e6f52f140380082b352f877017d6342b", size = 2412554 }, + { url = "https://files.pythonhosted.org/packages/e3/0c/65356b710dce071234ddab78fd0f530ef318aa700e13b4b687eb738f21bf/tokenizers-0.15.2-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:64c86e5e068ac8b19204419ed8ca90f9d25db20578f5881e337d203b314f4104", size = 3646861 }, + { url = "https://files.pythonhosted.org/packages/23/4b/6b4bdf41b9777cd07f185c6ca015ca62d8fbccfac0e23095da3ad1315af7/tokenizers-0.15.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:de19c4dc503c612847edf833c82e9f73cd79926a384af9d801dcf93f110cea4e", size = 3534237 }, + { url = "https://files.pythonhosted.org/packages/94/d2/656ff3cf666c547aaf72c7f160465603c744adbdbfeabf274b63843a1fdd/tokenizers-0.15.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea09acd2fe3324174063d61ad620dec3bcf042b495515f27f638270a7d466e8b", size = 3579835 }, + { url = "https://files.pythonhosted.org/packages/94/b4/b46f929c65fb1bb7371300ce7ad027eb537c3871e850a7b9a92cabf3c03f/tokenizers-0.15.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:cf27fd43472e07b57cf420eee1e814549203d56de00b5af8659cb99885472f1f", size = 9683503 }, + { url = "https://files.pythonhosted.org/packages/c9/93/a2916bca30301fed0f388c2ff4aedb3a6539e4323a645b2b01321e680615/tokenizers-0.15.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:7ca22bd897537a0080521445d91a58886c8c04084a6a19e6c78c586e0cfa92a5", size = 9997752 }, +] + +[[package]] +name = "tomli" +version = "2.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c0/3f/d7af728f075fb08564c5949a9c95e44352e23dee646869fa104a3b2060a3/tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f", size = 15164 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/97/75/10a9ebee3fd790d20926a90a2547f0bf78f371b2f13aa822c759680ca7b9/tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc", size = 12757 }, +] + +[[package]] +name = "toolz" +version = "0.12.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3e/bf/5e12db234df984f6df3c7f12f1428aa680ba4e101f63f4b8b3f9e8d2e617/toolz-0.12.1.tar.gz", hash = "sha256:ecca342664893f177a13dac0e6b41cbd8ac25a358e5f215316d43e2100224f4d", size = 66550 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/8a/d82202c9f89eab30f9fc05380daae87d617e2ad11571ab23d7c13a29bb54/toolz-0.12.1-py3-none-any.whl", hash = "sha256:d22731364c07d72eea0a0ad45bafb2c2937ab6fd38a3507bf55eae8744aa7d85", size = 56121 }, +] + +[[package]] +name = "torch" +version = "2.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "filelock", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fsspec", version = "2024.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fsspec", version = "2024.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "jinja2", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "networkx", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "nvidia-cublas-cu12", marker = "platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "nvidia-cuda-cupti-cu12", marker = "platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "nvidia-cuda-nvrtc-cu12", marker = "platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "nvidia-cuda-runtime-cu12", marker = "platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "nvidia-cudnn-cu12", marker = "platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "nvidia-cufft-cu12", marker = "platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "nvidia-curand-cu12", marker = "platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "nvidia-cusolver-cu12", marker = "platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "nvidia-cusparse-cu12", marker = "platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "nvidia-nccl-cu12", marker = "platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "nvidia-nvtx-cu12", marker = "platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "sympy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "triton", marker = "python_version < '3.13' and platform_machine == 'x86_64' and platform_system == 'Linux'" }, + { name = "typing-extensions", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/9a/bd/4161ae28fb1c388a8ee30ca3aa72cf11ac3016ce62bc9e82c71ce193c410/torch-2.4.0-cp310-cp310-manylinux1_x86_64.whl", hash = "sha256:4ed94583e244af51d6a8d28701ca5a9e02d1219e782f5a01dd401f90af17d8ac", size = 797225217 }, + { url = "https://files.pythonhosted.org/packages/81/77/84a2cb46649f538ea9d317b7272476d295df9a0cfc92907145a854c8c67f/torch-2.4.0-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:c4ca297b7bd58b506bfd6e78ffd14eb97c0e7797dcd7965df62f50bb575d8954", size = 89827576 }, + { url = "https://files.pythonhosted.org/packages/19/8e/24221589eb2dc066b14e29800d2e801c446f697c2d2240a9a61c6c0c5101/torch-2.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:2497cbc7b3c951d69b276ca51fe01c2865db67040ac67f5fc20b03e41d16ea4a", size = 197856855 }, + { url = "https://files.pythonhosted.org/packages/ff/70/feb6338f48615b5a5fe8ff218c15ae9897fa7c1c996dddf9867e8306a8cf/torch-2.4.0-cp310-none-macosx_11_0_arm64.whl", hash = "sha256:685418ab93730efbee71528821ff54005596970dd497bf03c89204fb7e3f71de", size = 62138916 }, + { url = "https://files.pythonhosted.org/packages/80/83/9b7681e41e59adb6c2b042f7e8eb716515665a6eed3dda4215c6b3385b90/torch-2.4.0-cp311-cp311-manylinux1_x86_64.whl", hash = "sha256:e743adadd8c8152bb8373543964551a7cb7cc20ba898dc8f9c0cdbe47c283de0", size = 797262052 }, + { url = "https://files.pythonhosted.org/packages/84/fa/2b510a02809ddd70aed821bc2328c4effd206503df38a1328c9f1f957813/torch-2.4.0-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:7334325c0292cbd5c2eac085f449bf57d3690932eac37027e193ba775703c9e6", size = 89850473 }, + { url = "https://files.pythonhosted.org/packages/18/cf/f69dff972a748e08e1bf602ef94ea5c6d4dd2f41cea22c8ad67a607d8b41/torch-2.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:97730014da4c57ffacb3c09298c6ce05400606e890bd7a05008d13dd086e46b1", size = 197860580 }, + { url = "https://files.pythonhosted.org/packages/b7/d0/5e8f96d83889e77b478b90e7d8d24a5fc14c5c9350c6b93d071f45f39096/torch-2.4.0-cp311-none-macosx_11_0_arm64.whl", hash = "sha256:f169b4ea6dc93b3a33319611fcc47dc1406e4dd539844dcbd2dec4c1b96e166d", size = 62144370 }, + { url = "https://files.pythonhosted.org/packages/bf/55/b6c74df4695f94a9c3505021bc2bd662e271d028d055b3b2529f3442a3bd/torch-2.4.0-cp312-cp312-manylinux1_x86_64.whl", hash = "sha256:997084a0f9784d2a89095a6dc67c7925e21bf25dea0b3d069b41195016ccfcbb", size = 797168571 }, + { url = "https://files.pythonhosted.org/packages/9a/5d/327fb72044c22d68a826643abf2e220db3d7f6005a41a6b167af1ffbc708/torch-2.4.0-cp312-cp312-manylinux2014_aarch64.whl", hash = "sha256:bc3988e8b36d1e8b998d143255d9408d8c75da4ab6dd0dcfd23b623dfb0f0f57", size = 89746726 }, + { url = "https://files.pythonhosted.org/packages/dc/95/a14dd84ce65e5ce176176393a80b2f74864ee134a31f590140456a4c0959/torch-2.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:3374128bbf7e62cdaed6c237bfd39809fbcfaa576bee91e904706840c3f2195c", size = 197807123 }, + { url = "https://files.pythonhosted.org/packages/c7/87/489ebb234e75760e06fa4789fa6d4e13c125beefa1483ce35c9e43dcd395/torch-2.4.0-cp312-none-macosx_11_0_arm64.whl", hash = "sha256:91aaf00bfe1ffa44dc5b52809d9a95129fca10212eca3ac26420eb11727c6288", size = 62123112 }, + { url = "https://files.pythonhosted.org/packages/36/80/3ac18a2db50d832745c1c5db7e47c4d0e02f1a11e92185155a6b218cbbe3/torch-2.4.0-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:618808d3f610d5f180e47a697d4ec90b810953bb1e020f424b2ac7fb0884b545", size = 797245386 }, + { url = "https://files.pythonhosted.org/packages/05/38/e4ad00f4e60c9010b981e1a94d58df4a96b9b10ba6ef585be6019f54b543/torch-2.4.0-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:ed765d232d23566052ba83632ec73a4fccde00b4c94ad45d63b471b09d63b7a7", size = 89816730 }, + { url = "https://files.pythonhosted.org/packages/9f/ef/13faff7ef5770cea29ef2c06e2b87d6f34697973aef5eea4234948b46c4d/torch-2.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:a2feb98ac470109472fb10dfef38622a7ee08482a16c357863ebc7bc7db7c8f7", size = 198011542 }, + { url = "https://files.pythonhosted.org/packages/3a/4a/7441a1ab49762309146ea31fab1e55362f13f7749c1aabff41d8edc887f9/torch-2.4.0-cp39-none-macosx_11_0_arm64.whl", hash = "sha256:8940fc8b97a4c61fdb5d46a368f21f4a3a562a17879e932eb51a5ec62310cb31", size = 62138298 }, +] + +[[package]] +name = "torchaudio" +version = "2.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "torch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/e0/5b/cc0ab8d15291d4b14a2ce740c7b46483c356f060eb98dc9a68171230cadc/torchaudio-2.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:733e9d859b88dabefeaf008e3ab2b8c7885b29466068b4b79a42766be4619e46", size = 1789823 }, + { url = "https://files.pythonhosted.org/packages/2d/4a/416af600d0d47343b65dd182fb7b918a640e80385b609d94fb89a3fc527c/torchaudio-2.4.0-cp310-cp310-manylinux1_x86_64.whl", hash = "sha256:c48bab82a9ee0c67b9323c2ebbe0890a34c5815d1ff1ace77b1c9df4e6fdbbff", size = 3361296 }, + { url = "https://files.pythonhosted.org/packages/48/79/074ec23358af34fe467ac781e817c310649f19c4deb8d08770a3e6397945/torchaudio-2.4.0-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:17cb73d4336771d455cd8dda8b4891307a5346b890a4e6b1d4b73d565258fee1", size = 1659411 }, + { url = "https://files.pythonhosted.org/packages/9c/5f/fe6e84fece5e54d215a4575061bf88ad1af21c4875f0d3297b8926a2cba4/torchaudio-2.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:af19edc1c3c0ac626f594fc67f087db401016d9216af8d62b6c6ff731efbae43", size = 2416699 }, + { url = "https://files.pythonhosted.org/packages/1b/11/9c38a2da79d79611fd6950837f5389bac55c6fdfbc1b4ceab6d2afd8b0d4/torchaudio-2.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:acbcf9129ffcfce808254e2cbff103363c505ce06ed4c4231b3f436a10679d4d", size = 1797221 }, + { url = "https://files.pythonhosted.org/packages/b7/a7/6b1c6185c9aed923f64fd6c3d1cce09b21031ab36aa661f39e255535511c/torchaudio-2.4.0-cp311-cp311-manylinux1_x86_64.whl", hash = "sha256:393ee8c24110ccc8030482c10cd9d5d0b5e528f6a9dd3d60557e1151aa951b13", size = 3366732 }, + { url = "https://files.pythonhosted.org/packages/fc/d4/c038ac466f98bc615183d6d1e7f31d0306834887748f99d2ca52877cc534/torchaudio-2.4.0-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:be969c09466db35e0d79b8b09dff66caedbb9569b42c903a2d5e0db2af760e3c", size = 1666062 }, + { url = "https://files.pythonhosted.org/packages/96/9b/720bb13674234a2cc90525502a255233227e7e2a046ab96628e6b0969b07/torchaudio-2.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:2993a3288b2b451bf90c7c4d65991b5769e2614d923e295f08a10066ce79d3c0", size = 2418453 }, + { url = "https://files.pythonhosted.org/packages/cf/1e/2139b508cb4716f98b972d8fd76084277d57faa5face86b007c495da52ac/torchaudio-2.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ae13a95ef6fabcadb0eff36d85f5048d70474a2e9704fa9c86e9903cbcec0d4a", size = 1792484 }, + { url = "https://files.pythonhosted.org/packages/c8/e7/ff8dfb30f44288c01baf39603827955c7c95ddfbee732fb65acf32f571e1/torchaudio-2.4.0-cp312-cp312-manylinux1_x86_64.whl", hash = "sha256:4782a49171d94431bb815a55aa72733f5fe38034bdf6adeced28c226e2cc791b", size = 3361223 }, + { url = "https://files.pythonhosted.org/packages/6e/a7/06ee10dfeb5e8ac2fdef29a754ed100039f5d899dd21ccec4cfad614afec/torchaudio-2.4.0-cp312-cp312-manylinux2014_aarch64.whl", hash = "sha256:534d1907bb252ecd2ba9e1d61cff7220fd66090e63df7b3c109cea77a19d4cb8", size = 1659853 }, + { url = "https://files.pythonhosted.org/packages/33/56/6d6db4673ede22d814cf0f5cb6920b997d605fdff21a28b7ffa3b555c330/torchaudio-2.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:473c149c1c5288f4ce7b609c5ecb7b2528e7958ea701147a20413d65e5a8a59c", size = 2412106 }, + { url = "https://files.pythonhosted.org/packages/79/21/bb5392ce546e5d371c4a6d812d464f76066cda79757732c98fd366d104a5/torchaudio-2.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1fd670c808e322c101957a07651e29935f86ec389243c0c43a24edd7a1854841", size = 1790599 }, + { url = "https://files.pythonhosted.org/packages/bc/b0/e8754a5e6977edc030e6ae3350ea60c85e618da025fcc28092831787934d/torchaudio-2.4.0-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:1eecb83c123577779a45381de3a38e4add132a80104cff4afd816913f51ca17b", size = 3362831 }, + { url = "https://files.pythonhosted.org/packages/99/13/8428d9007aa88cd150fb80eed8c929eb8ae45e7adb673fe44c1360ebc718/torchaudio-2.4.0-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:c840894de12a6dd3ea57cbb0d0086123aaa48001ba3ad99ef714fe009eae8eb9", size = 1660759 }, + { url = "https://files.pythonhosted.org/packages/3d/d2/96520547deba32e7bf2ac61e39d7eb8254f5e471f6e4ed6b985891baa5bb/torchaudio-2.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:608fd609cdd8323ef4a50c1e984a0be7282a6c630fad22e040e957f8e376950e", size = 2409959 }, +] + +[[package]] +name = "torchvision" +version = "0.19.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pillow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/e8/a3/4c868202fa23f69f9a58bb29ecbae5f9912c5d79fa5e78db5d3de7e6434f/torchvision-0.19.0-1-cp310-cp310-win_amd64.whl", hash = "sha256:6ed066aae5c50465d7c4761357aefe5dbd2eb7075a33ab8c14b352fc2353ad4c", size = 1288390 }, + { url = "https://files.pythonhosted.org/packages/6a/38/e8257ad99ea2ec30bbb4e6d9d81f3fe796e39046bb060d80569cbf6d83e5/torchvision-0.19.0-1-cp311-cp311-win_amd64.whl", hash = "sha256:6b1bce2e4c003d890a18f14ff289528707d918e38539ff890ef02aa31dae1b56", size = 1288348 }, + { url = "https://files.pythonhosted.org/packages/a5/96/4496817e943141a8a76bbed5c45a0fe30d356b69030e4b482c915717e3b9/torchvision-0.19.0-1-cp312-cp312-win_amd64.whl", hash = "sha256:13aee7a46e049c8c1e7d35a0394b0587a7e62ff3d1a822cd2bbbacb675ac4a09", size = 1288349 }, + { url = "https://files.pythonhosted.org/packages/8c/65/8da2b47c789acee2b48b33cd7c1b06b6eb45106854d42ed43269a84df908/torchvision-0.19.0-1-cp39-cp39-win_amd64.whl", hash = "sha256:b5f70f5a8bd9c8b00a076bf466b39b5cd679ef62587c47cc048adb04d9c5f155", size = 1288391 }, + { url = "https://files.pythonhosted.org/packages/66/11/9f5ce2d6cfb55bdb18bfae6f7604f9bdc41586bed2d90ca50412a689ecba/torchvision-0.19.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ec874ef85dcb24c69e600f6e276af892c80cde3ffdaeb7275efda463242bc2a8", size = 1660223 }, + { url = "https://files.pythonhosted.org/packages/42/c2/24b4416c53445098221557e18de0de59539cbe56b580b13a4f079746f3eb/torchvision-0.19.0-cp310-cp310-manylinux1_x86_64.whl", hash = "sha256:106842b1e475b14d9a04ee0d6f5477d43100e3bb78e9d31e37422384d0d84179", size = 7026471 }, + { url = "https://files.pythonhosted.org/packages/20/5f/9bc7c6bbaf2b348474a360bffe135666892aa234946957e85cd198d815c4/torchvision-0.19.0-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:d467d434005fd05a227a2ba7af4c591bb67e6d4a97bbd06eda8da83f43e9fd07", size = 14072228 }, + { url = "https://files.pythonhosted.org/packages/6a/7d/45dddbed62d282a8041ec5744d87ea6847be12ffd1ffe8ea5f3cf3afd257/torchvision-0.19.0-cp310-cp310-win_amd64.whl", hash = "sha256:f77ac31f7337d0f6f4b58e65582c6c93b9d9eeec7dfd7478896b5cdc19a2d60d", size = 1288380 }, + { url = "https://files.pythonhosted.org/packages/b4/93/611197d5a023a33a48df656287b3e26c6e7db0fa92a9bb2259c0cdb76581/torchvision-0.19.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:dbf3aa71a3899244fc884303ed3c4604a160824fefac77e82317a5463efc1d9b", size = 1660227 }, + { url = "https://files.pythonhosted.org/packages/42/1d/efde76f826682ebe6ec97c2874f3c7e4833eb84497c521ce6cfac406ef34/torchvision-0.19.0-cp311-cp311-manylinux1_x86_64.whl", hash = "sha256:ec4162dc71d9db7f0b51d0f92491929c1419605ff436e1305e50de13504a1c30", size = 7026457 }, + { url = "https://files.pythonhosted.org/packages/6e/69/a6bfb1af58d6c608d77f1d53fe5102c5fb6f27e9de8a4d3f3e1ba9a7250a/torchvision-0.19.0-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:4e6aa4fa3f0bc3599fa071c149e651a3e6bdd67c9161794478f9f91471c406a2", size = 14072231 }, + { url = "https://files.pythonhosted.org/packages/e4/06/458d0d1495a1926729c575d7ebca956e959cfe59fa307e93d585d26aa41d/torchvision-0.19.0-cp311-cp311-win_amd64.whl", hash = "sha256:ac5525d5cc09e425b5cf5752ecf66eefbbbd8c8cd945198ce35eb01a694e6069", size = 1288337 }, + { url = "https://files.pythonhosted.org/packages/88/6f/53f55c7e390e1fd27d24fdfa36bcb6f717855f311fbea90a15a1fbdef9d4/torchvision-0.19.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c09ef8ed184fa877f6251b620226e74f682b8f1d6b341456428d4955b8d9c670", size = 1660229 }, + { url = "https://files.pythonhosted.org/packages/0d/a6/7ecba32776b22db475f3061ab2b997b3a9bda6d969ef8e4bc61aac9b78b0/torchvision-0.19.0-cp312-cp312-manylinux1_x86_64.whl", hash = "sha256:02f1dd5cfc897957535b41b0258ec452d30de044e20c2de2c75869f7708e7656", size = 7026793 }, + { url = "https://files.pythonhosted.org/packages/2f/d6/e8bf6e422cd5f8491072bdc03a6fb8c758bd517f0f4e82b537edd7d7bbdc/torchvision-0.19.0-cp312-cp312-manylinux2014_aarch64.whl", hash = "sha256:be0f27a28b8e9f2ae98a31af34a4bdd2a5bf154d92bd73a5797c8d2156fb3ab6", size = 14072008 }, + { url = "https://files.pythonhosted.org/packages/2f/3c/88471e60b3eb275f52acb2b1d43273c54323003642a75b7b4eeb3a7c4c2a/torchvision-0.19.0-cp312-cp312-win_amd64.whl", hash = "sha256:a6ba7756f75c80212e51d3576f85ea204589e0c16efdb9b835dd677bc8929a67", size = 1288336 }, + { url = "https://files.pythonhosted.org/packages/5a/37/848b25931a8dfcda0b8e51e92696fa8eb99cb743172cc875c822efaf9b42/torchvision-0.19.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:dd1279571d4b68d5a53d9b7a35aedf91c4cb1e0b08099f6a1effa7b25b8c95e7", size = 1660236 }, + { url = "https://files.pythonhosted.org/packages/4d/1b/2c34793ce68075e92ad515739bf2a2608055274b7f5838de32baad7f6f51/torchvision-0.19.0-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:4d54b5e19b7ebebca7d0b08497b4c6335264cad04c94c05fa35988d9e9eed0c4", size = 7027644 }, + { url = "https://files.pythonhosted.org/packages/4f/b8/a7c7e5321483c56d3bff82a759dd3b4439d1234fa5852fb2ef113d33874e/torchvision-0.19.0-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:5f9a598dcf82bdfc8e4436ce74763b3877dabec3b33f94613b94ede13e3e4dee", size = 1702643 }, + { url = "https://files.pythonhosted.org/packages/8b/cd/57498a8469cfaf256c13a7043e6059b28fa20d0d31734aec788d2af3642d/torchvision-0.19.0-cp39-cp39-win_amd64.whl", hash = "sha256:ec1281c10402234d470bfd4d53663d81f4364f293b2f8fe24d4a7a1adc78c90c", size = 1288378 }, +] + +[[package]] +name = "tqdm" +version = "4.66.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "platform_system == 'Windows'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/58/83/6ba9844a41128c62e810fddddd72473201f3eacde02046066142a2d96cc5/tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad", size = 169504 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/48/5d/acf5905c36149bbaec41ccf7f2b68814647347b72075ac0b1fe3022fdc73/tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd", size = 78351 }, +] + +[[package]] +name = "traitlets" +version = "5.14.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/eb/79/72064e6a701c2183016abbbfedaba506d81e30e232a68c9f0d6f6fcd1574/traitlets-5.14.3.tar.gz", hash = "sha256:9ed0579d3502c94b4b3732ac120375cda96f923114522847de4b3bb98b96b6b7", size = 161621 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl", hash = "sha256:b74e89e397b1ed28cc831db7aea759ba6640cb3de13090ca145426688ff1ac4f", size = 85359 }, +] + +[[package]] +name = "transformers" +version = "4.39.0.dev0" +source = { editable = "." } +dependencies = [ + { name = "filelock", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "huggingface-hub", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyyaml", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "regex", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "safetensors", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tokenizers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] + +[package.optional-dependencies] +accelerate = [ + { name = "accelerate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +agents = [ + { name = "accelerate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "datasets", version = "2.14.4", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "datasets", version = "2.20.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "diffusers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "opencv-python", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pillow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sentencepiece", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +all = [ + { name = "accelerate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "av", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "codecarbon", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "decord", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "flax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jaxlib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "kenlm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "keras-nlp", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "librosa", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnxconverter-common", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "optax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "optuna", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "phonemizer", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pillow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyctcdecode", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ray", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ray", extra = ["tune"] }, + { name = "sentencepiece", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sigopt", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-text", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tf2onnx", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "timm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tokenizers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torchaudio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torchvision", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +audio = [ + { name = "kenlm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "librosa", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "phonemizer", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyctcdecode", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +codecarbon = [ + { name = "codecarbon", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +deepspeed = [ + { name = "accelerate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "deepspeed", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +deepspeed-testing = [ + { name = "accelerate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "beautifulsoup4", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "cookiecutter", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "datasets", version = "2.14.4", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "datasets", version = "2.20.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "deepspeed", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "dill", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "evaluate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "faiss-cpu", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "gitpython", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "hf-doc-builder", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "nltk", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "optuna", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "parameterized", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "psutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pydantic", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pytest", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pytest-timeout", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pytest-xdist", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rjieba", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rouge-score", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ruff", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sacrebleu", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sacremoses", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sentencepiece", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorboard", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "timeout-decorator", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +dev-dependencies = [ + { name = "accelerate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "av", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "beautifulsoup4", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "codecarbon", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "cookiecutter", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "datasets", version = "2.14.4", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "datasets", version = "2.20.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "decord", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "dill", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "evaluate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "faiss-cpu", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "flax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "fugashi", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "gitpython", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "hf-doc-builder", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ipadic", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "isort", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jaxlib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "kenlm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "keras-nlp", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "librosa", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "nltk", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnxconverter-common", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnxruntime", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnxruntime-tools", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "optax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "optuna", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "parameterized", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "phonemizer", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pillow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "psutil", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyctcdecode", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pydantic", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pytest", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pytest-timeout", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pytest-xdist", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ray", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ray", extra = ["tune"] }, + { name = "rhoknp", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rjieba", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rouge-score", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ruff", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sacrebleu", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sacremoses", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "scikit-learn", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sentencepiece", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sigopt", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sudachidict-core", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sudachipy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorboard", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-text", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tf2onnx", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "timeout-decorator", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "timm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tokenizers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torchaudio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torchvision", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "unidic", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "unidic-lite", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "urllib3", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +docs = [ + { name = "accelerate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "av", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "codecarbon", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "decord", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "flax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "hf-doc-builder", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jaxlib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "kenlm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "keras-nlp", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "librosa", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnxconverter-common", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "optax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "optuna", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "phonemizer", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pillow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyctcdecode", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ray", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ray", extra = ["tune"] }, + { name = "sentencepiece", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sigopt", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-text", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tf2onnx", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "timm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tokenizers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torchaudio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torchvision", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +docs-specific = [ + { name = "hf-doc-builder", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +flax = [ + { name = "flax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "jaxlib", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "optax", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +flax-speech = [ + { name = "kenlm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "librosa", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "phonemizer", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyctcdecode", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +ftfy = [ + { name = "ftfy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +integrations = [ + { name = "optuna", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ray", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ray", extra = ["tune"] }, + { name = "sigopt", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +ja = [ + { name = "fugashi", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ipadic", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "rhoknp", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sudachidict-core", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sudachipy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "unidic", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "unidic-lite", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +modelcreation = [ + { name = "cookiecutter", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +onnx = [ + { name = "onnxconverter-common", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnxruntime", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnxruntime-tools", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tf2onnx", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +onnxruntime = [ + { name = "onnxruntime", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnxruntime-tools", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +optuna = [ + { name = "optuna", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +quality = [ + { name = "datasets", version = "2.14.4", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "datasets", version = "2.20.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "gitpython", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "hf-doc-builder", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "isort", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ruff", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "urllib3", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +ray = [ + { name = "ray", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "ray", extra = ["tune"] }, +] +retrieval = [ + { name = "datasets", version = "2.14.4", source = { registry = "https://pypi.org/simple" }, marker = "python_version < '3.10' or (python_version < '3.11' and python_version >= '3.10')" }, + { name = "datasets", version = "2.20.0", source = { registry = "https://pypi.org/simple" }, marker = "python_version == '3.11' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.10' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "faiss-cpu", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sagemaker = [ + { name = "sagemaker", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sentencepiece = [ + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sentencepiece", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +serving = [ + { name = "fastapi", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pydantic", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "starlette", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "uvicorn", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sigopt = [ + { name = "sigopt", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sklearn = [ + { name = "scikit-learn", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +speech = [ + { name = "kenlm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "librosa", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "phonemizer", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyctcdecode", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torchaudio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +tf = [ + { name = "keras-nlp", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnxconverter-common", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-text", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tf2onnx", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +tf-cpu = [ + { name = "keras-nlp", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "onnxconverter-common", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-cpu", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tensorflow-text", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tf2onnx", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +tf-speech = [ + { name = "kenlm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "librosa", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "phonemizer", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyctcdecode", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +timm = [ + { name = "timm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +tokenizers = [ + { name = "tokenizers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +torch = [ + { name = "accelerate", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +torch-speech = [ + { name = "kenlm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "librosa", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "phonemizer", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "pyctcdecode", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torchaudio", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +torch-vision = [ + { name = "pillow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torchvision", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +torchhub = [ + { name = "filelock", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "huggingface-hub", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "importlib-metadata", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "numpy", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "packaging", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "protobuf", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "regex", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "sentencepiece", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tokenizers", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "torch", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +video = [ + { name = "av", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "decord", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +vision = [ + { name = "pillow", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] + +[[package]] +name = "triton" +version = "3.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "filelock", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/45/27/14cc3101409b9b4b9241d2ba7deaa93535a217a211c86c4cc7151fb12181/triton-3.0.0-1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:e1efef76935b2febc365bfadf74bcb65a6f959a9872e5bddf44cc9e0adce1e1a", size = 209376304 }, + { url = "https://files.pythonhosted.org/packages/33/3e/a2f59384587eff6aeb7d37b6780de7fedd2214935e27520430ca9f5b7975/triton-3.0.0-1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:5ce8520437c602fb633f1324cc3871c47bee3b67acf9756c1a66309b60e3216c", size = 209438883 }, + { url = "https://files.pythonhosted.org/packages/fe/7b/7757205dee3628f75e7991021d15cd1bd0c9b044ca9affe99b50879fc0e1/triton-3.0.0-1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:34e509deb77f1c067d8640725ef00c5cbfcb2052a1a3cb6a6d343841f92624eb", size = 209464695 }, + { url = "https://files.pythonhosted.org/packages/6c/bf/55cccf57c14787ad81ee827526ddd48fd0aff0291fcc7b8c2e2bdf28da0a/triton-3.0.0-1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:6e5727202f7078c56f91ff13ad0c1abab14a0e7f2c87e91b12b6f64f3e8ae609", size = 209377082 }, + { url = "https://files.pythonhosted.org/packages/15/67/84e5a4b7b45bdeb11da26a67dfa2b988c512abbcbcad8cbc30aa579051b2/triton-3.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:39b052da883351fdf6be3d93cedae6db3b8e3988d3b09ed221bccecfa9612230", size = 209380247 }, + { url = "https://files.pythonhosted.org/packages/ea/6b/1d72cc8a7379822dadf050474add7d8b73b02c35057446b6f17d27cb9ea2/triton-3.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cd34f19a8582af96e6291d4afce25dac08cb2a5d218c599163761e8e0827208e", size = 209442823 }, + { url = "https://files.pythonhosted.org/packages/ae/b2/048c9ecfdba0e6b0ae3c02eed2d9dd3e9e990a6d46da98555cf0c2232168/triton-3.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0d5e10de8c011adeb7c878c6ce0dd6073b14367749e34467f1cff2bde1b78253", size = 209468633 }, + { url = "https://files.pythonhosted.org/packages/11/f6/51a08e6eca368d75768afe2d73e9e5e4255e7c8e705c744baa108bf844fc/triton-3.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:41004fb1ae9a53fcb3e970745feb87f0e3c94c6ce1ba86e95fa3b8537894bef7", size = 209381017 }, +] + +[[package]] +name = "types-python-dateutil" +version = "2.9.0.20240316" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/61/c5/c3a4d72ffa8efc2e78f7897b1c69ec760553246b67d3ce8c4431fac5d4e3/types-python-dateutil-2.9.0.20240316.tar.gz", hash = "sha256:5d2f2e240b86905e40944dd787db6da9263f0deabef1076ddaed797351ec0202", size = 9067 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c7/1b/af4f4c4f3f7339a4b7eb3c0ab13416db98f8ac09de3399129ee5fdfa282b/types_python_dateutil-2.9.0.20240316-py3-none-any.whl", hash = "sha256:6b8cb66d960771ce5ff974e9dd45e38facb81718cc1e208b10b1baccbfdbee3b", size = 9663 }, +] + +[[package]] +name = "typing-extensions" +version = "4.12.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/df/db/f35a00659bc03fec321ba8bce9420de607a1d37f8342eee1863174c69557/typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8", size = 85321 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/26/9f/ad63fc0248c5379346306f8668cda6e2e2e9c95e01216d2b8ffd9ff037d0/typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d", size = 37438 }, +] + +[[package]] +name = "tzdata" +version = "2024.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/74/5b/e025d02cb3b66b7b76093404392d4b44343c69101cc85f4d180dd5784717/tzdata-2024.1.tar.gz", hash = "sha256:2674120f8d891909751c38abcdfd386ac0a5a1127954fbc332af6b5ceae07efd", size = 190559 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/65/58/f9c9e6be752e9fcb8b6a0ee9fb87e6e7a1f6bcab2cdc73f02bb7ba91ada0/tzdata-2024.1-py2.py3-none-any.whl", hash = "sha256:9068bc196136463f5245e51efda838afa15aaeca9903f49050dfa2679db4d252", size = 345370 }, +] + +[[package]] +name = "tzlocal" +version = "5.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "tzdata", marker = "platform_system == 'Windows'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/04/d3/c19d65ae67636fe63953b20c2e4a8ced4497ea232c43ff8d01db16de8dc0/tzlocal-5.2.tar.gz", hash = "sha256:8d399205578f1a9342816409cc1e46a93ebd5755e39ea2d85334bea911bf0e6e", size = 30201 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/97/3f/c4c51c55ff8487f2e6d0e618dba917e3c3ee2caae6cf0fbb59c9b1876f2e/tzlocal-5.2-py3-none-any.whl", hash = "sha256:49816ef2fe65ea8ac19d19aa7a1ae0551c834303d5014c6d5a62e4cbda8047b8", size = 17859 }, +] + +[[package]] +name = "unidic" +version = "1.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "plac", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "requests", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "tqdm", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "wasabi", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5a/09/271dfbf8d5b56adddc70e30fa94249f5d3ab35f615bf278d65258045564a/unidic-1.1.0.tar.gz", hash = "sha256:0ab91c05de342c84d2a6314901fd3afb9061ecd7534dd4a0431dccbb87d921b7", size = 7688 } + +[[package]] +name = "unidic-lite" +version = "1.0.8" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/55/2b/8cf7514cb57d028abcef625afa847d60ff1ffbf0049c36b78faa7c35046f/unidic-lite-1.0.8.tar.gz", hash = "sha256:db9d4572d9fdd4d00a97949d4b0741ec480ee05a7e7e2e32f547500dae27b245", size = 47356746 } + +[[package]] +name = "uritemplate" +version = "4.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d2/5a/4742fdba39cd02a56226815abfa72fe0aa81c33bed16ed045647d6000eba/uritemplate-4.1.1.tar.gz", hash = "sha256:4346edfc5c3b79f694bccd6d6099a322bbeb628dbf2cd86eea55a456ce5124f0", size = 273898 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/81/c0/7461b49cd25aeece13766f02ee576d1db528f1c37ce69aee300e075b485b/uritemplate-4.1.1-py2.py3-none-any.whl", hash = "sha256:830c08b8d99bdd312ea4ead05994a38e8936266f84b9a7878232db50b044e02e", size = 10356 }, +] + +[[package]] +name = "urllib3" +version = "1.26.19" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c8/93/65e479b023bbc46dab3e092bda6b0005424ea3217d711964ccdede3f9b1b/urllib3-1.26.19.tar.gz", hash = "sha256:3e3d753a8618b86d7de333b4223005f68720bcd6a7d2bcb9fbd2229ec7c1e429", size = 306068 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ae/6a/99eaaeae8becaa17a29aeb334a18e5d582d873b6f084c11f02581b8d7f7f/urllib3-1.26.19-py2.py3-none-any.whl", hash = "sha256:37a0344459b199fce0e80b0d3569837ec6b6937435c5244e7fd73fa6006830f3", size = 143933 }, +] + +[[package]] +name = "uvicorn" +version = "0.30.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "h11", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "typing-extensions", marker = "python_version < '3.11'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c3/ad/02b1b412e43605aa6aac8d0392c383ff3f6ae8267b7864e48e3b5f3f601e/uvicorn-0.30.5.tar.gz", hash = "sha256:ac6fdbd4425c5fd17a9fe39daf4d4d075da6fdc80f653e5894cdc2fd98752bee", size = 42835 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/67/d8/1bcb5e6508d14c6c9912cd964b286f04392298ffb3e4218f4a1292d64e76/uvicorn-0.30.5-py3-none-any.whl", hash = "sha256:b2d86de274726e9878188fa07576c9ceeff90a839e2b6e25c917fe05f5a6c835", size = 62805 }, +] + +[[package]] +name = "wasabi" +version = "0.10.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/69/41/0c31737ee1a29c8b829690ebb4ab988b1f489aa2c3efa115a732a9dd7997/wasabi-0.10.1.tar.gz", hash = "sha256:c8e372781be19272942382b14d99314d175518d7822057cb7a97010c4259d249", size = 28380 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/34/74/bd566f876c2de097e75d525c2696fb9829009987a0d93a4fb3576778a0a8/wasabi-0.10.1-py3-none-any.whl", hash = "sha256:fe862cc24034fbc9f04717cd312ab884f71f51a8ecabebc3449b751c2a649d83", size = 26075 }, +] + +[[package]] +name = "wcwidth" +version = "0.2.13" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6c/63/53559446a878410fc5a5974feb13d31d78d752eb18aeba59c7fef1af7598/wcwidth-0.2.13.tar.gz", hash = "sha256:72ea0c06399eb286d978fdedb6923a9eb47e1c486ce63e9b4e64fc18303972b5", size = 101301 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fd/84/fd2ba7aafacbad3c4201d395674fc6348826569da3c0937e75505ead3528/wcwidth-0.2.13-py2.py3-none-any.whl", hash = "sha256:3da69048e4540d84af32131829ff948f1e022c1c6bdb8d6102117aac784f6859", size = 34166 }, +] + +[[package]] +name = "werkzeug" +version = "3.0.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/02/51/2e0fc149e7a810d300422ab543f87f2bcf64d985eb6f1228c4efd6e4f8d4/werkzeug-3.0.3.tar.gz", hash = "sha256:097e5bfda9f0aba8da6b8545146def481d06aa7d3266e7448e2cccf67dd8bd18", size = 803342 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9d/6e/e792999e816d19d7fcbfa94c730936750036d65656a76a5a688b57a656c4/werkzeug-3.0.3-py3-none-any.whl", hash = "sha256:fc9645dc43e03e4d630d23143a04a7f947a9a3b5727cd535fdfe155a17cc48c8", size = 227274 }, +] + +[[package]] +name = "wheel" +version = "0.44.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b7/a0/95e9e962c5fd9da11c1e28aa4c0d8210ab277b1ada951d2aee336b505813/wheel-0.44.0.tar.gz", hash = "sha256:a29c3f2817e95ab89aa4660681ad547c0e9547f20e75b0562fe7723c9a2a9d49", size = 100733 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1b/d1/9babe2ccaecff775992753d8686970b1e2755d21c8a63be73aba7a4e7d77/wheel-0.44.0-py3-none-any.whl", hash = "sha256:2376a90c98cc337d18623527a97c31797bd02bad0033d41547043a1cbfbe448f", size = 67059 }, +] + +[[package]] +name = "wrapt" +version = "1.14.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/11/eb/e06e77394d6cf09977d92bff310cb0392930c08a338f99af6066a5a98f92/wrapt-1.14.1.tar.gz", hash = "sha256:380a85cf89e0e69b7cfbe2ea9f765f004ff419f34194018a6827ac0e3edfed4d", size = 50890 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f7/92/121147bb2f9ed1aa35a8780c636d5da9c167545f97737f0860b4c6c92086/wrapt-1.14.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:80bb5c256f1415f747011dc3604b59bc1f91c6e7150bd7db03b19170ee06b320", size = 35236 }, + { url = "https://files.pythonhosted.org/packages/39/4d/34599a47c8a41b3ea4986e14f728c293a8a96cd6c23663fe33657c607d34/wrapt-1.14.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:07f7a7d0f388028b2df1d916e94bbb40624c59b48ecc6cbc232546706fac74c2", size = 35934 }, + { url = "https://files.pythonhosted.org/packages/50/d5/bf619c4d204fe8888460f65222b465c7ecfa43590fdb31864fe0e266da29/wrapt-1.14.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:02b41b633c6261feff8ddd8d11c711df6842aba629fdd3da10249a53211a72c4", size = 78011 }, + { url = "https://files.pythonhosted.org/packages/94/56/fd707fb8e1ea86e72503d823549fb002a0f16cb4909619748996daeb3a82/wrapt-1.14.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2fe803deacd09a233e4762a1adcea5db5d31e6be577a43352936179d14d90069", size = 70462 }, + { url = "https://files.pythonhosted.org/packages/fd/70/8a133c88a394394dd57159083b86a564247399440b63f2da0ad727593570/wrapt-1.14.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:257fd78c513e0fb5cdbe058c27a0624c9884e735bbd131935fd49e9fe719d310", size = 77901 }, + { url = "https://files.pythonhosted.org/packages/07/06/2b4aaaa4403f766c938f9780c700d7399726bce3dfd94f5a57c4e5b9dc68/wrapt-1.14.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:4fcc4649dc762cddacd193e6b55bc02edca674067f5f98166d7713b193932b7f", size = 82463 }, + { url = "https://files.pythonhosted.org/packages/cd/ec/383d9552df0641e9915454b03139571e0c6e055f5d414d8f3d04f3892f38/wrapt-1.14.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:11871514607b15cfeb87c547a49bca19fde402f32e2b1c24a632506c0a756656", size = 75352 }, + { url = "https://files.pythonhosted.org/packages/40/f4/7be7124a06c14b92be53912f93c8dc84247f1cb93b4003bed460a430d1de/wrapt-1.14.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8ad85f7f4e20964db4daadcab70b47ab05c7c1cf2a7c1e51087bfaa83831854c", size = 82443 }, + { url = "https://files.pythonhosted.org/packages/4f/83/2669bf2cb4cc2b346c40799478d29749ccd17078cb4f69b4a9f95921ff6d/wrapt-1.14.1-cp310-cp310-win32.whl", hash = "sha256:a9a52172be0b5aae932bef82a79ec0a0ce87288c7d132946d645eba03f0ad8a8", size = 33410 }, + { url = "https://files.pythonhosted.org/packages/c0/1e/e5a5ac09e92fd112d50e1793e5b9982dc9e510311ed89dacd2e801f82967/wrapt-1.14.1-cp310-cp310-win_amd64.whl", hash = "sha256:6d323e1554b3d22cfc03cd3243b5bb815a51f5249fdcbb86fda4bf62bab9e164", size = 35558 }, + { url = "https://files.pythonhosted.org/packages/e7/f9/8c078b4973604cd968b23eb3dff52028b5c48f2a02c4f1f975f4d5e344d1/wrapt-1.14.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ecee4132c6cd2ce5308e21672015ddfed1ff975ad0ac8d27168ea82e71413f55", size = 35432 }, + { url = "https://files.pythonhosted.org/packages/6e/79/aec8185eefe20e8f49e5adeb0c2e20e016d5916d10872c17705ddac41be2/wrapt-1.14.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2020f391008ef874c6d9e208b24f28e31bcb85ccff4f335f15a3251d222b92d9", size = 36219 }, + { url = "https://files.pythonhosted.org/packages/d1/71/8d68004e5d5a676177342a56808af51e1df3b0e54b203e3295a8cd96b53b/wrapt-1.14.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2feecf86e1f7a86517cab34ae6c2f081fd2d0dac860cb0c0ded96d799d20b335", size = 78509 }, + { url = "https://files.pythonhosted.org/packages/5a/27/604d6ad71fe5935446df1b7512d491b47fe2aef8c95e9813d03d78024a28/wrapt-1.14.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:240b1686f38ae665d1b15475966fe0472f78e71b1b4903c143a842659c8e4cb9", size = 70972 }, + { url = "https://files.pythonhosted.org/packages/7f/1b/e0439eec0db6520968c751bc7e12480bb80bb8d939190e0e55ed762f3c7a/wrapt-1.14.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9008dad07d71f68487c91e96579c8567c98ca4c3881b9b113bc7b33e9fd78b8", size = 78402 }, + { url = "https://files.pythonhosted.org/packages/b9/45/2cc612ff64061d4416baf8d0daf27bea7f79f0097638ddc2af51a3e647f3/wrapt-1.14.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:6447e9f3ba72f8e2b985a1da758767698efa72723d5b59accefd716e9e8272bf", size = 83373 }, + { url = "https://files.pythonhosted.org/packages/ad/b7/332692b8d0387922da0f1323ad36a14e365911def3c78ea0d102f83ac592/wrapt-1.14.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:acae32e13a4153809db37405f5eba5bac5fbe2e2ba61ab227926a22901051c0a", size = 76299 }, + { url = "https://files.pythonhosted.org/packages/f2/31/cbce966b6760e62d005c237961e839a755bf0c907199248394e2ee03ab05/wrapt-1.14.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:49ef582b7a1152ae2766557f0550a9fcbf7bbd76f43fbdc94dd3bf07cc7168be", size = 83361 }, + { url = "https://files.pythonhosted.org/packages/9a/aa/ab46fb18072b86e87e0965a402f8723217e8c0312d1b3e2a91308df924ab/wrapt-1.14.1-cp311-cp311-win32.whl", hash = "sha256:358fe87cc899c6bb0ddc185bf3dbfa4ba646f05b1b0b9b5a27c2cb92c2cea204", size = 33454 }, + { url = "https://files.pythonhosted.org/packages/ba/7e/14113996bc6ee68eb987773b4139c87afd3ceff60e27e37648aa5eb2798a/wrapt-1.14.1-cp311-cp311-win_amd64.whl", hash = "sha256:26046cd03936ae745a502abf44dac702a5e6880b2b01c29aea8ddf3353b68224", size = 35616 }, + { url = "https://files.pythonhosted.org/packages/d9/ab/3ba5816dd466ffd7242913708771d258569825ab76fd29d7fd85b9361311/wrapt-1.14.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3232822c7d98d23895ccc443bbdf57c7412c5a65996c30442ebe6ed3df335383", size = 35234 }, + { url = "https://files.pythonhosted.org/packages/bb/70/73c54e24ea69a8b06ae9649e61d5e64f2b4bdfc6f202fc7794abeac1ed20/wrapt-1.14.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:988635d122aaf2bdcef9e795435662bcd65b02f4f4c1ae37fbee7401c440b3a7", size = 35933 }, + { url = "https://files.pythonhosted.org/packages/38/38/5b338163b3b4f1ab718306984678c3d180b85a25d72654ea4c61aa6b0968/wrapt-1.14.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cca3c2cdadb362116235fdbd411735de4328c61425b0aa9f872fd76d02c4e86", size = 77892 }, + { url = "https://files.pythonhosted.org/packages/0a/61/330f24065b8f2fc02f94321092a24e0c30aefcbac89ab5c860e180366c9f/wrapt-1.14.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d52a25136894c63de15a35bc0bdc5adb4b0e173b9c0d07a2be9d3ca64a332735", size = 70318 }, + { url = "https://files.pythonhosted.org/packages/e0/6a/3c660fa34c8106aa9719f2a6636c1c3ea7afd5931ae665eb197fdf4def84/wrapt-1.14.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40e7bc81c9e2b2734ea4bc1aceb8a8f0ceaac7c5299bc5d69e37c44d9081d43b", size = 77752 }, + { url = "https://files.pythonhosted.org/packages/e0/20/9716fb522d17a726364c4d032c8806ffe312268773dd46a394436b2787cc/wrapt-1.14.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b9b7a708dd92306328117d8c4b62e2194d00c365f18eff11a9b53c6f923b01e3", size = 82284 }, + { url = "https://files.pythonhosted.org/packages/6a/12/76bbe26dc39d05f1a7be8d570d91c87bb79297e08e885148ed670ed17b7b/wrapt-1.14.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6a9a25751acb379b466ff6be78a315e2b439d4c94c1e99cb7266d40a537995d3", size = 75170 }, + { url = "https://files.pythonhosted.org/packages/f9/3c/110e52b9da396a4ef3a0521552a1af9c7875a762361f48678c1ac272fd7e/wrapt-1.14.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:34aa51c45f28ba7f12accd624225e2b1e5a3a45206aa191f6f9aac931d9d56fe", size = 82281 }, + { url = "https://files.pythonhosted.org/packages/4b/07/782463e367a7c6b418af231ded753e4b2dd3293a157d9b0bb010806fc0c0/wrapt-1.14.1-cp39-cp39-win32.whl", hash = "sha256:dee0ce50c6a2dd9056c20db781e9c1cfd33e77d2d569f5d1d9321c641bb903d5", size = 33404 }, + { url = "https://files.pythonhosted.org/packages/5b/02/5ac7ea3b6722c84a2882d349ac581a9711b4047fe7a58475903832caa295/wrapt-1.14.1-cp39-cp39-win_amd64.whl", hash = "sha256:dee60e1de1898bde3b238f18340eec6148986da0455d8ba7848d50470a7a32fb", size = 35557 }, +] + +[[package]] +name = "xmltodict" +version = "0.13.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/39/0d/40df5be1e684bbaecdb9d1e0e40d5d482465de6b00cbb92b84ee5d243c7f/xmltodict-0.13.0.tar.gz", hash = "sha256:341595a488e3e01a85a9d8911d8912fd922ede5fecc4dce437eb4b6c8d037e56", size = 33813 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/94/db/fd0326e331726f07ff7f40675cd86aa804bfd2e5016c727fa761c934990e/xmltodict-0.13.0-py2.py3-none-any.whl", hash = "sha256:aa89e8fd76320154a40d19a0df04a4695fb9dc5ba977cbb68ab3e4eb225e7852", size = 9971 }, +] + +[[package]] +name = "xxhash" +version = "3.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/04/ef/1a95dc97a71b128a7c5fd531e42574b274629a4ad1354a694087e2305467/xxhash-3.4.1.tar.gz", hash = "sha256:0379d6cf1ff987cd421609a264ce025e74f346e3e145dd106c0cc2e3ec3f99a9", size = 84220 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/36/5a/0bbf85a88e19d50e35caf55be7aa7377bafeacff6d1a78965e0fc78d7f41/xxhash-3.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:91dbfa55346ad3e18e738742236554531a621042e419b70ad8f3c1d9c7a16e7f", size = 31850 }, + { url = "https://files.pythonhosted.org/packages/ad/7f/dfdf25e416b67970e89d7b85b0e6a4860ec8a227544cb5db069617cc323e/xxhash-3.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:665a65c2a48a72068fcc4d21721510df5f51f1142541c890491afc80451636d2", size = 30383 }, + { url = "https://files.pythonhosted.org/packages/f7/6f/15612eac54ab6a4e9e441ab14a08ba4fdfe6cce48d39f3fff46bcec1fc2a/xxhash-3.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb11628470a6004dc71a09fe90c2f459ff03d611376c1debeec2d648f44cb693", size = 220888 }, + { url = "https://files.pythonhosted.org/packages/6b/db/37b282f55294813fe1d34f8219573a72a0976617a74345982be157ad7e3a/xxhash-3.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5bef2a7dc7b4f4beb45a1edbba9b9194c60a43a89598a87f1a0226d183764189", size = 200320 }, + { url = "https://files.pythonhosted.org/packages/ba/0a/e4c5057c3537884ffbcde785287927ec063d596c632ff01bb50a27728103/xxhash-3.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9c0f7b2d547d72c7eda7aa817acf8791f0146b12b9eba1d4432c531fb0352228", size = 428491 }, + { url = "https://files.pythonhosted.org/packages/80/8a/1dd41557883b6196f8f092011a5c1f72d4d44cf36d7b67d4a5efe3127949/xxhash-3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:00f2fdef6b41c9db3d2fc0e7f94cb3db86693e5c45d6de09625caad9a469635b", size = 194106 }, + { url = "https://files.pythonhosted.org/packages/cf/40/4905206cbb58737efc76dd0ea1b5d0ebf89d78afdff8ce484a20dd95bfe9/xxhash-3.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23cfd9ca09acaf07a43e5a695143d9a21bf00f5b49b15c07d5388cadf1f9ce11", size = 207663 }, + { url = "https://files.pythonhosted.org/packages/34/b0/659d17d5530768c2de58336508b8aa10f159f02b1de8ce04369e01ad1ec5/xxhash-3.4.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:6a9ff50a3cf88355ca4731682c168049af1ca222d1d2925ef7119c1a78e95b3b", size = 219944 }, + { url = "https://files.pythonhosted.org/packages/9a/c3/8cb52cc25731e304c2594b8a4749d9654817f6cb047d3b046691fa2f794c/xxhash-3.4.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:f1d7c69a1e9ca5faa75546fdd267f214f63f52f12692f9b3a2f6467c9e67d5e7", size = 216495 }, + { url = "https://files.pythonhosted.org/packages/22/37/deac36a9f7632e5ddc236df5534289ca3f387b5c174d65359c2a06ed6182/xxhash-3.4.1-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:672b273040d5d5a6864a36287f3514efcd1d4b1b6a7480f294c4b1d1ee1b8de0", size = 227171 }, + { url = "https://files.pythonhosted.org/packages/24/4a/a5b29f30280e484531895d555af9491418f3892f0c4520dc7e44209cb55c/xxhash-3.4.1-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:4178f78d70e88f1c4a89ff1ffe9f43147185930bb962ee3979dba15f2b1cc799", size = 303077 }, + { url = "https://files.pythonhosted.org/packages/92/51/2d7947145b01e648c95e1cb44d87e6047e1a25b504b9b2b441d74586980e/xxhash-3.4.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:9804b9eb254d4b8cc83ab5a2002128f7d631dd427aa873c8727dba7f1f0d1c2b", size = 196464 }, + { url = "https://files.pythonhosted.org/packages/6c/a3/d739a94f3c96b5698e15b7e1546bcd0b6e43f6e604c588ead42e6d0058c1/xxhash-3.4.1-cp310-cp310-win32.whl", hash = "sha256:c09c49473212d9c87261d22c74370457cfff5db2ddfc7fd1e35c80c31a8c14ce", size = 30064 }, + { url = "https://files.pythonhosted.org/packages/a5/b0/2950f76c07e467586d01d9a6cdd4ac668c13d20de5fde49af5364f513e54/xxhash-3.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:ebbb1616435b4a194ce3466d7247df23499475c7ed4eb2681a1fa42ff766aff6", size = 29948 }, + { url = "https://files.pythonhosted.org/packages/fb/7a/31739a48da3121efc7740f7b297804a7386f7053ea9adad834f49cb83967/xxhash-3.4.1-cp310-cp310-win_arm64.whl", hash = "sha256:25dc66be3db54f8a2d136f695b00cfe88018e59ccff0f3b8f545869f376a8a46", size = 26719 }, + { url = "https://files.pythonhosted.org/packages/38/c7/399b07b6af0c89bc96361d9058132b052770d89ae90b7e8a67241ea5a30d/xxhash-3.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:58c49083801885273e262c0f5bbeac23e520564b8357fbb18fb94ff09d3d3ea5", size = 31854 }, + { url = "https://files.pythonhosted.org/packages/9c/0a/d0fd8d78c8a2c3c3b34e7a9dccf85f01bf38f32e0228d107fa3903e0981f/xxhash-3.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b526015a973bfbe81e804a586b703f163861da36d186627e27524f5427b0d520", size = 30379 }, + { url = "https://files.pythonhosted.org/packages/ca/8a/0c89f4ea4cd93a4b2728f742ddb2315bb56206538dc893d49d9bb890c464/xxhash-3.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:36ad4457644c91a966f6fe137d7467636bdc51a6ce10a1d04f365c70d6a16d7e", size = 221530 }, + { url = "https://files.pythonhosted.org/packages/72/13/4396ee5c795264c448703655f3fbb0d39604b3de4a2a158a6835f9b113d4/xxhash-3.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:248d3e83d119770f96003271fe41e049dd4ae52da2feb8f832b7a20e791d2920", size = 201177 }, + { url = "https://files.pythonhosted.org/packages/88/b8/161b3207a0f71755e41c9b81e58ea6320e46732a7651dd2f686273cb6b9b/xxhash-3.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2070b6d5bbef5ee031666cf21d4953c16e92c2f8a24a94b5c240f8995ba3b1d0", size = 429384 }, + { url = "https://files.pythonhosted.org/packages/eb/3a/25c4aecb61a49d4415fd71d4f66a8a5b558dd44a52d7054ea9aa59ccbac1/xxhash-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b2746035f518f0410915e247877f7df43ef3372bf36cfa52cc4bc33e85242641", size = 194779 }, + { url = "https://files.pythonhosted.org/packages/4c/48/166773deae47ad9038a09d0e5628f215a06a7096861d2ef940aad0ef6bdd/xxhash-3.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2a8ba6181514681c2591840d5632fcf7356ab287d4aff1c8dea20f3c78097088", size = 208502 }, + { url = "https://files.pythonhosted.org/packages/a9/5a/25d5250b4472f478adca4773b45a859a111dc9b8ede494939f83759e0ab2/xxhash-3.4.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0aac5010869240e95f740de43cd6a05eae180c59edd182ad93bf12ee289484fa", size = 220623 }, + { url = "https://files.pythonhosted.org/packages/ef/3f/428f4c23d8f34a6b9f86f053b3a90b96b83ca3722c725064e16ee399d063/xxhash-3.4.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:4cb11d8debab1626181633d184b2372aaa09825bde709bf927704ed72765bed1", size = 217257 }, + { url = "https://files.pythonhosted.org/packages/66/d5/6d27f1bf8e949bfa7050cb0ec9aa06909994423b7225ad5e396e064472dc/xxhash-3.4.1-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:b29728cff2c12f3d9f1d940528ee83918d803c0567866e062683f300d1d2eff3", size = 228225 }, + { url = "https://files.pythonhosted.org/packages/b8/ed/50bfcd928c6e5025ea67b089da8433121fcff9d772c865238e74049dfd0c/xxhash-3.4.1-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:a15cbf3a9c40672523bdb6ea97ff74b443406ba0ab9bca10ceccd9546414bd84", size = 304013 }, + { url = "https://files.pythonhosted.org/packages/b4/18/5a280a91876147192a36419db480e6be990d462f785d4aff8090972008f7/xxhash-3.4.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:6e66df260fed01ed8ea790c2913271641c58481e807790d9fca8bfd5a3c13844", size = 197102 }, + { url = "https://files.pythonhosted.org/packages/2c/ab/861020932b8e0aee8761f32311e3af3ecbd08864348c6aff0dc7a1c596de/xxhash-3.4.1-cp311-cp311-win32.whl", hash = "sha256:e867f68a8f381ea12858e6d67378c05359d3a53a888913b5f7d35fbf68939d5f", size = 30065 }, + { url = "https://files.pythonhosted.org/packages/b7/3a/74a609706ef4430fe6d041a3b8d209882c15440b695e373fe26d48c6f35c/xxhash-3.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:200a5a3ad9c7c0c02ed1484a1d838b63edcf92ff538770ea07456a3732c577f4", size = 29954 }, + { url = "https://files.pythonhosted.org/packages/d9/a1/fc0505f9d2c8f1c8959dff7e299e43b135bddfc7e1929f580ce4cf9e2e3c/xxhash-3.4.1-cp311-cp311-win_arm64.whl", hash = "sha256:1d03f1c0d16d24ea032e99f61c552cb2b77d502e545187338bea461fde253583", size = 26718 }, + { url = "https://files.pythonhosted.org/packages/05/68/2892bbbf528793b82b8cffc4dd219e0cfc763aa17377d7b5651dd7c31319/xxhash-3.4.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c4bbba9b182697a52bc0c9f8ec0ba1acb914b4937cd4a877ad78a3b3eeabefb3", size = 31853 }, + { url = "https://files.pythonhosted.org/packages/4f/18/1a10db384eef70f8a9efbbf9ff417e3cb04c66351d192ac24e8e86622831/xxhash-3.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9fd28a9da300e64e434cfc96567a8387d9a96e824a9be1452a1e7248b7763b78", size = 30357 }, + { url = "https://files.pythonhosted.org/packages/03/bd/01ced3eb792410ce05e777bd7d79f383fd8056334575cf84b60aaa2734d2/xxhash-3.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6066d88c9329ab230e18998daec53d819daeee99d003955c8db6fc4971b45ca3", size = 220917 }, + { url = "https://files.pythonhosted.org/packages/9a/af/34452bdc52faf44ff2ef87bb4cebdb64837f8ae576d5e7b8e1ba87ee0aba/xxhash-3.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:93805bc3233ad89abf51772f2ed3355097a5dc74e6080de19706fc447da99cd3", size = 199966 }, + { url = "https://files.pythonhosted.org/packages/12/39/8eca9f98358828040cc2f8a1024d32ac2148e5d33f79fa82bd88244b0270/xxhash-3.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:64da57d5ed586ebb2ecdde1e997fa37c27fe32fe61a656b77fabbc58e6fbff6e", size = 428281 }, + { url = "https://files.pythonhosted.org/packages/ce/d4/8111e14273c0781349af8d0dae55c4e42c7196e7237e81a3db5186ab7dfe/xxhash-3.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7a97322e9a7440bf3c9805cbaac090358b43f650516486746f7fa482672593df", size = 194331 }, + { url = "https://files.pythonhosted.org/packages/82/f0/138223ac68bfb1c210050bf94b4114c7a72ffb5f3c6f5be65e1d7c185a95/xxhash-3.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bbe750d512982ee7d831838a5dee9e9848f3fb440e4734cca3f298228cc957a6", size = 207891 }, + { url = "https://files.pythonhosted.org/packages/84/12/1486a1cf1b06ceb431303daf623e4e7c2064b5fbca11b1ff996be0e39b66/xxhash-3.4.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:fd79d4087727daf4d5b8afe594b37d611ab95dc8e29fe1a7517320794837eb7d", size = 220126 }, + { url = "https://files.pythonhosted.org/packages/b4/51/650fc8885bba3d67e909cc1eb952618556687d691fed9ce5e4cd0f0670b4/xxhash-3.4.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:743612da4071ff9aa4d055f3f111ae5247342931dedb955268954ef7201a71ff", size = 216818 }, + { url = "https://files.pythonhosted.org/packages/a2/6e/c91b2e8255551bd60aff6181f4ade6dcc21d0387435645e81755a47f0ac8/xxhash-3.4.1-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:b41edaf05734092f24f48c0958b3c6cbaaa5b7e024880692078c6b1f8247e2fc", size = 227513 }, + { url = "https://files.pythonhosted.org/packages/5a/2a/c74f5e42fb4bd773768e819ac183a352c9b263bbbb65d024c1e69388f3f2/xxhash-3.4.1-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:a90356ead70d715fe64c30cd0969072de1860e56b78adf7c69d954b43e29d9fa", size = 303627 }, + { url = "https://files.pythonhosted.org/packages/9a/93/5d5f001777d71374ba78a4bc51fc722f8a0dd4195dc988fc4bd34eee57bb/xxhash-3.4.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:ac56eebb364e44c85e1d9e9cc5f6031d78a34f0092fea7fc80478139369a8b4a", size = 196855 }, + { url = "https://files.pythonhosted.org/packages/e8/4a/bf8b7f53727b3ebbebe2965586c244febf4c8b03d0caa98af97910f55e79/xxhash-3.4.1-cp312-cp312-win32.whl", hash = "sha256:911035345932a153c427107397c1518f8ce456f93c618dd1c5b54ebb22e73747", size = 30114 }, + { url = "https://files.pythonhosted.org/packages/e3/63/2627198c4c9d1f987390043bb352fef9e754ed2b11fd21b40bf430b2714e/xxhash-3.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:f31ce76489f8601cc7b8713201ce94b4bd7b7ce90ba3353dccce7e9e1fee71fa", size = 29993 }, + { url = "https://files.pythonhosted.org/packages/73/81/914efdf0a02597d769571f013f575b5672ed7f85c9fed07c7378c657bf2b/xxhash-3.4.1-cp312-cp312-win_arm64.whl", hash = "sha256:b5beb1c6a72fdc7584102f42c4d9df232ee018ddf806e8c90906547dfb43b2da", size = 26741 }, + { url = "https://files.pythonhosted.org/packages/36/c3/db95ec21d23ba87a29d18c54fcc8289ae93f97831d95b2f3b65331b9d423/xxhash-3.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6127813abc1477f3a83529b6bbcfeddc23162cece76fa69aee8f6a8a97720562", size = 31855 }, + { url = "https://files.pythonhosted.org/packages/a4/24/8092b5db6d459cb9e62409edfebb0253b3760d9ab7e4c52e5493c3b026b1/xxhash-3.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ef2e194262f5db16075caea7b3f7f49392242c688412f386d3c7b07c7733a70a", size = 30387 }, + { url = "https://files.pythonhosted.org/packages/7c/b9/93f860969093d5d1c4fa60c75ca351b212560de68f33dc0da04c89b7dc1b/xxhash-3.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:71be94265b6c6590f0018bbf73759d21a41c6bda20409782d8117e76cd0dfa8b", size = 220601 }, + { url = "https://files.pythonhosted.org/packages/95/a7/ee4fa3f044b504281955abbf264c90aff2ff3bc5722fe90de8b819016ebf/xxhash-3.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:10e0a619cdd1c0980e25eb04e30fe96cf8f4324758fa497080af9c21a6de573f", size = 199981 }, + { url = "https://files.pythonhosted.org/packages/09/23/7f67542874f768dbc9e24ed05d914451ade01cd0307d985e2a6dd2e90c83/xxhash-3.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fa122124d2e3bd36581dd78c0efa5f429f5220313479fb1072858188bc2d5ff1", size = 428172 }, + { url = "https://files.pythonhosted.org/packages/63/93/812d78f70145c68c4e64533f4d625bea01236f27698febe15f0ceebc1566/xxhash-3.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17032f5a4fea0a074717fe33477cb5ee723a5f428de7563e75af64bfc1b1e10", size = 193827 }, + { url = "https://files.pythonhosted.org/packages/49/a0/6ec53c45ce6f2df4a38d170caa5d091014304b284edd90ecb6452740932c/xxhash-3.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca7783b20e3e4f3f52f093538895863f21d18598f9a48211ad757680c3bd006f", size = 207361 }, + { url = "https://files.pythonhosted.org/packages/2d/64/fd1cc438c48fa31342509339c780ad3230bf081779ebcb889960805c7125/xxhash-3.4.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d77d09a1113899fad5f354a1eb4f0a9afcf58cefff51082c8ad643ff890e30cf", size = 219645 }, + { url = "https://files.pythonhosted.org/packages/0d/79/8a89c2320a380491288c0205d407ec720479365c26e013c292af4e0b175e/xxhash-3.4.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:21287bcdd299fdc3328cc0fbbdeaa46838a1c05391264e51ddb38a3f5b09611f", size = 216159 }, + { url = "https://files.pythonhosted.org/packages/3a/79/7c29be4a717b47ebf389087cf677b1bc6578df77f242ebf08d5e41f0c938/xxhash-3.4.1-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:dfd7a6cc483e20b4ad90224aeb589e64ec0f31e5610ab9957ff4314270b2bf31", size = 226801 }, + { url = "https://files.pythonhosted.org/packages/2d/ef/553fc2488ce12de22575b05fbf9ce5dddb2b496134a72236325abdb05674/xxhash-3.4.1-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:543c7fcbc02bbb4840ea9915134e14dc3dc15cbd5a30873a7a5bf66039db97ec", size = 302773 }, + { url = "https://files.pythonhosted.org/packages/03/7a/2ad3251eb35d25fd500454efdac85d7f51933aeda771e3e3383e9385fa73/xxhash-3.4.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:fe0a98d990e433013f41827b62be9ab43e3cf18e08b1483fcc343bda0d691182", size = 196178 }, + { url = "https://files.pythonhosted.org/packages/c9/29/892c10e0bd861385d4081b0a5de178d2b853065d717c24ab8a8d5286a6e4/xxhash-3.4.1-cp39-cp39-win32.whl", hash = "sha256:b9097af00ebf429cc7c0e7d2fdf28384e4e2e91008130ccda8d5ae653db71e54", size = 30069 }, + { url = "https://files.pythonhosted.org/packages/33/db/e07aa80e39a7ee82e9ca6f5a0fa9bf0b4465934272116a1b578eaee7f4b3/xxhash-3.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:d699b921af0dcde50ab18be76c0d832f803034d80470703700cb7df0fbec2832", size = 29972 }, + { url = "https://files.pythonhosted.org/packages/26/c6/a43beda71c2fbe4901b8a6b5a9bd1b2fe9f15877f4caed2f3034073aca72/xxhash-3.4.1-cp39-cp39-win_arm64.whl", hash = "sha256:2be491723405e15cc099ade1280133ccfbf6322d2ef568494fb7d07d280e7eee", size = 26730 }, + { url = "https://files.pythonhosted.org/packages/a0/08/9234966abb8e0ac65578442b3dc1ee9eea5fe1db5472d9425d40c838193d/xxhash-3.4.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:431625fad7ab5649368c4849d2b49a83dc711b1f20e1f7f04955aab86cd307bc", size = 29659 }, + { url = "https://files.pythonhosted.org/packages/04/73/8406875fe09d76331cdcce79e9db05699ce9bec126f060d37b540882dcd0/xxhash-3.4.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fc6dbd5fc3c9886a9e041848508b7fb65fd82f94cc793253990f81617b61fe49", size = 36174 }, + { url = "https://files.pythonhosted.org/packages/28/e0/cef7e324cb6e38c463e2b58ba88ed0ce56d1b1717b2e98fe7b692c3bb432/xxhash-3.4.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f3ff8dbd0ec97aec842476cb8ccc3e17dd288cd6ce3c8ef38bff83d6eb927817", size = 31980 }, + { url = "https://files.pythonhosted.org/packages/50/e1/5bfa7e640e2aa56550e0bcbc40594e79bf6e39721d921978a4303317be5d/xxhash-3.4.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef73a53fe90558a4096e3256752268a8bdc0322f4692ed928b6cd7ce06ad4fe3", size = 40474 }, + { url = "https://files.pythonhosted.org/packages/14/b8/5df224b343e8cef8c8a61049b42462f5b088daa3e222c90c5fdc3a184fda/xxhash-3.4.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:450401f42bbd274b519d3d8dcf3c57166913381a3d2664d6609004685039f9d3", size = 30022 }, + { url = "https://files.pythonhosted.org/packages/5d/63/87337f717c70220d711e1f3992a5e5b9ee2cf7f8980bb58418417d69ff77/xxhash-3.4.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:41ddeae47cf2828335d8d991f2d2b03b0bdc89289dc64349d712ff8ce59d0647", size = 29669 }, + { url = "https://files.pythonhosted.org/packages/da/59/bcebce98d2d367f3dfd6010ad134aaab576a5531b3a02d6137206dddf866/xxhash-3.4.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c44d584afdf3c4dbb3277e32321d1a7b01d6071c1992524b6543025fb8f4206f", size = 36178 }, + { url = "https://files.pythonhosted.org/packages/78/04/2e83720cde494ea1c72d0576c731d9381568f814e34b75104156966bab1e/xxhash-3.4.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd7bddb3a5b86213cc3f2c61500c16945a1b80ecd572f3078ddbbe68f9dabdfb", size = 32002 }, + { url = "https://files.pythonhosted.org/packages/c6/17/5e370df14fcc5abc3f2175a13554a07da48d7e9b6fe8645ba8fdd0b25105/xxhash-3.4.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9ecb6c987b62437c2f99c01e97caf8d25660bf541fe79a481d05732e5236719c", size = 40478 }, + { url = "https://files.pythonhosted.org/packages/96/c2/48fbe1319b4bf20a9cc4d93e7e6d71300ce529e0b1554c326f04d4fea40c/xxhash-3.4.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:696b4e18b7023527d5c50ed0626ac0520edac45a50ec7cf3fc265cd08b1f4c03", size = 30062 }, +] + +[[package]] +name = "yarl" +version = "1.9.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "idna", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, + { name = "multidict", marker = "python_version == '3.11' or python_version < '3.10' or python_version >= '3.13' or (python_version < '3.7' and (python_version < '3.6' or platform_machine != 'aarch64' or platform_system != 'Linux') and (python_version > '3.9' or platform_machine != 'arm64' or platform_system != 'Darwin')) or (python_version < '3.11' and python_version >= '3.10') or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11')) or (python_version < '3.12' and python_version >= '3.11' and (python_version < '3.11' or python_version > '3.11') and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux'))) or (python_version < '3.13' and python_version >= '3.12') or (python_version < '3.13' and python_version >= '3.12' and (python_version >= '3.10' or (platform_machine == 'aarch64' and platform_system == 'Linux')))" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e0/ad/bedcdccbcbf91363fd425a948994f3340924145c2bc8ccb296f4a1e52c28/yarl-1.9.4.tar.gz", hash = "sha256:566db86717cf8080b99b58b083b773a908ae40f06681e87e589a976faf8246bf", size = 141869 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6c/27/cda5a927df3a894eddfee4efacdd230c2d8486e322fc672194fd651f82c5/yarl-1.9.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a8c1df72eb746f4136fe9a2e72b0c9dc1da1cbd23b5372f94b5820ff8ae30e0e", size = 129061 }, + { url = "https://files.pythonhosted.org/packages/d5/fc/40b85bea1f5686092ea37f472c94c023d6347266852ffd55baa01c40f596/yarl-1.9.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a3a6ed1d525bfb91b3fc9b690c5a21bb52de28c018530ad85093cc488bee2dd2", size = 81246 }, + { url = "https://files.pythonhosted.org/packages/81/c6/06938036ea48fa74521713499fba1459b0eb60af9b9afbe8e0e9e1a96c36/yarl-1.9.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c38c9ddb6103ceae4e4498f9c08fac9b590c5c71b0370f98714768e22ac6fa66", size = 79176 }, + { url = "https://files.pythonhosted.org/packages/30/b5/215d586d5cb17ca9748d7a2d597c07147f210c0c0785257492094d083b65/yarl-1.9.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d9e09c9d74f4566e905a0b8fa668c58109f7624db96a2171f21747abc7524234", size = 297669 }, + { url = "https://files.pythonhosted.org/packages/dd/90/2958ae9f2e12084d616eef95b6a48c8e6d96448add04367c20dc53a33ff2/yarl-1.9.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8477c1ee4bd47c57d49621a062121c3023609f7a13b8a46953eb6c9716ca392", size = 311909 }, + { url = "https://files.pythonhosted.org/packages/0b/58/dd3c69651381a57ac991dba54b20ae2da359eb4b03a661e71c451d6525c6/yarl-1.9.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5ff2c858f5f6a42c2a8e751100f237c5e869cbde669a724f2062d4c4ef93551", size = 308690 }, + { url = "https://files.pythonhosted.org/packages/c3/a0/0ade1409d184cbc9e85acd403a386a7c0563b92ff0f26d138ff9e86e48b4/yarl-1.9.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:357495293086c5b6d34ca9616a43d329317feab7917518bc97a08f9e55648455", size = 301580 }, + { url = "https://files.pythonhosted.org/packages/6d/a1/db0bdf8cc48515e9c02daf04ae2916fc27ce6498eca21432fc9ffa63f71b/yarl-1.9.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:54525ae423d7b7a8ee81ba189f131054defdb122cde31ff17477951464c1691c", size = 291231 }, + { url = "https://files.pythonhosted.org/packages/b2/4f/796b0c73e9ff30a1047a7ee3390e157ab8424d4401b9f32a2624013a5b39/yarl-1.9.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:801e9264d19643548651b9db361ce3287176671fb0117f96b5ac0ee1c3530d53", size = 301079 }, + { url = "https://files.pythonhosted.org/packages/0b/a3/7774786ec6e2dca0bb38b286f12a11af97957546e5fbcce71752a8d2cf07/yarl-1.9.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e516dc8baf7b380e6c1c26792610230f37147bb754d6426462ab115a02944385", size = 295202 }, + { url = "https://files.pythonhosted.org/packages/70/a9/ef6d69ce9a4e82080290bcb6db735bb8a6d6db92f2bbb92b6951bde97e7c/yarl-1.9.4-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:7d5aaac37d19b2904bb9dfe12cdb08c8443e7ba7d2852894ad448d4b8f442863", size = 311784 }, + { url = "https://files.pythonhosted.org/packages/44/ae/fdbc9965ef69e650c3b5b04d60badef90ff0cde21a30770f0700e148b12f/yarl-1.9.4-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:54beabb809ffcacbd9d28ac57b0db46e42a6e341a030293fb3185c409e626b8b", size = 311134 }, + { url = "https://files.pythonhosted.org/packages/cc/2a/abbaf1460becba856e163f2a1274f5d34b1969d476da8e68a8fc2aeb5661/yarl-1.9.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bac8d525a8dbc2a1507ec731d2867025d11ceadcb4dd421423a5d42c56818541", size = 304584 }, + { url = "https://files.pythonhosted.org/packages/a3/73/dd7ced8d9731bd2ef4fdff5da23ce2f772ca04e8ddee886a6b15248d9e65/yarl-1.9.4-cp310-cp310-win32.whl", hash = "sha256:7855426dfbddac81896b6e533ebefc0af2f132d4a47340cee6d22cac7190022d", size = 70175 }, + { url = "https://files.pythonhosted.org/packages/31/d4/2085272a5ccf87af74d4e02787c242c5d60367840a4637b2835565264302/yarl-1.9.4-cp310-cp310-win_amd64.whl", hash = "sha256:848cd2a1df56ddbffeb375535fb62c9d1645dde33ca4d51341378b3f5954429b", size = 76402 }, + { url = "https://files.pythonhosted.org/packages/12/65/4c7f3676209a569405c9f0f492df2bc3a387c253f5d906e36944fdd12277/yarl-1.9.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:35a2b9396879ce32754bd457d31a51ff0a9d426fd9e0e3c33394bf4b9036b099", size = 132836 }, + { url = "https://files.pythonhosted.org/packages/3b/c5/81e3dbf5271ab1510860d2ae7a704ef43f93f7cb9326bf7ebb1949a7260b/yarl-1.9.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4c7d56b293cc071e82532f70adcbd8b61909eec973ae9d2d1f9b233f3d943f2c", size = 83215 }, + { url = "https://files.pythonhosted.org/packages/20/3d/7dabf580dfc0b588e48830486b488858122b10a61f33325e0d7cf1d6180b/yarl-1.9.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d8a1c6c0be645c745a081c192e747c5de06e944a0d21245f4cf7c05e457c36e0", size = 81237 }, + { url = "https://files.pythonhosted.org/packages/38/45/7c669999f5d350f4f8f74369b94e0f6705918eee18e38610bfe44af93d4f/yarl-1.9.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4b3c1ffe10069f655ea2d731808e76e0f452fc6c749bea04781daf18e6039525", size = 324181 }, + { url = "https://files.pythonhosted.org/packages/50/49/aa04effe2876cced8867bf9d89b620acf02b733c62adfe22a8218c35d70b/yarl-1.9.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:549d19c84c55d11687ddbd47eeb348a89df9cb30e1993f1b128f4685cd0ebbf8", size = 339412 }, + { url = "https://files.pythonhosted.org/packages/7d/95/4310771fb9c71599d8466f43347ac18fafd501621e65b93f4f4f16899b1d/yarl-1.9.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7409f968456111140c1c95301cadf071bd30a81cbd7ab829169fb9e3d72eae9", size = 337973 }, + { url = "https://files.pythonhosted.org/packages/9f/ea/94ad7d8299df89844e666e4aa8a0e9b88e02416cd6a7dd97969e9eae5212/yarl-1.9.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e23a6d84d9d1738dbc6e38167776107e63307dfc8ad108e580548d1f2c587f42", size = 328126 }, + { url = "https://files.pythonhosted.org/packages/6d/be/9d4885e2725f5860833547c9e4934b6e0f44a355b24ffc37957264761e3e/yarl-1.9.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d8b889777de69897406c9fb0b76cdf2fd0f31267861ae7501d93003d55f54fbe", size = 316677 }, + { url = "https://files.pythonhosted.org/packages/4a/70/5c744d67cad3d093e233cb02f37f2830cb89abfcbb7ad5b5af00ff21d14d/yarl-1.9.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:03caa9507d3d3c83bca08650678e25364e1843b484f19986a527630ca376ecce", size = 324243 }, + { url = "https://files.pythonhosted.org/packages/c2/80/8b38d8fed958ac37afb8b81a54bf4f767b107e2c2004dab165edb58fc51b/yarl-1.9.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:4e9035df8d0880b2f1c7f5031f33f69e071dfe72ee9310cfc76f7b605958ceb9", size = 318099 }, + { url = "https://files.pythonhosted.org/packages/59/50/715bbc7bda65291f9295e757f67854206f4d8be9746d39187724919ac14d/yarl-1.9.4-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:c0ec0ed476f77db9fb29bca17f0a8fcc7bc97ad4c6c1d8959c507decb22e8572", size = 334924 }, + { url = "https://files.pythonhosted.org/packages/a8/af/ca9962488027576d7162878a1864cbb1275d298af986ce96bdfd4807d7b2/yarl-1.9.4-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:ee04010f26d5102399bd17f8df8bc38dc7ccd7701dc77f4a68c5b8d733406958", size = 335060 }, + { url = "https://files.pythonhosted.org/packages/28/c7/249a3a903d500ca7369eb542e2847a14f12f249638dcc10371db50cd17ff/yarl-1.9.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:49a180c2e0743d5d6e0b4d1a9e5f633c62eca3f8a86ba5dd3c471060e352ca98", size = 326689 }, + { url = "https://files.pythonhosted.org/packages/ec/0c/f02dd0b875a7a460f95dc7cf18983ed43c693283d6ab92e0ad71b9e0de8f/yarl-1.9.4-cp311-cp311-win32.whl", hash = "sha256:81eb57278deb6098a5b62e88ad8281b2ba09f2f1147c4767522353eaa6260b31", size = 70407 }, + { url = "https://files.pythonhosted.org/packages/27/41/945ae9a80590e4fb0be166863c6e63d75e4b35789fa3a61ff1dbdcdc220f/yarl-1.9.4-cp311-cp311-win_amd64.whl", hash = "sha256:d1d2532b340b692880261c15aee4dc94dd22ca5d61b9db9a8a361953d36410b1", size = 76719 }, + { url = "https://files.pythonhosted.org/packages/7b/cd/a921122610dedfed94e494af18e85aae23e93274c00ca464cfc591c8f4fb/yarl-1.9.4-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0d2454f0aef65ea81037759be5ca9947539667eecebca092733b2eb43c965a81", size = 129561 }, + { url = "https://files.pythonhosted.org/packages/7c/a0/887c93020c788f249c24eaab288c46e5fed4d2846080eaf28ed3afc36e8d/yarl-1.9.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:44d8ffbb9c06e5a7f529f38f53eda23e50d1ed33c6c869e01481d3fafa6b8142", size = 81595 }, + { url = "https://files.pythonhosted.org/packages/54/99/ed3c92c38f421ba6e36caf6aa91c34118771d252dce800118fa2f44d7962/yarl-1.9.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:aaaea1e536f98754a6e5c56091baa1b6ce2f2700cc4a00b0d49eca8dea471074", size = 79400 }, + { url = "https://files.pythonhosted.org/packages/ea/45/65801be625ef939acc8b714cf86d4a198c0646e80dc8970359d080c47204/yarl-1.9.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3777ce5536d17989c91696db1d459574e9a9bd37660ea7ee4d3344579bb6f129", size = 317397 }, + { url = "https://files.pythonhosted.org/packages/06/91/9696601a8ba674c8f0c15035cc9e94ca31f541330364adcfd5a399f598bf/yarl-1.9.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fc5fc1eeb029757349ad26bbc5880557389a03fa6ada41703db5e068881e5f2", size = 327246 }, + { url = "https://files.pythonhosted.org/packages/da/3e/bf25177b3618889bf067aacf01ef54e910cd569d14e2f84f5e7bec23bb82/yarl-1.9.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ea65804b5dc88dacd4a40279af0cdadcfe74b3e5b4c897aa0d81cf86927fee78", size = 327321 }, + { url = "https://files.pythonhosted.org/packages/28/1c/bdb3411467b805737dd2720b85fd082e49f59bf0cc12dc1dfcc80ab3d274/yarl-1.9.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa102d6d280a5455ad6a0f9e6d769989638718e938a6a0a2ff3f4a7ff8c62cc4", size = 322424 }, + { url = "https://files.pythonhosted.org/packages/41/e9/53bc89f039df2824a524a2aa03ee0bfb8f0585b08949e7521f5eab607085/yarl-1.9.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09efe4615ada057ba2d30df871d2f668af661e971dfeedf0c159927d48bbeff0", size = 310868 }, + { url = "https://files.pythonhosted.org/packages/79/cd/a78c3b0304a4a970b5ae3993f4f5f649443bc8bfa5622f244aed44c810ed/yarl-1.9.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:008d3e808d03ef28542372d01057fd09168419cdc8f848efe2804f894ae03e51", size = 323452 }, + { url = "https://files.pythonhosted.org/packages/2e/5e/1c78eb05ae0efae08498fd7ab939435a29f12c7f161732e7fe327e5b8ca1/yarl-1.9.4-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:6f5cb257bc2ec58f437da2b37a8cd48f666db96d47b8a3115c29f316313654ff", size = 313554 }, + { url = "https://files.pythonhosted.org/packages/04/e0/0029563a8434472697aebb269fdd2ffc8a19e3840add1d5fa169ec7c56e3/yarl-1.9.4-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:992f18e0ea248ee03b5a6e8b3b4738850ae7dbb172cc41c966462801cbf62cf7", size = 331029 }, + { url = "https://files.pythonhosted.org/packages/de/1b/7e6b1ad42ccc0ed059066a7ae2b6fd4bce67795d109a99ccce52e9824e96/yarl-1.9.4-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:0e9d124c191d5b881060a9e5060627694c3bdd1fe24c5eecc8d5d7d0eb6faabc", size = 333839 }, + { url = "https://files.pythonhosted.org/packages/85/8a/c364d6e2eeb4e128a5ee9a346fc3a09aa76739c0c4e2a7305989b54f174b/yarl-1.9.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:3986b6f41ad22988e53d5778f91855dc0399b043fc8946d4f2e68af22ee9ff10", size = 328251 }, + { url = "https://files.pythonhosted.org/packages/ec/9d/0da94b33b9fb89041e10f95a14a55b0fef36c60b6a1d5ff85a0c2ecb1a97/yarl-1.9.4-cp312-cp312-win32.whl", hash = "sha256:4b21516d181cd77ebd06ce160ef8cc2a5e9ad35fb1c5930882baff5ac865eee7", size = 70195 }, + { url = "https://files.pythonhosted.org/packages/c5/f4/2fdc5a11503bc61818243653d836061c9ce0370e2dd9ac5917258a007675/yarl-1.9.4-cp312-cp312-win_amd64.whl", hash = "sha256:a9bd00dc3bc395a662900f33f74feb3e757429e545d831eef5bb280252631984", size = 76397 }, + { url = "https://files.pythonhosted.org/packages/34/e7/9d51111429691ffdfb6ce526b2dd2b66fc9d2746df053ecb4062a3969f65/yarl-1.9.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:604f31d97fa493083ea21bd9b92c419012531c4e17ea6da0f65cacdcf5d0bd27", size = 134018 }, + { url = "https://files.pythonhosted.org/packages/8f/0f/9fa6f044b04267d22ec29df23936ffd4bf4572ccecd889c6b2b1761c2c5c/yarl-1.9.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8a854227cf581330ffa2c4824d96e52ee621dd571078a252c25e3a3b3d94a1b1", size = 83661 }, + { url = "https://files.pythonhosted.org/packages/f9/b0/c213007560d001c9908649ff4b1dd11d1ff388235e773828e19d4637f502/yarl-1.9.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ba6f52cbc7809cd8d74604cce9c14868306ae4aa0282016b641c661f981a6e91", size = 81842 }, + { url = "https://files.pythonhosted.org/packages/c6/d6/5b30ae1d8a13104ee2ceb649f28f2db5ad42afbd5697fd0fc61528bb112c/yarl-1.9.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a6327976c7c2f4ee6816eff196e25385ccc02cb81427952414a64811037bbc8b", size = 300908 }, + { url = "https://files.pythonhosted.org/packages/d0/50/af41ddf09ff0a6a3f952288ff4ed703a1a6ecc0fbb3a6a9fe50bd33dc7cc/yarl-1.9.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8397a3817d7dcdd14bb266283cd1d6fc7264a48c186b986f32e86d86d35fbac5", size = 315681 }, + { url = "https://files.pythonhosted.org/packages/ec/17/376715c245a28f81f01e72e832d84404cffd29576fcc645ee40e3c03f5f4/yarl-1.9.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e0381b4ce23ff92f8170080c97678040fc5b08da85e9e292292aba67fdac6c34", size = 312857 }, + { url = "https://files.pythonhosted.org/packages/69/ea/d7e961ea9b1b818a43b155ee512117be6ab9ab67c1e94967b2e64126e8e4/yarl-1.9.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:23d32a2594cb5d565d358a92e151315d1b2268bc10f4610d098f96b147370136", size = 304255 }, + { url = "https://files.pythonhosted.org/packages/46/8c/02d0c2eed8c6b41de0f8f26aeefc7a285779cbb370cc7bf043285de18a75/yarl-1.9.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ddb2a5c08a4eaaba605340fdee8fc08e406c56617566d9643ad8bf6852778fc7", size = 295014 }, + { url = "https://files.pythonhosted.org/packages/c2/5c/093c1fd1d8e95b1de4feb282fa3d9c3172c6d8cb5be2cfa19ca0170f9287/yarl-1.9.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:26a1dc6285e03f3cc9e839a2da83bcbf31dcb0d004c72d0730e755b33466c30e", size = 303653 }, + { url = "https://files.pythonhosted.org/packages/96/f1/c2af401567c7b32f908195c8c1a807670f20ea62e10866b71e1d9e3860a1/yarl-1.9.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:18580f672e44ce1238b82f7fb87d727c4a131f3a9d33a5e0e82b793362bf18b4", size = 298147 }, + { url = "https://files.pythonhosted.org/packages/65/ac/b5a3cc5bf4675db5d27ec92453e562f3ee4bfef5133ed071880ac07125e9/yarl-1.9.4-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:29e0f83f37610f173eb7e7b5562dd71467993495e568e708d99e9d1944f561ec", size = 314358 }, + { url = "https://files.pythonhosted.org/packages/3d/4d/b8a950fd92a3aa5c95039731d2eda32a701ac0c789663827e67e398c166a/yarl-1.9.4-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:1f23e4fe1e8794f74b6027d7cf19dc25f8b63af1483d91d595d4a07eca1fb26c", size = 313842 }, + { url = "https://files.pythonhosted.org/packages/57/68/bfac2e16a15af85234cbd2a5c82abb33caa98e981abbfd6e0f9458b6d1a9/yarl-1.9.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:db8e58b9d79200c76956cefd14d5c90af54416ff5353c5bfd7cbe58818e26ef0", size = 306771 }, + { url = "https://files.pythonhosted.org/packages/ab/5f/156e00c7bdc6d84efc7615fe0e14b2febf8ea360a8e1307fb3ba9cc14b73/yarl-1.9.4-cp39-cp39-win32.whl", hash = "sha256:c7224cab95645c7ab53791022ae77a4509472613e839dab722a72abe5a684575", size = 70773 }, + { url = "https://files.pythonhosted.org/packages/a4/e0/5b4376d7361fe09a46dbb206131e8d85b1cb845da03c212a620d5b6b98d8/yarl-1.9.4-cp39-cp39-win_amd64.whl", hash = "sha256:824d6c50492add5da9374875ce72db7a0733b29c2394890aef23d533106e2b15", size = 76935 }, + { url = "https://files.pythonhosted.org/packages/4d/05/4d79198ae568a92159de0f89e710a8d19e3fa267b719a236582eee921f4a/yarl-1.9.4-py3-none-any.whl", hash = "sha256:928cecb0ef9d5a7946eb6ff58417ad2fe9375762382f1bf5c55e61645f2c43ad", size = 31638 }, +] + +[[package]] +name = "zipp" +version = "3.19.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d3/20/b48f58857d98dcb78f9e30ed2cfe533025e2e9827bbd36ea0a64cc00cbc1/zipp-3.19.2.tar.gz", hash = "sha256:bf1dcf6450f873a13e952a29504887c89e6de7506209e5b1bcc3460135d4de19", size = 22922 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/20/38/f5c473fe9b90c8debdd29ea68d5add0289f1936d6f923b6b9cc0b931194c/zipp-3.19.2-py3-none-any.whl", hash = "sha256:f091755f667055f2d02b32c53771a7a6c8b47e1fdbc4b72a8b9072b3eef8015c", size = 9039 }, +] diff --git a/ecosystem/transformers/pyproject.toml b/ecosystem/transformers/pyproject.toml new file mode 100644 index 000000000000..b8a820014797 --- /dev/null +++ b/ecosystem/transformers/pyproject.toml @@ -0,0 +1,350 @@ +[project] +name = "transformers" +version = "4.39.0.dev0" +author = "The Hugging Face team (past and future) with the help of all our contributors (https://github.com/huggingface/transformers/graphs/contributors)" +author_email = "transformers@huggingface.co" +description = "State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow" +keywords = ["NLP", "vision", "speech", "deep", "learning", "transformer", "pytorch", "tensorflow", "jax", "BERT", "GPT-2", "Wav2Vec2", "ViT"] +requires-python = ">=3.9.0" +classifiers = [ + "Development Status :: 5 - Production/Stable", + "Intended Audience :: Developers", + "Intended Audience :: Education", + "Intended Audience :: Science/Research", + "License :: OSI Approved :: Apache Software License", + "Operating System :: OS Independent", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Topic :: Scientific/Engineering :: Artificial Intelligence" +] + +dependencies = [ + "filelock", + "huggingface-hub>=0.19.3,<1.0", + "numpy>=1.17", + "packaging>=20.0", + "pyyaml>=5.1", + "regex!=2019.12.17", + "requests", + "tokenizers>=0.14,<0.19", + "safetensors>=0.4.1", + "tqdm>=4.27", +] + +[project.urls] +repository = "https://github.com/huggingface/transformers" + +[project.optional-dependencies] +ja = [ + "fugashi>=1.0", + "ipadic>=1.0.0,<2.0", + "unidic_lite>=1.0.7", + "unidic>=1.0.2", + "sudachipy>=0.6.6", + "sudachidict_core>=20220729", + "rhoknp>=1.1.0,<1.3.1" +] +sklearn = ["scikit-learn"] +tf = [ + "tensorflow>=2.6,<2.16", + "onnxconverter-common", + "tf2onnx", + "tensorflow-text<2.16", + "keras-nlp>=0.3.1" +] +tf-cpu = [ + "tensorflow-cpu>=2.6,<2.16", + "onnxconverter-common", + "tf2onnx", + "tensorflow-text<2.16", + "keras-nlp>=0.3.1" +] +torch = ["torch", "accelerate>=0.21.0"] +accelerate = ["accelerate>=0.21.0"] +retrieval = ["faiss-cpu", "datasets!=2.5.0"] +flax = [ + "jax>=0.4.1,<=0.4.13", + "jaxlib>=0.4.1,<=0.4.13", + "flax>=0.4.1,<=0.7.0", + "optax>=0.0.8,<=0.1.4" +] +tokenizers = ["tokenizers>=0.14,<0.19"] +ftfy = ["ftfy"] +onnxruntime = ["onnxruntime>=1.4.0", "onnxruntime-tools>=1.4.2"] +onnx = [ + "onnxconverter-common", + "tf2onnx", + "onnxruntime>=1.4.0", + "onnxruntime-tools>=1.4.2" +] +modelcreation = ["cookiecutter==1.7.3"] +sagemaker = ["sagemaker==2.226.1"] # sagemaker>=2.31.0 # TODO(konsti) +deepspeed = ["deepspeed>=0.9.3", "accelerate>=0.21.0"] +optuna = ["optuna"] +ray = ["ray[tune]>=2.7.0"] +sigopt = ["sigopt"] +integrations = ["optuna", "ray[tune]>=2.7.0", "sigopt"] +serving = ["pydantic", "uvicorn", "fastapi", "starlette"] +audio = ["librosa", "pyctcdecode>=0.4.0", "phonemizer", "kenlm"] +speech = [ + "torchaudio", + "librosa", + "pyctcdecode>=0.4.0", + "phonemizer", + "kenlm" +] +torch-speech = [ + "torchaudio", + "librosa", + "pyctcdecode>=0.4.0", + "phonemizer", + "kenlm" +] +tf-speech = ["librosa", "pyctcdecode>=0.4.0", "phonemizer", "kenlm"] +flax-speech = ["librosa", "pyctcdecode>=0.4.0", "phonemizer", "kenlm"] +vision = ["Pillow>=10.0.1,<=15.0"] +timm = ["timm"] +torch-vision = ["torchvision", "Pillow>=10.0.1,<=15.0"] +# natten = ["natten>=0.14.6,<0.15.0"] # TODO(konsti) +codecarbon = ["codecarbon==1.2.0"] +video = ["decord==0.6.0", "av==9.2.0"] +sentencepiece = ["sentencepiece>=0.1.91,!=0.1.92", "protobuf"] + +deepspeed-testing = [ + "deepspeed>=0.9.3", + "accelerate>=0.21.0", + "pytest>=7.2.0,<8.0.0", + "pytest-xdist", + "timeout-decorator", + "parameterized", + "psutil", + "datasets!=2.5.0", + "dill<0.3.5", + "evaluate>=0.2.0", + "pytest-timeout", + "ruff==0.1.5", + "sacrebleu>=1.4.12,<2.0.0", + "rouge-score!=0.0.7,!=0.0.8,!=0.1,!=0.1.1", + "nltk", + "GitPython<3.1.19", + "hf-doc-builder>=0.3.0", + "protobuf", + "sacremoses", + "rjieba", + "beautifulsoup4", + "tensorboard", + "pydantic", + "faiss-cpu", + "datasets!=2.5.0", + "cookiecutter==1.7.3", + "optuna", + "sentencepiece>=0.1.91,!=0.1.92", + "protobuf" +] +quality = [ + "datasets!=2.5.0", + "isort>=5.5.4", + "ruff==0.1.5", + "GitPython<3.1.19", + "hf-doc-builder>=0.3.0", + "urllib3<2.0.0" +] +all = [ + "tensorflow>=2.6,<2.16", + "onnxconverter-common", + "tf2onnx", + "tensorflow-text<2.16", + "keras-nlp>=0.3.1", + "torch", + "accelerate>=0.21.0", + "jax>=0.4.1,<=0.4.13", + "jaxlib>=0.4.1,<=0.4.13", + "flax>=0.4.1,<=0.7.0", + "optax>=0.0.8,<=0.1.4", + "sentencepiece>=0.1.91,!=0.1.92", + "protobuf", + "tokenizers>=0.14,<0.19", + "torchaudio", + "librosa", + "pyctcdecode>=0.4.0", + "phonemizer", + "kenlm", + "Pillow>=10.0.1,<=15.0", + "optuna", + "ray[tune]>=2.7.0", + "sigopt", + "timm", + "torchvision", + "Pillow>=10.0.1,<=15.0", + "codecarbon==1.2.0", + "accelerate>=0.21.0", + "decord==0.6.0", + "av==9.2.0" +] +docs_specific = ["hf-doc-builder"] +docs = [ + "tensorflow>=2.6,<2.16", + "onnxconverter-common", + "tf2onnx", + "tensorflow-text<2.16", + "keras-nlp>=0.3.1", + "torch", + "accelerate>=0.21.0", + "jax>=0.4.1,<=0.4.13", + "jaxlib>=0.4.1,<=0.4.13", + "flax>=0.4.1,<=0.7.0", + "optax>=0.0.8,<=0.1.4", + "sentencepiece>=0.1.91,!=0.1.92", + "protobuf", + "tokenizers>=0.14,<0.19", + "torchaudio", + "librosa", + "pyctcdecode>=0.4.0", + "phonemizer", + "kenlm", + "Pillow>=10.0.1,<=15.0", + "optuna", + "ray[tune]>=2.7.0", + "sigopt", + "timm", + "torchvision", + "Pillow>=10.0.1,<=15.0", + "codecarbon==1.2.0", + "accelerate>=0.21.0", + "decord==0.6.0", + "av==9.2.0", + "hf-doc-builder" +] +torchhub = [ + "filelock", + "huggingface-hub>=0.19.3,<1.0", + "importlib_metadata", + "numpy>=1.17", + "packaging>=20.0", + "protobuf", + "regex!=2019.12.17", + "requests", + "sentencepiece>=0.1.91,!=0.1.92", + "torch", + "tokenizers>=0.14,<0.19", + "tqdm>=4.27" +] +agents = [ + "diffusers", + "accelerate>=0.21.0", + "datasets!=2.5.0", + "torch", + "sentencepiece>=0.1.91,!=0.1.92", + "opencv-python", + "Pillow>=10.0.1,<=15.0" +] + +dev-dependencies = [ + "GitPython<3.1.19", + "Pillow>=10.0.1,<=15.0", + "accelerate>=0.21.0", + "av==9.2.0", + "beautifulsoup4", + "codecarbon==1.2.0", + "codecarbon==1.2.0", + "cookiecutter==1.7.3", + "datasets!=2.5.0", + "decord==0.6.0", + "dill<0.3.5", + "evaluate>=0.2.0", + "faiss-cpu", + "flax>=0.4.1,<=0.7.0", + "fugashi>=1.0", + "hf-doc-builder", + "hf-doc-builder>=0.3.0", + "ipadic>=1.0.0,<2.0", + "isort>=5.5.4", + "jax>=0.4.1,<=0.4.13", + "jaxlib>=0.4.1,<=0.4.13", + "kenlm", + "keras-nlp>=0.3.1", + "librosa", + "nltk", + "onnxconverter-common", + "onnxruntime-tools>=1.4.2", + "onnxruntime>=1.4.0", + "optax>=0.0.8,<=0.1.4", + "optuna", + "parameterized", + "phonemizer", + "protobuf", + "psutil", + "pyctcdecode>=0.4.0", + "pydantic", + "pytest-timeout", + "pytest-xdist", + "pytest>=7.2.0,<8.0.0", + "ray[tune]>=2.7.0", + "rhoknp>=1.1.0,<1.3.1", + "rjieba", + "rouge-score!=0.0.7,!=0.0.8,!=0.1,!=0.1.1", + "ruff==0.1.5", + "sacrebleu>=1.4.12,<2.0.0", + "sacremoses", + "scikit-learn", + "sentencepiece>=0.1.91,!=0.1.92", + "sigopt", + "sudachidict_core>=20220729", + "sudachipy>=0.6.6", + "tensorboard", + "tensorflow-text<2.16", + "tensorflow>=2.6,<2.16", + "tf2onnx", + "timeout-decorator", + "timm", + "tokenizers>=0.14,<0.19", + "torch", + "torchaudio", + "torchvision", + "unidic>=1.0.2", + "unidic_lite>=1.0.7", + "urllib3<2.0.0" +] + +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[tool.ruff] +# Never enforce `E501` (line length violations). +ignore = ["C901", "E501", "E741", "F402", "F823"] +select = ["C", "E", "F", "I", "W"] +line-length = 119 + +# Ignore import violations in all `__init__.py` files. +[tool.ruff.per-file-ignores] +"__init__.py" = ["E402", "F401", "F403", "F811"] +"src/transformers/file_utils.py" = ["F401"] +"src/transformers/utils/dummy_*.py" = ["F401"] + +[tool.ruff.isort] +lines-after-imports = 2 +known-first-party = ["transformers"] + +[tool.ruff.format] +# Like Black, use double quotes for strings. +quote-style = "double" + +# Like Black, indent with spaces, rather than tabs. +indent-style = "space" + +# Like Black, respect magic trailing commas. +skip-magic-trailing-comma = false + +# Like Black, automatically detect the appropriate line ending. +line-ending = "auto" + +[tool.pytest.ini_options] +doctest_optionflags = "NUMBER NORMALIZE_WHITESPACE ELLIPSIS" +doctest_glob = "**/*.md" +markers = [ + "flash_attn_test: marks tests related to flash attention (deselect with '-m \"not flash_attn_test\"')", + "bitsandbytes: select (or deselect with `not`) bitsandbytes integration tests", +] diff --git a/ecosystem/warehouse/pyproject.toml b/ecosystem/warehouse/pyproject.toml new file mode 100644 index 000000000000..27a999a22e1f --- /dev/null +++ b/ecosystem/warehouse/pyproject.toml @@ -0,0 +1,254 @@ +[project] +name = "warehouse" +version = "1.0.0" +requires-python = "==3.11.*" +dependencies = [ + "alembic>=0.7.0", + "alembic-postgresql-enum", + "Automat", + "argon2-cffi", + "b2sdk", + "Babel", + "bcrypt", + "boto3", + "celery[sqs]>=5.2.2,<5.3.2", + "celery-redbeat", + "certifi", + "click", + "cryptography", + "datadog>=0.19.0", + "disposable-email-domains", + "elasticsearch>=7.0.0,<7.11.0", + "elasticsearch_dsl>=7.0.0,<8.0.0", + "first", + "forcediphttpsadapter", + "github-reserved-names>=1.0.0", + "google-cloud-bigquery", + "google-cloud-storage", + "hiredis", + "html5lib", + "humanize", + "itsdangerous", + "Jinja2>=2.8", + "kombu[sqs]<5.3.2", # https://github.com/jazzband/pip-tools/issues/1577 + "limits", + "linehaul", + "lxml", + "mistune", + "msgpack", + "natsort", + "orjson", + "packaging>=23.2", + "packaging_legacy", + "paginate>=0.5.2", + "paginate_sqlalchemy", + "passlib>=1.6.4", + "premailer", + "psycopg[c]", + "pycurl", + "pydantic", + "pyqrcode", + "pyramid>=2.0", + "pymacaroons", + "pyramid_jinja2>=2.5", + "pyramid_mailer>=0.14.1", + "pyramid_openapi3>=0.17.1", + "pyramid_retry>=0.3", + "pyramid_rpc>=0.7", + "pyramid_services>=2.1", + "pyramid_tm>=0.12", + "python-slugify", + "pytz", + "PyJWT[crypto]>=2.8.0", + "readme-renderer[md]>=36.0", + "requests", + "requests-aws4auth", + "redis>=2.8.0,<6.0.0", + "rfc3986", + "sentry-sdk", + "setuptools", + "sqlalchemy[asyncio]>=2.0,<3.0", + "stdlib-list", + "stripe", + "structlog", + "transaction", + "trove-classifiers", + "ua-parser", + "urllib3<2", # See https://github.com/pypi/warehouse/issues/14671, + "webauthn>=1.0.0,<3.0.0", + "whitenoise", + "WTForms[email]>=2.0.0", + "zope.sqlalchemy", + "zxcvbn", +] + +[project.optional-dependencies] +deploy = [ + "gunicorn==22.0.0", + "ddtrace==2.8.5" +] + +[tool.uv] +dev-dependencies = [ + "Sphinx", + "asyncudp>=0.7", + "black==24.4.2", + "cairosvg", + "celery-types", + "coverage", + "curlylint", + "doc8>=1.1.0", + "factory_boy", + "flake8", + "freezegun", + "furo", + "hupper>=1.9", + "isort>=5.13.1", + "mkdocs", + "mkdocs-macros-plugin", + "mkdocs-material", + "mkdocs-rss-plugin", + "msgpack-types", + "mypy", + "mypy-zope", + "myst-parser", + "pep8-naming", + "pillow", + "pip-api", + "pip-tools>=1.0", + "pretend", + "pyramid_debugtoolbar>=2.5", + "pytest-icdiff", + "pytest-postgresql>=3.1.3,<7.0.0", + "pytest-randomly", + "pytest-socket", + "pytest>=3.0.0", + "pytz", + "pyupgrade", + "repository-service-tuf", + "responses>=0.5.1", + "sphinx-autobuild", + "sphinxcontrib-httpdomain", + "sphinxcontrib-mermaid", + "types-WTForms", + "types-WebOb", + "types-babel", + "types-boto3", + "types-certifi", + "types-first", + "types-html5lib", + "types-itsdangerous", + "types-passlib", + "types-python-slugify", + "types-pytz", + "types-redis", + "types-requests==2.31.0.6", # See https://github.com/pypi/warehouse/issues/14671 + "types-setuptools", + "types-stripe", + "types-zxcvbn", + "webtest", +] + +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[tool.coverage.run] +branch = true +dynamic_context = "test_function" +source = ["warehouse"] +omit = [ + # We don't want to get coverage information for our migrations. + "warehouse/migrations/*", + # We don't want to actually cover our __main__.py file because it is hard + # to cover and it really just acts as a tiny shim to a function. + "warehouse/__main__.py", + # Again, tiny shim code that we don't actually need to test and trying to + # do so would just get in the way. + "warehouse/wsgi.py", + # And again, tiny shim code. + "warehouse/celery.py", +] + +[tool.coverage.report] +exclude_lines = [ + "pragma: no cover", + "class \\w+\\(Interface\\):", + "if (typing\\.)?TYPE_CHECKING:", +] + +# Don't show us anything that's already 100% covered. +skip_covered = true + +[tool.curlylint] +include = '\.(html|jinja|txt)$' +# For jinja's i18n extension: +template_tags = [['trans', 'pluralize', 'endtrans']] + +[tool.isort] +profile = 'black' +lines_between_types = 1 +combine_as_imports = true +known_first_party = ['warehouse', 'tests'] + +[tool.mypy] +python_version = "3.11" +warn_unused_configs = true +warn_unused_ignores = true +plugins = ["mypy_zope:plugin"] +exclude = ["warehouse/locale/.*", "warehouse/migrations/versions.*"] +cache_dir = "dev/.mypy_cache" + +[[tool.mypy.overrides]] +# These modules do not yet have types available. +module = [ + "alembic_postgresql_enum.*", + "automat.*", + "bpython.*", # https://github.com/bpython/bpython/issues/892 + "b2sdk.*", # https://github.com/Backblaze/b2-sdk-python/issues/148 + "celery.app.backends.*", + "celery.backends.redis.*", + "elasticsearch_dsl.*", # https://github.com/elastic/elasticsearch-dsl-py/issues/1533 + "github_reserved_names.*", + "google.cloud.*", + "forcediphttpsadapter.*", + "IPython.*", # has types, but only installed in dev + "linehaul.*", + "packaging_legacy.*", + "paginate.*", + "paginate_sqlalchemy.*", + "premailer.*", + "pymacaroons.*", # https://github.com/ecordell/pymacaroons/issues/41 + "pyramid.*", # https://github.com/Pylons/pyramid/issues/2638 + "pyramid_jinja2.*", + "pyramid_mailer.*", + "pyramid_retry.*", + "pyramid_rpc.*", + "pyqrcode.*", + "requests_aws4auth.*", # https://github.com/tedder/requests-aws4auth/issues/53 + "rfc3986.*", + "transaction.*", + "ua_parser.*", # https://github.com/ua-parser/uap-python/issues/110 + "venusian.*", + "whitenoise.*", + "zope.sqlalchemy.*", +] +ignore_missing_imports = true + +[tool.pytest.ini_options] +addopts = [ + "--disable-socket", + "--allow-hosts=localhost,::1,notdatadog,stripe", + "--durations=20", +] +cache_dir = "dev/.pytest_cache" +norecursedirs = ['build', 'dist', 'node_modules', '*.egg-info', '.state requirements'] +markers = [ + 'unit: Quick running unit tests which test small units of functionality.', + 'functional: Slower running tests which test the entire system is functioning.', +] +filterwarnings = [ + 'ignore::warehouse.admin.services.InsecureStorageWarning', + 'ignore::warehouse.utils.exceptions.InsecureOIDCPublisherWarning', + 'ignore::warehouse.packaging.services.InsecureStorageWarning', +] diff --git a/ruff.toml b/ruff.toml index f3a20c9e3b76..8aac77263e70 100644 --- a/ruff.toml +++ b/ruff.toml @@ -3,6 +3,7 @@ exclude = [ "crates/uv-virtualenv/src/activator/activate_this.py", "crates/uv-virtualenv/src/_virtualenv.py", "crates/uv-python/python", + "ecosystem", "scripts/workspaces", ]