highlightjs-opl 1.0.2 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/build.yaml +63 -0
- package/.gitmodules +3 -0
- package/.local/python/bin/Activate.ps1 +247 -0
- package/.local/python/bin/activate +70 -0
- package/.local/python/bin/activate.csh +27 -0
- package/.local/python/bin/activate.fish +69 -0
- package/.local/python/bin/pip +8 -0
- package/.local/python/bin/pip3 +8 -0
- package/.local/python/bin/pip3.12 +8 -0
- package/.local/python/bin/pipenv +8 -0
- package/.local/python/bin/pipenv-resolver +8 -0
- package/.local/python/bin/virtualenv +8 -0
- package/.local/python/bin/wheel +8 -0
- package/.local/python/lib/python3.12/site-packages/_distutils_hack/__init__.py +239 -0
- package/.local/python/lib/python3.12/site-packages/_distutils_hack/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/_distutils_hack/__pycache__/override.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/_distutils_hack/override.py +1 -0
- package/.local/python/lib/python3.12/site-packages/benchmarks/__pycache__/benchmark.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/benchmarks/benchmark.py +408 -0
- package/.local/python/lib/python3.12/site-packages/certifi/__init__.py +4 -0
- package/.local/python/lib/python3.12/site-packages/certifi/__main__.py +12 -0
- package/.local/python/lib/python3.12/site-packages/certifi/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/certifi/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/certifi/__pycache__/core.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/certifi/cacert.pem +4494 -0
- package/.local/python/lib/python3.12/site-packages/certifi/core.py +83 -0
- package/.local/python/lib/python3.12/site-packages/certifi/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/METADATA +78 -0
- package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/RECORD +15 -0
- package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/WHEEL +5 -0
- package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/licenses/LICENSE +20 -0
- package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/top_level.txt +1 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__init__.py +33 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/database.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/index.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/locators.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/manifest.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/markers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/resources.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/compat.py +1137 -0
- package/.local/python/lib/python3.12/site-packages/distlib/database.py +1329 -0
- package/.local/python/lib/python3.12/site-packages/distlib/index.py +508 -0
- package/.local/python/lib/python3.12/site-packages/distlib/locators.py +1295 -0
- package/.local/python/lib/python3.12/site-packages/distlib/manifest.py +384 -0
- package/.local/python/lib/python3.12/site-packages/distlib/markers.py +164 -0
- package/.local/python/lib/python3.12/site-packages/distlib/metadata.py +1031 -0
- package/.local/python/lib/python3.12/site-packages/distlib/resources.py +358 -0
- package/.local/python/lib/python3.12/site-packages/distlib/scripts.py +447 -0
- package/.local/python/lib/python3.12/site-packages/distlib/t32.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/t64-arm.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/t64.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/util.py +1984 -0
- package/.local/python/lib/python3.12/site-packages/distlib/version.py +750 -0
- package/.local/python/lib/python3.12/site-packages/distlib/w32.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/w64-arm.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/w64.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/wheel.py +1105 -0
- package/.local/python/lib/python3.12/site-packages/distlib-0.4.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/distlib-0.4.0.dist-info/LICENSE.txt +284 -0
- package/.local/python/lib/python3.12/site-packages/distlib-0.4.0.dist-info/METADATA +118 -0
- package/.local/python/lib/python3.12/site-packages/distlib-0.4.0.dist-info/RECORD +38 -0
- package/.local/python/lib/python3.12/site-packages/distlib-0.4.0.dist-info/WHEEL +6 -0
- package/.local/python/lib/python3.12/site-packages/distlib-0.4.0.dist-info/top_level.txt +1 -0
- package/.local/python/lib/python3.12/site-packages/distutils-precedence.pth +1 -0
- package/.local/python/lib/python3.12/site-packages/filelock/__init__.py +77 -0
- package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_api.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_error.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_read_write.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_soft.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_unix.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_windows.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/asyncio.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/filelock/_api.py +578 -0
- package/.local/python/lib/python3.12/site-packages/filelock/_error.py +30 -0
- package/.local/python/lib/python3.12/site-packages/filelock/_read_write.py +363 -0
- package/.local/python/lib/python3.12/site-packages/filelock/_soft.py +127 -0
- package/.local/python/lib/python3.12/site-packages/filelock/_unix.py +109 -0
- package/.local/python/lib/python3.12/site-packages/filelock/_util.py +53 -0
- package/.local/python/lib/python3.12/site-packages/filelock/_windows.py +100 -0
- package/.local/python/lib/python3.12/site-packages/filelock/asyncio.py +376 -0
- package/.local/python/lib/python3.12/site-packages/filelock/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/filelock/version.py +34 -0
- package/.local/python/lib/python3.12/site-packages/filelock-3.24.3.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/filelock-3.24.3.dist-info/METADATA +38 -0
- package/.local/python/lib/python3.12/site-packages/filelock-3.24.3.dist-info/RECORD +26 -0
- package/.local/python/lib/python3.12/site-packages/filelock-3.24.3.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/filelock-3.24.3.dist-info/licenses/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__init__.py +15 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/markers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/pylock.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/tags.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/_elffile.py +108 -0
- package/.local/python/lib/python3.12/site-packages/packaging/_manylinux.py +262 -0
- package/.local/python/lib/python3.12/site-packages/packaging/_musllinux.py +85 -0
- package/.local/python/lib/python3.12/site-packages/packaging/_parser.py +365 -0
- package/.local/python/lib/python3.12/site-packages/packaging/_structures.py +69 -0
- package/.local/python/lib/python3.12/site-packages/packaging/_tokenizer.py +193 -0
- package/.local/python/lib/python3.12/site-packages/packaging/licenses/__init__.py +147 -0
- package/.local/python/lib/python3.12/site-packages/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/licenses/_spdx.py +799 -0
- package/.local/python/lib/python3.12/site-packages/packaging/markers.py +388 -0
- package/.local/python/lib/python3.12/site-packages/packaging/metadata.py +978 -0
- package/.local/python/lib/python3.12/site-packages/packaging/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/pylock.py +635 -0
- package/.local/python/lib/python3.12/site-packages/packaging/requirements.py +86 -0
- package/.local/python/lib/python3.12/site-packages/packaging/specifiers.py +1068 -0
- package/.local/python/lib/python3.12/site-packages/packaging/tags.py +651 -0
- package/.local/python/lib/python3.12/site-packages/packaging/utils.py +158 -0
- package/.local/python/lib/python3.12/site-packages/packaging/version.py +792 -0
- package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/METADATA +107 -0
- package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/RECORD +42 -0
- package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/licenses/LICENSE +3 -0
- package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/licenses/LICENSE.APACHE +177 -0
- package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/licenses/LICENSE.BSD +23 -0
- package/.local/python/lib/python3.12/site-packages/pip/__init__.py +13 -0
- package/.local/python/lib/python3.12/site-packages/pip/__main__.py +24 -0
- package/.local/python/lib/python3.12/site-packages/pip/__pip-runner__.py +50 -0
- package/.local/python/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/__init__.py +18 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/build_env.py +606 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cache.py +291 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__init__.py +3 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py +184 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/base_command.py +255 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py +1267 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/command_context.py +28 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/index_command.py +195 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/main.py +85 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py +136 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/parser.py +358 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py +153 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/req_command.py +447 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/spinners.py +235 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py +6 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__init__.py +139 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/lock.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/cache.py +255 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/check.py +66 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/completion.py +136 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/configuration.py +288 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/debug.py +203 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/download.py +146 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/freeze.py +107 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/hash.py +58 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/help.py +40 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/index.py +166 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/inspect.py +92 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/install.py +810 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/list.py +398 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/lock.py +175 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/search.py +178 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/show.py +231 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py +113 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/wheel.py +171 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/configuration.py +396 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py +21 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/base.py +55 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/installed.py +33 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py +164 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py +44 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/exceptions.py +971 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/index/__init__.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/index/collector.py +488 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/index/package_finder.py +1125 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/index/sources.py +287 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/__init__.py +440 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py +173 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py +218 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/base.py +82 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/main.py +12 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py +169 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/_json.py +87 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/base.py +685 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py +6 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py +87 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py +229 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py +143 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py +298 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__init__.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/release_control.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/candidate.py +25 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/direct_url.py +227 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/format_control.py +78 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/index.py +28 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/installation_report.py +57 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/link.py +617 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/release_control.py +92 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/scheme.py +25 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/search_scope.py +126 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py +56 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/target_python.py +122 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/wheel.py +80 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__init__.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/auth.py +568 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/cache.py +128 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/download.py +341 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py +215 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/session.py +532 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/utils.py +98 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py +61 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py +140 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py +38 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py +41 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py +38 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py +47 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/check.py +175 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/freeze.py +259 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py +745 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/prepare.py +747 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/pyproject.py +123 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__init__.py +103 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/pep723.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_dependency_group.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/constructors.py +568 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/pep723.py +41 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/req_dependency_group.py +75 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/req_file.py +631 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/req_install.py +828 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/req_set.py +81 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py +639 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/base.py +20 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py +598 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py +142 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py +591 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py +856 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +166 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py +285 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py +98 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py +251 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py +332 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py +255 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/pylock.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py +109 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/_log.py +38 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py +52 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/compat.py +85 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py +201 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/datetime.py +28 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py +126 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py +87 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py +81 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py +88 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py +203 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py +24 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/glibc.py +102 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/hashes.py +150 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/logging.py +396 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/misc.py +771 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/packaging.py +44 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/pylock.py +116 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/retry.py +45 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py +248 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py +294 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py +362 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/urls.py +55 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py +105 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/wheel.py +132 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py +15 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py +130 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/git.py +571 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py +186 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py +335 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py +695 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/wheel_builder.py +261 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/README.rst +180 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/__init__.py +117 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py +32 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py +70 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py +167 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py +75 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +8 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +145 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +48 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py +511 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py +121 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py +157 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py +146 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py +43 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/LICENSE +20 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py +4 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py +12 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem +4468 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/core.py +83 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/LICENSE.txt +9 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__init__.py +13 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__main__.py +65 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/_implementation.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/_lint_dependency_groups.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/_pip_wrapper.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/_toml_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_implementation.py +209 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_lint_dependency_groups.py +59 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_pip_wrapper.py +62 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_toml_compat.py +9 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/LICENSE.txt +284 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py +33 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py +1137 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py +358 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py +447 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/t32.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/t64-arm.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/t64.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/util.py +1984 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/w32.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/w64-arm.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/w64.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/LICENSE +202 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py +54 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py +4 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/distro.py +1403 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/LICENSE.md +31 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py +45 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/codec.py +122 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/compat.py +15 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/core.py +437 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py +4309 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py +57 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py +8841 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/COPYING +14 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py +55 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py +48 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py +170 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py +929 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE +3 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE.APACHE +177 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE.BSD +23 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py +15 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/pylock.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/_elffile.py +108 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py +262 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py +85 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py +365 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py +69 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py +193 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__init__.py +147 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/_spdx.py +799 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py +388 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py +978 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/pylock.py +635 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py +86 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py +1068 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py +651 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py +158 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/version.py +792 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pkg_resources/LICENSE +17 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py +3676 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py +631 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py +55 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py +249 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py +299 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py +146 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py +272 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py +34 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py +278 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/LICENSE +25 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py +82 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py +17 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/console.py +70 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py +70 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py +940 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatter.py +129 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py +157 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py +23 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexer.py +963 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py +362 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py +602 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py +1201 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/modeline.py +43 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/plugin.py +72 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/regexopt.py +91 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/scanner.py +104 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py +247 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/style.py +203 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py +61 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/styles/_mapping.py +54 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/token.py +214 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py +153 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/util.py +324 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py +31 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py +410 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +21 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +389 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/LICENSE +175 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py +179 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py +14 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py +50 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py +696 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/api.py +157 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/auth.py +314 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/certs.py +17 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/compat.py +90 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/cookies.py +561 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/exceptions.py +151 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/help.py +127 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/hooks.py +33 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/models.py +1039 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/packages.py +25 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/sessions.py +831 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/status_codes.py +128 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/structures.py +99 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/utils.py +1086 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/LICENSE +13 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py +27 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/providers.py +196 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py +55 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__init__.py +27 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/abstract.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/criterion.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/resolution.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/abstract.py +47 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/criterion.py +48 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/exceptions.py +57 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/resolution.py +627 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py +209 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/LICENSE +19 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py +177 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py +245 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py +454 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py +3610 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py +32 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_export_format.py +76 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py +10 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py +24 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py +268 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py +94 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py +43 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py +69 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py +309 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py +17 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py +153 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py +482 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py +16 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py +19 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py +661 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py +71 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py +56 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py +93 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/abc.py +33 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/align.py +306 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py +241 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/bar.py +93 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/box.py +474 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/cells.py +174 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/color.py +621 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py +38 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/columns.py +187 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/console.py +2680 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py +37 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/containers.py +167 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/control.py +219 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py +193 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py +39 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py +91 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/errors.py +34 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py +57 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py +88 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py +232 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/json.py +139 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/jupyter.py +101 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/layout.py +442 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/live.py +400 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/live_render.py +106 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/logging.py +297 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/markup.py +251 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/measure.py +151 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/padding.py +141 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/pager.py +34 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/palette.py +100 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/panel.py +317 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/pretty.py +1016 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/progress.py +1715 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/progress_bar.py +223 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/prompt.py +400 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/protocol.py +42 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/region.py +10 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/repr.py +149 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/rule.py +130 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/scope.py +86 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/screen.py +54 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/segment.py +752 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/spinner.py +132 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/status.py +131 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/style.py +792 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/styled.py +42 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/syntax.py +985 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/table.py +1006 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/terminal_theme.py +153 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/text.py +1361 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/theme.py +115 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/themes.py +5 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/traceback.py +899 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/tree.py +257 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/__init__.py +8 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/_parser.py +777 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/_re.py +115 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/_types.py +10 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/py.typed +1 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/__init__.py +4 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/__pycache__/_writer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/_writer.py +229 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/py.typed +1 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__init__.py +36 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/_api.py +341 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/_macos.py +571 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/_openssl.py +68 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/_ssl_constants.py +31 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/_windows.py +567 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/LICENSE.txt +21 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__init__.py +102 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_collections.py +355 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_version.py +2 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/connection.py +572 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py +1140 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +36 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +519 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +397 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/appengine.py +314 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +130 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +518 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +920 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/socks.py +216 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/exceptions.py +323 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/fields.py +274 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/filepost.py +98 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +51 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +155 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/six.py +1076 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/poolmanager.py +540 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/request.py +191 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/response.py +879 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__init__.py +49 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/connection.py +149 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/proxy.py +57 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/queue.py +22 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/request.py +137 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/response.py +107 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/retry.py +622 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_.py +504 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +159 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssltransport.py +221 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/timeout.py +271 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/url.py +435 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py +152 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/vendor.txt +19 -0
- package/.local/python/lib/python3.12/site-packages/pip/py.typed +4 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/METADATA +111 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/RECORD +878 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/entry_points.txt +4 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/AUTHORS.txt +860 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/LICENSE.txt +20 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/certifi/LICENSE +20 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/dependency_groups/LICENSE.txt +9 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/distlib/LICENSE.txt +284 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/distro/LICENSE +202 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/idna/LICENSE.md +31 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/msgpack/COPYING +14 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE +3 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.APACHE +177 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.BSD +23 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pkg_resources/LICENSE +17 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/platformdirs/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pygments/LICENSE +25 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pyproject_hooks/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/requests/LICENSE +175 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/resolvelib/LICENSE +13 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/rich/LICENSE +19 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/tomli/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/tomli_w/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/truststore/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/urllib3/LICENSE.txt +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__init__.py +49 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__main__.py +4 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/__version__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/cmdparse.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/environment.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/environments.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/help.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/installers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/pep508checker.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/project.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/resolver.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/shells.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__version__.py +5 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/cli/__init__.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/cli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/cli/__pycache__/command.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/cli/__pycache__/options.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/cli/command.py +1208 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/cli/options.py +635 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/cmdparse.py +134 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/environment.py +832 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/environments.py +449 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/exceptions.py +411 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/help.py +86 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/installers.py +233 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/README.md +11 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/patched.txt +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/COPYING +14 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/LICENSE.APACHE +177 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/LICENSE.BSD +23 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/LICENSE.md +31 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/LICENSE.txt +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/__init__.py +13 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/__main__.py +32 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/__pip-runner__.py +50 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/__pycache__/__pip-runner__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__init__.py +18 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/build_env.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/configuration.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/main.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/pyproject.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/build_env.py +417 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cache.py +291 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__init__.py +3 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/main.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/autocompletion.py +184 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/base_command.py +244 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/cmdoptions.py +1110 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/command_context.py +28 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/index_command.py +175 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/main.py +80 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/main_parser.py +134 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/parser.py +298 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/progress_bars.py +151 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/req_command.py +371 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/spinners.py +235 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/status_codes.py +6 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__init__.py +139 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/check.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/completion.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/debug.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/download.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/hash.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/help.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/index.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/install.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/list.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/lock.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/search.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/show.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/cache.py +233 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/check.py +68 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/completion.py +137 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/configuration.py +288 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/debug.py +203 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/download.py +144 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/freeze.py +109 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/hash.py +60 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/help.py +42 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/index.py +159 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/inspect.py +94 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/install.py +803 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/list.py +400 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/lock.py +169 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/search.py +178 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/show.py +231 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/uninstall.py +115 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/wheel.py +178 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/configuration.py +396 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/__init__.py +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/base.py +55 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/installed.py +33 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/sdist.py +164 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/wheel.py +44 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/exceptions.py +898 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/__init__.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/__pycache__/collector.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/__pycache__/sources.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/collector.py +494 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/package_finder.py +1090 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/sources.py +287 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/__init__.py +441 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/_distutils.py +173 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/_sysconfig.py +215 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/base.py +82 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/main.py +12 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/__init__.py +169 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/_json.py +87 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/base.py +685 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/__init__.py +6 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/_compat.py +87 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/_dists.py +229 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/_envs.py +143 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/pkg_resources.py +298 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__init__.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/candidate.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/format_control.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/index.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/link.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/pylock.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/scheme.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/target_python.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/candidate.py +25 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/direct_url.py +227 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/format_control.py +78 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/index.py +28 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/installation_report.py +59 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/link.py +613 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/pylock.py +188 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/scheme.py +25 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/search_scope.py +137 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/selection_prefs.py +53 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/target_python.py +122 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/wheel.py +80 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__init__.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/auth.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/download.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/session.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/auth.py +564 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/cache.py +128 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/download.py +342 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/lazy_wheel.py +215 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/session.py +528 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/utils.py +100 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/xmlrpc.py +62 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/__pycache__/check.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/build_tracker.py +140 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/metadata.py +38 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/metadata_editable.py +41 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/wheel.py +38 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/wheel_editable.py +47 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/check.py +175 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/freeze.py +259 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/install/__init__.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/install/wheel.py +746 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/prepare.py +748 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/pyproject.py +123 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__init__.py +103 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/constructors.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/req_dependency_group.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/req_file.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/req_install.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/req_set.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/constructors.py +566 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/req_dependency_group.py +77 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/req_file.py +619 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/req_install.py +828 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/req_set.py +83 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/req_uninstall.py +639 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/base.py +22 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/legacy/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/legacy/resolver.py +598 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/base.py +142 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/candidates.py +595 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/factory.py +845 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/found_candidates.py +166 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/provider.py +285 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/reporter.py +98 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/requirements.py +247 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/resolver.py +332 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/self_outdated_check.py +262 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/_log.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/logging.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/misc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/retry.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/urls.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/_jaraco_text.py +109 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/_log.py +38 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/appdirs.py +53 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/compat.py +85 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/compatibility_tags.py +201 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/datetime.py +10 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/deprecation.py +126 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/direct_url_helpers.py +87 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/egg_link.py +81 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/entrypoints.py +88 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/filesystem.py +164 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/filetypes.py +25 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/glibc.py +102 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/hashes.py +150 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/logging.py +364 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/misc.py +765 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/packaging.py +44 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/retry.py +45 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/subprocess.py +248 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/temp_dir.py +294 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/unpacking.py +362 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/urls.py +55 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/virtualenv.py +105 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/wheel.py +133 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__init__.py +15 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__pycache__/git.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/bazaar.py +130 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/git.py +571 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/mercurial.py +186 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/subversion.py +335 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/versioncontrol.py +693 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/wheel_builder.py +261 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/__init__.py +117 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__init__.py +29 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/_cmd.py +70 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/adapter.py +168 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/cache.py +75 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/caches/__init__.py +8 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/caches/file_cache.py +145 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/caches/redis_cache.py +48 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/controller.py +511 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/filewrapper.py +119 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/heuristics.py +157 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/serialize.py +146 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/wrapper.py +43 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/LICENSE +20 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/__init__.py +4 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/__main__.py +12 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/cacert.pem +4800 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/core.py +83 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/LICENSE.txt +9 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__init__.py +13 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__main__.py +65 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__pycache__/_implementation.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__pycache__/_lint_dependency_groups.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__pycache__/_pip_wrapper.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__pycache__/_toml_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/_implementation.py +209 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/_lint_dependency_groups.py +59 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/_pip_wrapper.py +62 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/_toml_compat.py +9 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/LICENSE.txt +284 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/__init__.py +33 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/compat.py +1137 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/resources.py +358 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/scripts.py +447 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/t32.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/t64-arm.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/t64.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/util.py +1984 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/w32.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/w64-arm.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/w64.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/LICENSE +202 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/__init__.py +54 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/__main__.py +4 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/distro.py +1403 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/LICENSE.md +31 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__init__.py +45 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/core.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/codec.py +122 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/compat.py +15 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/core.py +437 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/idnadata.py +4243 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/intranges.py +57 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/package_data.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/uts46data.py +8681 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/COPYING +14 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/__init__.py +55 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/exceptions.py +48 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/ext.py +170 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/fallback.py +929 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/LICENSE +3 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/LICENSE.APACHE +177 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/LICENSE.BSD +23 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__init__.py +15 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/_elffile.py +109 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/_manylinux.py +262 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/_musllinux.py +85 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/_parser.py +353 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/_structures.py +61 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/_tokenizer.py +195 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/licenses/__init__.py +145 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/licenses/_spdx.py +759 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/markers.py +362 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/metadata.py +862 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/requirements.py +91 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/specifiers.py +1019 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/tags.py +656 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/utils.py +163 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/version.py +582 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pkg_resources/LICENSE +17 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pkg_resources/LICENSE.txt +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pkg_resources/__init__.py +3676 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__init__.py +631 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__main__.py +55 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/android.py +249 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/api.py +299 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/macos.py +146 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/unix.py +272 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/version.py +34 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/windows.py +272 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__init__.py +82 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__main__.py +17 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/console.py +70 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/filter.py +70 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/filters/__init__.py +940 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/formatter.py +129 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/formatters/__init__.py +157 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/formatters/_mapping.py +23 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexer.py +963 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexers/__init__.py +362 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexers/_mapping.py +602 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexers/python.py +1201 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/modeline.py +43 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/plugin.py +72 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/regexopt.py +91 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/scanner.py +104 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/sphinxext.py +247 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/style.py +203 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/styles/__init__.py +61 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/styles/_mapping.py +54 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/token.py +214 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/unistring.py +153 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/util.py +324 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/__init__.py +31 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/_impl.py +410 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/_in_process/__init__.py +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +389 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/LICENSE +175 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__init__.py +179 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/api.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/help.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/models.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__version__.py +14 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/_internal_utils.py +50 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/adapters.py +696 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/api.py +157 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/auth.py +314 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/certs.py +17 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/compat.py +90 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/cookies.py +561 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/exceptions.py +151 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/help.py +127 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/hooks.py +33 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/models.py +1039 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/packages.py +25 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/sessions.py +831 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/status_codes.py +128 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/structures.py +99 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/utils.py +1086 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/LICENSE +13 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/__init__.py +27 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/providers.py +196 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/reporters.py +55 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/__init__.py +27 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/__pycache__/abstract.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/__pycache__/criterion.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/__pycache__/resolution.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/abstract.py +47 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/criterion.py +48 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/exceptions.py +57 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/resolution.py +627 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/structs.py +209 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__init__.py +177 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__main__.py +245 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/align.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/box.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/color.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/console.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/control.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/json.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/live.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/region.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/status.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/style.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/table.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/text.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_cell_widths.py +454 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_emoji_codes.py +3610 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_emoji_replace.py +32 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_export_format.py +76 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_extension.py +10 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_fileno.py +24 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_inspect.py +268 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_log_render.py +94 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_loop.py +43 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_null_file.py +69 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_palettes.py +309 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_pick.py +17 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_ratio.py +153 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_spinners.py +482 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_stack.py +16 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_timer.py +19 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_win32_console.py +661 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_windows.py +71 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_windows_renderer.py +56 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_wrap.py +93 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/abc.py +33 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/align.py +306 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/ansi.py +241 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/bar.py +93 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/box.py +474 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/cells.py +174 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/color.py +621 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/color_triplet.py +38 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/columns.py +187 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/console.py +2680 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/constrain.py +37 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/containers.py +167 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/control.py +219 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/default_styles.py +193 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/diagnose.py +39 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/emoji.py +91 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/errors.py +34 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/file_proxy.py +57 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/filesize.py +88 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/highlighter.py +232 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/json.py +139 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/jupyter.py +101 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/layout.py +442 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/live.py +400 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/live_render.py +106 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/logging.py +297 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/markup.py +251 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/measure.py +151 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/padding.py +141 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/pager.py +34 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/palette.py +100 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/panel.py +317 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/pretty.py +1016 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/progress.py +1715 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/progress_bar.py +223 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/prompt.py +400 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/protocol.py +42 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/region.py +10 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/repr.py +149 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/rule.py +130 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/scope.py +86 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/screen.py +54 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/segment.py +752 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/spinner.py +132 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/status.py +131 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/style.py +792 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/styled.py +42 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/syntax.py +985 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/table.py +1006 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/terminal_theme.py +153 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/text.py +1361 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/theme.py +115 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/themes.py +5 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/traceback.py +899 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/tree.py +257 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/__init__.py +8 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/_parser.py +777 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/_re.py +115 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/_types.py +10 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/py.typed +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli_w/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli_w/__init__.py +4 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli_w/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli_w/__pycache__/_writer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli_w/_writer.py +229 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli_w/py.typed +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__init__.py +36 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/_api.py +343 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/_macos.py +573 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/_openssl.py +70 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/_ssl_constants.py +31 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/_windows.py +569 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/LICENSE.txt +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__init__.py +102 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/_collections.py +355 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/_version.py +2 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/connection.py +572 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/connectionpool.py +1140 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_appengine_environ.py +36 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +519 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +397 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/appengine.py +314 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/ntlmpool.py +130 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/pyopenssl.py +518 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/securetransport.py +920 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/socks.py +216 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/exceptions.py +323 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/fields.py +274 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/filepost.py +98 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/backports/makefile.py +51 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +155 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/six.py +1076 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/poolmanager.py +540 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/request.py +191 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/response.py +879 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__init__.py +49 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/connection.py +149 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/proxy.py +57 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/queue.py +22 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/request.py +137 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/response.py +107 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/retry.py +622 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/ssl_.py +504 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/ssl_match_hostname.py +159 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/ssltransport.py +221 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/timeout.py +271 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/url.py +435 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/wait.py +152 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/vendor.txt +19 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/py.typed +4 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/pep508checker.py +39 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/pipenv.1 +567 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/project.py +1687 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/resolver.py +512 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/audit.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/check.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/clean.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/clear.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/graph.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/install.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/lock.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/outdated.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/requirements.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/scan.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/shell.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/sync.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/uninstall.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/update.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/audit.py +242 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/check.py +444 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/clean.py +77 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/clear.py +37 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/graph.py +111 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/install.py +728 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/lock.py +108 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/outdated.py +92 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/requirements.py +134 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/scan.py +508 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/shell.py +192 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/sync.py +64 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/uninstall.py +218 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/update.py +676 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/shells.py +342 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__init__.py +8 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/constants.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/dependencies.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/display.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/environment.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/fileutils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/funktools.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/indexes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/internet.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/locking.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/markers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/pip.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/pipfile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/processes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/project.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/pylock.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/requirements.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/requirementslib.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/resolver.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/shell.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/toml.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/virtualenv.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/constants.py +50 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/dependencies.py +1413 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/display.py +54 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/environment.py +52 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/exceptions.py +97 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/fileutils.py +248 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/funktools.py +452 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/indexes.py +132 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/internet.py +146 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/locking.py +543 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/markers.py +663 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/pip.py +147 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/pipfile.py +414 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/processes.py +77 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/project.py +121 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/pylock.py +752 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/requirements.py +389 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/requirementslib.py +732 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/resolver.py +1172 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/shell.py +558 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/toml.py +140 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/virtualenv.py +531 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/Makefile +14 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/README.md +28 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/LICENSE.txt +28 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__init__.py +123 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/_termui_impl.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/_textwrap.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/_utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/_winconsole.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/core.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/decorators.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/formatting.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/globals.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/shell_completion.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/termui.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/testing.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/types.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/_compat.py +622 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/_termui_impl.py +852 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/_textwrap.py +51 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/_utils.py +36 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/_winconsole.py +296 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/core.py +3415 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/decorators.py +551 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/exceptions.py +308 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/formatting.py +301 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/globals.py +67 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/parser.py +532 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/shell_completion.py +667 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/termui.py +883 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/testing.py +577 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/types.py +1209 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/utils.py +627 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click_didyoumean/LICENSE +19 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click_didyoumean/__init__.py +66 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click_didyoumean/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__init__.py +7 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__pycache__/ansi.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__pycache__/ansitowin32.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__pycache__/initialise.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__pycache__/win32.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__pycache__/winterm.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/ansi.py +102 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/ansitowin32.py +277 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/initialise.py +121 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__init__.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/ansi_test.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/initialise_test.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/isatty_test.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/winterm_test.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/ansi_test.py +76 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/ansitowin32_test.py +294 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/initialise_test.py +189 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/isatty_test.py +57 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/utils.py +49 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/winterm_test.py +131 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/win32.py +180 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/winterm.py +195 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__init__.py +51 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__pycache__/ipython.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__pycache__/main.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__pycache__/parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__pycache__/variables.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/ipython.py +50 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/main.py +435 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/parser.py +182 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/py.typed +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/variables.py +86 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/version.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__init__.py +1175 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_adapters.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_collections.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_functools.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_itertools.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_meta.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_text.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_typing.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/diagnose.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_adapters.py +135 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_collections.py +34 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_compat.py +56 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_functools.py +104 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_itertools.py +171 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_meta.py +71 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_text.py +99 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_typing.py +15 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/compat/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/compat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/compat/__pycache__/py311.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/compat/__pycache__/py39.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/compat/py311.py +22 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/compat/py39.py +42 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/diagnose.py +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/LICENSE +3 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/LICENSE.APACHE +177 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/LICENSE.BSD +23 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__init__.py +15 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/markers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/tags.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/_elffile.py +109 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/_manylinux.py +262 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/_musllinux.py +85 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/_parser.py +353 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/_structures.py +61 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/_tokenizer.py +195 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/licenses/__init__.py +145 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/licenses/_spdx.py +759 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/markers.py +362 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/metadata.py +862 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/requirements.py +91 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/specifiers.py +1019 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/tags.py +656 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/utils.py +163 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/version.py +582 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/ANSI.py +351 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/FSM.py +334 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/LICENSE +20 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__init__.py +91 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/ANSI.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/FSM.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/_async.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/_async_pre_await.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/_async_w_await.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/expect.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/fdpexpect.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/popen_spawn.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/pty_spawn.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/pxssh.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/replwrap.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/run.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/screen.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/socket_pexpect.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/spawnbase.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/_async.py +28 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/_async_pre_await.py +111 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/_async_w_await.py +118 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/exceptions.py +35 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/expect.py +371 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/fdpexpect.py +152 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/popen_spawn.py +188 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/pty_spawn.py +860 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/pxssh.py +540 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/replwrap.py +136 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/run.py +157 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/screen.py +431 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/socket_pexpect.py +145 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/spawnbase.py +536 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/utils.py +187 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__main__.py +92 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/_cli.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/_detect_env.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/_discovery.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/_freeze.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/_validate.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/_warning.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_cli.py +227 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_detect_env.py +101 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_discovery.py +154 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_freeze.py +89 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_models/__init__.py +11 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_models/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_models/__pycache__/dag.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_models/__pycache__/package.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_models/dag.py +365 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_models/package.py +251 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__init__.py +41 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/freeze.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/graphviz.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/json.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/json_tree.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/mermaid.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/text.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/freeze.py +43 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/graphviz.py +107 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/json.py +32 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/json_tree.py +60 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/mermaid.py +113 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/text.py +153 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_validate.py +119 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_warning.py +78 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/version.py +34 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/LICENSE +13 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/__init__.py +9 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/__pycache__/lockfiles.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/__pycache__/pipfiles.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/lockfiles.py +177 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__init__.py +26 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/hashes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/packages.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/sections.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/sources.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/base.py +130 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/hashes.py +69 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/packages.py +56 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/scripts.py +71 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/sections.py +138 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/sources.py +45 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/pipfiles.py +168 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/LICENSE +16 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/__init__.py +4 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/__pycache__/_fork_pty.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/__pycache__/ptyprocess.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/__pycache__/util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/_fork_pty.py +78 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/ptyprocess.py +842 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/util.py +71 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/python_dotenv.LICENSE +27 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/LICENSE.txt +20 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/__init__.py +9 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/__pycache__/environment.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/__pycache__/main.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/__pycache__/pythonfinder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/environment.py +115 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/exceptions.py +13 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__init__.py +24 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/asdf_finder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/base_finder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/path_finder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/py_launcher_finder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/pyenv_finder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/system_finder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/windows_registry.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/asdf_finder.py +72 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/base_finder.py +188 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/path_finder.py +226 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/py_launcher_finder.py +226 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/pyenv_finder.py +73 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/system_finder.py +82 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/windows_registry.py +499 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/main.py +15 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/models/__init__.py +5 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/models/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/models/__pycache__/python_info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/models/python_info.py +175 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/pythonfinder.py +227 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/utils/__init__.py +35 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/utils/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/utils/__pycache__/path_utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/utils/__pycache__/version_utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/utils/path_utils.py +287 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/utils/version_utils.py +233 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ruamel/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ruamel/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/LICENSE +13 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/__init__.py +23 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/__pycache__/_core.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/__pycache__/nt.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/_core.py +11 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/nt.py +163 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/__init__.py +112 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/__pycache__/_core.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/__pycache__/proc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/__pycache__/ps.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/_core.py +3 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/proc.py +83 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/ps.py +51 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/LICENSE +20 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__init__.py +59 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/_types.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/_utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/api.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/container.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/items.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/source.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/toml_char.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/toml_document.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/toml_file.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/_compat.py +22 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/_types.py +82 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/_utils.py +158 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/api.py +310 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/container.py +894 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/exceptions.py +234 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/items.py +1960 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/parser.py +1141 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/source.py +180 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/toml_char.py +52 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/toml_document.py +7 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/toml_file.py +58 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/vendor.txt +14 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/__init__.py +456 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/__pycache__/_functools.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/__pycache__/glob.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/_functools.py +20 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/__pycache__/overlay.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/__pycache__/py310.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/__pycache__/py313.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/overlay.py +37 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/py310.py +13 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/py313.py +34 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/glob.py +116 -0
- package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/METADATA +434 -0
- package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/RECORD +1318 -0
- package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/WHEEL +5 -0
- package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/entry_points.txt +3 -0
- package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/licenses/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/licenses/NOTICES +5 -0
- package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/top_level.txt +2 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/__init__.py +857 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/__main__.py +61 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/_xdg.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/android.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/api.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/macos.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/unix.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/windows.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/_xdg.py +143 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/android.py +273 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/api.py +394 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/macos.py +187 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/unix.py +293 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/version.py +34 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/windows.py +369 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs-4.9.2.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs-4.9.2.dist-info/METADATA +100 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs-4.9.2.dist-info/RECORD +24 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs-4.9.2.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs-4.9.2.dist-info/licenses/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/__init__.py +26 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_cached_py_info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_discovery.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_py_info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_py_spec.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_specifier.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_cache.py +185 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_cached_py_info.py +259 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_compat.py +29 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_discovery.py +335 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_py_info.py +787 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_py_spec.py +262 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_specifier.py +311 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_windows/__init__.py +13 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_windows/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_windows/__pycache__/_pep514.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_windows/__pycache__/_propose.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_windows/_pep514.py +222 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_windows/_propose.py +53 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery-1.1.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery-1.1.0.dist-info/METADATA +71 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery-1.1.0.dist-info/RECORD +28 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery-1.1.0.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery-1.1.0.dist-info/licenses/LICENSE +18 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__init__.py +256 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_core_metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_discovery.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_entry_points.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_imp.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_importlib.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_itertools.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_normalization.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_path.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_reqs.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_shutil.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_static.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/archive_util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/build_meta.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/depends.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/discovery.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/dist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/errors.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/extension.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/glob.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/installer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/launch.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/logging.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/modified.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/monkey.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/msvc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/namespaces.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/unicode_utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/warnings.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/windows_support.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_core_metadata.py +337 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_discovery.py +33 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__init__.py +14 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_log.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_macos_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_modified.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/archive_util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/ccompiler.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/cmd.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/core.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/cygwinccompiler.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/debug.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/dep_util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/dir_util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/dist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/errors.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/extension.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/fancy_getopt.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/file_util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/filelist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/log.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/sysconfig.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/text_file.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/unixccompiler.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/versionpredicate.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/zosccompiler.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/_log.py +3 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/_macos_compat.py +12 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/_modified.py +95 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/_msvccompiler.py +16 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/archive_util.py +284 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/ccompiler.py +26 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/cmd.py +535 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__init__.py +23 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/_framework_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/bdist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/bdist_dumb.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/bdist_rpm.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/build.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/build_clib.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/build_ext.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/build_py.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/build_scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/check.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/clean.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/config.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install_data.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install_egg_info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install_headers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install_lib.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install_scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/sdist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/_framework_compat.py +54 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/bdist.py +167 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/bdist_dumb.py +141 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/bdist_rpm.py +597 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/build.py +156 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/build_clib.py +199 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/build_ext.py +811 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/build_py.py +404 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/build_scripts.py +150 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/check.py +152 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/clean.py +76 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/config.py +348 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/install.py +805 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/install_data.py +94 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/install_egg_info.py +90 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/install_headers.py +46 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/install_lib.py +236 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/install_scripts.py +59 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/sdist.py +521 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compat/__init__.py +18 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compat/__pycache__/numpy.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compat/__pycache__/py39.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compat/numpy.py +2 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compat/py39.py +66 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/__pycache__/cygwin.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/__pycache__/errors.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/__pycache__/msvc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/__pycache__/unix.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/__pycache__/zos.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/base.py +1386 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/cygwin.py +340 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/errors.py +24 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/msvc.py +614 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/__pycache__/test_base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/__pycache__/test_cygwin.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/__pycache__/test_mingw.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/__pycache__/test_msvc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/__pycache__/test_unix.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/test_base.py +83 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/test_cygwin.py +76 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/test_mingw.py +48 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/test_msvc.py +136 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/test_unix.py +413 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/unix.py +422 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/zos.py +230 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/core.py +289 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/cygwinccompiler.py +31 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/debug.py +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/dep_util.py +14 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/dir_util.py +232 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/dist.py +1384 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/errors.py +108 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/extension.py +258 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/fancy_getopt.py +471 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/file_util.py +228 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/filelist.py +431 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/log.py +56 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/spawn.py +130 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/sysconfig.py +598 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__init__.py +42 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/support.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_archive_util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist_dumb.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist_rpm.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_clib.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_ext.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_py.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_check.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_clean.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_cmd.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_config_cmd.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_core.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_dir_util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_dist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_extension.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_file_util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_filelist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_data.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_headers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_lib.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_log.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_modified.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_sdist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_spawn.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_sysconfig.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_text_file.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_versionpredicate.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/unix_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/__pycache__/py39.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/py39.py +40 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/support.py +134 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_archive_util.py +342 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_bdist.py +47 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_bdist_dumb.py +78 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_bdist_rpm.py +127 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build.py +49 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_clib.py +134 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_ext.py +628 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_py.py +196 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_scripts.py +96 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_check.py +194 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_clean.py +45 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_cmd.py +107 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_config_cmd.py +87 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_core.py +130 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_dir_util.py +139 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_dist.py +552 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_extension.py +117 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_file_util.py +95 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_filelist.py +336 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install.py +245 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_data.py +74 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_headers.py +33 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_lib.py +110 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_scripts.py +52 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_log.py +12 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_modified.py +126 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_sdist.py +470 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_spawn.py +141 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_sysconfig.py +319 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_text_file.py +127 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_util.py +243 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_version.py +80 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_versionpredicate.py +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/unix_compat.py +17 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/text_file.py +286 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/unixccompiler.py +9 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/util.py +506 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/version.py +348 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/versionpredicate.py +175 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/zosccompiler.py +3 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_entry_points.py +94 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_imp.py +87 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_importlib.py +9 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_itertools.py +23 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_normalization.py +180 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_path.py +93 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_reqs.py +42 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_scripts.py +361 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_shutil.py +59 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_static.py +188 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/.lock +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__init__.py +27 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/autoasync.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/autocommand.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/automain.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/autoparse.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/errors.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/autoasync.py +142 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/autocommand.py +70 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/automain.py +59 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/autoparse.py +333 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/errors.py +23 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/LICENSE +166 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/METADATA +420 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/RECORD +13 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/WHEEL +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/top_level.txt +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/__init__.py +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__init__.py +2937 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__main__.py +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/__pycache__/py38.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/py38.py +24 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/LICENSE +17 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/METADATA +46 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/RECORD +12 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/WHEEL +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/top_level.txt +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__init__.py +1191 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_adapters.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_collections.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_functools.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_itertools.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_meta.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_text.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_typing.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/diagnose.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py +136 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_collections.py +34 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_compat.py +56 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_functools.py +135 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_itertools.py +171 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_meta.py +71 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_text.py +99 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_typing.py +15 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/py311.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/py39.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/py311.py +22 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/py39.py +42 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/diagnose.py +21 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/METADATA +133 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/RECORD +21 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/WHEEL +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/licenses/LICENSE +73 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/top_level.txt +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/context/__init__.py +367 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/context/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/context/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/__init__.py +722 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/__init__.pyi +123 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/Lorem ipsum.txt +2 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__init__.py +647 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/layouts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/show-newlines.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/strip-prefix.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/to-dvorak.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/to-qwerty.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/layouts.py +25 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/show-newlines.py +32 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/strip-prefix.py +21 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/to-dvorak.py +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/to-qwerty.py +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/LICENSE +17 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/METADATA +96 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/RECORD +14 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/WHEEL +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/top_level.txt +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/METADATA +82 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/RECORD +9 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/WHEEL +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/licenses/LICENSE +18 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/top_level.txt +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/METADATA +69 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/RECORD +10 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/WHEEL +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/licenses/LICENSE +18 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/top_level.txt +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__init__.py +6 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__init__.pyi +2 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__pycache__/more.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/more.py +5303 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/more.pyi +949 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/recipes.py +1471 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/recipes.pyi +205 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.8.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.8.0.dist-info/METADATA +283 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.8.0.dist-info/RECORD +13 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.8.0.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.8.0.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.8.0.dist-info/licenses/LICENSE +19 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__init__.py +15 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/pylock.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/tags.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/_elffile.py +108 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/_manylinux.py +262 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/_musllinux.py +85 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/_parser.py +365 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/_structures.py +69 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/_tokenizer.py +193 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/licenses/__init__.py +147 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/licenses/_spdx.py +799 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/markers.py +388 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/metadata.py +978 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/pylock.py +635 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/requirements.py +86 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/specifiers.py +1068 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/tags.py +651 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/utils.py +158 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/version.py +792 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/METADATA +107 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/RECORD +26 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/licenses/LICENSE +3 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/licenses/LICENSE.APACHE +177 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/licenses/LICENSE.BSD +23 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__init__.py +631 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__main__.py +55 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/android.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/api.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/android.py +249 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/api.py +299 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/macos.py +146 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/unix.py +272 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/version.py +34 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/windows.py +272 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.4.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.4.0.dist-info/METADATA +350 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.4.0.dist-info/RECORD +15 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.4.0.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.4.0.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.4.0.dist-info/licenses/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/__init__.py +8 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/__pycache__/_parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/__pycache__/_re.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/__pycache__/_types.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/_parser.py +782 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/_re.py +119 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/_types.py +10 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/py.typed +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.4.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.4.0.dist-info/METADATA +270 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.4.0.dist-info/RECORD +11 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.4.0.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.4.0.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.4.0.dist-info/licenses/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__init__.py +3 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__main__.py +25 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/_bdist_wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/_metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/_setuptools_logging.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/bdist_wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/macosx_libfile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/wheelfile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_bdist_wheel.py +616 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/__init__.py +153 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/__pycache__/convert.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/__pycache__/pack.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/__pycache__/tags.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/__pycache__/unpack.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/convert.py +337 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/pack.py +84 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/tags.py +140 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/unpack.py +30 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_metadata.py +184 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_setuptools_logging.py +26 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/bdist_wheel.py +26 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/macosx_libfile.py +486 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/metadata.py +17 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/wheelfile.py +241 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/METADATA +69 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/RECORD +22 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/entry_points.txt +6 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/licenses/LICENSE.txt +21 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/__init__.py +456 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/__pycache__/_functools.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/__pycache__/glob.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/_functools.py +20 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__pycache__/overlay.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__pycache__/py310.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__pycache__/py313.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/overlay.py +37 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/py310.py +13 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/py313.py +34 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/glob.py +116 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/METADATA +106 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/RECORD +14 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/WHEEL +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/licenses/LICENSE +18 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/top_level.txt +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/archive_util.py +219 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/build_meta.py +556 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/cli-32.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/cli-64.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/cli-arm64.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/cli.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__init__.py +21 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/_requirestxt.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/alias.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/bdist_wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/build.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/build_clib.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/build_ext.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/build_py.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/develop.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/dist_info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/easy_install.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/editable_wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/egg_info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/install.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/install_lib.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/install_scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/rotate.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/saveopts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/sdist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/setopt.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/test.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/_requirestxt.py +131 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/alias.py +77 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/bdist_egg.py +471 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/bdist_rpm.py +42 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/bdist_wheel.py +603 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/build.py +135 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/build_clib.py +103 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/build_ext.py +470 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/build_py.py +403 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/develop.py +58 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/dist_info.py +103 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/easy_install.py +30 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/editable_wheel.py +914 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/egg_info.py +716 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/install.py +131 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/install_egg_info.py +57 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/install_lib.py +137 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/install_scripts.py +66 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/launcher manifest.xml +15 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/rotate.py +64 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/saveopts.py +21 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/sdist.py +218 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/setopt.py +139 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/test.py +47 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/compat/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/compat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/compat/__pycache__/py310.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/compat/__pycache__/py311.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/compat/__pycache__/py312.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/compat/__pycache__/py39.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/compat/py310.py +20 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/compat/py311.py +27 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/compat/py312.py +13 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/compat/py39.py +9 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/NOTICE +10 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/__init__.py +43 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/__pycache__/_apply_pyprojecttoml.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/__pycache__/expand.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/__pycache__/pyprojecttoml.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/__pycache__/setupcfg.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py +526 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/NOTICE +438 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__init__.py +34 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__pycache__/error_reporting.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__pycache__/extra_validations.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_validations.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__pycache__/formats.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/error_reporting.py +336 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/extra_validations.py +82 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_exceptions.py +51 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py +1412 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/formats.py +402 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/distutils.schema.json +26 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/expand.py +452 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/pyprojecttoml.py +468 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/setupcfg.py +782 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/setuptools.schema.json +433 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/depends.py +185 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/discovery.py +614 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/dist.py +1124 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/errors.py +67 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/extension.py +179 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/glob.py +185 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/gui-32.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/gui-64.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/gui-arm64.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/gui.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/installer.py +155 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/launch.py +36 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/logging.py +40 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/modified.py +18 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/monkey.py +126 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/msvc.py +1557 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/namespaces.py +101 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/script (dev).tmpl +6 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/script.tmpl +3 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__init__.py +13 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/contexts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/environment.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/fixtures.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/mod_with_constant.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/namespaces.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/script-with-bom.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_archive_util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_bdist_deprecations.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_bdist_egg.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_bdist_wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_clib.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_ext.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_meta.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_py.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_config_discovery.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_core_metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_depends.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_develop.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_dist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_dist_info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_distutils_adoption.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_editable_install.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_egg_info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_extern.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_find_packages.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_find_py_modules.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_glob.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_install_scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_logging.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_manifest.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_namespaces.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_sdist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_setopt.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_setuptools.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_shutil_wrapper.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_unicode_utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_virtualenv.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_warnings.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_windows_wrappers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/text.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/textwrap.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/compat/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/compat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/compat/__pycache__/py39.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/compat/py39.py +3 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_apply_pyprojecttoml.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_expand.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_pyprojecttoml.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_pyprojecttoml_dynamic_deps.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_setupcfg.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/downloads/__init__.py +59 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/downloads/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/downloads/__pycache__/preload.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/downloads/preload.py +18 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/setupcfg_examples.txt +22 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/test_apply_pyprojecttoml.py +774 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/test_expand.py +247 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/test_pyprojecttoml.py +398 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/test_pyprojecttoml_dynamic_deps.py +111 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/test_setupcfg.py +987 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/contexts.py +131 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/environment.py +95 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/fixtures.py +406 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/indexes/test_links_priority/external.html +3 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/indexes/test_links_priority/simple/foobar/index.html +4 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/helpers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/test_pbr.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/test_pip_install_sdist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/helpers.py +80 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/test_pbr.py +20 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/test_pip_install_sdist.py +223 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/mod_with_constant.py +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/namespaces.py +90 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/script-with-bom.py +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_archive_util.py +36 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_bdist_deprecations.py +28 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_bdist_egg.py +73 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_bdist_wheel.py +708 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_build.py +33 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_build_clib.py +84 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_build_ext.py +293 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_build_meta.py +959 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_build_py.py +480 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_config_discovery.py +647 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_core_metadata.py +550 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_depends.py +15 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_develop.py +113 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_dist.py +280 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_dist_info.py +147 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_distutils_adoption.py +198 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_editable_install.py +1261 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_egg_info.py +1306 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_extern.py +15 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_find_packages.py +218 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_find_py_modules.py +73 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_glob.py +45 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_install_scripts.py +89 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_logging.py +76 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_manifest.py +622 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_namespaces.py +79 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_scripts.py +12 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_sdist.py +980 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_setopt.py +40 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_setuptools.py +290 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_shutil_wrapper.py +23 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_unicode_utils.py +10 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_virtualenv.py +113 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_warnings.py +106 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_wheel.py +690 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_windows_wrappers.py +258 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/text.py +4 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/textwrap.py +6 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/unicode_utils.py +102 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/version.py +6 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/warnings.py +110 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/wheel.py +262 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/windows_support.py +30 -0
- package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/METADATA +141 -0
- package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/RECORD +759 -0
- package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/WHEEL +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/entry_points.txt +51 -0
- package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/licenses/LICENSE +17 -0
- package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/top_level.txt +2 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/__init__.py +10 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/__main__.py +92 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/__pycache__/info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/__pycache__/report.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/__init__.py +19 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/__pycache__/activator.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/__pycache__/via_template.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/activator.py +61 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/bash/__init__.py +32 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/bash/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/bash/activate.sh +132 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/batch/__init__.py +38 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/batch/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/batch/activate.bat +59 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/batch/deactivate.bat +30 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/batch/pydoc.bat +1 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/cshell/__init__.py +24 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/cshell/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/cshell/activate.csh +74 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/fish/__init__.py +29 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/fish/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/fish/activate.fish +118 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/nushell/__init__.py +51 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/nushell/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/nushell/activate.nu +89 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/powershell/__init__.py +30 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/powershell/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/powershell/activate.ps1 +213 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/python/__init__.py +39 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/python/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/python/__pycache__/activate_this.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/python/activate_this.py +45 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/via_template.py +99 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__init__.py +81 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__pycache__/na.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__pycache__/read_only.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__pycache__/via_disk_folder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__pycache__/via_tempdir.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/base.py +167 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/na.py +78 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/read_only.py +47 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/via_disk_folder.py +181 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/via_tempdir.py +38 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/__pycache__/convert.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/__pycache__/env_var.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/__pycache__/ini.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/cli/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/cli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/cli/__pycache__/parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/cli/parser.py +158 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/convert.py +105 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/env_var.py +38 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/ini.py +83 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/__pycache__/creator.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/__pycache__/debug.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/__pycache__/describe.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/__pycache__/pyenv_cfg.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/creator.py +289 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/debug.py +103 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/describe.py +116 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/pyenv_cfg.py +79 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/__pycache__/_virtualenv.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/__pycache__/api.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/__pycache__/store.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/__pycache__/venv.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/_virtualenv.py +128 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/api.py +142 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/__pycache__/builtin_way.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/__pycache__/ref.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/__pycache__/via_global_self_do.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/builtin_way.py +25 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/__pycache__/common.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/__pycache__/cpython3.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/__pycache__/mac_os.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/common.py +99 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/cpython3.py +220 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/mac_os.py +290 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/graalpy/__init__.py +99 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/graalpy/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/pypy/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/pypy/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/pypy/__pycache__/common.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/pypy/__pycache__/pypy3.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/pypy/common.py +61 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/pypy/pypy3.py +83 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/ref.py +181 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/rustpython/__init__.py +53 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/rustpython/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/via_global_self_do.py +135 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/store.py +32 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/venv.py +112 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__pycache__/builtin.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__pycache__/cached_py_info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__pycache__/discover.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__pycache__/py_info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__pycache__/py_spec.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/builtin.py +87 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/cached_py_info.py +10 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/discover.py +43 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/py_info.py +9 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/py_spec.py +9 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/info.py +72 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/report.py +50 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/__init__.py +197 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/__pycache__/session.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__pycache__/activators.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__pycache__/creators.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__pycache__/discovery.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__pycache__/seeders.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/activators.py +74 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/base.py +77 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/creators.py +98 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/discovery.py +60 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/seeders.py +51 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/session.py +121 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/__pycache__/seeder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/__pycache__/base_embed.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/__pycache__/pip_invoke.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/base_embed.py +150 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/pip_invoke.py +83 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/__pycache__/via_app_data.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/__pycache__/copy.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/__pycache__/symlink.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/base.py +214 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/copy.py +44 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/symlink.py +62 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/via_app_data.py +160 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/seeder.py +53 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/__init__.py +11 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/__pycache__/acquire.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/__pycache__/bundle.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/__pycache__/periodic_update.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/__pycache__/util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/acquire.py +150 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/bundle.py +65 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/__init__.py +60 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/pip-25.0.1-py3-none-any.whl +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/pip-26.0.1-py3-none-any.whl +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/setuptools-75.3.4-py3-none-any.whl +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/setuptools-82.0.0-py3-none-any.whl +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/wheel-0.45.1-py3-none-any.whl +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/periodic_update.py +458 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/util.py +125 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/__pycache__/error.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/__pycache__/lock.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/__pycache__/zipapp.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/error.py +14 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/lock.py +188 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/__init__.py +16 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/__pycache__/_permission.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/__pycache__/_sync.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/__pycache__/_win.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/_permission.py +34 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/_sync.py +90 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/_win.py +23 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/subprocess/__init__.py +48 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/subprocess/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/zipapp.py +47 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/version.py +34 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv-21.1.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv-21.1.0.dist-info/METADATA +65 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv-21.1.0.dist-info/RECORD +203 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv-21.1.0.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv-21.1.0.dist-info/entry_points.txt +31 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv-21.1.0.dist-info/licenses/LICENSE +20 -0
- package/.local/python/lib/python3.12/site-packages/wheel/__init__.py +3 -0
- package/.local/python/lib/python3.12/site-packages/wheel/__main__.py +25 -0
- package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/_bdist_wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/_metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/_setuptools_logging.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/bdist_wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/macosx_libfile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/wheelfile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_bdist_wheel.py +616 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_commands/__init__.py +153 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_commands/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_commands/__pycache__/convert.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_commands/__pycache__/pack.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_commands/__pycache__/tags.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_commands/__pycache__/unpack.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_commands/convert.py +337 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_commands/pack.py +84 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_commands/tags.py +140 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_commands/unpack.py +30 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_metadata.py +184 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_setuptools_logging.py +26 -0
- package/.local/python/lib/python3.12/site-packages/wheel/bdist_wheel.py +26 -0
- package/.local/python/lib/python3.12/site-packages/wheel/macosx_libfile.py +486 -0
- package/.local/python/lib/python3.12/site-packages/wheel/metadata.py +17 -0
- package/.local/python/lib/python3.12/site-packages/wheel/wheelfile.py +241 -0
- package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/METADATA +69 -0
- package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/RECORD +36 -0
- package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/entry_points.txt +6 -0
- package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/licenses/LICENSE.txt +21 -0
- package/.local/python/pyvenv.cfg +5 -0
- package/.tool-versions +2 -0
- package/README.md +5 -0
- package/package.json +1 -1
- package/scripts/changes/.github/workflows/test.yaml +58 -0
- package/scripts/changes/Pipfile +14 -0
- package/scripts/changes/README.md +45 -0
- package/scripts/changes/changes +27 -0
- package/scripts/changes/changes.py +890 -0
- package/scripts/changes/cli.py +80 -0
- package/scripts/changes/examples/gh-release.sh +38 -0
- package/scripts/changes/scripts/release.sh +28 -0
- package/scripts/changes/scripts/test.sh +54 -0
- package/scripts/changes/templates/multiple.markdown +9 -0
- package/scripts/changes/templates/single.markdown +9 -0
- package/scripts/changes/tests/common.py +195 -0
- package/scripts/changes/tests/test_cli.py +1064 -0
- package/scripts/changes/tests/test_common.py +73 -0
- package/scripts/changes/tests/test_history.py +114 -0
- package/scripts/changes/tests/test_version.py +199 -0
- package/scripts/environment.sh +33 -0
- package/scripts/install-dependencies.sh +52 -0
- package/scripts/release.sh +87 -0
- package/scripts/upload-and-publish-release.sh +38 -0
package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/download.py
ADDED
|
@@ -0,0 +1,342 @@
|
|
|
1
|
+
"""Download files with progress indicators."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
import email.message
|
|
6
|
+
import logging
|
|
7
|
+
import mimetypes
|
|
8
|
+
import os
|
|
9
|
+
from collections.abc import Iterable, Mapping
|
|
10
|
+
from dataclasses import dataclass
|
|
11
|
+
from http import HTTPStatus
|
|
12
|
+
from typing import BinaryIO
|
|
13
|
+
|
|
14
|
+
from pipenv.patched.pip._vendor.requests import PreparedRequest
|
|
15
|
+
from pipenv.patched.pip._vendor.requests.models import Response
|
|
16
|
+
from pipenv.patched.pip._vendor.urllib3 import HTTPResponse as URLlib3Response
|
|
17
|
+
from pipenv.patched.pip._vendor.urllib3._collections import HTTPHeaderDict
|
|
18
|
+
from pipenv.patched.pip._vendor.urllib3.exceptions import ReadTimeoutError
|
|
19
|
+
|
|
20
|
+
from pipenv.patched.pip._internal.cli.progress_bars import BarType, get_download_progress_renderer
|
|
21
|
+
from pipenv.patched.pip._internal.exceptions import IncompleteDownloadError, NetworkConnectionError
|
|
22
|
+
from pipenv.patched.pip._internal.models.index import PyPI
|
|
23
|
+
from pipenv.patched.pip._internal.models.link import Link
|
|
24
|
+
from pipenv.patched.pip._internal.network.cache import SafeFileCache, is_from_cache
|
|
25
|
+
from pipenv.patched.pip._internal.network.session import CacheControlAdapter, PipSession
|
|
26
|
+
from pipenv.patched.pip._internal.network.utils import HEADERS, raise_for_status, response_chunks
|
|
27
|
+
from pipenv.patched.pip._internal.utils.misc import format_size, redact_auth_from_url, splitext
|
|
28
|
+
|
|
29
|
+
logger = logging.getLogger(__name__)
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
def _get_http_response_size(resp: Response) -> int | None:
|
|
33
|
+
try:
|
|
34
|
+
return int(resp.headers["content-length"])
|
|
35
|
+
except (ValueError, KeyError, TypeError):
|
|
36
|
+
return None
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
def _get_http_response_etag_or_last_modified(resp: Response) -> str | None:
|
|
40
|
+
"""
|
|
41
|
+
Return either the ETag or Last-Modified header (or None if neither exists).
|
|
42
|
+
The return value can be used in an If-Range header.
|
|
43
|
+
"""
|
|
44
|
+
return resp.headers.get("etag", resp.headers.get("last-modified"))
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
def _log_download(
|
|
48
|
+
resp: Response,
|
|
49
|
+
link: Link,
|
|
50
|
+
progress_bar: BarType,
|
|
51
|
+
total_length: int | None,
|
|
52
|
+
range_start: int | None = 0,
|
|
53
|
+
) -> Iterable[bytes]:
|
|
54
|
+
if link.netloc == PyPI.file_storage_domain:
|
|
55
|
+
url = link.show_url
|
|
56
|
+
else:
|
|
57
|
+
url = link.url_without_fragment
|
|
58
|
+
|
|
59
|
+
logged_url = redact_auth_from_url(url)
|
|
60
|
+
|
|
61
|
+
if total_length:
|
|
62
|
+
if range_start:
|
|
63
|
+
logged_url = (
|
|
64
|
+
f"{logged_url} ({format_size(range_start)}/{format_size(total_length)})"
|
|
65
|
+
)
|
|
66
|
+
else:
|
|
67
|
+
logged_url = f"{logged_url} ({format_size(total_length)})"
|
|
68
|
+
|
|
69
|
+
if is_from_cache(resp):
|
|
70
|
+
logger.info("Using cached %s", logged_url)
|
|
71
|
+
elif range_start:
|
|
72
|
+
logger.info("Resuming download %s", logged_url)
|
|
73
|
+
else:
|
|
74
|
+
logger.info("Downloading %s", logged_url)
|
|
75
|
+
|
|
76
|
+
if logger.getEffectiveLevel() > logging.INFO:
|
|
77
|
+
show_progress = False
|
|
78
|
+
elif is_from_cache(resp):
|
|
79
|
+
show_progress = False
|
|
80
|
+
elif not total_length:
|
|
81
|
+
show_progress = True
|
|
82
|
+
elif total_length > (512 * 1024):
|
|
83
|
+
show_progress = True
|
|
84
|
+
else:
|
|
85
|
+
show_progress = False
|
|
86
|
+
|
|
87
|
+
chunks = response_chunks(resp)
|
|
88
|
+
|
|
89
|
+
if not show_progress:
|
|
90
|
+
return chunks
|
|
91
|
+
|
|
92
|
+
renderer = get_download_progress_renderer(
|
|
93
|
+
bar_type=progress_bar, size=total_length, initial_progress=range_start
|
|
94
|
+
)
|
|
95
|
+
return renderer(chunks)
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
def sanitize_content_filename(filename: str) -> str:
|
|
99
|
+
"""
|
|
100
|
+
Sanitize the "filename" value from a Content-Disposition header.
|
|
101
|
+
"""
|
|
102
|
+
return os.path.basename(filename)
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
def parse_content_disposition(content_disposition: str, default_filename: str) -> str:
|
|
106
|
+
"""
|
|
107
|
+
Parse the "filename" value from a Content-Disposition header, and
|
|
108
|
+
return the default filename if the result is empty.
|
|
109
|
+
"""
|
|
110
|
+
m = email.message.Message()
|
|
111
|
+
m["content-type"] = content_disposition
|
|
112
|
+
filename = m.get_param("filename")
|
|
113
|
+
if filename:
|
|
114
|
+
# We need to sanitize the filename to prevent directory traversal
|
|
115
|
+
# in case the filename contains ".." path parts.
|
|
116
|
+
filename = sanitize_content_filename(str(filename))
|
|
117
|
+
return filename or default_filename
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
def _get_http_response_filename(resp: Response, link: Link) -> str:
|
|
121
|
+
"""Get an ideal filename from the given HTTP response, falling back to
|
|
122
|
+
the link filename if not provided.
|
|
123
|
+
"""
|
|
124
|
+
filename = link.filename # fallback
|
|
125
|
+
# Have a look at the Content-Disposition header for a better guess
|
|
126
|
+
content_disposition = resp.headers.get("content-disposition")
|
|
127
|
+
if content_disposition:
|
|
128
|
+
filename = parse_content_disposition(content_disposition, filename)
|
|
129
|
+
ext: str | None = splitext(filename)[1]
|
|
130
|
+
if not ext:
|
|
131
|
+
ext = mimetypes.guess_extension(resp.headers.get("content-type", ""))
|
|
132
|
+
if ext:
|
|
133
|
+
filename += ext
|
|
134
|
+
if not ext and link.url != resp.url:
|
|
135
|
+
ext = os.path.splitext(resp.url)[1]
|
|
136
|
+
if ext:
|
|
137
|
+
filename += ext
|
|
138
|
+
return filename
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
@dataclass
|
|
142
|
+
class _FileDownload:
|
|
143
|
+
"""Stores the state of a single link download."""
|
|
144
|
+
|
|
145
|
+
link: Link
|
|
146
|
+
output_file: BinaryIO
|
|
147
|
+
size: int | None
|
|
148
|
+
bytes_received: int = 0
|
|
149
|
+
reattempts: int = 0
|
|
150
|
+
|
|
151
|
+
def is_incomplete(self) -> bool:
|
|
152
|
+
return bool(self.size is not None and self.bytes_received < self.size)
|
|
153
|
+
|
|
154
|
+
def write_chunk(self, data: bytes) -> None:
|
|
155
|
+
self.bytes_received += len(data)
|
|
156
|
+
self.output_file.write(data)
|
|
157
|
+
|
|
158
|
+
def reset_file(self) -> None:
|
|
159
|
+
"""Delete any saved data and reset progress to zero."""
|
|
160
|
+
self.output_file.seek(0)
|
|
161
|
+
self.output_file.truncate()
|
|
162
|
+
self.bytes_received = 0
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
class Downloader:
|
|
166
|
+
def __init__(
|
|
167
|
+
self,
|
|
168
|
+
session: PipSession,
|
|
169
|
+
progress_bar: BarType,
|
|
170
|
+
resume_retries: int,
|
|
171
|
+
) -> None:
|
|
172
|
+
assert (
|
|
173
|
+
resume_retries >= 0
|
|
174
|
+
), "Number of max resume retries must be bigger or equal to zero"
|
|
175
|
+
self._session = session
|
|
176
|
+
self._progress_bar = progress_bar
|
|
177
|
+
self._resume_retries = resume_retries
|
|
178
|
+
|
|
179
|
+
def batch(
|
|
180
|
+
self, links: Iterable[Link], location: str
|
|
181
|
+
) -> Iterable[tuple[Link, tuple[str, str]]]:
|
|
182
|
+
"""Convenience method to download multiple links."""
|
|
183
|
+
for link in links:
|
|
184
|
+
filepath, content_type = self(link, location)
|
|
185
|
+
yield link, (filepath, content_type)
|
|
186
|
+
|
|
187
|
+
def __call__(self, link: Link, location: str) -> tuple[str, str]:
|
|
188
|
+
"""Download a link and save it under location."""
|
|
189
|
+
resp = self._http_get(link)
|
|
190
|
+
download_size = _get_http_response_size(resp)
|
|
191
|
+
|
|
192
|
+
filepath = os.path.join(location, _get_http_response_filename(resp, link))
|
|
193
|
+
with open(filepath, "wb") as content_file:
|
|
194
|
+
download = _FileDownload(link, content_file, download_size)
|
|
195
|
+
self._process_response(download, resp)
|
|
196
|
+
if download.is_incomplete():
|
|
197
|
+
self._attempt_resumes_or_redownloads(download, resp)
|
|
198
|
+
|
|
199
|
+
content_type = resp.headers.get("Content-Type", "")
|
|
200
|
+
return filepath, content_type
|
|
201
|
+
|
|
202
|
+
def _process_response(self, download: _FileDownload, resp: Response) -> None:
|
|
203
|
+
"""Download and save chunks from a response."""
|
|
204
|
+
chunks = _log_download(
|
|
205
|
+
resp,
|
|
206
|
+
download.link,
|
|
207
|
+
self._progress_bar,
|
|
208
|
+
download.size,
|
|
209
|
+
range_start=download.bytes_received,
|
|
210
|
+
)
|
|
211
|
+
try:
|
|
212
|
+
for chunk in chunks:
|
|
213
|
+
download.write_chunk(chunk)
|
|
214
|
+
except ReadTimeoutError as e:
|
|
215
|
+
# If the download size is not known, then give up downloading the file.
|
|
216
|
+
if download.size is None:
|
|
217
|
+
raise e
|
|
218
|
+
|
|
219
|
+
logger.warning("Connection timed out while downloading.")
|
|
220
|
+
|
|
221
|
+
def _attempt_resumes_or_redownloads(
|
|
222
|
+
self, download: _FileDownload, first_resp: Response
|
|
223
|
+
) -> None:
|
|
224
|
+
"""Attempt to resume/restart the download if connection was dropped."""
|
|
225
|
+
|
|
226
|
+
while download.reattempts < self._resume_retries and download.is_incomplete():
|
|
227
|
+
assert download.size is not None
|
|
228
|
+
download.reattempts += 1
|
|
229
|
+
logger.warning(
|
|
230
|
+
"Attempting to resume incomplete download (%s/%s, attempt %d)",
|
|
231
|
+
format_size(download.bytes_received),
|
|
232
|
+
format_size(download.size),
|
|
233
|
+
download.reattempts,
|
|
234
|
+
)
|
|
235
|
+
|
|
236
|
+
try:
|
|
237
|
+
resume_resp = self._http_get_resume(download, should_match=first_resp)
|
|
238
|
+
# Fallback: if the server responded with 200 (i.e., the file has
|
|
239
|
+
# since been modified or range requests are unsupported) or any
|
|
240
|
+
# other unexpected status, restart the download from the beginning.
|
|
241
|
+
must_restart = resume_resp.status_code != HTTPStatus.PARTIAL_CONTENT
|
|
242
|
+
if must_restart:
|
|
243
|
+
download.reset_file()
|
|
244
|
+
download.size = _get_http_response_size(resume_resp)
|
|
245
|
+
first_resp = resume_resp
|
|
246
|
+
|
|
247
|
+
self._process_response(download, resume_resp)
|
|
248
|
+
except (ConnectionError, ReadTimeoutError, OSError):
|
|
249
|
+
continue
|
|
250
|
+
|
|
251
|
+
# No more resume attempts. Raise an error if the download is still incomplete.
|
|
252
|
+
if download.is_incomplete():
|
|
253
|
+
os.remove(download.output_file.name)
|
|
254
|
+
raise IncompleteDownloadError(download)
|
|
255
|
+
|
|
256
|
+
# If we successfully completed the download via resume, manually cache it
|
|
257
|
+
# as a complete response to enable future caching
|
|
258
|
+
if download.reattempts > 0:
|
|
259
|
+
self._cache_resumed_download(download, first_resp)
|
|
260
|
+
|
|
261
|
+
def _cache_resumed_download(
|
|
262
|
+
self, download: _FileDownload, original_response: Response
|
|
263
|
+
) -> None:
|
|
264
|
+
"""
|
|
265
|
+
Manually cache a file that was successfully downloaded via resume retries.
|
|
266
|
+
|
|
267
|
+
cachecontrol doesn't cache 206 (Partial Content) responses, since they
|
|
268
|
+
are not complete files. This method manually adds the final file to the
|
|
269
|
+
cache as though it was downloaded in a single request, so that future
|
|
270
|
+
requests can use the cache.
|
|
271
|
+
"""
|
|
272
|
+
url = download.link.url_without_fragment
|
|
273
|
+
adapter = self._session.get_adapter(url)
|
|
274
|
+
|
|
275
|
+
# Check if the adapter is the CacheControlAdapter (i.e. caching is enabled)
|
|
276
|
+
if not isinstance(adapter, CacheControlAdapter):
|
|
277
|
+
logger.debug(
|
|
278
|
+
"Skipping resume download caching: no cache controller for %s", url
|
|
279
|
+
)
|
|
280
|
+
return
|
|
281
|
+
|
|
282
|
+
# Check SafeFileCache is being used
|
|
283
|
+
assert isinstance(
|
|
284
|
+
adapter.cache, SafeFileCache
|
|
285
|
+
), "separate body cache not in use!"
|
|
286
|
+
|
|
287
|
+
synthetic_request = PreparedRequest()
|
|
288
|
+
synthetic_request.prepare(method="GET", url=url, headers={})
|
|
289
|
+
|
|
290
|
+
synthetic_response_headers = HTTPHeaderDict()
|
|
291
|
+
for key, value in original_response.headers.items():
|
|
292
|
+
if key.lower() not in ["content-range", "content-length"]:
|
|
293
|
+
synthetic_response_headers[key] = value
|
|
294
|
+
synthetic_response_headers["content-length"] = str(download.size)
|
|
295
|
+
|
|
296
|
+
synthetic_response = URLlib3Response(
|
|
297
|
+
body="",
|
|
298
|
+
headers=synthetic_response_headers,
|
|
299
|
+
status=200,
|
|
300
|
+
preload_content=False,
|
|
301
|
+
)
|
|
302
|
+
|
|
303
|
+
# Save metadata and then stream the file contents to cache.
|
|
304
|
+
cache_url = adapter.controller.cache_url(url)
|
|
305
|
+
metadata_blob = adapter.controller.serializer.dumps(
|
|
306
|
+
synthetic_request, synthetic_response, b""
|
|
307
|
+
)
|
|
308
|
+
adapter.cache.set(cache_url, metadata_blob)
|
|
309
|
+
download.output_file.flush()
|
|
310
|
+
with open(download.output_file.name, "rb") as f:
|
|
311
|
+
adapter.cache.set_body_from_io(cache_url, f)
|
|
312
|
+
|
|
313
|
+
logger.debug(
|
|
314
|
+
"Cached resumed download as complete response for future use: %s", url
|
|
315
|
+
)
|
|
316
|
+
|
|
317
|
+
def _http_get_resume(
|
|
318
|
+
self, download: _FileDownload, should_match: Response
|
|
319
|
+
) -> Response:
|
|
320
|
+
"""Issue a HTTP range request to resume the download."""
|
|
321
|
+
# To better understand the download resumption logic, see the mdn web docs:
|
|
322
|
+
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/Range_requests
|
|
323
|
+
headers = HEADERS.copy()
|
|
324
|
+
headers["Range"] = f"bytes={download.bytes_received}-"
|
|
325
|
+
# If possible, use a conditional range request to avoid corrupted
|
|
326
|
+
# downloads caused by the remote file changing in-between.
|
|
327
|
+
if identifier := _get_http_response_etag_or_last_modified(should_match):
|
|
328
|
+
headers["If-Range"] = identifier
|
|
329
|
+
return self._http_get(download.link, headers)
|
|
330
|
+
|
|
331
|
+
def _http_get(self, link: Link, headers: Mapping[str, str] = HEADERS) -> Response:
|
|
332
|
+
target_url = link.url_without_fragment
|
|
333
|
+
try:
|
|
334
|
+
resp = self._session.get(target_url, headers=headers, stream=True)
|
|
335
|
+
raise_for_status(resp)
|
|
336
|
+
except NetworkConnectionError as e:
|
|
337
|
+
assert e.response is not None
|
|
338
|
+
logger.critical(
|
|
339
|
+
"HTTP error %s while getting %s", e.response.status_code, link
|
|
340
|
+
)
|
|
341
|
+
raise
|
|
342
|
+
return resp
|
|
@@ -0,0 +1,215 @@
|
|
|
1
|
+
"""Lazy ZIP over HTTP"""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
__all__ = ["HTTPRangeRequestUnsupported", "dist_from_wheel_url"]
|
|
6
|
+
|
|
7
|
+
from bisect import bisect_left, bisect_right
|
|
8
|
+
from collections.abc import Generator
|
|
9
|
+
from contextlib import contextmanager
|
|
10
|
+
from tempfile import NamedTemporaryFile
|
|
11
|
+
from typing import Any
|
|
12
|
+
from zipfile import BadZipFile, ZipFile
|
|
13
|
+
|
|
14
|
+
from pipenv.patched.pip._vendor.packaging.utils import NormalizedName
|
|
15
|
+
from pipenv.patched.pip._vendor.requests.models import CONTENT_CHUNK_SIZE, Response
|
|
16
|
+
|
|
17
|
+
from pipenv.patched.pip._internal.metadata import BaseDistribution, MemoryWheel, get_wheel_distribution
|
|
18
|
+
from pipenv.patched.pip._internal.network.session import PipSession
|
|
19
|
+
from pipenv.patched.pip._internal.network.utils import HEADERS, raise_for_status, response_chunks
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class HTTPRangeRequestUnsupported(Exception):
|
|
23
|
+
pass
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
def dist_from_wheel_url(
|
|
27
|
+
name: NormalizedName, url: str, session: PipSession
|
|
28
|
+
) -> BaseDistribution:
|
|
29
|
+
"""Return a distribution object from the given wheel URL.
|
|
30
|
+
|
|
31
|
+
This uses HTTP range requests to only fetch the portion of the wheel
|
|
32
|
+
containing metadata, just enough for the object to be constructed.
|
|
33
|
+
If such requests are not supported, HTTPRangeRequestUnsupported
|
|
34
|
+
is raised.
|
|
35
|
+
"""
|
|
36
|
+
with LazyZipOverHTTP(url, session) as zf:
|
|
37
|
+
# For read-only ZIP files, ZipFile only needs methods read,
|
|
38
|
+
# seek, seekable and tell, not the whole IO protocol.
|
|
39
|
+
wheel = MemoryWheel(zf.name, zf) # type: ignore
|
|
40
|
+
# After context manager exit, wheel.name
|
|
41
|
+
# is an invalid file by intention.
|
|
42
|
+
return get_wheel_distribution(wheel, name)
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
class LazyZipOverHTTP:
|
|
46
|
+
"""File-like object mapped to a ZIP file over HTTP.
|
|
47
|
+
|
|
48
|
+
This uses HTTP range requests to lazily fetch the file's content,
|
|
49
|
+
which is supposed to be fed to ZipFile. If such requests are not
|
|
50
|
+
supported by the server, raise HTTPRangeRequestUnsupported
|
|
51
|
+
during initialization.
|
|
52
|
+
"""
|
|
53
|
+
|
|
54
|
+
def __init__(
|
|
55
|
+
self, url: str, session: PipSession, chunk_size: int = CONTENT_CHUNK_SIZE
|
|
56
|
+
) -> None:
|
|
57
|
+
head = session.head(url, headers=HEADERS)
|
|
58
|
+
raise_for_status(head)
|
|
59
|
+
assert head.status_code == 200
|
|
60
|
+
self._session, self._url, self._chunk_size = session, url, chunk_size
|
|
61
|
+
self._length = int(head.headers["Content-Length"])
|
|
62
|
+
self._file = NamedTemporaryFile()
|
|
63
|
+
self.truncate(self._length)
|
|
64
|
+
self._left: list[int] = []
|
|
65
|
+
self._right: list[int] = []
|
|
66
|
+
if "bytes" not in head.headers.get("Accept-Ranges", "none"):
|
|
67
|
+
raise HTTPRangeRequestUnsupported("range request is not supported")
|
|
68
|
+
self._check_zip()
|
|
69
|
+
|
|
70
|
+
@property
|
|
71
|
+
def mode(self) -> str:
|
|
72
|
+
"""Opening mode, which is always rb."""
|
|
73
|
+
return "rb"
|
|
74
|
+
|
|
75
|
+
@property
|
|
76
|
+
def name(self) -> str:
|
|
77
|
+
"""Path to the underlying file."""
|
|
78
|
+
return self._file.name
|
|
79
|
+
|
|
80
|
+
def seekable(self) -> bool:
|
|
81
|
+
"""Return whether random access is supported, which is True."""
|
|
82
|
+
return True
|
|
83
|
+
|
|
84
|
+
def close(self) -> None:
|
|
85
|
+
"""Close the file."""
|
|
86
|
+
self._file.close()
|
|
87
|
+
|
|
88
|
+
@property
|
|
89
|
+
def closed(self) -> bool:
|
|
90
|
+
"""Whether the file is closed."""
|
|
91
|
+
return self._file.closed
|
|
92
|
+
|
|
93
|
+
def read(self, size: int = -1) -> bytes:
|
|
94
|
+
"""Read up to size bytes from the object and return them.
|
|
95
|
+
|
|
96
|
+
As a convenience, if size is unspecified or -1,
|
|
97
|
+
all bytes until EOF are returned. Fewer than
|
|
98
|
+
size bytes may be returned if EOF is reached.
|
|
99
|
+
"""
|
|
100
|
+
download_size = max(size, self._chunk_size)
|
|
101
|
+
start, length = self.tell(), self._length
|
|
102
|
+
stop = length if size < 0 else min(start + download_size, length)
|
|
103
|
+
start = max(0, stop - download_size)
|
|
104
|
+
self._download(start, stop - 1)
|
|
105
|
+
return self._file.read(size)
|
|
106
|
+
|
|
107
|
+
def readable(self) -> bool:
|
|
108
|
+
"""Return whether the file is readable, which is True."""
|
|
109
|
+
return True
|
|
110
|
+
|
|
111
|
+
def seek(self, offset: int, whence: int = 0) -> int:
|
|
112
|
+
"""Change stream position and return the new absolute position.
|
|
113
|
+
|
|
114
|
+
Seek to offset relative position indicated by whence:
|
|
115
|
+
* 0: Start of stream (the default). pos should be >= 0;
|
|
116
|
+
* 1: Current position - pos may be negative;
|
|
117
|
+
* 2: End of stream - pos usually negative.
|
|
118
|
+
"""
|
|
119
|
+
return self._file.seek(offset, whence)
|
|
120
|
+
|
|
121
|
+
def tell(self) -> int:
|
|
122
|
+
"""Return the current position."""
|
|
123
|
+
return self._file.tell()
|
|
124
|
+
|
|
125
|
+
def truncate(self, size: int | None = None) -> int:
|
|
126
|
+
"""Resize the stream to the given size in bytes.
|
|
127
|
+
|
|
128
|
+
If size is unspecified resize to the current position.
|
|
129
|
+
The current stream position isn't changed.
|
|
130
|
+
|
|
131
|
+
Return the new file size.
|
|
132
|
+
"""
|
|
133
|
+
return self._file.truncate(size)
|
|
134
|
+
|
|
135
|
+
def writable(self) -> bool:
|
|
136
|
+
"""Return False."""
|
|
137
|
+
return False
|
|
138
|
+
|
|
139
|
+
def __enter__(self) -> LazyZipOverHTTP:
|
|
140
|
+
self._file.__enter__()
|
|
141
|
+
return self
|
|
142
|
+
|
|
143
|
+
def __exit__(self, *exc: Any) -> None:
|
|
144
|
+
self._file.__exit__(*exc)
|
|
145
|
+
|
|
146
|
+
@contextmanager
|
|
147
|
+
def _stay(self) -> Generator[None, None, None]:
|
|
148
|
+
"""Return a context manager keeping the position.
|
|
149
|
+
|
|
150
|
+
At the end of the block, seek back to original position.
|
|
151
|
+
"""
|
|
152
|
+
pos = self.tell()
|
|
153
|
+
try:
|
|
154
|
+
yield
|
|
155
|
+
finally:
|
|
156
|
+
self.seek(pos)
|
|
157
|
+
|
|
158
|
+
def _check_zip(self) -> None:
|
|
159
|
+
"""Check and download until the file is a valid ZIP."""
|
|
160
|
+
end = self._length - 1
|
|
161
|
+
for start in reversed(range(0, end, self._chunk_size)):
|
|
162
|
+
self._download(start, end)
|
|
163
|
+
with self._stay():
|
|
164
|
+
try:
|
|
165
|
+
# For read-only ZIP files, ZipFile only needs
|
|
166
|
+
# methods read, seek, seekable and tell.
|
|
167
|
+
ZipFile(self)
|
|
168
|
+
except BadZipFile:
|
|
169
|
+
pass
|
|
170
|
+
else:
|
|
171
|
+
break
|
|
172
|
+
|
|
173
|
+
def _stream_response(
|
|
174
|
+
self, start: int, end: int, base_headers: dict[str, str] = HEADERS
|
|
175
|
+
) -> Response:
|
|
176
|
+
"""Return HTTP response to a range request from start to end."""
|
|
177
|
+
headers = base_headers.copy()
|
|
178
|
+
headers["Range"] = f"bytes={start}-{end}"
|
|
179
|
+
# TODO: Get range requests to be correctly cached
|
|
180
|
+
headers["Cache-Control"] = "no-cache"
|
|
181
|
+
return self._session.get(self._url, headers=headers, stream=True)
|
|
182
|
+
|
|
183
|
+
def _merge(
|
|
184
|
+
self, start: int, end: int, left: int, right: int
|
|
185
|
+
) -> Generator[tuple[int, int], None, None]:
|
|
186
|
+
"""Return a generator of intervals to be fetched.
|
|
187
|
+
|
|
188
|
+
Args:
|
|
189
|
+
start (int): Start of needed interval
|
|
190
|
+
end (int): End of needed interval
|
|
191
|
+
left (int): Index of first overlapping downloaded data
|
|
192
|
+
right (int): Index after last overlapping downloaded data
|
|
193
|
+
"""
|
|
194
|
+
lslice, rslice = self._left[left:right], self._right[left:right]
|
|
195
|
+
i = start = min([start] + lslice[:1])
|
|
196
|
+
end = max([end] + rslice[-1:])
|
|
197
|
+
for j, k in zip(lslice, rslice):
|
|
198
|
+
if j > i:
|
|
199
|
+
yield i, j - 1
|
|
200
|
+
i = k + 1
|
|
201
|
+
if i <= end:
|
|
202
|
+
yield i, end
|
|
203
|
+
self._left[left:right], self._right[left:right] = [start], [end]
|
|
204
|
+
|
|
205
|
+
def _download(self, start: int, end: int) -> None:
|
|
206
|
+
"""Download bytes from start to end inclusively."""
|
|
207
|
+
with self._stay():
|
|
208
|
+
left = bisect_left(self._right, start)
|
|
209
|
+
right = bisect_right(self._left, end)
|
|
210
|
+
for start, end in self._merge(start, end, left, right):
|
|
211
|
+
response = self._stream_response(start, end)
|
|
212
|
+
response.raise_for_status()
|
|
213
|
+
self.seek(start)
|
|
214
|
+
for chunk in response_chunks(response, self._chunk_size):
|
|
215
|
+
self._file.write(chunk)
|