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
|
@@ -0,0 +1,371 @@
|
|
|
1
|
+
import time
|
|
2
|
+
|
|
3
|
+
from .exceptions import EOF, TIMEOUT
|
|
4
|
+
|
|
5
|
+
class Expecter(object):
|
|
6
|
+
def __init__(self, spawn, searcher, searchwindowsize=-1):
|
|
7
|
+
self.spawn = spawn
|
|
8
|
+
self.searcher = searcher
|
|
9
|
+
# A value of -1 means to use the figure from spawn, which should
|
|
10
|
+
# be None or a positive number.
|
|
11
|
+
if searchwindowsize == -1:
|
|
12
|
+
searchwindowsize = spawn.searchwindowsize
|
|
13
|
+
self.searchwindowsize = searchwindowsize
|
|
14
|
+
self.lookback = None
|
|
15
|
+
if hasattr(searcher, 'longest_string'):
|
|
16
|
+
self.lookback = searcher.longest_string
|
|
17
|
+
|
|
18
|
+
def do_search(self, window, freshlen):
|
|
19
|
+
spawn = self.spawn
|
|
20
|
+
searcher = self.searcher
|
|
21
|
+
if freshlen > len(window):
|
|
22
|
+
freshlen = len(window)
|
|
23
|
+
index = searcher.search(window, freshlen, self.searchwindowsize)
|
|
24
|
+
if index >= 0:
|
|
25
|
+
spawn._buffer = spawn.buffer_type()
|
|
26
|
+
spawn._buffer.write(window[searcher.end:])
|
|
27
|
+
spawn.before = spawn._before.getvalue()[
|
|
28
|
+
0:-(len(window) - searcher.start)]
|
|
29
|
+
spawn._before = spawn.buffer_type()
|
|
30
|
+
spawn._before.write(window[searcher.end:])
|
|
31
|
+
spawn.after = window[searcher.start:searcher.end]
|
|
32
|
+
spawn.match = searcher.match
|
|
33
|
+
spawn.match_index = index
|
|
34
|
+
# Found a match
|
|
35
|
+
return index
|
|
36
|
+
elif self.searchwindowsize or self.lookback:
|
|
37
|
+
maintain = self.searchwindowsize or self.lookback
|
|
38
|
+
if spawn._buffer.tell() > maintain:
|
|
39
|
+
spawn._buffer = spawn.buffer_type()
|
|
40
|
+
spawn._buffer.write(window[-maintain:])
|
|
41
|
+
|
|
42
|
+
def existing_data(self):
|
|
43
|
+
# First call from a new call to expect_loop or expect_async.
|
|
44
|
+
# self.searchwindowsize may have changed.
|
|
45
|
+
# Treat all data as fresh.
|
|
46
|
+
spawn = self.spawn
|
|
47
|
+
before_len = spawn._before.tell()
|
|
48
|
+
buf_len = spawn._buffer.tell()
|
|
49
|
+
freshlen = before_len
|
|
50
|
+
if before_len > buf_len:
|
|
51
|
+
if not self.searchwindowsize:
|
|
52
|
+
spawn._buffer = spawn.buffer_type()
|
|
53
|
+
window = spawn._before.getvalue()
|
|
54
|
+
spawn._buffer.write(window)
|
|
55
|
+
elif buf_len < self.searchwindowsize:
|
|
56
|
+
spawn._buffer = spawn.buffer_type()
|
|
57
|
+
spawn._before.seek(
|
|
58
|
+
max(0, before_len - self.searchwindowsize))
|
|
59
|
+
window = spawn._before.read()
|
|
60
|
+
spawn._buffer.write(window)
|
|
61
|
+
else:
|
|
62
|
+
spawn._buffer.seek(max(0, buf_len - self.searchwindowsize))
|
|
63
|
+
window = spawn._buffer.read()
|
|
64
|
+
else:
|
|
65
|
+
if self.searchwindowsize:
|
|
66
|
+
spawn._buffer.seek(max(0, buf_len - self.searchwindowsize))
|
|
67
|
+
window = spawn._buffer.read()
|
|
68
|
+
else:
|
|
69
|
+
window = spawn._buffer.getvalue()
|
|
70
|
+
return self.do_search(window, freshlen)
|
|
71
|
+
|
|
72
|
+
def new_data(self, data):
|
|
73
|
+
# A subsequent call, after a call to existing_data.
|
|
74
|
+
spawn = self.spawn
|
|
75
|
+
freshlen = len(data)
|
|
76
|
+
spawn._before.write(data)
|
|
77
|
+
if not self.searchwindowsize:
|
|
78
|
+
if self.lookback:
|
|
79
|
+
# search lookback + new data.
|
|
80
|
+
old_len = spawn._buffer.tell()
|
|
81
|
+
spawn._buffer.write(data)
|
|
82
|
+
spawn._buffer.seek(max(0, old_len - self.lookback))
|
|
83
|
+
window = spawn._buffer.read()
|
|
84
|
+
else:
|
|
85
|
+
# copy the whole buffer (really slow for large datasets).
|
|
86
|
+
spawn._buffer.write(data)
|
|
87
|
+
window = spawn.buffer
|
|
88
|
+
else:
|
|
89
|
+
if len(data) >= self.searchwindowsize or not spawn._buffer.tell():
|
|
90
|
+
window = data[-self.searchwindowsize:]
|
|
91
|
+
spawn._buffer = spawn.buffer_type()
|
|
92
|
+
spawn._buffer.write(window[-self.searchwindowsize:])
|
|
93
|
+
else:
|
|
94
|
+
spawn._buffer.write(data)
|
|
95
|
+
new_len = spawn._buffer.tell()
|
|
96
|
+
spawn._buffer.seek(max(0, new_len - self.searchwindowsize))
|
|
97
|
+
window = spawn._buffer.read()
|
|
98
|
+
return self.do_search(window, freshlen)
|
|
99
|
+
|
|
100
|
+
def eof(self, err=None):
|
|
101
|
+
spawn = self.spawn
|
|
102
|
+
|
|
103
|
+
spawn.before = spawn._before.getvalue()
|
|
104
|
+
spawn._buffer = spawn.buffer_type()
|
|
105
|
+
spawn._before = spawn.buffer_type()
|
|
106
|
+
spawn.after = EOF
|
|
107
|
+
index = self.searcher.eof_index
|
|
108
|
+
if index >= 0:
|
|
109
|
+
spawn.match = EOF
|
|
110
|
+
spawn.match_index = index
|
|
111
|
+
return index
|
|
112
|
+
else:
|
|
113
|
+
spawn.match = None
|
|
114
|
+
spawn.match_index = None
|
|
115
|
+
msg = str(spawn)
|
|
116
|
+
msg += '\nsearcher: %s' % self.searcher
|
|
117
|
+
if err is not None:
|
|
118
|
+
msg = str(err) + '\n' + msg
|
|
119
|
+
|
|
120
|
+
exc = EOF(msg)
|
|
121
|
+
exc.__cause__ = None # in Python 3.x we can use "raise exc from None"
|
|
122
|
+
raise exc
|
|
123
|
+
|
|
124
|
+
def timeout(self, err=None):
|
|
125
|
+
spawn = self.spawn
|
|
126
|
+
|
|
127
|
+
spawn.before = spawn._before.getvalue()
|
|
128
|
+
spawn.after = TIMEOUT
|
|
129
|
+
index = self.searcher.timeout_index
|
|
130
|
+
if index >= 0:
|
|
131
|
+
spawn.match = TIMEOUT
|
|
132
|
+
spawn.match_index = index
|
|
133
|
+
return index
|
|
134
|
+
else:
|
|
135
|
+
spawn.match = None
|
|
136
|
+
spawn.match_index = None
|
|
137
|
+
msg = str(spawn)
|
|
138
|
+
msg += '\nsearcher: %s' % self.searcher
|
|
139
|
+
if err is not None:
|
|
140
|
+
msg = str(err) + '\n' + msg
|
|
141
|
+
|
|
142
|
+
exc = TIMEOUT(msg)
|
|
143
|
+
exc.__cause__ = None # in Python 3.x we can use "raise exc from None"
|
|
144
|
+
raise exc
|
|
145
|
+
|
|
146
|
+
def errored(self):
|
|
147
|
+
spawn = self.spawn
|
|
148
|
+
spawn.before = spawn._before.getvalue()
|
|
149
|
+
spawn.after = None
|
|
150
|
+
spawn.match = None
|
|
151
|
+
spawn.match_index = None
|
|
152
|
+
|
|
153
|
+
def expect_loop(self, timeout=-1):
|
|
154
|
+
"""Blocking expect"""
|
|
155
|
+
spawn = self.spawn
|
|
156
|
+
|
|
157
|
+
if timeout is not None:
|
|
158
|
+
end_time = time.time() + timeout
|
|
159
|
+
|
|
160
|
+
try:
|
|
161
|
+
idx = self.existing_data()
|
|
162
|
+
if idx is not None:
|
|
163
|
+
return idx
|
|
164
|
+
while True:
|
|
165
|
+
# No match at this point
|
|
166
|
+
if (timeout is not None) and (timeout < 0):
|
|
167
|
+
return self.timeout()
|
|
168
|
+
# Still have time left, so read more data
|
|
169
|
+
incoming = spawn.read_nonblocking(spawn.maxread, timeout)
|
|
170
|
+
if self.spawn.delayafterread is not None:
|
|
171
|
+
time.sleep(self.spawn.delayafterread)
|
|
172
|
+
idx = self.new_data(incoming)
|
|
173
|
+
# Keep reading until exception or return.
|
|
174
|
+
if idx is not None:
|
|
175
|
+
return idx
|
|
176
|
+
if timeout is not None:
|
|
177
|
+
timeout = end_time - time.time()
|
|
178
|
+
except EOF as e:
|
|
179
|
+
return self.eof(e)
|
|
180
|
+
except TIMEOUT as e:
|
|
181
|
+
return self.timeout(e)
|
|
182
|
+
except:
|
|
183
|
+
self.errored()
|
|
184
|
+
raise
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
class searcher_string(object):
|
|
188
|
+
'''This is a plain string search helper for the spawn.expect_any() method.
|
|
189
|
+
This helper class is for speed. For more powerful regex patterns
|
|
190
|
+
see the helper class, searcher_re.
|
|
191
|
+
|
|
192
|
+
Attributes:
|
|
193
|
+
|
|
194
|
+
eof_index - index of EOF, or -1
|
|
195
|
+
timeout_index - index of TIMEOUT, or -1
|
|
196
|
+
|
|
197
|
+
After a successful match by the search() method the following attributes
|
|
198
|
+
are available:
|
|
199
|
+
|
|
200
|
+
start - index into the buffer, first byte of match
|
|
201
|
+
end - index into the buffer, first byte after match
|
|
202
|
+
match - the matching string itself
|
|
203
|
+
|
|
204
|
+
'''
|
|
205
|
+
|
|
206
|
+
def __init__(self, strings):
|
|
207
|
+
'''This creates an instance of searcher_string. This argument 'strings'
|
|
208
|
+
may be a list; a sequence of strings; or the EOF or TIMEOUT types. '''
|
|
209
|
+
|
|
210
|
+
self.eof_index = -1
|
|
211
|
+
self.timeout_index = -1
|
|
212
|
+
self._strings = []
|
|
213
|
+
self.longest_string = 0
|
|
214
|
+
for n, s in enumerate(strings):
|
|
215
|
+
if s is EOF:
|
|
216
|
+
self.eof_index = n
|
|
217
|
+
continue
|
|
218
|
+
if s is TIMEOUT:
|
|
219
|
+
self.timeout_index = n
|
|
220
|
+
continue
|
|
221
|
+
self._strings.append((n, s))
|
|
222
|
+
if len(s) > self.longest_string:
|
|
223
|
+
self.longest_string = len(s)
|
|
224
|
+
|
|
225
|
+
def __str__(self):
|
|
226
|
+
'''This returns a human-readable string that represents the state of
|
|
227
|
+
the object.'''
|
|
228
|
+
|
|
229
|
+
ss = [(ns[0], ' %d: %r' % ns) for ns in self._strings]
|
|
230
|
+
ss.append((-1, 'searcher_string:'))
|
|
231
|
+
if self.eof_index >= 0:
|
|
232
|
+
ss.append((self.eof_index, ' %d: EOF' % self.eof_index))
|
|
233
|
+
if self.timeout_index >= 0:
|
|
234
|
+
ss.append((self.timeout_index,
|
|
235
|
+
' %d: TIMEOUT' % self.timeout_index))
|
|
236
|
+
ss.sort()
|
|
237
|
+
ss = list(zip(*ss))[1]
|
|
238
|
+
return '\n'.join(ss)
|
|
239
|
+
|
|
240
|
+
def search(self, buffer, freshlen, searchwindowsize=None):
|
|
241
|
+
'''This searches 'buffer' for the first occurrence of one of the search
|
|
242
|
+
strings. 'freshlen' must indicate the number of bytes at the end of
|
|
243
|
+
'buffer' which have not been searched before. It helps to avoid
|
|
244
|
+
searching the same, possibly big, buffer over and over again.
|
|
245
|
+
|
|
246
|
+
See class spawn for the 'searchwindowsize' argument.
|
|
247
|
+
|
|
248
|
+
If there is a match this returns the index of that string, and sets
|
|
249
|
+
'start', 'end' and 'match'. Otherwise, this returns -1. '''
|
|
250
|
+
|
|
251
|
+
first_match = None
|
|
252
|
+
|
|
253
|
+
# 'freshlen' helps a lot here. Further optimizations could
|
|
254
|
+
# possibly include:
|
|
255
|
+
#
|
|
256
|
+
# using something like the Boyer-Moore Fast String Searching
|
|
257
|
+
# Algorithm; pre-compiling the search through a list of
|
|
258
|
+
# strings into something that can scan the input once to
|
|
259
|
+
# search for all N strings; realize that if we search for
|
|
260
|
+
# ['bar', 'baz'] and the input is '...foo' we need not bother
|
|
261
|
+
# rescanning until we've read three more bytes.
|
|
262
|
+
#
|
|
263
|
+
# Sadly, I don't know enough about this interesting topic. /grahn
|
|
264
|
+
|
|
265
|
+
for index, s in self._strings:
|
|
266
|
+
if searchwindowsize is None:
|
|
267
|
+
# the match, if any, can only be in the fresh data,
|
|
268
|
+
# or at the very end of the old data
|
|
269
|
+
offset = -(freshlen + len(s))
|
|
270
|
+
else:
|
|
271
|
+
# better obey searchwindowsize
|
|
272
|
+
offset = -searchwindowsize
|
|
273
|
+
n = buffer.find(s, offset)
|
|
274
|
+
if n >= 0 and (first_match is None or n < first_match):
|
|
275
|
+
first_match = n
|
|
276
|
+
best_index, best_match = index, s
|
|
277
|
+
if first_match is None:
|
|
278
|
+
return -1
|
|
279
|
+
self.match = best_match
|
|
280
|
+
self.start = first_match
|
|
281
|
+
self.end = self.start + len(self.match)
|
|
282
|
+
return best_index
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
class searcher_re(object):
|
|
286
|
+
'''This is regular expression string search helper for the
|
|
287
|
+
spawn.expect_any() method. This helper class is for powerful
|
|
288
|
+
pattern matching. For speed, see the helper class, searcher_string.
|
|
289
|
+
|
|
290
|
+
Attributes:
|
|
291
|
+
|
|
292
|
+
eof_index - index of EOF, or -1
|
|
293
|
+
timeout_index - index of TIMEOUT, or -1
|
|
294
|
+
|
|
295
|
+
After a successful match by the search() method the following attributes
|
|
296
|
+
are available:
|
|
297
|
+
|
|
298
|
+
start - index into the buffer, first byte of match
|
|
299
|
+
end - index into the buffer, first byte after match
|
|
300
|
+
match - the re.match object returned by a successful re.search
|
|
301
|
+
|
|
302
|
+
'''
|
|
303
|
+
|
|
304
|
+
def __init__(self, patterns):
|
|
305
|
+
'''This creates an instance that searches for 'patterns' Where
|
|
306
|
+
'patterns' may be a list or other sequence of compiled regular
|
|
307
|
+
expressions, or the EOF or TIMEOUT types.'''
|
|
308
|
+
|
|
309
|
+
self.eof_index = -1
|
|
310
|
+
self.timeout_index = -1
|
|
311
|
+
self._searches = []
|
|
312
|
+
for n, s in enumerate(patterns):
|
|
313
|
+
if s is EOF:
|
|
314
|
+
self.eof_index = n
|
|
315
|
+
continue
|
|
316
|
+
if s is TIMEOUT:
|
|
317
|
+
self.timeout_index = n
|
|
318
|
+
continue
|
|
319
|
+
self._searches.append((n, s))
|
|
320
|
+
|
|
321
|
+
def __str__(self):
|
|
322
|
+
'''This returns a human-readable string that represents the state of
|
|
323
|
+
the object.'''
|
|
324
|
+
|
|
325
|
+
#ss = [(n, ' %d: re.compile("%s")' %
|
|
326
|
+
# (n, repr(s.pattern))) for n, s in self._searches]
|
|
327
|
+
ss = list()
|
|
328
|
+
for n, s in self._searches:
|
|
329
|
+
ss.append((n, ' %d: re.compile(%r)' % (n, s.pattern)))
|
|
330
|
+
ss.append((-1, 'searcher_re:'))
|
|
331
|
+
if self.eof_index >= 0:
|
|
332
|
+
ss.append((self.eof_index, ' %d: EOF' % self.eof_index))
|
|
333
|
+
if self.timeout_index >= 0:
|
|
334
|
+
ss.append((self.timeout_index, ' %d: TIMEOUT' %
|
|
335
|
+
self.timeout_index))
|
|
336
|
+
ss.sort()
|
|
337
|
+
ss = list(zip(*ss))[1]
|
|
338
|
+
return '\n'.join(ss)
|
|
339
|
+
|
|
340
|
+
def search(self, buffer, freshlen, searchwindowsize=None):
|
|
341
|
+
'''This searches 'buffer' for the first occurrence of one of the regular
|
|
342
|
+
expressions. 'freshlen' must indicate the number of bytes at the end of
|
|
343
|
+
'buffer' which have not been searched before.
|
|
344
|
+
|
|
345
|
+
See class spawn for the 'searchwindowsize' argument.
|
|
346
|
+
|
|
347
|
+
If there is a match this returns the index of that string, and sets
|
|
348
|
+
'start', 'end' and 'match'. Otherwise, returns -1.'''
|
|
349
|
+
|
|
350
|
+
first_match = None
|
|
351
|
+
# 'freshlen' doesn't help here -- we cannot predict the
|
|
352
|
+
# length of a match, and the re module provides no help.
|
|
353
|
+
if searchwindowsize is None:
|
|
354
|
+
searchstart = 0
|
|
355
|
+
else:
|
|
356
|
+
searchstart = max(0, len(buffer) - searchwindowsize)
|
|
357
|
+
for index, s in self._searches:
|
|
358
|
+
match = s.search(buffer, searchstart)
|
|
359
|
+
if match is None:
|
|
360
|
+
continue
|
|
361
|
+
n = match.start()
|
|
362
|
+
if first_match is None or n < first_match:
|
|
363
|
+
first_match = n
|
|
364
|
+
the_match = match
|
|
365
|
+
best_index = index
|
|
366
|
+
if first_match is None:
|
|
367
|
+
return -1
|
|
368
|
+
self.start = first_match
|
|
369
|
+
self.match = the_match
|
|
370
|
+
self.end = self.match.end()
|
|
371
|
+
return best_index
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
'''This is like :mod:`pexpect`, but it will work with any file descriptor that you
|
|
2
|
+
pass it. You are responsible for opening and close the file descriptor.
|
|
3
|
+
This allows you to use Pexpect with sockets and named pipes (FIFOs).
|
|
4
|
+
|
|
5
|
+
.. note::
|
|
6
|
+
socket.fileno() does not give a readable file descriptor on windows.
|
|
7
|
+
Use :mod:`pexpect.socket_pexpect` for cross-platform socket support
|
|
8
|
+
|
|
9
|
+
PEXPECT LICENSE
|
|
10
|
+
|
|
11
|
+
This license is approved by the OSI and FSF as GPL-compatible.
|
|
12
|
+
http://opensource.org/licenses/isc-license.txt
|
|
13
|
+
|
|
14
|
+
Copyright (c) 2012, Noah Spurrier <noah@noah.org>
|
|
15
|
+
PERMISSION TO USE, COPY, MODIFY, AND/OR DISTRIBUTE THIS SOFTWARE FOR ANY
|
|
16
|
+
PURPOSE WITH OR WITHOUT FEE IS HEREBY GRANTED, PROVIDED THAT THE ABOVE
|
|
17
|
+
COPYRIGHT NOTICE AND THIS PERMISSION NOTICE APPEAR IN ALL COPIES.
|
|
18
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
19
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
20
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
21
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
22
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
23
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
24
|
+
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
25
|
+
|
|
26
|
+
'''
|
|
27
|
+
|
|
28
|
+
from .spawnbase import SpawnBase
|
|
29
|
+
from .exceptions import ExceptionPexpect, TIMEOUT
|
|
30
|
+
from .utils import select_ignore_interrupts, poll_ignore_interrupts
|
|
31
|
+
import os
|
|
32
|
+
|
|
33
|
+
__all__ = ['fdspawn']
|
|
34
|
+
|
|
35
|
+
class fdspawn(SpawnBase):
|
|
36
|
+
'''This is like pexpect.spawn but allows you to supply your own open file
|
|
37
|
+
descriptor. For example, you could use it to read through a file looking
|
|
38
|
+
for patterns, or to control a modem or serial device. '''
|
|
39
|
+
|
|
40
|
+
def __init__ (self, fd, args=None, timeout=30, maxread=2000, searchwindowsize=None,
|
|
41
|
+
logfile=None, encoding=None, codec_errors='strict', use_poll=False):
|
|
42
|
+
'''This takes a file descriptor (an int) or an object that support the
|
|
43
|
+
fileno() method (returning an int). All Python file-like objects
|
|
44
|
+
support fileno(). '''
|
|
45
|
+
|
|
46
|
+
if type(fd) != type(0) and hasattr(fd, 'fileno'):
|
|
47
|
+
fd = fd.fileno()
|
|
48
|
+
|
|
49
|
+
if type(fd) != type(0):
|
|
50
|
+
raise ExceptionPexpect('The fd argument is not an int. If this is a command string then maybe you want to use pexpect.spawn.')
|
|
51
|
+
|
|
52
|
+
try: # make sure fd is a valid file descriptor
|
|
53
|
+
os.fstat(fd)
|
|
54
|
+
except OSError:
|
|
55
|
+
raise ExceptionPexpect('The fd argument is not a valid file descriptor.')
|
|
56
|
+
|
|
57
|
+
self.args = None
|
|
58
|
+
self.command = None
|
|
59
|
+
SpawnBase.__init__(self, timeout, maxread, searchwindowsize, logfile,
|
|
60
|
+
encoding=encoding, codec_errors=codec_errors)
|
|
61
|
+
self.child_fd = fd
|
|
62
|
+
self.own_fd = False
|
|
63
|
+
self.closed = False
|
|
64
|
+
self.name = '<file descriptor %d>' % fd
|
|
65
|
+
self.use_poll = use_poll
|
|
66
|
+
|
|
67
|
+
def close (self):
|
|
68
|
+
"""Close the file descriptor.
|
|
69
|
+
|
|
70
|
+
Calling this method a second time does nothing, but if the file
|
|
71
|
+
descriptor was closed elsewhere, :class:`OSError` will be raised.
|
|
72
|
+
"""
|
|
73
|
+
if self.child_fd == -1:
|
|
74
|
+
return
|
|
75
|
+
|
|
76
|
+
self.flush()
|
|
77
|
+
os.close(self.child_fd)
|
|
78
|
+
self.child_fd = -1
|
|
79
|
+
self.closed = True
|
|
80
|
+
|
|
81
|
+
def isalive (self):
|
|
82
|
+
'''This checks if the file descriptor is still valid. If :func:`os.fstat`
|
|
83
|
+
does not raise an exception then we assume it is alive. '''
|
|
84
|
+
|
|
85
|
+
if self.child_fd == -1:
|
|
86
|
+
return False
|
|
87
|
+
try:
|
|
88
|
+
os.fstat(self.child_fd)
|
|
89
|
+
return True
|
|
90
|
+
except:
|
|
91
|
+
return False
|
|
92
|
+
|
|
93
|
+
def terminate (self, force=False): # pragma: no cover
|
|
94
|
+
'''Deprecated and invalid. Just raises an exception.'''
|
|
95
|
+
raise ExceptionPexpect('This method is not valid for file descriptors.')
|
|
96
|
+
|
|
97
|
+
# These four methods are left around for backwards compatibility, but not
|
|
98
|
+
# documented as part of fdpexpect. You're encouraged to use os.write
|
|
99
|
+
# directly.
|
|
100
|
+
def send(self, s):
|
|
101
|
+
"Write to fd, return number of bytes written"
|
|
102
|
+
s = self._coerce_send_string(s)
|
|
103
|
+
self._log(s, 'send')
|
|
104
|
+
|
|
105
|
+
b = self._encoder.encode(s, final=False)
|
|
106
|
+
return os.write(self.child_fd, b)
|
|
107
|
+
|
|
108
|
+
def sendline(self, s):
|
|
109
|
+
"Write to fd with trailing newline, return number of bytes written"
|
|
110
|
+
s = self._coerce_send_string(s)
|
|
111
|
+
return self.send(s + self.linesep)
|
|
112
|
+
|
|
113
|
+
def write(self, s):
|
|
114
|
+
"Write to fd, return None"
|
|
115
|
+
self.send(s)
|
|
116
|
+
|
|
117
|
+
def writelines(self, sequence):
|
|
118
|
+
"Call self.write() for each item in sequence"
|
|
119
|
+
for s in sequence:
|
|
120
|
+
self.write(s)
|
|
121
|
+
|
|
122
|
+
def read_nonblocking(self, size=1, timeout=-1):
|
|
123
|
+
"""
|
|
124
|
+
Read from the file descriptor and return the result as a string.
|
|
125
|
+
|
|
126
|
+
The read_nonblocking method of :class:`SpawnBase` assumes that a call
|
|
127
|
+
to os.read will not block (timeout parameter is ignored). This is not
|
|
128
|
+
the case for POSIX file-like objects such as sockets and serial ports.
|
|
129
|
+
|
|
130
|
+
Use :func:`select.select`, timeout is implemented conditionally for
|
|
131
|
+
POSIX systems.
|
|
132
|
+
|
|
133
|
+
:param int size: Read at most *size* bytes.
|
|
134
|
+
:param int timeout: Wait timeout seconds for file descriptor to be
|
|
135
|
+
ready to read. When -1 (default), use self.timeout. When 0, poll.
|
|
136
|
+
:return: String containing the bytes read
|
|
137
|
+
"""
|
|
138
|
+
if os.name == 'posix':
|
|
139
|
+
if timeout == -1:
|
|
140
|
+
timeout = self.timeout
|
|
141
|
+
rlist = [self.child_fd]
|
|
142
|
+
wlist = []
|
|
143
|
+
xlist = []
|
|
144
|
+
if self.use_poll:
|
|
145
|
+
rlist = poll_ignore_interrupts(rlist, timeout)
|
|
146
|
+
else:
|
|
147
|
+
rlist, wlist, xlist = select_ignore_interrupts(
|
|
148
|
+
rlist, wlist, xlist, timeout
|
|
149
|
+
)
|
|
150
|
+
if self.child_fd not in rlist:
|
|
151
|
+
raise TIMEOUT('Timeout exceeded.')
|
|
152
|
+
return super(fdspawn, self).read_nonblocking(size)
|