highlightjs-opl 1.0.2 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/build.yaml +63 -0
- package/.gitmodules +3 -0
- package/.local/python/bin/Activate.ps1 +247 -0
- package/.local/python/bin/activate +70 -0
- package/.local/python/bin/activate.csh +27 -0
- package/.local/python/bin/activate.fish +69 -0
- package/.local/python/bin/pip +8 -0
- package/.local/python/bin/pip3 +8 -0
- package/.local/python/bin/pip3.12 +8 -0
- package/.local/python/bin/pipenv +8 -0
- package/.local/python/bin/pipenv-resolver +8 -0
- package/.local/python/bin/virtualenv +8 -0
- package/.local/python/bin/wheel +8 -0
- package/.local/python/lib/python3.12/site-packages/_distutils_hack/__init__.py +239 -0
- package/.local/python/lib/python3.12/site-packages/_distutils_hack/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/_distutils_hack/__pycache__/override.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/_distutils_hack/override.py +1 -0
- package/.local/python/lib/python3.12/site-packages/benchmarks/__pycache__/benchmark.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/benchmarks/benchmark.py +408 -0
- package/.local/python/lib/python3.12/site-packages/certifi/__init__.py +4 -0
- package/.local/python/lib/python3.12/site-packages/certifi/__main__.py +12 -0
- package/.local/python/lib/python3.12/site-packages/certifi/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/certifi/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/certifi/__pycache__/core.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/certifi/cacert.pem +4494 -0
- package/.local/python/lib/python3.12/site-packages/certifi/core.py +83 -0
- package/.local/python/lib/python3.12/site-packages/certifi/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/METADATA +78 -0
- package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/RECORD +15 -0
- package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/WHEEL +5 -0
- package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/licenses/LICENSE +20 -0
- package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/top_level.txt +1 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__init__.py +33 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/database.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/index.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/locators.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/manifest.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/markers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/resources.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/compat.py +1137 -0
- package/.local/python/lib/python3.12/site-packages/distlib/database.py +1329 -0
- package/.local/python/lib/python3.12/site-packages/distlib/index.py +508 -0
- package/.local/python/lib/python3.12/site-packages/distlib/locators.py +1295 -0
- package/.local/python/lib/python3.12/site-packages/distlib/manifest.py +384 -0
- package/.local/python/lib/python3.12/site-packages/distlib/markers.py +164 -0
- package/.local/python/lib/python3.12/site-packages/distlib/metadata.py +1031 -0
- package/.local/python/lib/python3.12/site-packages/distlib/resources.py +358 -0
- package/.local/python/lib/python3.12/site-packages/distlib/scripts.py +447 -0
- package/.local/python/lib/python3.12/site-packages/distlib/t32.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/t64-arm.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/t64.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/util.py +1984 -0
- package/.local/python/lib/python3.12/site-packages/distlib/version.py +750 -0
- package/.local/python/lib/python3.12/site-packages/distlib/w32.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/w64-arm.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/w64.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/wheel.py +1105 -0
- package/.local/python/lib/python3.12/site-packages/distlib-0.4.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/distlib-0.4.0.dist-info/LICENSE.txt +284 -0
- package/.local/python/lib/python3.12/site-packages/distlib-0.4.0.dist-info/METADATA +118 -0
- package/.local/python/lib/python3.12/site-packages/distlib-0.4.0.dist-info/RECORD +38 -0
- package/.local/python/lib/python3.12/site-packages/distlib-0.4.0.dist-info/WHEEL +6 -0
- package/.local/python/lib/python3.12/site-packages/distlib-0.4.0.dist-info/top_level.txt +1 -0
- package/.local/python/lib/python3.12/site-packages/distutils-precedence.pth +1 -0
- package/.local/python/lib/python3.12/site-packages/filelock/__init__.py +77 -0
- package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_api.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_error.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_read_write.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_soft.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_unix.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_windows.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/asyncio.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/filelock/_api.py +578 -0
- package/.local/python/lib/python3.12/site-packages/filelock/_error.py +30 -0
- package/.local/python/lib/python3.12/site-packages/filelock/_read_write.py +363 -0
- package/.local/python/lib/python3.12/site-packages/filelock/_soft.py +127 -0
- package/.local/python/lib/python3.12/site-packages/filelock/_unix.py +109 -0
- package/.local/python/lib/python3.12/site-packages/filelock/_util.py +53 -0
- package/.local/python/lib/python3.12/site-packages/filelock/_windows.py +100 -0
- package/.local/python/lib/python3.12/site-packages/filelock/asyncio.py +376 -0
- package/.local/python/lib/python3.12/site-packages/filelock/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/filelock/version.py +34 -0
- package/.local/python/lib/python3.12/site-packages/filelock-3.24.3.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/filelock-3.24.3.dist-info/METADATA +38 -0
- package/.local/python/lib/python3.12/site-packages/filelock-3.24.3.dist-info/RECORD +26 -0
- package/.local/python/lib/python3.12/site-packages/filelock-3.24.3.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/filelock-3.24.3.dist-info/licenses/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__init__.py +15 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/markers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/pylock.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/tags.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/_elffile.py +108 -0
- package/.local/python/lib/python3.12/site-packages/packaging/_manylinux.py +262 -0
- package/.local/python/lib/python3.12/site-packages/packaging/_musllinux.py +85 -0
- package/.local/python/lib/python3.12/site-packages/packaging/_parser.py +365 -0
- package/.local/python/lib/python3.12/site-packages/packaging/_structures.py +69 -0
- package/.local/python/lib/python3.12/site-packages/packaging/_tokenizer.py +193 -0
- package/.local/python/lib/python3.12/site-packages/packaging/licenses/__init__.py +147 -0
- package/.local/python/lib/python3.12/site-packages/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/licenses/_spdx.py +799 -0
- package/.local/python/lib/python3.12/site-packages/packaging/markers.py +388 -0
- package/.local/python/lib/python3.12/site-packages/packaging/metadata.py +978 -0
- package/.local/python/lib/python3.12/site-packages/packaging/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/pylock.py +635 -0
- package/.local/python/lib/python3.12/site-packages/packaging/requirements.py +86 -0
- package/.local/python/lib/python3.12/site-packages/packaging/specifiers.py +1068 -0
- package/.local/python/lib/python3.12/site-packages/packaging/tags.py +651 -0
- package/.local/python/lib/python3.12/site-packages/packaging/utils.py +158 -0
- package/.local/python/lib/python3.12/site-packages/packaging/version.py +792 -0
- package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/METADATA +107 -0
- package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/RECORD +42 -0
- package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/licenses/LICENSE +3 -0
- package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/licenses/LICENSE.APACHE +177 -0
- package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/licenses/LICENSE.BSD +23 -0
- package/.local/python/lib/python3.12/site-packages/pip/__init__.py +13 -0
- package/.local/python/lib/python3.12/site-packages/pip/__main__.py +24 -0
- package/.local/python/lib/python3.12/site-packages/pip/__pip-runner__.py +50 -0
- package/.local/python/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/__init__.py +18 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/build_env.py +606 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cache.py +291 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__init__.py +3 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py +184 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/base_command.py +255 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py +1267 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/command_context.py +28 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/index_command.py +195 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/main.py +85 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py +136 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/parser.py +358 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py +153 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/req_command.py +447 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/spinners.py +235 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py +6 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__init__.py +139 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/lock.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/cache.py +255 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/check.py +66 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/completion.py +136 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/configuration.py +288 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/debug.py +203 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/download.py +146 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/freeze.py +107 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/hash.py +58 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/help.py +40 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/index.py +166 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/inspect.py +92 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/install.py +810 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/list.py +398 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/lock.py +175 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/search.py +178 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/show.py +231 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py +113 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/wheel.py +171 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/configuration.py +396 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py +21 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/base.py +55 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/installed.py +33 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py +164 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py +44 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/exceptions.py +971 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/index/__init__.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/index/collector.py +488 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/index/package_finder.py +1125 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/index/sources.py +287 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/__init__.py +440 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py +173 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py +218 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/base.py +82 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/main.py +12 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py +169 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/_json.py +87 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/base.py +685 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py +6 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py +87 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py +229 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py +143 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py +298 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__init__.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/release_control.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/candidate.py +25 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/direct_url.py +227 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/format_control.py +78 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/index.py +28 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/installation_report.py +57 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/link.py +617 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/release_control.py +92 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/scheme.py +25 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/search_scope.py +126 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py +56 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/target_python.py +122 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/wheel.py +80 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__init__.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/auth.py +568 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/cache.py +128 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/download.py +341 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py +215 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/session.py +532 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/utils.py +98 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py +61 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py +140 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py +38 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py +41 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py +38 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py +47 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/check.py +175 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/freeze.py +259 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py +745 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/prepare.py +747 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/pyproject.py +123 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__init__.py +103 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/pep723.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_dependency_group.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/constructors.py +568 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/pep723.py +41 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/req_dependency_group.py +75 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/req_file.py +631 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/req_install.py +828 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/req_set.py +81 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py +639 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/base.py +20 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py +598 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py +142 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py +591 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py +856 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +166 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py +285 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py +98 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py +251 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py +332 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py +255 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/pylock.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py +109 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/_log.py +38 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py +52 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/compat.py +85 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py +201 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/datetime.py +28 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py +126 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py +87 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py +81 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py +88 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py +203 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py +24 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/glibc.py +102 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/hashes.py +150 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/logging.py +396 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/misc.py +771 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/packaging.py +44 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/pylock.py +116 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/retry.py +45 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py +248 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py +294 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py +362 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/urls.py +55 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py +105 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/wheel.py +132 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py +15 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py +130 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/git.py +571 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py +186 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py +335 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py +695 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/wheel_builder.py +261 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/README.rst +180 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/__init__.py +117 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py +32 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py +70 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py +167 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py +75 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +8 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +145 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +48 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py +511 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py +121 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py +157 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py +146 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py +43 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/LICENSE +20 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py +4 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py +12 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem +4468 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/core.py +83 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/LICENSE.txt +9 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__init__.py +13 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__main__.py +65 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/_implementation.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/_lint_dependency_groups.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/_pip_wrapper.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/_toml_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_implementation.py +209 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_lint_dependency_groups.py +59 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_pip_wrapper.py +62 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_toml_compat.py +9 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/LICENSE.txt +284 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py +33 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py +1137 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py +358 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py +447 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/t32.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/t64-arm.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/t64.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/util.py +1984 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/w32.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/w64-arm.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/w64.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/LICENSE +202 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py +54 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py +4 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/distro.py +1403 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/LICENSE.md +31 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py +45 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/codec.py +122 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/compat.py +15 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/core.py +437 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py +4309 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py +57 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py +8841 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/COPYING +14 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py +55 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py +48 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py +170 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py +929 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE +3 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE.APACHE +177 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE.BSD +23 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py +15 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/pylock.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/_elffile.py +108 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py +262 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py +85 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py +365 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py +69 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py +193 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__init__.py +147 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/_spdx.py +799 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py +388 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py +978 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/pylock.py +635 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py +86 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py +1068 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py +651 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py +158 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/version.py +792 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pkg_resources/LICENSE +17 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py +3676 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py +631 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py +55 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py +249 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py +299 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py +146 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py +272 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py +34 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py +278 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/LICENSE +25 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py +82 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py +17 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/console.py +70 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py +70 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py +940 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatter.py +129 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py +157 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py +23 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexer.py +963 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py +362 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py +602 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py +1201 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/modeline.py +43 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/plugin.py +72 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/regexopt.py +91 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/scanner.py +104 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py +247 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/style.py +203 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py +61 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/styles/_mapping.py +54 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/token.py +214 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py +153 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/util.py +324 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py +31 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py +410 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +21 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +389 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/LICENSE +175 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py +179 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py +14 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py +50 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py +696 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/api.py +157 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/auth.py +314 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/certs.py +17 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/compat.py +90 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/cookies.py +561 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/exceptions.py +151 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/help.py +127 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/hooks.py +33 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/models.py +1039 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/packages.py +25 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/sessions.py +831 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/status_codes.py +128 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/structures.py +99 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/utils.py +1086 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/LICENSE +13 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py +27 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/providers.py +196 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py +55 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__init__.py +27 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/abstract.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/criterion.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/resolution.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/abstract.py +47 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/criterion.py +48 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/exceptions.py +57 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/resolution.py +627 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py +209 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/LICENSE +19 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py +177 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py +245 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py +454 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py +3610 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py +32 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_export_format.py +76 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py +10 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py +24 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py +268 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py +94 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py +43 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py +69 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py +309 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py +17 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py +153 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py +482 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py +16 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py +19 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py +661 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py +71 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py +56 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py +93 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/abc.py +33 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/align.py +306 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py +241 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/bar.py +93 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/box.py +474 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/cells.py +174 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/color.py +621 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py +38 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/columns.py +187 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/console.py +2680 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py +37 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/containers.py +167 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/control.py +219 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py +193 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py +39 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py +91 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/errors.py +34 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py +57 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py +88 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py +232 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/json.py +139 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/jupyter.py +101 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/layout.py +442 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/live.py +400 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/live_render.py +106 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/logging.py +297 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/markup.py +251 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/measure.py +151 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/padding.py +141 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/pager.py +34 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/palette.py +100 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/panel.py +317 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/pretty.py +1016 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/progress.py +1715 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/progress_bar.py +223 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/prompt.py +400 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/protocol.py +42 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/region.py +10 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/repr.py +149 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/rule.py +130 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/scope.py +86 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/screen.py +54 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/segment.py +752 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/spinner.py +132 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/status.py +131 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/style.py +792 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/styled.py +42 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/syntax.py +985 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/table.py +1006 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/terminal_theme.py +153 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/text.py +1361 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/theme.py +115 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/themes.py +5 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/traceback.py +899 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/tree.py +257 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/__init__.py +8 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/_parser.py +777 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/_re.py +115 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/_types.py +10 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/py.typed +1 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/__init__.py +4 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/__pycache__/_writer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/_writer.py +229 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/py.typed +1 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__init__.py +36 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/_api.py +341 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/_macos.py +571 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/_openssl.py +68 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/_ssl_constants.py +31 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/_windows.py +567 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/LICENSE.txt +21 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__init__.py +102 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_collections.py +355 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_version.py +2 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/connection.py +572 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py +1140 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +36 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +519 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +397 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/appengine.py +314 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +130 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +518 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +920 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/socks.py +216 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/exceptions.py +323 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/fields.py +274 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/filepost.py +98 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +51 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +155 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/six.py +1076 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/poolmanager.py +540 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/request.py +191 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/response.py +879 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__init__.py +49 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/connection.py +149 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/proxy.py +57 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/queue.py +22 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/request.py +137 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/response.py +107 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/retry.py +622 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_.py +504 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +159 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssltransport.py +221 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/timeout.py +271 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/url.py +435 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py +152 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/vendor.txt +19 -0
- package/.local/python/lib/python3.12/site-packages/pip/py.typed +4 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/METADATA +111 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/RECORD +878 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/entry_points.txt +4 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/AUTHORS.txt +860 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/LICENSE.txt +20 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/certifi/LICENSE +20 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/dependency_groups/LICENSE.txt +9 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/distlib/LICENSE.txt +284 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/distro/LICENSE +202 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/idna/LICENSE.md +31 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/msgpack/COPYING +14 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE +3 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.APACHE +177 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.BSD +23 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pkg_resources/LICENSE +17 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/platformdirs/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pygments/LICENSE +25 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pyproject_hooks/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/requests/LICENSE +175 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/resolvelib/LICENSE +13 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/rich/LICENSE +19 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/tomli/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/tomli_w/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/truststore/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/urllib3/LICENSE.txt +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__init__.py +49 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__main__.py +4 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/__version__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/cmdparse.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/environment.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/environments.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/help.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/installers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/pep508checker.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/project.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/resolver.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/shells.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__version__.py +5 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/cli/__init__.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/cli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/cli/__pycache__/command.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/cli/__pycache__/options.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/cli/command.py +1208 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/cli/options.py +635 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/cmdparse.py +134 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/environment.py +832 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/environments.py +449 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/exceptions.py +411 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/help.py +86 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/installers.py +233 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/README.md +11 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/patched.txt +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/COPYING +14 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/LICENSE.APACHE +177 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/LICENSE.BSD +23 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/LICENSE.md +31 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/LICENSE.txt +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/__init__.py +13 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/__main__.py +32 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/__pip-runner__.py +50 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/__pycache__/__pip-runner__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__init__.py +18 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/build_env.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/configuration.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/main.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/pyproject.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/build_env.py +417 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cache.py +291 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__init__.py +3 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/main.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/autocompletion.py +184 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/base_command.py +244 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/cmdoptions.py +1110 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/command_context.py +28 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/index_command.py +175 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/main.py +80 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/main_parser.py +134 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/parser.py +298 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/progress_bars.py +151 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/req_command.py +371 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/spinners.py +235 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/status_codes.py +6 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__init__.py +139 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/check.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/completion.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/debug.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/download.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/hash.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/help.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/index.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/install.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/list.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/lock.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/search.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/show.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/cache.py +233 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/check.py +68 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/completion.py +137 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/configuration.py +288 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/debug.py +203 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/download.py +144 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/freeze.py +109 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/hash.py +60 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/help.py +42 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/index.py +159 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/inspect.py +94 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/install.py +803 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/list.py +400 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/lock.py +169 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/search.py +178 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/show.py +231 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/uninstall.py +115 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/wheel.py +178 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/configuration.py +396 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/__init__.py +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/base.py +55 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/installed.py +33 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/sdist.py +164 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/wheel.py +44 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/exceptions.py +898 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/__init__.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/__pycache__/collector.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/__pycache__/sources.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/collector.py +494 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/package_finder.py +1090 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/sources.py +287 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/__init__.py +441 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/_distutils.py +173 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/_sysconfig.py +215 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/base.py +82 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/main.py +12 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/__init__.py +169 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/_json.py +87 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/base.py +685 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/__init__.py +6 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/_compat.py +87 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/_dists.py +229 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/_envs.py +143 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/pkg_resources.py +298 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__init__.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/candidate.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/format_control.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/index.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/link.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/pylock.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/scheme.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/target_python.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/candidate.py +25 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/direct_url.py +227 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/format_control.py +78 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/index.py +28 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/installation_report.py +59 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/link.py +613 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/pylock.py +188 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/scheme.py +25 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/search_scope.py +137 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/selection_prefs.py +53 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/target_python.py +122 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/wheel.py +80 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__init__.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/auth.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/download.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/session.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/auth.py +564 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/cache.py +128 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/download.py +342 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/lazy_wheel.py +215 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/session.py +528 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/utils.py +100 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/xmlrpc.py +62 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/__pycache__/check.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/build_tracker.py +140 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/metadata.py +38 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/metadata_editable.py +41 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/wheel.py +38 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/wheel_editable.py +47 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/check.py +175 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/freeze.py +259 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/install/__init__.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/install/wheel.py +746 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/prepare.py +748 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/pyproject.py +123 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__init__.py +103 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/constructors.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/req_dependency_group.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/req_file.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/req_install.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/req_set.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/constructors.py +566 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/req_dependency_group.py +77 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/req_file.py +619 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/req_install.py +828 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/req_set.py +83 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/req_uninstall.py +639 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/base.py +22 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/legacy/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/legacy/resolver.py +598 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/base.py +142 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/candidates.py +595 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/factory.py +845 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/found_candidates.py +166 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/provider.py +285 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/reporter.py +98 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/requirements.py +247 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/resolver.py +332 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/self_outdated_check.py +262 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/_log.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/logging.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/misc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/retry.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/urls.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/_jaraco_text.py +109 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/_log.py +38 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/appdirs.py +53 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/compat.py +85 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/compatibility_tags.py +201 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/datetime.py +10 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/deprecation.py +126 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/direct_url_helpers.py +87 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/egg_link.py +81 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/entrypoints.py +88 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/filesystem.py +164 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/filetypes.py +25 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/glibc.py +102 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/hashes.py +150 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/logging.py +364 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/misc.py +765 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/packaging.py +44 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/retry.py +45 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/subprocess.py +248 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/temp_dir.py +294 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/unpacking.py +362 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/urls.py +55 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/virtualenv.py +105 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/wheel.py +133 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__init__.py +15 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__pycache__/git.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/bazaar.py +130 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/git.py +571 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/mercurial.py +186 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/subversion.py +335 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/versioncontrol.py +693 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/wheel_builder.py +261 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/__init__.py +117 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__init__.py +29 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/_cmd.py +70 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/adapter.py +168 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/cache.py +75 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/caches/__init__.py +8 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/caches/file_cache.py +145 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/caches/redis_cache.py +48 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/controller.py +511 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/filewrapper.py +119 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/heuristics.py +157 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/serialize.py +146 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/wrapper.py +43 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/LICENSE +20 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/__init__.py +4 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/__main__.py +12 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/cacert.pem +4800 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/core.py +83 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/LICENSE.txt +9 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__init__.py +13 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__main__.py +65 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__pycache__/_implementation.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__pycache__/_lint_dependency_groups.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__pycache__/_pip_wrapper.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__pycache__/_toml_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/_implementation.py +209 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/_lint_dependency_groups.py +59 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/_pip_wrapper.py +62 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/_toml_compat.py +9 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/LICENSE.txt +284 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/__init__.py +33 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/compat.py +1137 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/resources.py +358 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/scripts.py +447 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/t32.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/t64-arm.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/t64.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/util.py +1984 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/w32.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/w64-arm.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/w64.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/LICENSE +202 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/__init__.py +54 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/__main__.py +4 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/distro.py +1403 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/LICENSE.md +31 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__init__.py +45 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/core.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/codec.py +122 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/compat.py +15 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/core.py +437 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/idnadata.py +4243 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/intranges.py +57 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/package_data.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/uts46data.py +8681 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/COPYING +14 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/__init__.py +55 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/exceptions.py +48 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/ext.py +170 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/fallback.py +929 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/LICENSE +3 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/LICENSE.APACHE +177 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/LICENSE.BSD +23 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__init__.py +15 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/_elffile.py +109 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/_manylinux.py +262 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/_musllinux.py +85 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/_parser.py +353 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/_structures.py +61 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/_tokenizer.py +195 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/licenses/__init__.py +145 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/licenses/_spdx.py +759 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/markers.py +362 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/metadata.py +862 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/requirements.py +91 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/specifiers.py +1019 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/tags.py +656 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/utils.py +163 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/version.py +582 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pkg_resources/LICENSE +17 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pkg_resources/LICENSE.txt +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pkg_resources/__init__.py +3676 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__init__.py +631 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__main__.py +55 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/android.py +249 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/api.py +299 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/macos.py +146 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/unix.py +272 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/version.py +34 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/windows.py +272 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__init__.py +82 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__main__.py +17 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/console.py +70 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/filter.py +70 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/filters/__init__.py +940 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/formatter.py +129 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/formatters/__init__.py +157 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/formatters/_mapping.py +23 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexer.py +963 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexers/__init__.py +362 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexers/_mapping.py +602 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexers/python.py +1201 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/modeline.py +43 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/plugin.py +72 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/regexopt.py +91 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/scanner.py +104 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/sphinxext.py +247 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/style.py +203 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/styles/__init__.py +61 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/styles/_mapping.py +54 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/token.py +214 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/unistring.py +153 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/util.py +324 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/__init__.py +31 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/_impl.py +410 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/_in_process/__init__.py +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +389 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/LICENSE +175 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__init__.py +179 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/api.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/help.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/models.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__version__.py +14 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/_internal_utils.py +50 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/adapters.py +696 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/api.py +157 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/auth.py +314 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/certs.py +17 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/compat.py +90 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/cookies.py +561 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/exceptions.py +151 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/help.py +127 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/hooks.py +33 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/models.py +1039 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/packages.py +25 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/sessions.py +831 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/status_codes.py +128 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/structures.py +99 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/utils.py +1086 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/LICENSE +13 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/__init__.py +27 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/providers.py +196 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/reporters.py +55 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/__init__.py +27 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/__pycache__/abstract.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/__pycache__/criterion.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/__pycache__/resolution.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/abstract.py +47 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/criterion.py +48 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/exceptions.py +57 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/resolution.py +627 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/structs.py +209 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__init__.py +177 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__main__.py +245 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/align.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/box.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/color.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/console.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/control.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/json.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/live.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/region.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/status.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/style.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/table.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/text.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_cell_widths.py +454 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_emoji_codes.py +3610 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_emoji_replace.py +32 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_export_format.py +76 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_extension.py +10 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_fileno.py +24 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_inspect.py +268 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_log_render.py +94 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_loop.py +43 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_null_file.py +69 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_palettes.py +309 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_pick.py +17 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_ratio.py +153 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_spinners.py +482 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_stack.py +16 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_timer.py +19 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_win32_console.py +661 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_windows.py +71 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_windows_renderer.py +56 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_wrap.py +93 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/abc.py +33 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/align.py +306 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/ansi.py +241 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/bar.py +93 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/box.py +474 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/cells.py +174 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/color.py +621 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/color_triplet.py +38 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/columns.py +187 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/console.py +2680 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/constrain.py +37 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/containers.py +167 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/control.py +219 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/default_styles.py +193 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/diagnose.py +39 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/emoji.py +91 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/errors.py +34 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/file_proxy.py +57 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/filesize.py +88 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/highlighter.py +232 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/json.py +139 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/jupyter.py +101 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/layout.py +442 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/live.py +400 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/live_render.py +106 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/logging.py +297 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/markup.py +251 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/measure.py +151 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/padding.py +141 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/pager.py +34 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/palette.py +100 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/panel.py +317 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/pretty.py +1016 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/progress.py +1715 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/progress_bar.py +223 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/prompt.py +400 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/protocol.py +42 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/region.py +10 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/repr.py +149 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/rule.py +130 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/scope.py +86 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/screen.py +54 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/segment.py +752 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/spinner.py +132 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/status.py +131 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/style.py +792 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/styled.py +42 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/syntax.py +985 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/table.py +1006 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/terminal_theme.py +153 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/text.py +1361 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/theme.py +115 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/themes.py +5 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/traceback.py +899 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/tree.py +257 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/__init__.py +8 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/_parser.py +777 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/_re.py +115 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/_types.py +10 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/py.typed +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli_w/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli_w/__init__.py +4 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli_w/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli_w/__pycache__/_writer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli_w/_writer.py +229 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli_w/py.typed +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__init__.py +36 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/_api.py +343 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/_macos.py +573 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/_openssl.py +70 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/_ssl_constants.py +31 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/_windows.py +569 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/LICENSE.txt +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__init__.py +102 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/_collections.py +355 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/_version.py +2 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/connection.py +572 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/connectionpool.py +1140 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_appengine_environ.py +36 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +519 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +397 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/appengine.py +314 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/ntlmpool.py +130 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/pyopenssl.py +518 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/securetransport.py +920 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/socks.py +216 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/exceptions.py +323 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/fields.py +274 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/filepost.py +98 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/backports/makefile.py +51 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +155 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/six.py +1076 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/poolmanager.py +540 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/request.py +191 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/response.py +879 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__init__.py +49 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/connection.py +149 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/proxy.py +57 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/queue.py +22 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/request.py +137 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/response.py +107 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/retry.py +622 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/ssl_.py +504 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/ssl_match_hostname.py +159 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/ssltransport.py +221 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/timeout.py +271 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/url.py +435 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/wait.py +152 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/vendor.txt +19 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/py.typed +4 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/pep508checker.py +39 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/pipenv.1 +567 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/project.py +1687 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/resolver.py +512 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/audit.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/check.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/clean.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/clear.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/graph.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/install.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/lock.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/outdated.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/requirements.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/scan.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/shell.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/sync.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/uninstall.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/update.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/audit.py +242 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/check.py +444 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/clean.py +77 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/clear.py +37 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/graph.py +111 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/install.py +728 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/lock.py +108 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/outdated.py +92 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/requirements.py +134 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/scan.py +508 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/shell.py +192 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/sync.py +64 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/uninstall.py +218 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/update.py +676 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/shells.py +342 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__init__.py +8 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/constants.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/dependencies.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/display.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/environment.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/fileutils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/funktools.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/indexes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/internet.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/locking.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/markers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/pip.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/pipfile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/processes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/project.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/pylock.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/requirements.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/requirementslib.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/resolver.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/shell.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/toml.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/virtualenv.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/constants.py +50 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/dependencies.py +1413 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/display.py +54 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/environment.py +52 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/exceptions.py +97 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/fileutils.py +248 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/funktools.py +452 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/indexes.py +132 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/internet.py +146 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/locking.py +543 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/markers.py +663 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/pip.py +147 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/pipfile.py +414 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/processes.py +77 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/project.py +121 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/pylock.py +752 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/requirements.py +389 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/requirementslib.py +732 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/resolver.py +1172 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/shell.py +558 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/toml.py +140 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/virtualenv.py +531 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/Makefile +14 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/README.md +28 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/LICENSE.txt +28 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__init__.py +123 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/_termui_impl.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/_textwrap.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/_utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/_winconsole.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/core.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/decorators.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/formatting.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/globals.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/shell_completion.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/termui.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/testing.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/types.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/_compat.py +622 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/_termui_impl.py +852 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/_textwrap.py +51 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/_utils.py +36 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/_winconsole.py +296 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/core.py +3415 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/decorators.py +551 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/exceptions.py +308 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/formatting.py +301 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/globals.py +67 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/parser.py +532 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/shell_completion.py +667 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/termui.py +883 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/testing.py +577 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/types.py +1209 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/utils.py +627 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click_didyoumean/LICENSE +19 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click_didyoumean/__init__.py +66 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click_didyoumean/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__init__.py +7 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__pycache__/ansi.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__pycache__/ansitowin32.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__pycache__/initialise.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__pycache__/win32.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__pycache__/winterm.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/ansi.py +102 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/ansitowin32.py +277 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/initialise.py +121 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__init__.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/ansi_test.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/initialise_test.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/isatty_test.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/winterm_test.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/ansi_test.py +76 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/ansitowin32_test.py +294 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/initialise_test.py +189 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/isatty_test.py +57 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/utils.py +49 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/winterm_test.py +131 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/win32.py +180 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/winterm.py +195 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__init__.py +51 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__pycache__/ipython.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__pycache__/main.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__pycache__/parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__pycache__/variables.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/ipython.py +50 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/main.py +435 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/parser.py +182 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/py.typed +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/variables.py +86 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/version.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__init__.py +1175 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_adapters.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_collections.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_functools.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_itertools.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_meta.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_text.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_typing.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/diagnose.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_adapters.py +135 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_collections.py +34 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_compat.py +56 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_functools.py +104 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_itertools.py +171 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_meta.py +71 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_text.py +99 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_typing.py +15 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/compat/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/compat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/compat/__pycache__/py311.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/compat/__pycache__/py39.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/compat/py311.py +22 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/compat/py39.py +42 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/diagnose.py +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/LICENSE +3 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/LICENSE.APACHE +177 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/LICENSE.BSD +23 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__init__.py +15 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/markers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/tags.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/_elffile.py +109 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/_manylinux.py +262 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/_musllinux.py +85 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/_parser.py +353 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/_structures.py +61 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/_tokenizer.py +195 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/licenses/__init__.py +145 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/licenses/_spdx.py +759 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/markers.py +362 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/metadata.py +862 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/requirements.py +91 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/specifiers.py +1019 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/tags.py +656 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/utils.py +163 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/version.py +582 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/ANSI.py +351 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/FSM.py +334 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/LICENSE +20 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__init__.py +91 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/ANSI.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/FSM.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/_async.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/_async_pre_await.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/_async_w_await.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/expect.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/fdpexpect.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/popen_spawn.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/pty_spawn.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/pxssh.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/replwrap.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/run.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/screen.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/socket_pexpect.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/spawnbase.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/_async.py +28 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/_async_pre_await.py +111 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/_async_w_await.py +118 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/exceptions.py +35 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/expect.py +371 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/fdpexpect.py +152 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/popen_spawn.py +188 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/pty_spawn.py +860 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/pxssh.py +540 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/replwrap.py +136 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/run.py +157 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/screen.py +431 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/socket_pexpect.py +145 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/spawnbase.py +536 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/utils.py +187 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__main__.py +92 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/_cli.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/_detect_env.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/_discovery.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/_freeze.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/_validate.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/_warning.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_cli.py +227 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_detect_env.py +101 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_discovery.py +154 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_freeze.py +89 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_models/__init__.py +11 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_models/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_models/__pycache__/dag.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_models/__pycache__/package.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_models/dag.py +365 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_models/package.py +251 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__init__.py +41 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/freeze.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/graphviz.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/json.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/json_tree.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/mermaid.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/text.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/freeze.py +43 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/graphviz.py +107 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/json.py +32 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/json_tree.py +60 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/mermaid.py +113 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/text.py +153 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_validate.py +119 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_warning.py +78 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/version.py +34 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/LICENSE +13 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/__init__.py +9 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/__pycache__/lockfiles.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/__pycache__/pipfiles.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/lockfiles.py +177 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__init__.py +26 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/hashes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/packages.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/sections.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/sources.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/base.py +130 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/hashes.py +69 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/packages.py +56 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/scripts.py +71 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/sections.py +138 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/sources.py +45 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/pipfiles.py +168 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/LICENSE +16 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/__init__.py +4 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/__pycache__/_fork_pty.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/__pycache__/ptyprocess.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/__pycache__/util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/_fork_pty.py +78 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/ptyprocess.py +842 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/util.py +71 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/python_dotenv.LICENSE +27 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/LICENSE.txt +20 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/__init__.py +9 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/__pycache__/environment.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/__pycache__/main.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/__pycache__/pythonfinder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/environment.py +115 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/exceptions.py +13 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__init__.py +24 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/asdf_finder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/base_finder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/path_finder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/py_launcher_finder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/pyenv_finder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/system_finder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/windows_registry.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/asdf_finder.py +72 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/base_finder.py +188 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/path_finder.py +226 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/py_launcher_finder.py +226 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/pyenv_finder.py +73 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/system_finder.py +82 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/windows_registry.py +499 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/main.py +15 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/models/__init__.py +5 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/models/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/models/__pycache__/python_info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/models/python_info.py +175 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/pythonfinder.py +227 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/utils/__init__.py +35 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/utils/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/utils/__pycache__/path_utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/utils/__pycache__/version_utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/utils/path_utils.py +287 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/utils/version_utils.py +233 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ruamel/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ruamel/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/LICENSE +13 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/__init__.py +23 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/__pycache__/_core.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/__pycache__/nt.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/_core.py +11 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/nt.py +163 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/__init__.py +112 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/__pycache__/_core.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/__pycache__/proc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/__pycache__/ps.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/_core.py +3 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/proc.py +83 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/ps.py +51 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/LICENSE +20 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__init__.py +59 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/_types.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/_utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/api.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/container.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/items.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/source.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/toml_char.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/toml_document.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/toml_file.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/_compat.py +22 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/_types.py +82 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/_utils.py +158 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/api.py +310 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/container.py +894 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/exceptions.py +234 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/items.py +1960 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/parser.py +1141 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/source.py +180 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/toml_char.py +52 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/toml_document.py +7 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/toml_file.py +58 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/vendor.txt +14 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/__init__.py +456 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/__pycache__/_functools.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/__pycache__/glob.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/_functools.py +20 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/__pycache__/overlay.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/__pycache__/py310.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/__pycache__/py313.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/overlay.py +37 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/py310.py +13 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/py313.py +34 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/glob.py +116 -0
- package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/METADATA +434 -0
- package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/RECORD +1318 -0
- package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/WHEEL +5 -0
- package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/entry_points.txt +3 -0
- package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/licenses/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/licenses/NOTICES +5 -0
- package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/top_level.txt +2 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/__init__.py +857 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/__main__.py +61 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/_xdg.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/android.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/api.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/macos.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/unix.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/windows.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/_xdg.py +143 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/android.py +273 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/api.py +394 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/macos.py +187 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/unix.py +293 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/version.py +34 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/windows.py +369 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs-4.9.2.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs-4.9.2.dist-info/METADATA +100 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs-4.9.2.dist-info/RECORD +24 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs-4.9.2.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs-4.9.2.dist-info/licenses/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/__init__.py +26 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_cached_py_info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_discovery.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_py_info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_py_spec.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_specifier.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_cache.py +185 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_cached_py_info.py +259 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_compat.py +29 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_discovery.py +335 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_py_info.py +787 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_py_spec.py +262 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_specifier.py +311 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_windows/__init__.py +13 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_windows/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_windows/__pycache__/_pep514.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_windows/__pycache__/_propose.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_windows/_pep514.py +222 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_windows/_propose.py +53 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery-1.1.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery-1.1.0.dist-info/METADATA +71 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery-1.1.0.dist-info/RECORD +28 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery-1.1.0.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery-1.1.0.dist-info/licenses/LICENSE +18 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__init__.py +256 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_core_metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_discovery.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_entry_points.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_imp.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_importlib.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_itertools.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_normalization.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_path.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_reqs.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_shutil.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_static.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/archive_util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/build_meta.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/depends.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/discovery.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/dist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/errors.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/extension.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/glob.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/installer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/launch.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/logging.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/modified.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/monkey.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/msvc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/namespaces.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/unicode_utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/warnings.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/windows_support.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_core_metadata.py +337 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_discovery.py +33 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__init__.py +14 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_log.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_macos_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_modified.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/archive_util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/ccompiler.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/cmd.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/core.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/cygwinccompiler.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/debug.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/dep_util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/dir_util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/dist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/errors.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/extension.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/fancy_getopt.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/file_util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/filelist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/log.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/sysconfig.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/text_file.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/unixccompiler.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/versionpredicate.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/zosccompiler.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/_log.py +3 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/_macos_compat.py +12 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/_modified.py +95 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/_msvccompiler.py +16 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/archive_util.py +284 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/ccompiler.py +26 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/cmd.py +535 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__init__.py +23 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/_framework_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/bdist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/bdist_dumb.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/bdist_rpm.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/build.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/build_clib.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/build_ext.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/build_py.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/build_scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/check.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/clean.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/config.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install_data.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install_egg_info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install_headers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install_lib.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install_scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/sdist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/_framework_compat.py +54 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/bdist.py +167 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/bdist_dumb.py +141 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/bdist_rpm.py +597 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/build.py +156 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/build_clib.py +199 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/build_ext.py +811 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/build_py.py +404 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/build_scripts.py +150 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/check.py +152 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/clean.py +76 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/config.py +348 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/install.py +805 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/install_data.py +94 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/install_egg_info.py +90 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/install_headers.py +46 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/install_lib.py +236 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/install_scripts.py +59 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/sdist.py +521 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compat/__init__.py +18 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compat/__pycache__/numpy.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compat/__pycache__/py39.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compat/numpy.py +2 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compat/py39.py +66 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/__pycache__/cygwin.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/__pycache__/errors.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/__pycache__/msvc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/__pycache__/unix.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/__pycache__/zos.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/base.py +1386 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/cygwin.py +340 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/errors.py +24 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/msvc.py +614 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/__pycache__/test_base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/__pycache__/test_cygwin.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/__pycache__/test_mingw.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/__pycache__/test_msvc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/__pycache__/test_unix.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/test_base.py +83 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/test_cygwin.py +76 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/test_mingw.py +48 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/test_msvc.py +136 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/test_unix.py +413 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/unix.py +422 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/zos.py +230 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/core.py +289 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/cygwinccompiler.py +31 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/debug.py +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/dep_util.py +14 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/dir_util.py +232 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/dist.py +1384 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/errors.py +108 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/extension.py +258 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/fancy_getopt.py +471 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/file_util.py +228 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/filelist.py +431 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/log.py +56 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/spawn.py +130 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/sysconfig.py +598 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__init__.py +42 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/support.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_archive_util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist_dumb.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist_rpm.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_clib.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_ext.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_py.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_check.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_clean.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_cmd.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_config_cmd.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_core.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_dir_util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_dist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_extension.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_file_util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_filelist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_data.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_headers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_lib.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_log.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_modified.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_sdist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_spawn.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_sysconfig.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_text_file.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_versionpredicate.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/unix_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/__pycache__/py39.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/py39.py +40 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/support.py +134 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_archive_util.py +342 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_bdist.py +47 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_bdist_dumb.py +78 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_bdist_rpm.py +127 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build.py +49 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_clib.py +134 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_ext.py +628 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_py.py +196 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_scripts.py +96 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_check.py +194 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_clean.py +45 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_cmd.py +107 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_config_cmd.py +87 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_core.py +130 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_dir_util.py +139 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_dist.py +552 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_extension.py +117 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_file_util.py +95 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_filelist.py +336 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install.py +245 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_data.py +74 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_headers.py +33 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_lib.py +110 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_scripts.py +52 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_log.py +12 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_modified.py +126 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_sdist.py +470 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_spawn.py +141 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_sysconfig.py +319 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_text_file.py +127 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_util.py +243 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_version.py +80 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_versionpredicate.py +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/unix_compat.py +17 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/text_file.py +286 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/unixccompiler.py +9 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/util.py +506 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/version.py +348 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/versionpredicate.py +175 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/zosccompiler.py +3 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_entry_points.py +94 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_imp.py +87 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_importlib.py +9 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_itertools.py +23 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_normalization.py +180 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_path.py +93 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_reqs.py +42 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_scripts.py +361 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_shutil.py +59 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_static.py +188 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/.lock +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__init__.py +27 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/autoasync.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/autocommand.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/automain.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/autoparse.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/errors.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/autoasync.py +142 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/autocommand.py +70 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/automain.py +59 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/autoparse.py +333 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/errors.py +23 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/LICENSE +166 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/METADATA +420 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/RECORD +13 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/WHEEL +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/top_level.txt +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/__init__.py +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__init__.py +2937 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__main__.py +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/__pycache__/py38.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/py38.py +24 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/LICENSE +17 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/METADATA +46 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/RECORD +12 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/WHEEL +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/top_level.txt +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__init__.py +1191 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_adapters.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_collections.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_functools.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_itertools.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_meta.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_text.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_typing.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/diagnose.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py +136 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_collections.py +34 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_compat.py +56 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_functools.py +135 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_itertools.py +171 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_meta.py +71 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_text.py +99 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_typing.py +15 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/py311.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/py39.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/py311.py +22 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/py39.py +42 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/diagnose.py +21 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/METADATA +133 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/RECORD +21 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/WHEEL +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/licenses/LICENSE +73 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/top_level.txt +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/context/__init__.py +367 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/context/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/context/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/__init__.py +722 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/__init__.pyi +123 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/Lorem ipsum.txt +2 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__init__.py +647 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/layouts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/show-newlines.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/strip-prefix.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/to-dvorak.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/to-qwerty.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/layouts.py +25 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/show-newlines.py +32 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/strip-prefix.py +21 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/to-dvorak.py +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/to-qwerty.py +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/LICENSE +17 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/METADATA +96 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/RECORD +14 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/WHEEL +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/top_level.txt +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/METADATA +82 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/RECORD +9 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/WHEEL +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/licenses/LICENSE +18 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/top_level.txt +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/METADATA +69 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/RECORD +10 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/WHEEL +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/licenses/LICENSE +18 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/top_level.txt +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__init__.py +6 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__init__.pyi +2 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__pycache__/more.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/more.py +5303 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/more.pyi +949 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/recipes.py +1471 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/recipes.pyi +205 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.8.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.8.0.dist-info/METADATA +283 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.8.0.dist-info/RECORD +13 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.8.0.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.8.0.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.8.0.dist-info/licenses/LICENSE +19 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__init__.py +15 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/pylock.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/tags.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/_elffile.py +108 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/_manylinux.py +262 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/_musllinux.py +85 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/_parser.py +365 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/_structures.py +69 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/_tokenizer.py +193 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/licenses/__init__.py +147 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/licenses/_spdx.py +799 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/markers.py +388 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/metadata.py +978 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/pylock.py +635 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/requirements.py +86 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/specifiers.py +1068 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/tags.py +651 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/utils.py +158 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/version.py +792 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/METADATA +107 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/RECORD +26 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/licenses/LICENSE +3 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/licenses/LICENSE.APACHE +177 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/licenses/LICENSE.BSD +23 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__init__.py +631 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__main__.py +55 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/android.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/api.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/android.py +249 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/api.py +299 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/macos.py +146 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/unix.py +272 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/version.py +34 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/windows.py +272 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.4.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.4.0.dist-info/METADATA +350 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.4.0.dist-info/RECORD +15 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.4.0.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.4.0.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.4.0.dist-info/licenses/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/__init__.py +8 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/__pycache__/_parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/__pycache__/_re.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/__pycache__/_types.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/_parser.py +782 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/_re.py +119 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/_types.py +10 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/py.typed +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.4.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.4.0.dist-info/METADATA +270 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.4.0.dist-info/RECORD +11 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.4.0.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.4.0.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.4.0.dist-info/licenses/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__init__.py +3 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__main__.py +25 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/_bdist_wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/_metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/_setuptools_logging.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/bdist_wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/macosx_libfile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/wheelfile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_bdist_wheel.py +616 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/__init__.py +153 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/__pycache__/convert.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/__pycache__/pack.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/__pycache__/tags.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/__pycache__/unpack.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/convert.py +337 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/pack.py +84 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/tags.py +140 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/unpack.py +30 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_metadata.py +184 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_setuptools_logging.py +26 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/bdist_wheel.py +26 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/macosx_libfile.py +486 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/metadata.py +17 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/wheelfile.py +241 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/METADATA +69 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/RECORD +22 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/entry_points.txt +6 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/licenses/LICENSE.txt +21 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/__init__.py +456 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/__pycache__/_functools.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/__pycache__/glob.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/_functools.py +20 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__pycache__/overlay.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__pycache__/py310.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__pycache__/py313.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/overlay.py +37 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/py310.py +13 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/py313.py +34 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/glob.py +116 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/METADATA +106 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/RECORD +14 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/WHEEL +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/licenses/LICENSE +18 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/top_level.txt +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/archive_util.py +219 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/build_meta.py +556 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/cli-32.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/cli-64.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/cli-arm64.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/cli.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__init__.py +21 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/_requirestxt.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/alias.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/bdist_wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/build.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/build_clib.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/build_ext.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/build_py.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/develop.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/dist_info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/easy_install.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/editable_wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/egg_info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/install.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/install_lib.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/install_scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/rotate.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/saveopts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/sdist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/setopt.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/test.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/_requirestxt.py +131 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/alias.py +77 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/bdist_egg.py +471 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/bdist_rpm.py +42 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/bdist_wheel.py +603 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/build.py +135 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/build_clib.py +103 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/build_ext.py +470 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/build_py.py +403 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/develop.py +58 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/dist_info.py +103 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/easy_install.py +30 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/editable_wheel.py +914 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/egg_info.py +716 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/install.py +131 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/install_egg_info.py +57 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/install_lib.py +137 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/install_scripts.py +66 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/launcher manifest.xml +15 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/rotate.py +64 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/saveopts.py +21 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/sdist.py +218 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/setopt.py +139 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/test.py +47 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/compat/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/compat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/compat/__pycache__/py310.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/compat/__pycache__/py311.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/compat/__pycache__/py312.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/compat/__pycache__/py39.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/compat/py310.py +20 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/compat/py311.py +27 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/compat/py312.py +13 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/compat/py39.py +9 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/NOTICE +10 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/__init__.py +43 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/__pycache__/_apply_pyprojecttoml.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/__pycache__/expand.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/__pycache__/pyprojecttoml.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/__pycache__/setupcfg.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py +526 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/NOTICE +438 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__init__.py +34 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__pycache__/error_reporting.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__pycache__/extra_validations.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_validations.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__pycache__/formats.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/error_reporting.py +336 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/extra_validations.py +82 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_exceptions.py +51 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py +1412 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/formats.py +402 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/distutils.schema.json +26 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/expand.py +452 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/pyprojecttoml.py +468 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/setupcfg.py +782 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/setuptools.schema.json +433 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/depends.py +185 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/discovery.py +614 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/dist.py +1124 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/errors.py +67 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/extension.py +179 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/glob.py +185 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/gui-32.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/gui-64.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/gui-arm64.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/gui.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/installer.py +155 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/launch.py +36 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/logging.py +40 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/modified.py +18 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/monkey.py +126 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/msvc.py +1557 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/namespaces.py +101 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/script (dev).tmpl +6 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/script.tmpl +3 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__init__.py +13 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/contexts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/environment.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/fixtures.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/mod_with_constant.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/namespaces.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/script-with-bom.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_archive_util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_bdist_deprecations.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_bdist_egg.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_bdist_wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_clib.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_ext.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_meta.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_py.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_config_discovery.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_core_metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_depends.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_develop.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_dist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_dist_info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_distutils_adoption.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_editable_install.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_egg_info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_extern.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_find_packages.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_find_py_modules.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_glob.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_install_scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_logging.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_manifest.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_namespaces.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_sdist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_setopt.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_setuptools.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_shutil_wrapper.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_unicode_utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_virtualenv.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_warnings.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_windows_wrappers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/text.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/textwrap.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/compat/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/compat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/compat/__pycache__/py39.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/compat/py39.py +3 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_apply_pyprojecttoml.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_expand.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_pyprojecttoml.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_pyprojecttoml_dynamic_deps.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_setupcfg.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/downloads/__init__.py +59 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/downloads/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/downloads/__pycache__/preload.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/downloads/preload.py +18 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/setupcfg_examples.txt +22 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/test_apply_pyprojecttoml.py +774 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/test_expand.py +247 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/test_pyprojecttoml.py +398 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/test_pyprojecttoml_dynamic_deps.py +111 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/test_setupcfg.py +987 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/contexts.py +131 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/environment.py +95 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/fixtures.py +406 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/indexes/test_links_priority/external.html +3 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/indexes/test_links_priority/simple/foobar/index.html +4 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/helpers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/test_pbr.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/test_pip_install_sdist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/helpers.py +80 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/test_pbr.py +20 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/test_pip_install_sdist.py +223 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/mod_with_constant.py +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/namespaces.py +90 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/script-with-bom.py +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_archive_util.py +36 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_bdist_deprecations.py +28 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_bdist_egg.py +73 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_bdist_wheel.py +708 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_build.py +33 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_build_clib.py +84 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_build_ext.py +293 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_build_meta.py +959 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_build_py.py +480 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_config_discovery.py +647 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_core_metadata.py +550 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_depends.py +15 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_develop.py +113 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_dist.py +280 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_dist_info.py +147 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_distutils_adoption.py +198 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_editable_install.py +1261 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_egg_info.py +1306 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_extern.py +15 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_find_packages.py +218 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_find_py_modules.py +73 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_glob.py +45 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_install_scripts.py +89 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_logging.py +76 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_manifest.py +622 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_namespaces.py +79 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_scripts.py +12 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_sdist.py +980 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_setopt.py +40 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_setuptools.py +290 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_shutil_wrapper.py +23 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_unicode_utils.py +10 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_virtualenv.py +113 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_warnings.py +106 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_wheel.py +690 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_windows_wrappers.py +258 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/text.py +4 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/textwrap.py +6 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/unicode_utils.py +102 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/version.py +6 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/warnings.py +110 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/wheel.py +262 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/windows_support.py +30 -0
- package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/METADATA +141 -0
- package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/RECORD +759 -0
- package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/WHEEL +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/entry_points.txt +51 -0
- package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/licenses/LICENSE +17 -0
- package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/top_level.txt +2 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/__init__.py +10 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/__main__.py +92 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/__pycache__/info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/__pycache__/report.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/__init__.py +19 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/__pycache__/activator.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/__pycache__/via_template.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/activator.py +61 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/bash/__init__.py +32 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/bash/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/bash/activate.sh +132 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/batch/__init__.py +38 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/batch/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/batch/activate.bat +59 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/batch/deactivate.bat +30 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/batch/pydoc.bat +1 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/cshell/__init__.py +24 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/cshell/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/cshell/activate.csh +74 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/fish/__init__.py +29 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/fish/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/fish/activate.fish +118 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/nushell/__init__.py +51 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/nushell/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/nushell/activate.nu +89 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/powershell/__init__.py +30 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/powershell/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/powershell/activate.ps1 +213 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/python/__init__.py +39 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/python/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/python/__pycache__/activate_this.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/python/activate_this.py +45 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/via_template.py +99 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__init__.py +81 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__pycache__/na.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__pycache__/read_only.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__pycache__/via_disk_folder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__pycache__/via_tempdir.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/base.py +167 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/na.py +78 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/read_only.py +47 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/via_disk_folder.py +181 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/via_tempdir.py +38 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/__pycache__/convert.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/__pycache__/env_var.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/__pycache__/ini.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/cli/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/cli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/cli/__pycache__/parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/cli/parser.py +158 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/convert.py +105 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/env_var.py +38 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/ini.py +83 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/__pycache__/creator.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/__pycache__/debug.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/__pycache__/describe.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/__pycache__/pyenv_cfg.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/creator.py +289 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/debug.py +103 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/describe.py +116 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/pyenv_cfg.py +79 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/__pycache__/_virtualenv.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/__pycache__/api.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/__pycache__/store.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/__pycache__/venv.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/_virtualenv.py +128 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/api.py +142 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/__pycache__/builtin_way.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/__pycache__/ref.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/__pycache__/via_global_self_do.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/builtin_way.py +25 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/__pycache__/common.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/__pycache__/cpython3.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/__pycache__/mac_os.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/common.py +99 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/cpython3.py +220 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/mac_os.py +290 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/graalpy/__init__.py +99 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/graalpy/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/pypy/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/pypy/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/pypy/__pycache__/common.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/pypy/__pycache__/pypy3.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/pypy/common.py +61 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/pypy/pypy3.py +83 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/ref.py +181 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/rustpython/__init__.py +53 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/rustpython/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/via_global_self_do.py +135 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/store.py +32 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/venv.py +112 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__pycache__/builtin.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__pycache__/cached_py_info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__pycache__/discover.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__pycache__/py_info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__pycache__/py_spec.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/builtin.py +87 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/cached_py_info.py +10 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/discover.py +43 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/py_info.py +9 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/py_spec.py +9 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/info.py +72 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/report.py +50 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/__init__.py +197 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/__pycache__/session.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__pycache__/activators.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__pycache__/creators.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__pycache__/discovery.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__pycache__/seeders.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/activators.py +74 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/base.py +77 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/creators.py +98 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/discovery.py +60 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/seeders.py +51 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/session.py +121 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/__pycache__/seeder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/__pycache__/base_embed.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/__pycache__/pip_invoke.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/base_embed.py +150 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/pip_invoke.py +83 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/__pycache__/via_app_data.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/__pycache__/copy.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/__pycache__/symlink.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/base.py +214 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/copy.py +44 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/symlink.py +62 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/via_app_data.py +160 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/seeder.py +53 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/__init__.py +11 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/__pycache__/acquire.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/__pycache__/bundle.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/__pycache__/periodic_update.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/__pycache__/util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/acquire.py +150 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/bundle.py +65 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/__init__.py +60 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/pip-25.0.1-py3-none-any.whl +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/pip-26.0.1-py3-none-any.whl +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/setuptools-75.3.4-py3-none-any.whl +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/setuptools-82.0.0-py3-none-any.whl +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/wheel-0.45.1-py3-none-any.whl +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/periodic_update.py +458 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/util.py +125 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/__pycache__/error.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/__pycache__/lock.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/__pycache__/zipapp.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/error.py +14 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/lock.py +188 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/__init__.py +16 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/__pycache__/_permission.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/__pycache__/_sync.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/__pycache__/_win.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/_permission.py +34 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/_sync.py +90 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/_win.py +23 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/subprocess/__init__.py +48 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/subprocess/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/zipapp.py +47 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/version.py +34 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv-21.1.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv-21.1.0.dist-info/METADATA +65 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv-21.1.0.dist-info/RECORD +203 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv-21.1.0.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv-21.1.0.dist-info/entry_points.txt +31 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv-21.1.0.dist-info/licenses/LICENSE +20 -0
- package/.local/python/lib/python3.12/site-packages/wheel/__init__.py +3 -0
- package/.local/python/lib/python3.12/site-packages/wheel/__main__.py +25 -0
- package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/_bdist_wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/_metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/_setuptools_logging.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/bdist_wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/macosx_libfile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/wheelfile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_bdist_wheel.py +616 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_commands/__init__.py +153 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_commands/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_commands/__pycache__/convert.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_commands/__pycache__/pack.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_commands/__pycache__/tags.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_commands/__pycache__/unpack.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_commands/convert.py +337 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_commands/pack.py +84 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_commands/tags.py +140 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_commands/unpack.py +30 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_metadata.py +184 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_setuptools_logging.py +26 -0
- package/.local/python/lib/python3.12/site-packages/wheel/bdist_wheel.py +26 -0
- package/.local/python/lib/python3.12/site-packages/wheel/macosx_libfile.py +486 -0
- package/.local/python/lib/python3.12/site-packages/wheel/metadata.py +17 -0
- package/.local/python/lib/python3.12/site-packages/wheel/wheelfile.py +241 -0
- package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/METADATA +69 -0
- package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/RECORD +36 -0
- package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/entry_points.txt +6 -0
- package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/licenses/LICENSE.txt +21 -0
- package/.local/python/pyvenv.cfg +5 -0
- package/.tool-versions +2 -0
- package/README.md +5 -0
- package/package.json +1 -1
- package/scripts/changes/.github/workflows/test.yaml +58 -0
- package/scripts/changes/Pipfile +14 -0
- package/scripts/changes/README.md +45 -0
- package/scripts/changes/changes +27 -0
- package/scripts/changes/changes.py +890 -0
- package/scripts/changes/cli.py +80 -0
- package/scripts/changes/examples/gh-release.sh +38 -0
- package/scripts/changes/scripts/release.sh +28 -0
- package/scripts/changes/scripts/test.sh +54 -0
- package/scripts/changes/templates/multiple.markdown +9 -0
- package/scripts/changes/templates/single.markdown +9 -0
- package/scripts/changes/tests/common.py +195 -0
- package/scripts/changes/tests/test_cli.py +1064 -0
- package/scripts/changes/tests/test_common.py +73 -0
- package/scripts/changes/tests/test_history.py +114 -0
- package/scripts/changes/tests/test_version.py +199 -0
- package/scripts/environment.sh +33 -0
- package/scripts/install-dependencies.sh +52 -0
- package/scripts/release.sh +87 -0
- package/scripts/upload-and-publish-release.sh +38 -0
package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/LICENSE.txt
ADDED
|
@@ -0,0 +1,284 @@
|
|
|
1
|
+
A. HISTORY OF THE SOFTWARE
|
|
2
|
+
==========================
|
|
3
|
+
|
|
4
|
+
Python was created in the early 1990s by Guido van Rossum at Stichting
|
|
5
|
+
Mathematisch Centrum (CWI, see http://www.cwi.nl) in the Netherlands
|
|
6
|
+
as a successor of a language called ABC. Guido remains Python's
|
|
7
|
+
principal author, although it includes many contributions from others.
|
|
8
|
+
|
|
9
|
+
In 1995, Guido continued his work on Python at the Corporation for
|
|
10
|
+
National Research Initiatives (CNRI, see http://www.cnri.reston.va.us)
|
|
11
|
+
in Reston, Virginia where he released several versions of the
|
|
12
|
+
software.
|
|
13
|
+
|
|
14
|
+
In May 2000, Guido and the Python core development team moved to
|
|
15
|
+
BeOpen.com to form the BeOpen PythonLabs team. In October of the same
|
|
16
|
+
year, the PythonLabs team moved to Digital Creations (now Zope
|
|
17
|
+
Corporation, see http://www.zope.com). In 2001, the Python Software
|
|
18
|
+
Foundation (PSF, see http://www.python.org/psf/) was formed, a
|
|
19
|
+
non-profit organization created specifically to own Python-related
|
|
20
|
+
Intellectual Property. Zope Corporation is a sponsoring member of
|
|
21
|
+
the PSF.
|
|
22
|
+
|
|
23
|
+
All Python releases are Open Source (see http://www.opensource.org for
|
|
24
|
+
the Open Source Definition). Historically, most, but not all, Python
|
|
25
|
+
releases have also been GPL-compatible; the table below summarizes
|
|
26
|
+
the various releases.
|
|
27
|
+
|
|
28
|
+
Release Derived Year Owner GPL-
|
|
29
|
+
from compatible? (1)
|
|
30
|
+
|
|
31
|
+
0.9.0 thru 1.2 1991-1995 CWI yes
|
|
32
|
+
1.3 thru 1.5.2 1.2 1995-1999 CNRI yes
|
|
33
|
+
1.6 1.5.2 2000 CNRI no
|
|
34
|
+
2.0 1.6 2000 BeOpen.com no
|
|
35
|
+
1.6.1 1.6 2001 CNRI yes (2)
|
|
36
|
+
2.1 2.0+1.6.1 2001 PSF no
|
|
37
|
+
2.0.1 2.0+1.6.1 2001 PSF yes
|
|
38
|
+
2.1.1 2.1+2.0.1 2001 PSF yes
|
|
39
|
+
2.2 2.1.1 2001 PSF yes
|
|
40
|
+
2.1.2 2.1.1 2002 PSF yes
|
|
41
|
+
2.1.3 2.1.2 2002 PSF yes
|
|
42
|
+
2.2.1 2.2 2002 PSF yes
|
|
43
|
+
2.2.2 2.2.1 2002 PSF yes
|
|
44
|
+
2.2.3 2.2.2 2003 PSF yes
|
|
45
|
+
2.3 2.2.2 2002-2003 PSF yes
|
|
46
|
+
2.3.1 2.3 2002-2003 PSF yes
|
|
47
|
+
2.3.2 2.3.1 2002-2003 PSF yes
|
|
48
|
+
2.3.3 2.3.2 2002-2003 PSF yes
|
|
49
|
+
2.3.4 2.3.3 2004 PSF yes
|
|
50
|
+
2.3.5 2.3.4 2005 PSF yes
|
|
51
|
+
2.4 2.3 2004 PSF yes
|
|
52
|
+
2.4.1 2.4 2005 PSF yes
|
|
53
|
+
2.4.2 2.4.1 2005 PSF yes
|
|
54
|
+
2.4.3 2.4.2 2006 PSF yes
|
|
55
|
+
2.4.4 2.4.3 2006 PSF yes
|
|
56
|
+
2.5 2.4 2006 PSF yes
|
|
57
|
+
2.5.1 2.5 2007 PSF yes
|
|
58
|
+
2.5.2 2.5.1 2008 PSF yes
|
|
59
|
+
2.5.3 2.5.2 2008 PSF yes
|
|
60
|
+
2.6 2.5 2008 PSF yes
|
|
61
|
+
2.6.1 2.6 2008 PSF yes
|
|
62
|
+
2.6.2 2.6.1 2009 PSF yes
|
|
63
|
+
2.6.3 2.6.2 2009 PSF yes
|
|
64
|
+
2.6.4 2.6.3 2009 PSF yes
|
|
65
|
+
2.6.5 2.6.4 2010 PSF yes
|
|
66
|
+
3.0 2.6 2008 PSF yes
|
|
67
|
+
3.0.1 3.0 2009 PSF yes
|
|
68
|
+
3.1 3.0.1 2009 PSF yes
|
|
69
|
+
3.1.1 3.1 2009 PSF yes
|
|
70
|
+
3.1.2 3.1 2010 PSF yes
|
|
71
|
+
3.2 3.1 2010 PSF yes
|
|
72
|
+
|
|
73
|
+
Footnotes:
|
|
74
|
+
|
|
75
|
+
(1) GPL-compatible doesn't mean that we're distributing Python under
|
|
76
|
+
the GPL. All Python licenses, unlike the GPL, let you distribute
|
|
77
|
+
a modified version without making your changes open source. The
|
|
78
|
+
GPL-compatible licenses make it possible to combine Python with
|
|
79
|
+
other software that is released under the GPL; the others don't.
|
|
80
|
+
|
|
81
|
+
(2) According to Richard Stallman, 1.6.1 is not GPL-compatible,
|
|
82
|
+
because its license has a choice of law clause. According to
|
|
83
|
+
CNRI, however, Stallman's lawyer has told CNRI's lawyer that 1.6.1
|
|
84
|
+
is "not incompatible" with the GPL.
|
|
85
|
+
|
|
86
|
+
Thanks to the many outside volunteers who have worked under Guido's
|
|
87
|
+
direction to make these releases possible.
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON
|
|
91
|
+
===============================================================
|
|
92
|
+
|
|
93
|
+
PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
|
|
94
|
+
--------------------------------------------
|
|
95
|
+
|
|
96
|
+
1. This LICENSE AGREEMENT is between the Python Software Foundation
|
|
97
|
+
("PSF"), and the Individual or Organization ("Licensee") accessing and
|
|
98
|
+
otherwise using this software ("Python") in source or binary form and
|
|
99
|
+
its associated documentation.
|
|
100
|
+
|
|
101
|
+
2. Subject to the terms and conditions of this License Agreement, PSF hereby
|
|
102
|
+
grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,
|
|
103
|
+
analyze, test, perform and/or display publicly, prepare derivative works,
|
|
104
|
+
distribute, and otherwise use Python alone or in any derivative version,
|
|
105
|
+
provided, however, that PSF's License Agreement and PSF's notice of copyright,
|
|
106
|
+
i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
|
|
107
|
+
Python Software Foundation; All Rights Reserved" are retained in Python alone or
|
|
108
|
+
in any derivative version prepared by Licensee.
|
|
109
|
+
|
|
110
|
+
3. In the event Licensee prepares a derivative work that is based on
|
|
111
|
+
or incorporates Python or any part thereof, and wants to make
|
|
112
|
+
the derivative work available to others as provided herein, then
|
|
113
|
+
Licensee hereby agrees to include in any such work a brief summary of
|
|
114
|
+
the changes made to Python.
|
|
115
|
+
|
|
116
|
+
4. PSF is making Python available to Licensee on an "AS IS"
|
|
117
|
+
basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
|
|
118
|
+
IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND
|
|
119
|
+
DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
|
|
120
|
+
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT
|
|
121
|
+
INFRINGE ANY THIRD PARTY RIGHTS.
|
|
122
|
+
|
|
123
|
+
5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
|
|
124
|
+
FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
|
|
125
|
+
A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,
|
|
126
|
+
OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
|
|
127
|
+
|
|
128
|
+
6. This License Agreement will automatically terminate upon a material
|
|
129
|
+
breach of its terms and conditions.
|
|
130
|
+
|
|
131
|
+
7. Nothing in this License Agreement shall be deemed to create any
|
|
132
|
+
relationship of agency, partnership, or joint venture between PSF and
|
|
133
|
+
Licensee. This License Agreement does not grant permission to use PSF
|
|
134
|
+
trademarks or trade name in a trademark sense to endorse or promote
|
|
135
|
+
products or services of Licensee, or any third party.
|
|
136
|
+
|
|
137
|
+
8. By copying, installing or otherwise using Python, Licensee
|
|
138
|
+
agrees to be bound by the terms and conditions of this License
|
|
139
|
+
Agreement.
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0
|
|
143
|
+
-------------------------------------------
|
|
144
|
+
|
|
145
|
+
BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1
|
|
146
|
+
|
|
147
|
+
1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an
|
|
148
|
+
office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the
|
|
149
|
+
Individual or Organization ("Licensee") accessing and otherwise using
|
|
150
|
+
this software in source or binary form and its associated
|
|
151
|
+
documentation ("the Software").
|
|
152
|
+
|
|
153
|
+
2. Subject to the terms and conditions of this BeOpen Python License
|
|
154
|
+
Agreement, BeOpen hereby grants Licensee a non-exclusive,
|
|
155
|
+
royalty-free, world-wide license to reproduce, analyze, test, perform
|
|
156
|
+
and/or display publicly, prepare derivative works, distribute, and
|
|
157
|
+
otherwise use the Software alone or in any derivative version,
|
|
158
|
+
provided, however, that the BeOpen Python License is retained in the
|
|
159
|
+
Software, alone or in any derivative version prepared by Licensee.
|
|
160
|
+
|
|
161
|
+
3. BeOpen is making the Software available to Licensee on an "AS IS"
|
|
162
|
+
basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
|
|
163
|
+
IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND
|
|
164
|
+
DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
|
|
165
|
+
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT
|
|
166
|
+
INFRINGE ANY THIRD PARTY RIGHTS.
|
|
167
|
+
|
|
168
|
+
4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE
|
|
169
|
+
SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS
|
|
170
|
+
AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY
|
|
171
|
+
DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
|
|
172
|
+
|
|
173
|
+
5. This License Agreement will automatically terminate upon a material
|
|
174
|
+
breach of its terms and conditions.
|
|
175
|
+
|
|
176
|
+
6. This License Agreement shall be governed by and interpreted in all
|
|
177
|
+
respects by the law of the State of California, excluding conflict of
|
|
178
|
+
law provisions. Nothing in this License Agreement shall be deemed to
|
|
179
|
+
create any relationship of agency, partnership, or joint venture
|
|
180
|
+
between BeOpen and Licensee. This License Agreement does not grant
|
|
181
|
+
permission to use BeOpen trademarks or trade names in a trademark
|
|
182
|
+
sense to endorse or promote products or services of Licensee, or any
|
|
183
|
+
third party. As an exception, the "BeOpen Python" logos available at
|
|
184
|
+
http://www.pythonlabs.com/logos.html may be used according to the
|
|
185
|
+
permissions granted on that web page.
|
|
186
|
+
|
|
187
|
+
7. By copying, installing or otherwise using the software, Licensee
|
|
188
|
+
agrees to be bound by the terms and conditions of this License
|
|
189
|
+
Agreement.
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1
|
|
193
|
+
---------------------------------------
|
|
194
|
+
|
|
195
|
+
1. This LICENSE AGREEMENT is between the Corporation for National
|
|
196
|
+
Research Initiatives, having an office at 1895 Preston White Drive,
|
|
197
|
+
Reston, VA 20191 ("CNRI"), and the Individual or Organization
|
|
198
|
+
("Licensee") accessing and otherwise using Python 1.6.1 software in
|
|
199
|
+
source or binary form and its associated documentation.
|
|
200
|
+
|
|
201
|
+
2. Subject to the terms and conditions of this License Agreement, CNRI
|
|
202
|
+
hereby grants Licensee a nonexclusive, royalty-free, world-wide
|
|
203
|
+
license to reproduce, analyze, test, perform and/or display publicly,
|
|
204
|
+
prepare derivative works, distribute, and otherwise use Python 1.6.1
|
|
205
|
+
alone or in any derivative version, provided, however, that CNRI's
|
|
206
|
+
License Agreement and CNRI's notice of copyright, i.e., "Copyright (c)
|
|
207
|
+
1995-2001 Corporation for National Research Initiatives; All Rights
|
|
208
|
+
Reserved" are retained in Python 1.6.1 alone or in any derivative
|
|
209
|
+
version prepared by Licensee. Alternately, in lieu of CNRI's License
|
|
210
|
+
Agreement, Licensee may substitute the following text (omitting the
|
|
211
|
+
quotes): "Python 1.6.1 is made available subject to the terms and
|
|
212
|
+
conditions in CNRI's License Agreement. This Agreement together with
|
|
213
|
+
Python 1.6.1 may be located on the Internet using the following
|
|
214
|
+
unique, persistent identifier (known as a handle): 1895.22/1013. This
|
|
215
|
+
Agreement may also be obtained from a proxy server on the Internet
|
|
216
|
+
using the following URL: http://hdl.handle.net/1895.22/1013".
|
|
217
|
+
|
|
218
|
+
3. In the event Licensee prepares a derivative work that is based on
|
|
219
|
+
or incorporates Python 1.6.1 or any part thereof, and wants to make
|
|
220
|
+
the derivative work available to others as provided herein, then
|
|
221
|
+
Licensee hereby agrees to include in any such work a brief summary of
|
|
222
|
+
the changes made to Python 1.6.1.
|
|
223
|
+
|
|
224
|
+
4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS"
|
|
225
|
+
basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
|
|
226
|
+
IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND
|
|
227
|
+
DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
|
|
228
|
+
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT
|
|
229
|
+
INFRINGE ANY THIRD PARTY RIGHTS.
|
|
230
|
+
|
|
231
|
+
5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
|
|
232
|
+
1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
|
|
233
|
+
A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1,
|
|
234
|
+
OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
|
|
235
|
+
|
|
236
|
+
6. This License Agreement will automatically terminate upon a material
|
|
237
|
+
breach of its terms and conditions.
|
|
238
|
+
|
|
239
|
+
7. This License Agreement shall be governed by the federal
|
|
240
|
+
intellectual property law of the United States, including without
|
|
241
|
+
limitation the federal copyright law, and, to the extent such
|
|
242
|
+
U.S. federal law does not apply, by the law of the Commonwealth of
|
|
243
|
+
Virginia, excluding Virginia's conflict of law provisions.
|
|
244
|
+
Notwithstanding the foregoing, with regard to derivative works based
|
|
245
|
+
on Python 1.6.1 that incorporate non-separable material that was
|
|
246
|
+
previously distributed under the GNU General Public License (GPL), the
|
|
247
|
+
law of the Commonwealth of Virginia shall govern this License
|
|
248
|
+
Agreement only as to issues arising under or with respect to
|
|
249
|
+
Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this
|
|
250
|
+
License Agreement shall be deemed to create any relationship of
|
|
251
|
+
agency, partnership, or joint venture between CNRI and Licensee. This
|
|
252
|
+
License Agreement does not grant permission to use CNRI trademarks or
|
|
253
|
+
trade name in a trademark sense to endorse or promote products or
|
|
254
|
+
services of Licensee, or any third party.
|
|
255
|
+
|
|
256
|
+
8. By clicking on the "ACCEPT" button where indicated, or by copying,
|
|
257
|
+
installing or otherwise using Python 1.6.1, Licensee agrees to be
|
|
258
|
+
bound by the terms and conditions of this License Agreement.
|
|
259
|
+
|
|
260
|
+
ACCEPT
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2
|
|
264
|
+
--------------------------------------------------
|
|
265
|
+
|
|
266
|
+
Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam,
|
|
267
|
+
The Netherlands. All rights reserved.
|
|
268
|
+
|
|
269
|
+
Permission to use, copy, modify, and distribute this software and its
|
|
270
|
+
documentation for any purpose and without fee is hereby granted,
|
|
271
|
+
provided that the above copyright notice appear in all copies and that
|
|
272
|
+
both that copyright notice and this permission notice appear in
|
|
273
|
+
supporting documentation, and that the name of Stichting Mathematisch
|
|
274
|
+
Centrum or CWI not be used in advertising or publicity pertaining to
|
|
275
|
+
distribution of the software without specific, written prior
|
|
276
|
+
permission.
|
|
277
|
+
|
|
278
|
+
STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
|
|
279
|
+
THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
280
|
+
FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
|
|
281
|
+
FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
282
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
283
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
|
|
284
|
+
OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/__init__.py
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
#
|
|
3
|
+
# Copyright (C) 2012-2024 Vinay Sajip.
|
|
4
|
+
# Licensed to the Python Software Foundation under a contributor agreement.
|
|
5
|
+
# See LICENSE.txt and CONTRIBUTORS.txt.
|
|
6
|
+
#
|
|
7
|
+
import logging
|
|
8
|
+
|
|
9
|
+
__version__ = '0.4.0'
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class DistlibException(Exception):
|
|
13
|
+
pass
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
try:
|
|
17
|
+
from logging import NullHandler
|
|
18
|
+
except ImportError: # pragma: no cover
|
|
19
|
+
|
|
20
|
+
class NullHandler(logging.Handler):
|
|
21
|
+
|
|
22
|
+
def handle(self, record):
|
|
23
|
+
pass
|
|
24
|
+
|
|
25
|
+
def emit(self, record):
|
|
26
|
+
pass
|
|
27
|
+
|
|
28
|
+
def createLock(self):
|
|
29
|
+
self.lock = None
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
logger = logging.getLogger(__name__)
|
|
33
|
+
logger.addHandler(NullHandler())
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|